.header {
    background-image: url(/images/large_banner.jpg);
    padding-bottom: 25px;
    background-size: cover;
}
.nav-link {
    /* color: #25aae3; */
    color: #002a3a;
}
.nav-link:hover {
    color: #448ca8;
}
.navbar .container {
    margin-top: 30px;
    /* padding-bottom: 15px; */
    /* border-bottom: 3px solid white; */
    background-color: white;
    margin-bottom: 50px;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
.header-label {
    color: white;
    font-size: 70px;
    width: 70%;
    line-height: 75px;
}
.main-container {
    min-height: calc(100vh - 160px);
    background-color: transparent;
}
.second-banner {
    background-color: #f3f3f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}
.second-divider {
    width: 2px;
    height: 120px;
    background-color: #7c7c7c;
}
.second-box {
    max-width: 600px;
    margin: 20px;
}
.second-label {
    color: #07415d;
    font-size: 25px;
    font-weight: 700;
}
.second-txt {
    color: #58585a;
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
    line-height: 25px;
}
.third-label {
    font-size: 32px;
    color: #07415d;
    font-weight: 700;
    margin: 30px;
    text-align: center;
}
.options-wrapper {
    max-width: 900px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f3f3f5;
    padding: 20px;
    border-radius: 30px;
}
.option-box {
    margin: 10px 20px;
    display: flex;
    align-items: center;
}
.option-label {
    color: #07415d;
    font-size: 25px;
    font-weight: 700;
    margin-left: 20px;
}
.option-line {
    height: 2px;
    width: 100%;
    background-color: #25aae3;
}
.option-desc {
    color: #58585a;
    line-height: 20px;
    font-size: 19px;
    font-weight: 400;
    margin-top: 5px;
    margin-left: 20px;
}
.option-left img {
    width: 100px;
}
.fifth-email {
    text-align: center;
    margin: 30px 0px;
    color: #25aae3;
    font-size: 20px;
    font-weight: 700;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 30px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}
.footer-info {
    color: #58585a;
    font-size: 18px;
    margin: 30px 0px;
}
.footer-logo img {
    width: 300px;
}
.footer-info-mobile {
    display: none;
    color: #58585a;
    font-size: 18px;
    margin: 30px 0px;
}
@media screen and (max-width: 768px) {
    .header-label {
        font-size: 35px;
        line-height: 35px;
    }
    .second-banner {
        flex-direction: column;
    }
    .second-divider {
        display: none;
    }
    .footer {
        flex-direction: column;
    }
    .footer-logo {
        width: 100%;
        text-align: center;
    }
    .footer-info {
        display: none;
    }
    .footer-info-mobile {
        display: block;
    }
    .footer-info-mobile > div {
        margin: 7px 0;
    }
}
