/* CONTACT_US */

.CONTACT_US {
    text-align: center;
    width: 42.5rem;
    margin: auto;
    margin-top: 6.25rem;
    padding: 3.125rem 0;
}

.CONTACT_US .content {
    font-size: 1.75rem;
    color: #455065;
    line-height: 1.5rem;
    font-weight: bold
}

.CONTACT_US h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #455065;
    text-align: center;
    margin: 3.375rem 0;
}

.CONTACT_US .LearnMore {
    background: #0F3181;
    color: #FFF;
    line-height: 3rem;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    width: 26.25rem;
    height: 3rem;
    border-radius: 0.3125rem;
    margin: auto;
    letter-spacing: 0.1875rem;
}

@media screen and (max-width: 28.125rem) {
    .CONTACT_US {
        margin-top: 20px;
        padding: 30px 0;
    }
    .CONTACT_US .content {
        margin: 0;
    }
    .CONTACT_US h2 {
        margin: 10px 0 20px 0;
    }
    .CONTACT_US .LearnMore {
        width: 194px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
    }
}


/* bottom */

.bottom {
    /* margin-top: 3.125rem; */
    padding: 3.125rem 0;
}

.bottom>.bottomHeader {
    display: flex;
    justify-content: space-between;
}

.bottom>.bottomHeader>.logo {
    display: flex;
    align-items: center;
}

.bottom>.bottomHeader>.logo>img {
    width: 2rem;
}

.bottom>.bottomHeader>.right {
    display: flex;
    align-items: center;
}

.bottom>.bottomHeader>.right>h3 {
    color: #455065;
    line-height: 1.5rem;
    letter-spacing: 0rem;
    margin: 0;
    margin-right: 1.875rem;
    text-transform: Uppercase;
    font-weight: bold;
}

.bottom>.bottomHeader>.right>.showForm {
    font-size: .875rem;
    font-weight: bold;
    text-transform: Uppercase;
    cursor: pointer;
    padding: .625rem 1.5rem;
    background: #0F3181;
    border-radius: 0.25rem;
    color: #FFF;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.bottom>.menu {
    margin-top: 5rem;
    text-align: center;
}

.bottom>.menu>table tr>* {
    padding: 0.5rem 5.625rem;
}

.bottom>.menu>table tr>th {
    font-size: 1rem;
    font-weight: 800;
    color: #455065;
    line-height: 1.5rem;
}

.bottom>.menu>table tr>td {
    font-size: .85rem;
    color: #455065c9;
    line-height: 1.5rem;
    font-weight: bold;
    text-transform: Uppercase;
    text-align: center;
}

@media screen and (max-width: 450px) {
    .bottom {
        padding: 16px 0;
    }
    .bottom>.bottomHeader {
        flex-direction: column;
        align-items: center;
        padding: 0px 52px;
    }
    .bottom>.bottomHeader>.logo>img {
        width: 28px;
    }
    .bottom>.bottomHeader>.logo>h1 {
        font-size: 24px;
    }
    .bottom>.bottomHeader>.right {
        flex-direction: column;
        margin-top: 10px;
    }
    .bottom>.bottomHeader>.right>h3 {
        text-align: center;
        margin-right: 0;
        line-height: 16px;
    }
    .bottom>.bottomHeader>.right>.showForm {
        margin: 10px 0 0 0;
        font-size: 1rem;
    }
    .bottom>.menu {
        margin-top: 30px;
        text-align: center;
    }
    .bottom>.menu>table tr>* {
        padding: 8px 16px;
    }
}


/* copyright */

.copyright {
    width: 100%;
    height: 12.25rem;
    background: #02020E;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.copyright .container h3 {
    font-size: .9rem;
    color: #FFFFFF;
    line-height: 1.25rem;
    margin: 1rem;
}

@media screen and (max-width: 450px) {
    .copyright .container h3 {
        width: 252px;
        line-height: 18px;
        margin: 0;
    }
}