* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Gabarito", sans-serif;
}

.wide-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 20px;
    box-sizing: border-box;
}

/* HEADER */
header {
    background: #fff;
    position: relative;
    top: 0;
    height: auto;
    width: 100%;
    z-index: 9999;
}

header .header_container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    margin: 0 auto;
    padding: 20px;
}

header .logo {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo img {
    display: block;
    width: 100%;
    max-width: 350px;
}

header input#menu-toggle {
    display: none;
}

header .toggle {
    height: 35px;
    width: 35px;
    position: relative;
    cursor: pointer;
}

header .toggle span {
    position: absolute;
    background: #4091FF;
    top: 5px;
    left: 0px;
    right: 0px;
    height: 3px;
    border-radius: 100vmax;
    width: 33px;
    transition: all .2s ease-in-out; 
    visibility: visible;
}

header .toggle span:nth-child(2) {
    top: 15px;
}

header .toggle span:nth-child(3) {
    top: 25px;
}

header input#menu-toggle:checked ~ .toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

header input#menu-toggle:checked ~ .toggle span:nth-child(2) {
    opacity: 0;
    left: -100%;
}

header input#menu-toggle:checked ~ .toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

header input#menu-toggle:checked ~ .menu {
    height: 200px;
    border-bottom: 10px solid #4091FF;
}

header .menu {
    top: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    height: 0px;
    background: #fff;
    overflow: hidden;
    transition: all .5s ease-in-out;
    align-items: center;
    backdrop-filter: blur(10px);
}

header .menu a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
    
}

header .menu a:hover {
    color: #4091FF;
}

/* END OF HEADER */

/* HERO */
.top-container {
    background: url(../images/top-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero {
    padding: 75px 0;
}

.hero .hero-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-direction: column;
}

.hero .hero-row .hero-intro {
    flex: 1;
    text-align: center;
}

.hero .hero-row .hero-intro h1 {
    font-size: 65px;
    color: #4091FF;
    line-height: 60px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero .hero-row .hero-intro h3 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 15px;
}

.hero .hero-row .hero-intro h4 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 45px;
}

.hero .hero-row .hero-intro p {
    width: 100%;
    max-width: 650px;
    line-height: 30px;
    margin: 0 auto 25px;
}

.hero .hero-row .hero-intro p:last-child {
    margin-bottom: 0;
}

.hero .hero-row .hero-image {
    flex: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-row .hero-image img {
    width: 100%;
    max-width: 650px;
}
/* END OF HERO */

/* WHY */
.why {
    padding: 75px 0;
}

.why h2 {
    font-size: 35px;
    color: #000;
    text-align: center;
    line-height: 60px;
    letter-spacing: 1.5px;
    margin-bottom: 45px;
    font-weight: 500;
}

.why h2 span {
    color: #4091FF;
}

.why .why-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.why .why-row .item {
    text-align: center;
}

.why .why-row .item img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
}

.why .why-row .item h4 {
    font-size: 20px;
    font-weight: 500;
}
/* END OF WHY */

/* FEATURES */
.features {
    padding: 75px 0;
}

.features h2 {
    font-size: 35px;
    color: #000;
    text-align: center;
    line-height: 60px;
    letter-spacing: 1.5px;
    margin-bottom: 45px;
    font-weight: 500;
}

.features h2 span {
    color: #4091FF;
}

.features .features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.features .features-row .item {
    width: 460px;
    display: flex;
    gap: 25px;
}

.features .features-row .item .icon {
    flex: 1;
}

.features .features-row .item .icon img {
    width: 100%;
    max-width: 250px;
}

.features .features-row .item .intro {
    flex: 1.3;
}

.features .features-row .item .intro h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #4091FF;
    font-weight: 400;
}

.features .features-row .item .intro p {
    font-size: 18px;
}

/* END OF FEATURES */

/* REQUIREMENTS */
.requirements {
    padding: 75px 0;
}

.requirements .requirements-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    flex-direction: column-reverse;
    padding: 35px;
}

.requirements .requirements-row::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 2px solid #4091FF;
    right: 0;
    border-radius: 25px;
}

.requirements .requirements-row .requirements-image {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 250px;
}

