:root {
    --main-color-light: #f6f4f2;
    --main-color-dark: #425664;
    --main-color-gold: #c6ad8f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Nunito', sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem;
}


/* HEADER STYLING */
/******************/

.header {
    width: 100%;
    height: 4rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}

nav {
    display: -webkit-box;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 1rem 0;
}

.exoc-brand {
    width: 6.5rem;
    height: auto;
}

.exoc-brand img {
    width: 100%;
}

.menu-icons i {
    color: #f6f4f2;
    font-size: 4rem;
    cursor: pointer;
}

.menu-icons .ion-md-close {
    color: #556f82;
}

.menu-icons .ion-md-close:hover {
    color: #425664;
}

.nav-list {
    background-color: #fff;
    z-index: 999;
    position: fixed;
    width: 18rem;
    height: 100vh;
    top: 0;
    right: -21rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.2);
}

.active {
    right: 0;
}

.close {
    position: absolute;
    left: 13rem;
    top: 2rem;
}

.close {
    color: #425664;
}

.nav-item:first-of-type {
    margin-top: 100px;
}

.nav-item {
    padding: 1rem 0;
    list-style-type: none;
}

.nav-link {
    text-decoration: none;  
    color: #425664;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
    -webkit-transition: font-size 0.5s ease;
    transition: font-size 0.5s ease;
}


/* HERO STYLING */
/****************/

.hero {
    position: relative;
    background: linear-gradient(98deg, rgba(67, 87, 101, 0.9) 0%, rgba(89, 116, 136, 0.8) 100%), 
    url("../images/background3.jpg") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 85rem;
}

.hero-message {
    color: #f6f4f2;
    -webkit-transform: translateY(20rem);
            transform: translateY(20rem);
    width: 100%;
    max-width: 45rem;
}

.hero-message h1 {
    font-size: 4rem;
    font-family: 'Archivo Narrow', sans-serif;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.hero-message h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 2rem 0;
    letter-spacing: 0.2rem;
}

.hero-message p {
    font-size: 1.5rem;
}

.hero-message .btn {
    margin-top: 3rem;
}

.hero-message p span {
    font-weight: bold;
}


/* BUTTON STYLING */
/******************/

.btn {
    text-decoration: none;
    color: #f6f4f2;
    background-color: #c6ad8f;
    font-size: 2rem;
    padding: 1rem 2.5rem;
    display: inline-block;
    border-radius: 5rem;
    text-transform: uppercase;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn:hover {
    background-color: #b89c7a;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
}


/* FOOTER STYLING */
/******************/

.footer {
    /* background-color: #556f82; */
    background-color: #425664;
    color: #f6f4f2;
}

.footer-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
}

.footer-content a {
    text-decoration: none;
    color: inherit;
    margin: 0 0.5rem;
}

.footer-content h1 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1rem;
}

.footer-content h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-content .designed-by {
    margin-top: 1rem;
    margin-bottom: -1rem;
}


/* MODAL STYLING */
/*****************/

.privacy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: rgba(0, 0, 0, 0.6);
}

.privacy-modal-content {
    background-color: #f6f4f2;
    margin: 10% auto;
    border-radius: 8px;
    width: 80%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.2);
    -webkit-animation-name: modalopen;
            animation-name: modalopen;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    color: #425664;
}

.privacy-modal-header {
    background: #c6ad8f;
    padding: 5px 15px;
    color: #425664;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
}

.privacy-modal-header h2 {
    text-transform: uppercase;
    margin: 0;
}

.privacy-modal-body {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-align: center;
}

.privacy-modal-body p {
    padding: 1rem 0;
}

.privacy-modal-body p:nth-child(1) {
    padding-top: 2rem;
}

.privacy-modal-body p:last-of-type {
    padding-bottom: 2rem;
}

.privacy-modal-footer {
    background: #c6ad8f;
    padding: 15px;
    color: #425664;
    text-align: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.close-btn {
    color: #425664;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

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

.tos-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    overflow: scroll;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.tos-modal-content {
    background-color: #f6f4f2;
    color: #425664;
    width: 80%;
    margin: 10% auto;
    border-radius: 8px;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.2);
    -webkit-animation-name: modalopen;
            animation-name: modalopen;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
}

.tos-modal-header {
    background-color: #c6ad8f;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 5px 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
}

.tos-modal-header h2 {
    text-transform: uppercase;
    margin: 0;
}

.tos-modal-body {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-align: center;
}

.tos-modal-body p {
    padding: 1rem 0;
}

.tos-modal-body p:nth-child(1) {
    padding-top: 2rem;
}

.tos-modal-body p:last-of-type {
    padding-top: 2rem;
}

.tos-modal-footer {
    padding: 15px;
    text-align: center;
    background-color: #c6ad8f;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

@-webkit-keyframes modalopen {
    from {
        opacity: 0;
    } 
    to {
        opacity: 1;
    }
}

@keyframes modalopen {
    from {
        opacity: 0;
    } 
    to {
        opacity: 1;
    }
}


/* MEDIA QUERIES */
/*****************/

@media screen and (min-width: 225px) {

    .hero {
        height: 75rem;
    }

    .hero-message h1 {
        font-size: 3rem;
    }

    .hero-message h3 {
        font-size: 2rem;
    }

}

@media screen and (min-width: 600px) {

    .hero-message h1 {
        font-size: 4rem;
    }

    .hero-message h3 {
        font-size: 2.5rem;
    }

}

@media screen and (min-width: 800px) {

    .exoc-brand {
        width: 7.5rem;
    }

    .nav-list {
        position: initial;
        width: initial;
        height: 20px;
        background-color: transparent;
        top: initial;
        right: initial;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        box-shadow: none;
    }

    .ion-md-menu {
        display: none;
    }

    .ion-md-close {
        display: none;
    }

    .nav-item:first-of-type {
        display: none;
    }

    .nav-item:last-of-type {
        border: 2px solid #b89c7a;
        border-radius: 5rem;
        padding: 0.75rem 1.5rem;
        text-transform: uppercase;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .nav-item:last-of-type:hover {
        background-color: #b89c7a;
    }

    .nav-item {
        padding: 20px 20px;
        text-transform: uppercase;
    }

    .nav-link {
        font-size: 1.0rem;
        color: #f6f4f2;
    }

    .nav-highlight:hover {
        color: #b89c7a;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .footer-content h1 {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }

    .privacy-modal-body {
        font-size: 1.2rem;
    }

    .tos-modal-body {
        font-size: 1.2rem;
    }

}

@media screen and (min-width: 950px) {

    .nav-link {
        font-size: 1.5rem;
    }

}

