* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    

}

body {
    font-family: "Open Sans", sans-serif;
}

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

/* HEADER */
header {
    background: #e4e4e4;
    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: #6A392D;
    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;
}

header .menu {
    top: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;
    width: 98%;
    border-radius: 15px;
    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: #EF3D3D;
}

header .menu a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 900;
    background: #6CC4FF;
    line-height: 35px;
    text-align: center;
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3),
                29px 0px 15px -15px rgba(108,196,255,1) inset,
                0px 30px 15px -20px rgba(135,208,255,1) inset,
                -35px 0px 14px -22px rgba(156,232,255,1) inset,
                0px -15px 21px -8px rgba(32,119,158,1) inset;


}

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

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

/* END OF HEADER */


/* HERO */
.hero {
    background: linear-gradient(180deg,rgba(228, 228, 228, 1) 50%, rgba(28, 28, 28, 1) 50%);
    padding-bottom: 75px;
}

.hero .hero-container {
    background: #ffc965;
    padding: 75px;
    box-shadow: 5px 5px 10px -5px rgba(0,0,0,0.75);
}

.hero .hero-container .hero-intro {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero .hero-container .hero-intro h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 35px;
}


.hero .hero-container .hero-intro h5 {
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 400;
}

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

.hero .hero-container .hero-intro a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    max-width: 500px;
    width: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    letter-spacing: 1px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 900;
    background: #6CC4FF;
    line-height: 35px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3),
                29px 0px 15px -15px rgba(108,196,255,1) inset,
                0px 30px 15px -20px rgba(135,208,255,1) inset,
                -35px 0px 14px -22px rgba(156,232,255,1) inset,
                0px -15px 21px -8px rgba(32,119,158,1) inset;
    font-family: "Roboto Condensed", sans-serif;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
    margin: 0 auto;

}

.hero .hero-container .hero-intro a.downloadBtn span {
    position: relative;
    top: 1px;

}

.hero .hero-container .hero-intro a.downloadBtn:hover {
    transform: scale(1.1);
}
/* END OF HERO */

/* FEATURES */
.features {
    padding: 75px 0 100px;
    background: #1C1C1C;
}

.features h2 {
    color: #FFC600;
    text-align: center;
    font-size: 45px;
    margin-bottom: 50px;
}

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

.features .features-row .item {
    width: 220px;
    text-align: center;
    height: 250px;
}

.features .features-row .item img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 15px;
    display: block;
}

.features .features-row .item h4 {
    font-size: 20px;
    color: #FFC600;
    margin-bottom: 10px;
}

.features .features-row .item p {
    color: #fff;
    font-size: 18px;
}
/* END OF FEATURES */

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

.why .section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.why .section-heading h2 {
    text-align: center;
    color: #FFC600;
    font-size: 45px;
    color: #6A392D;
    margin-bottom: 15px;
}

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

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

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

.why .why-row .item .intro {
    padding-top: 15px;
    text-align: center;
}

.why .why-row .item .intro h4 {
    font-size: 20px;
    color: #6A392D;
    margin-bottom: 10px;
}

.why .why-row .item .intro p {
    font-size: 16px;
}

.why .dlbutton a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    max-width: 500px;
    width: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    letter-spacing: 1px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 900;
    background: #6CC4FF;
    line-height: 35px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3),
                29px 0px 15px -15px rgba(108,196,255,1) inset,
                0px 30px 15px -20px rgba(135,208,255,1) inset,
                -35px 0px 14px -22px rgba(156,232,255,1) inset,
                0px -15px 21px -8px rgba(32,119,158,1) inset;
    font-family: "Roboto Condensed", sans-serif;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
    margin: 0 auto;

}

.why .dlbutton a.downloadBtn span {
    position: relative;
    top: 1px;

}

.why .dlbutton a.downloadBtn:hover {
    transform: scale(1.1);
}
/* END OF WHY */

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


/* END OF HEADER */

@media (min-width: 620px) {
    header .logo img {
        max-width: 350px;
    }

    .hero .hero-container .hero-intro h1 {
        font-size: 65px;
    }

    .hero .hero-container .hero-intro a.downloadBtn, .why .dlbutton a.downloadBtn  {
        font-size: 55px;
    }

    .hero .hero-container .hero-intro h5 {
        font-size: 35px;
    }

    .hero .hero-container .hero-intro p  {
        font-size: 22px;
    }

    .why .why-row .item {
        flex-direction: row;
    }

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

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

}

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

    .hero .hero-container {
        background: url(../images/hero-bg.jpg);
        background-position: center;
        background-size: cover;

    }

    .hero .hero-container .hero-intro {
        text-align: left;
        margin: 0;
    }

    .hero .hero-container .hero-intro a.downloadBtn {
        margin: 0;
    }
}