* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Gabarito", 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;
    border-bottom: 1px solid #ccc;
}

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

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

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

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

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.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 45px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: 600;
    background: #39543C;
    box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.2);
    line-height: 35px;
}

header .menu a.downloadBtn:hover {
    background: #E9AE3D;
    color: #000;
}

/* END OF HEADER */

/* HERO */
.hero {
    padding: 75px 0 100px;
    border-bottom: 50px solid #EAAE3C;
}

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

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

.hero .hero-row .hero-intro h1 {
    font-size: 40px;
    margin-bottom: 35px;
}

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

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

.hero .hero-row .hero-intro .dlbutton a {
    background: #39543C;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 75px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 30px;
    transition: 0.3s;
    margin: 0 auto;
}

.hero .hero-row .hero-intro .dlbutton a:hover {
    background: #E9AE3D;
    color: #000;
}

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

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

/* FEATURES */
.features {
    padding: 75px 0;
    border-top: 10px solid #39543C;
}

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

.features .features-row .box.heading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.features .features-row .box.heading h2 {
    font-size: 45px;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
}

.features .features-row .box.heading h2::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 7px;
    background: #39543C;
    bottom: -20px;
}

.features .features-row .box.heading h2 span {
    color: #E9AE3D;
}

.features .features-row .box {
    width: 400px;
    height: 300px;
    padding: 25px;
    background: #EBEBEB;
    border-radius: 25px;
}

.features .features-row .box img {
    width: 100px;
}

.features .features-row .box h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.features .features-row .box p {
    line-height: 25px;
}
/* END OF FEATURES */

/* TOOLS */
.tools {
    background: #39543C;
    padding: 75px 0;
}

.tools h2 {
    text-align: center;
    font-size: 35px;
    letter-spacing: 1px;
    position: relative;
    color: #fff;
    margin-bottom: 75px;
}

.tools h2:before {
    position: absolute;
    content: '';
    width: 10%;
    height: 7px;
    background: #EAAE3C;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tools h2 span {
    color: #EAAE3C;
}

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

.tools .tools-row .box {
    background: #EAAE3C;
    height: 260px;
    width: 200px;
    padding: 25px;
    border-radius: 25px;
}

.tools .tools-row .box img {
    width: 150px;
    margin: 0 auto 15px;
    display: block;
}

.tools .tools-row .box h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #39543C;
}
/* END OF TOOLS */

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

.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 {
    font-size: 40px;
    margin-bottom: 35px;

}

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

.download .download-row .download-intro p {
    line-height: 35px;
    font-size: 19px;
    margin-bottom: 35px;
}

.download .download-row .download-intro .dlbutton a {
    background: #39543C;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 75px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 30px;
    transition: 0.3s;
    margin: 0 auto;
}

.download .download-row .download-intro .dlbutton a:hover {
    background: #E9AE3D;
    color: #000;
}

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

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

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

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

    .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, .download .download-row .download-intro .dlbutton a {
        margin: 0 ;
    }
    
    .features .features-row .box.heading {
        justify-content: flex-start;
    }

    .features .features-row .box.heading h2  {
        text-align: left;
    }
}