* {
    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;
    max-width: 200px;
}

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

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

header .toggle span {
    position: absolute;
    background: #083B8D;
    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: 300px;
    border-bottom: 10px solid #083B8D;
}

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: #F8FEFF;
    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: #1E2F90;
}

header .menu a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 400;
    background: #1E2F90;
    text-align: center;
    font-size: 16px;
}

header .menu a.downloadBtn:hover {
    transform: scale(1.1);
}

/* END OF HEADER */

/* HERO */
.hero {
    padding: 75px 0;
}

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

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

.hero .hero-row .hero-intro h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0071BC;
}

.hero .hero-row .hero-intro h3 {
    font-size: 25px;
    margin-bottom: 50px;
}

.hero .hero-row .hero-intro .dlbutton a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 80px;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 400;
    background: #1E2F90;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto;
}

.hero .hero-row .hero-intro .dlbutton a:hover {
    transform: scale(1.1);
}

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

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

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

.features h2 {
    color: #1E2F90;
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
}

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

.features .features-row .item {
    display: flex;
    gap: 25px;
    width: 500px;
    flex-direction: column;
}

.features .features-row .item .item-icon img {
    width: 150px;
    margin: 0 auto;
    display: block;
}

.features .features-row .item .item-intro  {
    text-align: center;
}

.features .features-row .item .item-intro h3 {
    color: #0071BC;
    margin-bottom: 15px;
    line-height: 30px;
}

.features .features-row .item .item-intro p {
    font-weight: 300;
    line-height: 30px;
}
/* END OF FEATURES */

/* BANNER */
.banner {
    padding: 75px 0;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 50%, rgba(17, 24, 65, 1) 50%);
}

.banner .banner-container {
    background: #1E2F90;
    padding: 50px;
    border-radius: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner .banner-container h2 {
    color: #A0E9FF;
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
}

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

.banner .banner-container .banner-row .banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .banner-container .banner-row .banner-image img {
    width: 100%;
    max-width: 450px;
}

.banner .banner-container .banner-row .banner-intro {
    flex: 1;
} 

.banner .banner-container .banner-row .banner-intro ul li {
    margin-bottom: 15px;
}

.banner .banner-container .banner-row .banner-intro ul li::marker {
    color: #fff;
}

.banner .banner-container .banner-row .banner-intro ul li p {
    color: #ffff;
}
/* END OF BANNER */

/* DOWNLOAD */
.download {
    padding: 75px 0;
    background: #111841;
}

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

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

.download .download-row .download-intro h2 {
    color: #A0E9FF;
    font-size: 35px;
    margin-bottom: 35px;
}

.download .download-row .download-intro h3 {
    color: #A0E9FF;
    font-size: 25px;
    margin-bottom: 35px;
}

.download .download-row .download-intro p {
    color: #fff;
    margin-bottom: 25px;
    line-height: 30px;
}

.download .download-row .download-intro .dlbutton a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 80px;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 400;
    background: #1E2F90;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto;
}

.download .download-row .download-intro .dlbutton a:hover {
    transform: scale(1.1);
}

.download .download-row .download-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download .download-row .download-image img {
    width: 100%;
    max-width: 550px;
}
/* END OF DOWNLOAD */

/* FOOTER */
footer {
    padding: 25px 0;
    background: #111841;
}

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;
}

footer .copyright p img {
    width: 25px;
}

/* END OF FOOTER */

@media (min-width: 550px) {
    .features .features-row .item {
        flex-direction: row;
    }

    .features .features-row .item .item-intro  {
        text-align: left;
    }

    .features .features-row .item .item-icon img  {
        margin: 0;
    }
}

@media (min-width: 990px) {
    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-row {
        flex-direction: row;
    }

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

    .hero .hero-row .hero-intro .dlbutton a {
        margin: 0;
    }

    .banner .banner-container .banner-row {
        flex-direction: row;
    }

    .download .download-row {
        flex-direction: row;
    }

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

    .download .download-row .download-intro .dlbutton a {
        margin: 0;
    }
}