.requirements .requirements-row .requirements-image img {
    width: 350px;
    transform: scale(1);
    object-fit: contain;
}

.requirements .requirements-row .requirements-intro h3 {
    font-size: 35px;
    margin-bottom: 15px;
}

.requirements .requirements-row .requirements-intro ul {
    margin-left: 35px;
}

.requirements .requirements-row .requirements-intro ul li::marker {
    font-size: 25px;
}

.requirements .requirements-row .requirements-intro ul li p {
    font-size: 18px;
}

/* END OF REQUIREMENTS */

/* BANNER */
.banner {
    padding: 75px 0 75px;
    position: relative;
}

.banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #21334B;
    bottom: 0;
    left: 0;
}

.banner .banner-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
}

.banner .banner-row .banner-intro {
    flex: 1;
    height: auto;
    position: relative;
    bottom: auto;
    display: flex;
    flex-direction: column;
    flex-grow: auto;
    flex-shrink: auto;
    flex-basis: auto;
    text-align: center;
}

.banner .banner-row .banner-intro h3 {
    color: #BFF3FF;
    font-size: 45px;
    margin-bottom: 25px;
}

.banner .banner-row .banner-intro p {
    color: #fff;
    font-size: 20px;
    line-height: 35px;
}

.banner .banner-row .banner-image {
    flex: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.banner .banner-row .banner-image img {
    width: 100%;
    max-width: 450px;
}
/* END OF BANNER */
/* FOOTER */
footer {
    padding: 25px 0;
    background: #3B4D64;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

footer .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

footer .menu a {
    text-decoration: none;
    color: #fff;
}

footer .menu a:hover {
    text-decoration: underline;
}

footer .copyright p {
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* END OF FOOTER */

/* SUBPAGES */
.subpage {
    padding: 75px 0;
}

.subpage h1 {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #00449e;
}

.subpage h3 {
    margin-top: 45px;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 500;
    color: #00449e;
}

.subpage p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 35px;
}

.subpage ul {
    margin-left: 25px;
}

.subpage a {
    color: #00449e;
}

.subpage form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.1);
    padding: 45px;
}

.subpage form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.subpage form .form-group label {
    font-size: 18px;
    margin-bottom: 5px;
}

.subpage form .form-group input, .subpage form .form-group textarea {
    padding: 10px;
}

.subpage form .form-group textarea {
    height: 250px;
}

.subpage form .form-group button {
    width: 150px;
    height: 45px;
    margin: 0 auto;
    font-size: 25px;
    background: #0270ff;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.subpage form .form-group button:hover {
    background: #21334B;
}
/* END OF SUBPAGES */

@media (min-width: 950px) {
    header {
        background: transparent;
    }

    header .logo img {
        display: block;
    }

    header .toggle span {
        display: none;
    }

    header .menu {
        position: relative;
        flex-direction: row;
        top: 0;
        width: 100%;
        height: 100%;
        border-bottom: none;
        background: none;
        align-items: center;
        justify-content: flex-end;
        transition: none;
        backdrop-filter: none;
        overflow: visible;
    }

    header input#menu-toggle:checked ~ .menu {
        border-bottom: none;
        height: auto;
    }

    /* HERO */
    .hero .hero-row {
        flex-direction: row;
    }

    .hero .hero-row .hero-intro {
        text-align: left;
    }

    .hero .hero-row .hero-intro p {
        margin: 0 0 25px;
        max-width: 450px;
    }

    /* REQUIREMENTS */
    .requirements .requirements-row {
        flex-direction: row;
        padding: 0;
    }

    .requirements .requirements-row::before {
        width: 80%;
    }

    .requirements .requirements-row .requirements-image {
        width: 250px;
        height: 250px;
    }

    .requirements .requirements-row .requirements-image img {
        transform: scale(1.3);
        width: 250px;
    }

    .banner {
        padding: 25px 0 75px;
    }

    .banner::before {
        height: 430px;
    }

    .banner .banner-row {
        flex-direction: row;
        max-width: 1100px;
    }

    .banner .banner-row .banner-intro {
        height: 100%;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 450px;
        bottom: 45px;
        text-align: left;
    }

    .banner .banner-row .banner-image img {
        max-width: 650px;
    }
}