@charset "utf-8";
@import url("https://use.typekit.net/qbm6dza.css");

html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,:after,:before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background-color: #FFFFFF;
    font-family: zeitung, sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: #080708;
    font-size: 22px;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.form, input {
    font-family: zeitung, sans-serif;
    background-color: #fff;
    color: #080708;
    border: 2px solid #080708;
    font-size: 22px;
    padding: 10px 15px 10px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    outline: none;
    border-radius: 0;
    width: 100%;
    margin-bottom: 30px;
}

.form::placeholder {
    font-size: 22px;
    color: #dddddd;
}

.form:active, .form:focus {
    border: 2px solid #3A42D6;
}

.text_gold {
    color: #080708;
}

.bg_gold {
    background-color: #080708;
}

.text_navy {
    color: #3A42D6;
}

.bg_navy {
    background-color: #3A42D6;
}

.text_white {
    color: #F4FDFF;
}

.text_thin{
    font-weight: 100;
}

a:link, a:visited, a:active {
    font-weight: 100;
    margin: 0;
    text-decoration: underline;
    display: inline-block;
    color: #FFFFFF;
    font-size: 22px;
}

a:hover {
    text-decoration: none;
    color: #FFFFFF
}

.a_on_white:link, .a_on_white:visited, a:active {
    font-weight: 400;
    margin: 0;
    text-decoration: underline;
    display: inline-block;
    color: #080708;
    font-size: 22px;
}

.a_on_white:hover {
    text-decoration: none;
}

.header_link:link, .header_link:visited, .header_link:active {
    font-weight: 100;
    margin: 10px 0;
    text-decoration: none;
    display: inline-block;
    color: #F4FDFF;
    font-size: 28px;
}

.header_link:hover {
    text-decoration: underline;
}

.header_boxes_left {
    display: flex; width: 70%; justify-content: center;
}

.header_boxes_right {
    display: flex; width: 30%; justify-content: center;
}


h1 {
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 58px;
    font-weight: 600;
    color: #FFFFFF;
}

h2 {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 28px;
    font-weight: 600;
    color: #F4FDFF;
}


h3 {
    margin: 0 0 5px 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
}

.container {
    width: 100%;
}

.block {
    margin: 0;
    padding: 130px 50px;
}

.block_content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.header_block {
    width: 100%;
    background-color: #3A42D6;
    display: flex;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;

}

.header_boxes_right {
    align-items: center;
}

.but_gold {
    border-radius: 50px;
    background-color: #080708;
    color: #F4FDFF;
    cursor: pointer;
    display: inline-block;
    width: auto;
    border: 2px solid #080708;
    padding: 10px 40px;
    font-family: zeitung, sans-serif;
}

.but_gold:hover, .but_gold:active {
    background-color: #3A42D6;
    border: 2px solid #F4FDFF;
}
.error_box {
    width: 100%; padding: 20px; background-color: #B22222; color: #F4FDFF;
}
.rsvp_box {
    width: 100%; padding: 20px; background-color: #f1f1f1   ; margin-bottom: 10px; border: 2px solid #fafafa;
}

.success_box {
    width: 100%; padding: 20px; background-color: #355E3B; color: #F4FDFF;
}

.rsvp_box:hover {
    border: 2px solid #3A42D6;
}

.d_t {
    display: table;
    width: 100%;
}

.d_tr {
    display: table-row;
}

.d_tc {
    display: table-cell;
    padding: 5px;
    border-bottom: 1px #cccccc;
}

.width_33 { width: 32.9999%}
.width_50 { width: 49.9999%}

@media (max-width: 600px) {
    .width_33,
    .width_50 {
        float: left;
        width: 100%;
    }
    .header_boxes_left {
        width: 100%;
        height: 30vh;
    }
    .header_boxes_right {
        width: 100%;
    }
    .header_block {
        display: block;
        height: unset;
    }
}