:root {
    /*border*/
    --border-color: #2b0762;
    --border-radius: 27px;

    /*texts*/
    --text-color-grey: #c7c7c7;
    --text-color-purple: #6d63ff;
    --text-color-purple-dark: #27217d;

    /*colors*/
    --white: #fff;
    --black: #000;
    --light-bg: #f0f0f0;
    --green: #32dd8a;
    --primary: #32dd8a;
    --primary-dark: #157347;
    --red: #FD6969;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body{
    background-color: #000;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #fff;
}

body{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Ensure all sections and main extend to full content width */
section, main, footer {
    min-width: 100%;
}

h1, h2, h3{
    font-family: "Anton";
    margin-top: 0;
}

h1{
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}

.green-mark::after {
    content: "";
    display: block;
    margin-top: 10px;
    width: 50px;
    height: 1px;
    border-bottom: 5px solid var(--primary);
}

.subtitle{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 100px;
}


.container{
    margin: auto;
    width: 1300px;
    max-width: calc(100vw - 20px);
}

.form-container{
    width: 500px;
}

.narrow-container{
    width: 1000px;
}

.mv{
    margin: 60px 0px;
}

.pv{
    padding: 40px 0px;
}

.row{
    width: 100%;
    display: flex;
    gap: 20px;

}

.col-6{
    width: 50%;
}

.col-4{
    width: 33.33333%;
}

.col-3{
    width: 25%;
}

.col-2{
    width: 16.6666665%;
}

@media (max-width: 992px){

    .container{
        margin: 0px 3vw;
    }

    h1{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .mv{
        margin: 30px 0px;
    }

    .pv{
        padding: 20px 0px;
    }

    .row{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .col-6, .col-4, .col-3, .col-2{
        width: 100%;
    }
}


@media (max-width: 640px){
    .row{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}


ul {
    padding: 0;
    margin: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

.section-content{
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
}

.html-content ul li{
    margin-left: 40px;
}

.html-content img{
    max-width: 100%;
    height: auto !important;
}

.html-content iframe{
    max-width: 100%;
}

.html-content video{
    max-width: 100%;
}

.html-content table{
    max-width: 100%;
    border-color: silver;
}

.html-content table td{
    border-color: silver;
    border-width: 1px;
    padding: 5px;
}

p span{
  font-size: 16px !important;
  line-height: 24px !important;
  background: none !important;
}


/* FORMS */
.form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-done{
    margin: auto;
    max-width: 600px;
}

.form h1{
    text-align: center;
}

.form-group{
    width: 240px;
}

.form-group:not(:last-child){
    margin-bottom: 20px;
}

.form-label{
    margin-bottom: 5px;
    font-size: 14px;
}

.form-input input[type=text], input[type=password], input[type=email], select, textarea{
    background: rgba(255,255,255);
    outline: none;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.form-input input[type=text], input[type=password], input[type=email], select{
    height: 30px;
    padding: 5px;
}

.form-input textarea{
    height: 100px;
    padding: 10px;
}

.form .btn{
    width: 100%;
}

.form a{
    color: #fff;
    text-decoration: underline;
}

.form a:hover{
    color: #fff;
    text-decoration: none;
}

.form-errors{
    color: red;
    text-align: center;
    margin-bottom: 20px;
}

.form-success{
    background: var(--primary);
    color: #fff;
    padding: 10px;
    margin-bottom: 20px;
}



/* BUTTONS */
.btn{
    display: inline-block;
    cursor: pointer;
    height: 32px;
    line-height: 30px;
    font-size: 16px;
    border-radius: 5px;
    padding: 0px 15px;
    border: none;
    white-space: nowrap;
    color: #000;
    font-weight: 800;
    text-align: center;
}

.btn.btn-small{
    height: 48px;
    line-height: 46px
}


.btn-red{
    background: #eb2315;
    color: #fff;
}

.btn-red:hover, .btn.btn-red:active{
    opacity: 0.8;
}

.btn-disabled{
    opacity: 0.5;
    background: gray;
}

.btn-primary{
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    background-color: var(--primary) !important;
    color: #000;
}

.btn-primary:hover, .btn-primary:active{
    background-color: var(--primary-dark);
    color: #000;
    opacity: 0.8;
    border-color: transparent;
}

.btn-primary:active:focus{
    box-shadow: none;
}

.btn-white{
    background-color: #fff;
    color: #000;
}

.btn-white:hover{
    background-color: var(--primary);
}


.rounded-img{
    border-radius: 10px;
}



/* HEADER */
header {
    height: 90px;
    position: relative;
    min-width: 100%;
}

#header-logo{
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    top: 10px;
    left: 40px;
    height: 70px;
}

#header-logo img {
    height: 70px;
}

#header-nav {
    position: absolute;
    top: 10px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 70px;
}

.nav-link {
    color: #fff;
    font-size: 20px;
}

.nav-link:hover{
    color: #ccc;
    text-decoration: underline;
}

.nav-link:not(:last-child){
    margin-right: 20px;
}


.vm {
    display: none;
}

@media (max-width: 992px){
    .vm {
        display: block;
    }
    .vd {
        display: none;
    }

    header {
        height: 60px;
    }

    #header-logo{
        top: 10px;
        left: 10px;
        gap: 10px;
    }

    #header-logo img{
        height: 40px;
    }

    #header-nav {
        top: 10px;
        right: 10px;
        height: 40px;
    }

    .nav-link {
        font-size: 13px;
    }

    .nav-link:not(:last-child){
        margin-right: 10px;
    }



}


