* {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
    color: #fff;
    background-image: url("img/bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #574738;
}

@media screen and (max-width: 1200px) {
    body {
        background-size: contain;
        background-size: 115%;
        background-position-x: 65%;
    }
}

/* @media screen and (max-width: 599px) {
    body {
        background-size: 210%;
        background-position-x: 50%;
    }
} */

.wrapper {
    height: 100%;
}


/************************* Colors *************************/

.color_primary {
    color: #507487;
}


/************************* Font Styles *************************/

h1 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #000;
}

h4 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #000;
}

p {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

ul {
    padding-top: 0;
    margin-top: 0;
    font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    p {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 599px) {
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.125rem;
    }
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    color: #70b919;
}

.a_small {
    font-size: 1rem;
    margin: 0 .5rem;
}

.no_break {
    white-space: nowrap;
}

ul.lst_none {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}

a.phone {
    display: inline-block;
    margin-top: .5rem;
    font-size: 1.4rem;
    text-decoration: none;
}

.grey {
    font-weight: bold;
    color: #c6c6c6;
    font-weight: 600;
}


/************************* Layout *************************/

.wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.box,
.box_bottom {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    /* justify-content: space-between; */
    /* align-items: flex-end; */
}


/* .column {
    width: 47%;
}

.left {
    text-align: right;
}

.right {
    text-align: left;
} */


/* @media screen and (max-width: 699px) {
    .box,
    .box_bottom {
        flex-direction: column;
    }
    .column {
        width: 100%;
    }
    .left {
        text-align: left;
    }
} */

.logo {
    flex: 0 1 auto;
    padding-top: 4vh;
    margin: 0 auto;
    display: none;
}

.logo img {
    width: 25rem;
    height: auto;
}

@media screen and (max-width: 768px) {
    .logo img {
        width: 50vw;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        width: 50vw;
        max-width: 300px;
    }
}

.spacer {
    flex: 1 1 auto;
    /* height: 2rem; */
}

@media screen and (max-width: 1280px) {
    .spacer {
        flex: 1 0 auto;
    }
}

.container {
    flex: 0 1 auto;
    text-align: center;
    /* background-color: rgba(255, 255, 255, 0.80); */
    padding: .5rem;
    align-self: flex-end;
    /* max-width: 768px;
    width: 620px; */
}


/* @media screen and (max-width: 699px) {
    .container {
        width: 80%;
    }
} */


/* .legal {
    margin-top: 10vh;
} */

.arrow {
    margin-top: 6px;
    margin-bottom: 4px;
}


/************************* Modal *************************/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 90%;
    }
}

.modal-content h1 {
    color: #333333;
    text-align: left;
    font-size: 2rem;
}

@media screen and (max-width: 480px) {
    .modal-content h1 {
        font-size: 1.5rem;
    }
}

.modal-content p,
.modal-content a,
.modal-content li,
.modal-content strong {
    color: #333333;
    text-align: left;
    font-size: 1rem;
}

.close {
    color: #000;
    float: right;
    font-size: 3rem;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}