body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', 'Helvetica', sans-serif;
}


/* NAV BAR */

.nav {
    height: 60px;
    padding: 10px 35px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    height: 50px
}

.nav__links a {
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #be7822;
    transition: color .3s ease, border-bottom .3s ease;
    padding-bottom: 3px;
    padding-right: 6px;
    text-align: center;
}

.nav__links a.log-in {
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #be7822;
    transition: color .3s ease, border-bottom .3s ease;
    padding-bottom: 3px;
    margin-right: 6px;
    text-align: center;
}

.nav__links a:hover {
    color: #be7822;
    border-bottom: 1px solid #be7822;
}

.nav__links a.log-in:hover {
    color: #2268be;
    border-bottom: 1px solid #2268be;
}

.internal-nav {
    padding: 20px 195px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.internal-nav-links {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    display: -webkit-flex;
}

.internal-nav-links a {
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: grey;
    transition: color .3s ease, border-bottom .3s ease;
    padding: 5px;
    margin: 5px;
    text-align: center;
}

.internal-nav-links a:hover {
    color: #be7822;
    border-bottom: 1px solid #be7822;
}



/* MAIN MAST */

.mast {
    width: 100%;
    background: #2268be;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.mast .container {
    padding: 10px;
    border-radius: 5px;
    display: flex;
    display: -webkit-flex;
    text-align: center;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: white;
}


.mast .container h1 {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 5px;
}

.mast .container h2 {
    font-size: 1.8rem;
    margin: 5px;
    font-weight: 100;
}


/*section*/

.section {
    padding: 20px 190px;
}


/* question */
.collapsible {
    background-color: #2268be;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    margin: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
}

/* color */
.active,
.collapsible:hover {
    background-color: #fff;
    color: #2268be;
    border: 1px solid;
    border-color: #2268be;
}

/* content */
.faq-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #fff;
}

.faq-content p {
    color: black;
    font-size: 16px;
}

.color--brand {
    color: #1e252b !important;
}

.contact {
    text-align: center;
    margin: 20px;
    padding: 2px;
}

.contact p {
    font-size: 1.2em;
}


/*bottom*/

.bottom {
    padding: 30px 40px;
}


.footer {
    background-color: #2268be;
    display: flex;
    display: -webkit-flex;
    align-content: space-between;
    align-items: center;
}


.footer .info {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-content: space-around;
    padding: 5px 50px;
    font-size: .90em;
    line-height: 1.2rem;
}

.footer .info {
    color: #fff;
}

.info .footer-link {
    color: #fff;
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .internal-nav {
        padding: 20px 80px 0px 80px;
    }

    .section {
        padding: 30px 80px;
    }

    .nav__logo {
        height: 35px
    }
}

@media (min-width: 320px) and (max-width: 768px) {

    .internal-nav {
        padding: 10px 50px 0px 50px;
    }

    .section {
        padding: 30px 50px;
    }

    .nav__logo {
        height: 30px
    }


}
