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

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

/* HEADER */
header {
    background: #FFFFFF;
    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: #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: 13px 20px;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 400;
    background: #1E2F90;
    text-align: center;
    font-size: 18px;
}

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

/* END OF HEADER */

/* HERO */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    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 {
    color: #000;
    font-size: 50px;
    margin-bottom: 50px;
}

.hero .hero-row .hero-intro h1 span {
    color: #585EE2;
}

.hero .hero-row .hero-intro p {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 35px;
}

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

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

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

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

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

.features .features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 45px;
    position: relative;
    flex-direction: column;
}

.features .features-row:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 85%;
    width: 100%;
    z-index: -1;
}


.features .features-row:nth-child(odd):before {
    background: #F0F1FF;
}

.features .features-row:nth-child(even):before {
    background: #D8E1FF;
}

.features .features-row .features-icon {
    background: #1E2F90;
    border: 1px solid #707070;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 200px;
    flex-grow: 0;
    flex-shrink: 0;
}

.features .features-row .features-icon img {
    width: 150px;
}

.features .features-row .features-intro {
    padding: 45px;
    height: auto;
    text-align: center;
}

.features .features-row .features-intro .intro h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.features .features-row .features-intro .intro p {
    line-height: 35px;
    font-size: 18px;
}
/* END OF FEATURES */

/* DOWNLOAD */
.download {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 75px 0;
    background: #1F2443;
}

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

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

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

.download .download-row .download-intro h2 span {
    color: #585EE2;
}

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

.download .download-row .download-intro .dlbutton a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: 95px;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 600;
    background: #4252B1;
    font-size: 35px;
    text-align: center;
    margin: 0 auto;
}

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

.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: 600px;
}
/* END OF DOWNLOAD */

/* FOOTER */
footer {
    padding: 25px 0;
    background: #1F2443;
    border-top: 1px solid rgba(255, 255, 255, 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: 850px) {
    .features .features-row {
        flex-direction: row;
    }

    .features .features-row:before {
        height: 100%;
        width: 85%;
    }

    .features .features-row .features-intro {
        padding: 0 45px;
        text-align: left;
        height: 160px;
    }
}

@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, .download .download-row{
        flex-direction: row;
    }

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

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

}