* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Helvetica;
}

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

hr {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* HEADER */
header {
    background: #4f4f4f;
    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: 250px;
}

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

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

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

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

header .menu a.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    transition: 0.2s;
    text-transform: capitalize;
    border: 1px solid #fff;
    font-weight: 400;
    background: linear-gradient(180deg,rgba(27, 157, 226, 1) 0%, rgba(83, 106, 184, 1) 80%);
    text-align: center;
    border-radius: 50px;
}

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

/* END OF HEADER */

/* HERO */
.top-container {
    background: url(../images/hero-bg.png);
    background-position: left;
    background-size: cover;
}

.hero {
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 75px 0;
}

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

.hero .hero-intro h1 {
    font-size: 55px;
    color: #FFE67B;
    font-weight: 600;
    line-height: 50px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 35px;
}

.hero .hero-intro h1 span {
    font-size: 40px;
}

.hero .hero-intro p {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 45px;
}

.hero .hero-intro .dlbutton a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 80px;
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    transition: 0.2s;
    text-transform: capitalize;
    border: 1px solid #fff;
    font-weight: 600;
    background: linear-gradient(180deg,rgba(27, 157, 226, 1) 0%, rgba(83, 106, 184, 1) 80%);
    text-align: center;
    border-radius: 50px;
    margin: 0 auto;
}

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

/* END OF HERO */

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

.features h2 {
    color: #707070;
    text-align: center;
    font-size: 35px;
    margin-bottom: 55px;
}

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

.features .features-row .box {
    background: #3889A7;
    border: 1px solid #000000;
    padding: 25px;
    width: 280px;
    height: 360px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
}

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

.features .features-row .box h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.features .features-row .box p {
    color: #fff;
    font-size: 15px;
    text-align: center;
    font-weight: 300;
    line-height: 25px;
}
/* END OF FEATURES */

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

.tools h2 {
    color: #000;
    text-align: center;
    font-size: 35px;
    margin-bottom: 55px;
}

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

.tools .tools-row .item {
    max-width: 450px;
    width: 100%;
    display: flex;
    gap: 25px;
}

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

.tools .tools-row .item .item-intro h4 {
    font-size: 19px;
    color: #707070;
    margin-bottom: 15px;
}

.tools .tools-row .item .item-intro p {
    color: #707070;
    font-size: 14px;
    line-height: 20px;
}
/* END OF TOOLS */

/* DOWNLOAD */
.download {
    padding: 75px 0;
    background: url(../images/download-bg.png);
    background-position: right;
    background-size: cover;
}

.download .download-intro {
    width: 100%;
    max-width: 700px;
    border: 1px solid;
    padding: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    margin: 0 auto;
}

.download .download-intro h2 {
    font-size: 45px;
    color: #FFE67B;
    font-weight: 600;
    line-height: 50px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 35px;
    text-align: center;
}

.download .download-intro p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 35px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 45px;
    text-align: center;
}

.download .download-intro .dlbutton a {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    width: 350px;
    height: 80px;
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    transition: 0.2s;
    text-transform: capitalize;
    border: 1px solid #fff;
    font-weight: 600;
    background: linear-gradient(180deg,rgba(27, 157, 226, 1) 0%, rgba(83, 106, 184, 1) 80%);
    text-align: center;
    border-radius: 50px;
}

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

/* END OF DOWNLOAD */

/* FOOTER */
footer {
    padding: 25px 0;
    background: #000;
    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: 990px) {
    header {
        background: transparent;
    }

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

    .top-container  {
        background-position: center;
    }

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

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

    .download {
    background-position: center;       
    }

    .download .download-intro {
        margin: 0;
    }
}