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

.wide-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    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: 1200px;
    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: 250px;
}

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

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

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

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, header .menu span {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
    
}

header .menu a:hover, header .menu span:hover {
    color: #CD1F23;
}

header .menu a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #CD1F23;
    width: 165px;
    height: 45px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 500;
}

header .menu a.downloadBtn:hover {
    background: #26518E;
}

/* END OF HEADER */

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

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

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

.hero .hero-row .hero-intro h1 {
    font-size: 80px;
    width: 100%;
    max-width: 450px;
    line-height: 70px;
    margin: 0 0 15px;
    color: #CD1F23;
}

.hero .hero-row .hero-intro h1 span {
    color: #26518E;
}

.hero .hero-row .hero-intro h5 {
    font-size: 20px;
    font-weight: 600;
}

.hero .hero-row .hero-intro ul {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
}

.hero .hero-row .hero-intro ul li:nth-child(1) {
    list-style: none;
}

.hero .hero-row .hero-intro ul li::marker {
    color: #CD1F23;
}

.hero .hero-row .hero-intro ul li h4 {
    font-weight: 500;
}

.hero .hero-row .hero-intro .dlbutton a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #26518E;
    color: #fff;
    width: 280px;
    height: 70px;
    font-weight: 500;
    font-size: 23px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 auto;
}

.hero .hero-row .hero-intro .dlbutton a:hover {
    background: #CD1F23;
}


.hero .hero-row .hero-image {
    flex: 1.2;
}

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

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

.features .features-row {
    display: flex;
    justify-content: center;
    align-items: center;   
    gap: 25px;
    width: 100%;
    max-width: 730px;
    margin: 0 auto 35px;
    flex-direction: column;
}

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

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

.features .features-row .feature-intro h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
/* END OF FEATURES */

/* POWER UP */
.power-up {
    padding: 75px 0;
}

.power-up .power-up-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    flex-direction: column-reverse;
}

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

.power-up .power-up-row .power-up-image img {
    width: 100%;
    max-width: 650px;
}

.power-up .power-up-row .power-up-intro {
    flex: 1;
}

.power-up .power-up-row .power-up-intro h2 {
    font-size: 35px;
    color: #212121;
    margin-bottom: 25px;
    text-align: center;
}

.power-up .power-up-row .power-up-intro ul li {
    margin-left: 0;
    margin-bottom: 5px;
    text-align: center;
    list-style: none;
}

.power-up .power-up-row .power-up-intro ul li::marker {
    color: #26518E;
    font-size: 25px;
}

.power-up .power-up-row .power-up-intro ul li h4 {
    font-size: 20px;
    font-weight: 500;
}
/* END OF POWER UP */

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

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

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

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

.download .download-row .download-intro p {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.download .download-row .download-intro p:nth-child(3) {
    margin-bottom: 45px;
}

.download .download-row .download-intro .dlbutton a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EB5B78;
    color: #fff;
    width: 280px;
    height: 70px;
    font-weight: 500;
    font-size: 23px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 auto;
}

.download .download-row .download-intro .dlbutton a:hover {
    background: #CD1F23;
}


.download .download-row .download-image {
    flex: 1.1;
}

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

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

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

footer .menu a:hover {
    color: #CD1F23;
}

footer .copyright p {
    text-align: center;
    color: #000;
}
/* END OF FOOTER */

@media (min-width: 650px) {
    .features .features-row {
        flex-direction: row;
        gap: 45px;
    }

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

    .power-up .power-up-row {
        flex-direction: row;
    }

    .power-up .power-up-row .power-up-intro h2 {
        text-align: left;
    }

    .power-up .power-up-row .power-up-intro ul li {
        list-style: disc;
        text-align: left;
        margin-left: 35px;
        margin-bottom: 5px;
    }
}

@media (min-width: 850px) {
    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 ul {
        justify-content: flex-start;
    }

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

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

.download_link{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px);-webkit-animation:1.5s 1.5s forwards fadeInSlideUp;animation:1.5s 1.5s forwards fadeInSlideUp}@-webkit-keyframes fadeInSlideUp{to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInSlideUp{to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}