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

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

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

header .header_container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1380px;
    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: 250px;
}

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

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

header .toggle span {
    position: absolute;
    background: #1E2F90;
    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 #1E2F90;
}

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

header .menu a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 900;
    background: #6CC4FF;
    line-height: 35px;
    text-align: center;
    font-weight: 600;
    background: #1E2F90;
}

header .menu a.downloadBtn span {
    position: relative;
    top: 1px;
}

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

/* END OF HEADER */

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

.hero h1 {
    color: #0071BC;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero h4 {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero img {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 15px;
    display: block;
}

.hero p {
    text-align: center;
    width: 100%;
    max-width: 970px;
    margin: 0 auto 35px;
    line-height: 30px;
}

.hero .dlbutton a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 80px;
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 900;
    background: #6CC4FF;
    line-height: 35px;
    text-align: center;
    font-weight: 600;
    background: #1E2F90;
    margin: 0 auto;
}

.hero .dlbutton a:hover {
    background: #68B5DE;
}
/* END OF HERO */

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

.banner .banner-container {
    background: #1E2F90;
    padding: 50px;
    border-radius: 100px;
}

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

.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: 550px;
}

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

.banner .banner-container .banner-row .banner-intro p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 35px;
    width: 100%;
    text-align: center;
}

.banner .banner-container .banner-row .banner-intro .list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 25px;
}

.banner .banner-container .banner-row .banner-intro .list span {
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    flex-basis: 50px;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    color: #1E2F90;
    font-size: 25px;
    border-radius: 50vmax;
    font-weight: 600;
}

.banner .banner-container .banner-row .banner-intro .list p {
    line-height: auto;
    margin-bottom: 0;
    max-width: 250px;
    text-align: left;
}

.banner .banner-container .banner-row .banner-intro h4 {
    font-size: 30px;
    font-weight: 400;
    margin-top: 25px;
    text-align: center;
}
/* END OF BANNER */

/* TOOLS */
.tools {
    padding: 75px 0;
}

.tools .section-heading {
    margin-bottom: 50px;
}

.tools .section-heading h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
    color: #0071BC;
}

.tools .section-heading p {
    text-align: center;
}

.tools .tools-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 75px;
}

.tools .tools-row .item {
    display: flex;
    align-items: center;
    width: 550px;
    gap: 30px;
}

.tools .tools-row .item .item-icon .box {
    background: #1E2F90;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.tools .tools-row .item .item-icon .box img {
    width: 80px;
}

.tools .tools-row .item .item-intro h4 {
    color: #0071BC;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tools .tools-row .item .item-intro p {
    line-height: 30px;
}

.tools p.bottom-intro {
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    line-height: 30px;
}
/* END OF TOOLS */

/* FEATURES */

.features {
    padding: 75px 0;
}

.features h2 {
    font-size: 30px;
    text-align: center;
    color: #0071BC;
    margin-bottom: 50px;
}

.features .item {
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 100%;
    gap: 30px;
    margin: 0 auto 50px;
}

.features .item:last-child {
    margin: 0 auto;
}

.features .item .item-icon .box {
    background: #1E2F90;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.features .item .item-icon .box img {
    width: 80px;
}

.features .item .item-intro h4 {
    color: #0071BC;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features .item .item-intro p {
    line-height: 30px;
}

/* END OF FEATURES */

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

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

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

.download .download-row .download-intro h2 {
    font-size: 30px;
    color: #AEDEFD;
    margin-bottom: 50px;
}

.download .download-row .download-intro p {
    line-height: 30px;
    margin-bottom: 35px;
    color: #fff;
    font-size: 20px;
}


.download .download-row .download-intro .dlbutton a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 80px;
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 900;
    background: #6CC4FF;
    line-height: 35px;
    text-align: center;
    font-weight: 600;
    background: #68B5DE;
    margin: 0 auto;
}

.download .download-row .download-intro a:hover {
    background: #10abff;
}

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

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

/* FOOTER */
footer {
    padding: 25px 0;
    background: #1B2143;
    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;
}

footer .copyright p img {
    width: 25px;
}
/* END OF FOOTER */


@media (min-width: 950px) {

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

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

    .banner .banner-container .banner-row .banner-intro .list {
        justify-content: flex-start;
    }

    .banner .banner-container .banner-row .banner-intro p  {
        text-align: left;
    }

    .banner .banner-container .banner-row .banner-intro h4  {
        text-align: left;
    }

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

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

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