* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
    scroll-margin-top: 100px;
}

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


/* BUTTON */
.dlbutton {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.dlbutton img {
    position: absolute;
    left: -170px;
    width: 150px;
    display: none;
}

.dlbutton a {
    margin-bottom: 10px;
    text-decoration: none;
    color: #22669d;
}

.dlbutton a:hover {
    text-decoration: underline;
}

.dlbutton button {
    width: 100%;
    max-width: 500px;
    border-radius: 3px;
    height: 130px;
    font-size:55px;
    font-weight: 600;
    overflow: hidden;
    border: none;
    color: #fff;
    border: 1px solid #4ca64c;
    position: relative;
    margin-bottom: 10px;
    background: #fff;
    cursor: pointer;
}

.dlbutton button:hover::before {
    background: #419141;
}

.dlbutton button span {
    position: relative;
}

.dlbutton button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: #4ca64c;
    height: 100%;
    margin:  auto;
    animation: 0.7s full 0.3s forwards;
}

.dlbutton .requirement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
}

.dlbutton .requirement img {
    width: 12px;
    position: relative;
    left: 0;
    display: block;
    filter: grayscale(2);
    opacity: 0.8;
}

.dlbutton .requirement span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    color: #969696;
    font-size: 12px;
}

.dlbutton p {
    font-size: 12px;
    text-align: center;
    color: #666666;
    opacity: 0.5;
}

.dlbutton p a {
    color: #666666;
    text-decoration: none;
}
.dlbutton p a:hover {
    text-decoration: underline;
}
@keyframes full {
    0% {
        width: 0%;
        background: #4ca64c;
    }

    100% {
        width: 100%;

    }
}
/* END OF BUTTON */


/* HEADER */
header {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

header .header-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 20px;
    
}

header .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

header .header-row .logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

header .header-row .logo-area img {
    width: 40px;
}

header .header-row .logo-area h2 {
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

/* END OF HEADER */

/* HERO */
.hero {
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.hero h1 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 25px;
}

.hero p.hero-intro {
    text-align: center;
    width: 100%;
    max-width: 850px;
    margin: 0 auto 45px;
    font-size: 14px;
    line-height: 25px;
    color: #555;
}

.hero .hero-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    flex-direction: column;
    gap: 45px;
}

.hero .hero-row .steps {
    flex: 1;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.hero .hero-row .steps .step {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.hero .hero-row .steps .step:last-child {
    margin-bottom: 0;
}

.hero .hero-row .steps .step span {
    width: 40px;
    height: 40px;
    display: flex;  
    justify-content: center;
    align-items: center;
    border-radius: 50vmax;
    background: #b9ddfa;
    font-weight: 600;
    flex-basis: 40px;
    flex-shrink: 0;
    flex-grow: 0;

}

.hero .hero-row .steps .step:nth-child(1) span {
    animation: blinking;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
}

@keyframes blinking {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.hero .hero-row .steps .step:nth-child(2), .hero .hero-row .steps .step:nth-child(3) {
    opacity: 0.6;
}

.hero .hero-row .steps .step p {
    width: 100%;
    max-width: 250px;
    color: #555;
}

/* END OF HERO */

/* HOW */
.how {
    background: #f6f7f8;
    padding: 100px 0;
}

.how h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 35px;
}

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

.how .how-row .box {
    text-align: center;
}

.how .how-row .box img {
    max-width: 450px;
    display: block;
    margin: 0 auto 25px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.how .how-row .box p {
    font-size: 15px;
    color: #555;
}
/* END OF HOW */

/* DISCOVER */
.discover {
    padding: 100px 0 75px;
}

.discover h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 35px;
}

.discover .tab-images .tabcontent {
    margin-bottom: 25px;
}

.discover .tab-images .tabcontent:first-child {
    display: block;
}

.discover .tab-images .tabcontent img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
}

.discover .tab {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    position: relative;
    flex-direction: column;
}

.discover .tab::before {
    position: absolute;
    content: '';
    width: 70%;
    height: 3px;
    background: #000;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 12px;
    display: none;
}

.discover .tab .item {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.discover .tab .item:last-child {
    padding-bottom: none;
    border-bottom: none;
}

.discover .tab .item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.discover .tab .item p {
    font-size: 15px;
    line-height: 25px;
    color: #555;
}

.tab button {
    width: 25px;
    height: 25px;
    border: 2px solid #000;
    background: #fff;
    border-radius: 50vmax;
    margin: 0 auto 25px;
    position: relative;
}

/* Create an active/current tablink class */
.tab button.active {
    background: #009fe0;
    border: 2px solid #fff;
}

/* Style the tab content */
.discover .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}

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

.discover .box-row .box p {
    font-size: 16px;
    line-height: 25px;
    color: #2e3133;
}
/* END OF DISCOVER */

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

.download h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.download p.download-intro {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 25px;
    color: #555;
}

/* END OF DOWNLOAD */

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

footer .footer-menu {
    text-align: center;
    margin-bottom: 5px;
}

footer .footer-menu a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    color: #555;
}

footer .footer-menu a:hover {
    text-decoration: underline;
}

footer .copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer .copyright img {
    width: 25px;
}

footer .copyright p {
    text-align: center;
    font-size: 14px;
    color: #555;
}
/* END OF FOOTER */

@media (min-width: 550px) {
    header .header-row {
        flex-direction: row;
    }
}

@media (min-width: 850px) {
    .hero {
        padding: 150px 0 0;
        height: calc(100vh - 75px);
    }

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

    .hero .hero-row .steps {
        max-width: 350px;
    }

    .dlbutton img {
        position: absolute;
        left: -170px;
        width: 150px;
        display: block;
    }

    .discover .tab {
            flex-direction: row;
    }

    .discover .tab .item {
        margin: 0;
        padding-bottom: none;
        border-bottom: none;
    }

    .discover .tab::before {
        display: block;
    }

}