/* BANNER */
#banner-section{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#banner-video{
    width: calc(100% - 600px);
}

#banner-video video, #banner-video img{
    width: 100%;
    max-height: calc(100vh - 90px);
}

#banner-content {
    width: 600px;
    padding: 60px;
}

h1.banner-title {
    font-size: 65px;
    line-height: 82px;
    font-weight: 500;
    margin-bottom: 40px;
}

.banner-text {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
}

.banner-cta {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-apps a.btn-white{
    margin-right: 20px;
    margin-bottom: 10px;
    height: auto;
    padding: 5px 10px;
    line-height: 20px;
}

.banner-apps a.btn-white img{
    height: 30px;
}

.banner-apps a.btn-white:hover{
    background: #fff;
}

.banner-info{
    max-width: 450px;
    padding-top: 20px;
    font-size: 18px;
    line-height: 22px;
}

.banner-subscription{
    width: 384px;
    max-width: calc(100vw - 30px);
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}

.home-subscription .banner-subscription{
    width: 324px;
    margin-top: 10px;
}

.home-subscription .banner-subscription .btn{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-subscription-title{
    /* padding: 20px;
    background: #111; */
    text-align: center;
    font-size: 20px;
}

.banner-subscription-title s{
    color: gray;
}

.banner-subscription-button .btn{
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    height: 50px;
}

#testimonials .slick-track
{
    display: flex !important;
}

#testimonials .slick-slide
{
    height: inherit !important;
    padding-bottom: 20px;
}

#testimonials .slick-dots{
    bottom: -40px;
}

#testimonials .slick-dots li{
    width: 20px;
    height: 20px;
}

#testimonials .slick-dots li button{
    width: 20px;
    height: 20px;
}

#testimonials .slick-dots li button::before{
    font-size: 20px;
    line-height: 20px;
    color: #fff;
}

#testimonials .slick-dots li.slick-active button::before{
    color: #fff;
}

#testimonials{
    margin-bottom: 40px;
}

.testimonial{
    border-radius: 20px;
    background: #1f1f1f;
    padding: 40px;
    margin: 20px;
    height: 100%;
}

.testimonial:hover{
    background: #424242;
}

.testimonial-header{
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.testimonial-pic img{
    width: 150px;
    border-radius: 50%;
}

.testimonial-name{
    font-size: 30px;
    font-weight: bold;
}

.testimonial-position{
    margin-bottom: 10px;
}

.testimonial-position span{
    display: inline-block;
    border-radius: 2rem;
    padding: .25rem .75rem;
    padding-bottom: .40rem;
    background: var(--primary);
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}

.testimonial-stars{
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-stars img{
    height: 20px;
}

.testimonial-description{
    margin-top: 40px;
}

.testimonial-title{
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.testimonial-text{
    font-size: 16px;
    line-height: 26px;
}


@media (max-width: 1200px){

    #banner-section{
        flex-direction: column;
    }

    #banner-section #banner-video{
        width: 100%;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #banner-section #banner-content{
        width: 100%;
        padding: 20px;
    }

    .testimonial{
        padding: 20px;
        margin: 10px;
    }
}

@media (max-width: 992px){
    .testimonial-header{
        flex-direction: column;
    }

    h1.banner-title {
        font-size: 40px;
        line-height: 50px;
    }

    .testimonial-description{
        margin-top: 0px;
    }
}

@media (max-width:640px){
    .banner-apps a.btn-white{
        margin-right: 5px;
    }

    .testimonial-pic img{
        width: 100px;
    }

    #testimonials .slick-dots{
        bottom: -60px;
    }
}

.program{
    width: 100%;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.program:nth-child(even) .program-image{
    order: 2;
}

.program-image{
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 50%;
}

.program-content{
    width: 50%;
    padding: 40px;
}

.program-title{
    font-weight: bold;
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 40px;
}

.program-goal{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);

}

.program-duration{
    font-weight: bold;
    margin-top: 30px;
    font-size: 20px;
}


@media (max-width:991px){

    .subtitle{
        margin-bottom: 40px;
    }

    .program{
        flex-direction: column;
        gap: 0px;
        margin-bottom: 40px;
    }

    .program-image{
        width: 100%;
        order: 2;
    }

    .program-content{
        width: 100%;
        padding: 0px;
        order: 1;
    }

}

@media (max-width:460px){

}






/* FOOTER */
footer{
    font-size: 14px;
    margin-top: 100px;
}

.footer-logo img{
    height: 100px;
}

.footer-link{
    margin-bottom: 10px;
}

footer a{
    color: #fff;
}

footer a:hover{
    color: #ccc;
    text-decoration: underline;
}

.footer-title{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

footer .green-mark::after {
    margin-top: 0px;
    margin-bottom: 20px;
}

.mobile-app{
    margin-bottom: 10px;
}

.mobile-app a{
    display: inline-block;
    width: 180px;
    height: 45px;
    border: 1px solid gray;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #f8f9fa;
    background-size: auto 35px;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (max-width: 640px){
    footer{
        text-align: center;
    }

    footer .green-mark::after {
        margin: auto;
        margin-bottom: 20px;
    }

    .footer-logo img{
        max-width: 80%;
    }
}


/* POPUP */
body.popup, body.content-popup{
    height: 100vh;
    overflow-y: hidden;
}

body.popup #shadow, body.content-popup #content-shadow{
    display: block;
}



#shadow, #content-shadow{
    display: none;
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    padding-top: 10vh;
    overflow-y: auto;
    padding: 5px;
    padding-top: 60px;
    padding-bottom: 80px;
}

#popup{
    margin: auto;
    width: 1200px;
    max-width: calc(100% - 10px);
    color: #000;
}

#popup video{
    width: 100%;
}

#content-popup{
    display: none;
    margin: auto;
    width: 1200px;
    max-width: calc(100% - 10px);
    color: #000;
    background: #fff;
    padding: 20px 40px;
    font-size: 16px;
    line-height: 20px;
}

#content-popup p:not(:last-child){
    margin-bottom: 6px;
}

body.content-popup #content-popup{
    display: block;
}

.popup-close{
    position: absolute;
    top: -30px;
    right: 0px;
    cursor: pointer;
    background: #ccc;
    color: #000;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.popup-close img{
    width: 30px;
    height: 30px;
}

body.popup-interactive #popup{
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
}

#popup iframe.interactive{
    width: 100%;
    height: calc((100vw - 100px) * 0.55);
    max-height: calc(100vh - 100px);
    border-radius: 10px;
}


body.body-calculator #calculator-shadow{
    display: flex;
    align-items: center;
    justify-content: center;;
}

#calculator-shadow{
    display: none;
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    padding-top: 10vh;
    overflow-y: auto;
    padding: 5px;
    padding-top: 60px;
    padding-bottom: 80px;
}

#calculator-popup{
    width: 300px;
    border: 2px solid #fff;
}

.payments-container{
    width: 400px;
    max-width: 100%;
    overflow: auto;
}

@media screen and (min-width: 991px){
    .payments-container{
        max-height: 400px;
    }
}


.payments{
    border-collapse:collapse;
    width: 400px;
}

.payments th, .payments td{
    padding: 10px;
    text-align: left;
}

.payments tr:nth-child(odd) td{
    background: #454343;
}

.payments tr:nth-child(even) td{
    background: #5c5b5b;
}

@media screen and (min-width: 1200px){

    body.popup-interactive #popup{
        width: 90vw;
        max-width: 90vw;
    }

    #popup iframe.interactive{
        width: 90vw;
        height: calc(90vw * 0.55);
        max-height: calc(100vh - 100px);
        border-radius: 10px;
    }
}

.cookies-footer #cookies{
    display: block;
}

#cookies{
    display: none;
    position: fixed;
    color: #fff;
    z-index: 10;
    bottom: 0px;
    left: 0px;
    width: 100vw;
    padding: 20px 0px;
    background-color: rgba(0,0,0,0.8);
}

.cookies-content{
    display: flex;
    align-items: center;
    width: 100%;
}

.cookies-text{
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding-right: 20px;
}

.cookies-button{
    text-align: right;
}

.cookies-text a{
   font-weight: bold;
}

.cookies-button{
    text-align: right;
    white-space: nowrap;
}



/* Cookie Popup */

#popup-cookies{
    display: none;
    position: relative;
}

.popup-cookies #popup-cookies{
    display: block;
    background: #fff;
}

.cookies-consent-tabs
{
    display: flex;
    margin: auto;
    justify-content: center;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-top: 10px;
}

.cookies-consent-tab{
    width: 200px;
    max-width: 33%;
    text-align: center;
}

.cookies-consent-tab-title{
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    height: 46px;
    line-height: 46px;
    cursor: pointer;
}

.cookies-consent-tab.active{
    color: var(--primary);
}

.cookies-consent-tab.active .cookies-consent-tab-title::after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0px;
    height: 2px;
    background: var(--primary);
}

.cookies-consent-tab-content{
    display: none;
}

.cookies-consent-tab-content.active{
    display: block;
    padding: 20px;
}

.cookies-consent-buttons{
    display: flex;
    gap: 10px;
    padding: 10px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.cookies-consent-buttons a{
    width: 33%;
}

#cookies-consent-info{
    margin-top: 20px;
    display: flex;
    gap: 20px;
    width: 100%;
}

#cookies-consent-info-cookies{
    width: 40%;
}

#cookies-consent-info-details{
    padding: 10px;
    border-radius: 10px;
    background: #f2f2f2;
    width: 60%;
}

#cookies-consent-date{
    margin-bottom: 10px;
}

#cookies-consent-hash{
    margin-bottom: 10px;
    word-break: break-all;
}

#cookies-consent-info-details a{
    color: #eb2315;
}

#cookies-consent-info-details a:hover{
    text-decoration: underline;
}

.cookies-consent-category{
    padding: 20px 0px;
}

.cookies-consent-category:not(:last-child){
    border-bottom: 1px solid #ccc;
}


.cookies-consent-category-top{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.cookies-consent-category-top-title{
    font-weight: 700;
    font-size: 20px;
}

.cookies-consent-category-text{
    font-size: 16px;
    line-height: 22px;
    padding-top: 20px;
}

.cookies-consent-category-top-switch .switch-button-background:not(.checked){
    background: #eb2315;
}

.cookies-consent-category-check{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.cookies-consent-category-check::before{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon-close.png);
    background-size: contain;
    background-position: center;
}

.cookies-consent-category-check.active::before{
    background-image: url(../img/icon-check-green.svg);
    background-size: contain;
}

#cookies-settings{
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: #333;
    background-image: url(../img/icon-gdpr.svg);
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
    z-index: 1;
    position: fixed;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
}

#cookies-settings:hover{
    opacity: 0.8;
}

body.cookies-footer #cookies-settings{
    display: none;
}

.CookieDeclarationTable th{
    padding: 5px;
}

.CookieDeclarationTable td{
    padding: 5px;
    border-top: 1px solid #ccc;
}

@media (max-width: 991px){
    .cookies-content{
        flex-direction: column;
        text-align: center;
    }

    .cookies-text{
        padding-right: 0px;
        padding-bottom: 20px;
    }

    .cookies-button{
        text-align: center;
    }
}

@media (max-width: 640px){
    #cookies-consent-info{
        flex-direction: column;
    }
    #cookies-consent-info-cookies{
        width: 100%;
    }
    #cookies-consent-info-details{
        width: 100%;
    }
    .cookies-consent-buttons{
        flex-direction: column;
    }
    .cookies-consent-buttons a{
        width: 100%;
    }
}


@media (prefers-color-scheme: dark) {
    .banner-apps .btn-white {
        background-color: #fff !important;
    }

    .btn-primary, .btn-primary:hover, .btn-primary:active{
        color: #000 !important;
    }
}
