﻿@media screen and (max-width:1023px) {
    .mobile-only {
        display: block;
    }

    .mobile-hidden {
        display: none !important;
    }

    .desktop-only {
        display: none;
    }

    .desktop-hidden {
        display: block !important;
    }
    .myButton.mobile-only {
        display: inline-block;
    }
}

@media screen and (min-width:1024px) {
    .desktop-only {
        display: block;
    }

    .desktop-hidden {
        display: none !important;
    }

    .mobile-hidden {
        display: block !important;
    }

    .mobile-only {
        display: none;
    }
}

/*********************************/
/*       Background Video        */
/*********************************/
#video_container {
    object-fit: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 35rem;
}

#video_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(6px);
    -webkit-filter: blur(6px);
    background: url(/images/landing/abstract.png) no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 35rem;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    min-height: 35rem;
}

video {
    clip-path: inset(1px 1px);
}
    video:focus {
        outline: none;
    }

img:focus {
    outline: none;
}

/************* END RESPONSIVENESS ***************/

.reference {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}


/*********************************/
/*            Header             */
/*********************************/

.header {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    background-color: var(--header-bg-color);
    color: var(--header-text-color);
    overflow: hidden;
    opacity: 1;
    border-bottom: 1px solid var(--lines-color);
    box-shadow: 0 6px 15px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 6px 15px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 6px 15px 0px rgba(0, 0, 0, 0.2);
    transition: all 1s;
    z-index: 999;
}

.nobackground {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    color: var(--header-text-color);
}

.logo {
    margin: 0 0 0 30px;
    cursor: pointer;
    z-index: 99999;
}

@media screen and (max-width:450px) {
    .logo {
        height: 30px !important;
    }
}

.navi {
    display: flex;
    flex-direction: row;
    padding-left: 40px;
    text-align: center;
}

.nav-item {
    color: var(--header-text-color);
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 10px;
    text-decoration: none;
    outline: none;
    padding: 5px 0;
    cursor: pointer;
}

    .nav-item:hover {
        border-bottom: 5px solid var(--brand-color);
    }

.accedi {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: 30px;
}


.menu-button {
    margin-left: auto;
    margin-right: 27px;
    font-size: 24px;
    padding: 0 5px;
    cursor: pointer;
    /*border: 1px solid var(--header-text-color);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;*/
    z-index: 999;
}

    .menu-button.white {
        /*border: 1px solid #fff;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;*/
        color: #fff;
    }

.layer {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0));
    /*z-index: 1;*/
}

#bgvid {
    /*width: 100%;
    height: 100%;*/
}

video {
    display: block;
}

    video#bgvid {
        position: absolute;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        
        z-index: 0;
        background-size: cover;
        background-position: center;
    }

/******************** CHECKBOX **********************/


.option {
    display: flex;
    flex-direction: row;
    height: auto;
    margin: 0 0 0 25px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-top: 5px;
    padding-left: 35px;
    margin: 5px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--main-text-color);
}

    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkbox-container.inactive {
        border: none;
        color: var(--lines-color) !important;
    }
           

.checkmark {
    position: absolute;
    top: -5px;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid var(--main-text-color);
    border-radius: 4px;
}
    .checkmark.inactive {
        border: 1px solid var(--lines-color) !important;
    }
   
.checkbox-container:hover input ~ .checkmark {
    /*border: 1px solid var(--main-text-color);*/
}

.checkbox-container input:checked ~ .checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--main-text-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-container.inactive .checkmark:after {
    border: none;
    border-width: 0;
}

.checkmark.white, .checkbox-container.white .checkmark:after {
    color: #FFF !important;
    border-color: #FFF;
}


/***************** DROPDOWN MENU *******************/

/*#dropdown-menu {
    display: none;
}

.dropdown {
    display: block;
    min-width: 230px;
    min-height: 36px;
    z-index: 999;
}

div.dropdown {
    display: flex;
    flex-direction: column;
    background-color: var(--header-bg-color);
    right: 20px;
    top: 70px;
    width: 230px;
    padding: 10px;
    position: fixed;
    height: auto;
    text-align: left;
    z-index: 9998;
    border: 1px solid var(--lines-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

div.arrow {
    background-color: var(--header-bg-color);
    position: fixed;
    right: 32px;
    top: 60px;
    width: 20px;
    height: 20px;
    border-top: 1px solid var(--lines-color);
    border-right: 1px solid var(--lines-color);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); 
    transform: rotate(-45deg);
    z-index: 9999;
}

.dropdown-menu-item {
    display: flex;
    flex-direction: row;
    padding: 4px 0 5px 0;
    margin: 5px;
    min-width: 210px;
    background-color: transparent;
    color: var(--header-text-color);
    border-bottom: 2px solid var(--header-bg-color);
}

    .dropdown-menu-item:hover {
        background-color: var(--brand-color);
        color: var(--reverse-text-color);
    }

a.dropdown {
    text-decoration: none;
    display: block;
}

.dropdown-menu-icon {
    display: block;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    font-size: 19px;
    width: 30px;
}

.dropdown-menu-text {
    display: block;
    align-items: center;
    text-align: left;
    font-size: 19px;
}*/


/*@media screen and (max-width:768px) {*/
    .close-button {
        position: relative;
        width: 100%;
        text-align: right;
        font-size: 24px;
        padding: 0;
        cursor: pointer;
        /*border: 1px solid var(--header-text-color);
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;*/
        background-color: transparent;
        color: var(--header-text-color);
        z-index: 100000;
    }

    #dropdown-menu {
      display: none;
    } 

    .dropdown {
        display: block;
        /*min-width: 230px;*/
        /*min-height: 36px;*/
        z-index: 999;
    }

    div.dropdown {
        position: fixed;
        display: flex;
        flex-direction: column;
        overflow-y: scroll;
        background-color: var(--header-bg-color);
        color: var(--header-text-color);
        left: 0px;
        top: 0px;
        width: calc(100vw - 80px);
        height: auto;
        min-height: 100vh;
        padding: 30px 40px 0 40px;
        text-align: left;
        z-index: 9998;
        border: none;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }

    div.arrow {
        display: none;
    }

    .dropdown-menu-item {
        display: flex;
        flex-direction: row;
        padding: 9px 0 10px 0;
        padding-left: 0;
        padding-right: 0;
        padding-top: 1vh;
        padding-bottom: 1vh;
        margin: 5px;
        /*min-width: 210px;*/
        background-color: transparent;
        color: var(--header-text-color);
        border-bottom: 1px solid var(--lines-color);
        font-family: var(--landing-font);
    }

        .dropdown-menu-item:hover {
            /*background-color: var(--brand-color);
            color: var(--reverse-text-color);*/
            font-weight: 600;
        }

    a.dropdown {
        text-decoration: none;
        display: block;
    }

.dropdown-menu-icon {
    display: block;
    align-items: center;
    text-align: center;
    padding: 0 10px 0 0;
    font-size: 19px;
    font-size: 2.5vh;
    width: 30px;
}

    .dropdown-menu-text {
        display: block;
        align-items: center;
        text-align: left;
        font-size: 19px;
        font-size: 3vh;
    }


/*}*/



/*************** MAIN ****************/

.main-section, .main-section-auto {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 90vh;
    z-index: 2;
    overflow: hidden;
    background-color: #333;
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
}

.abstract-background {
    margin: 0;
    padding: 0;
    background-image: url(/images/landing/abstract.png);
    border: none;
}

.curve-background {
    margin: 0;
    padding: 0;
    background-image: url(/images/landing/bg.png);
    background-color: #FFFFFF;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
}


/***************** ROWS *********************/

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: auto;
}

.row-centered {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
    height: 100%;
    text-align: left;
    font-family: var(--std-font);
    font-size: 20px;
    line-height: 24px;
}

@media screen and (max-width:1023px), screen and (max-width:1024px) and (orientation:portrait) {
    .main-section-auto {
        width: 100%;
        height: 100%;
        min-height: 100vh;
    }

    .row-centered {
        display: flex;
        align-self: center;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        width: 100%;
    }

}

@media screen and (max-width:768px) and (orientation:landscape) {
    .main-section {
        width: 100%;
        height: 100%;
        min-height: 812px;
    }
}

/*************** homepage *****************/
.distance-top-down {
    padding-bottom: 60px !important;
    padding-top: 60px !important;
}

.main-section1-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    margin: 0;
    padding: 0;
}

.section1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 60px 0 0 0;
    padding: 0px 0px;
    border: none;
    background-color: #fff;
}

.section1-container {
    width: 50%;
    height: auto;
    max-height: 700px;
    margin-right: 0px;
}

.section1-over-payoff {
    padding: 0px 0;
    font-family: var(--landing-font);
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: #00aade;
}

.section1-payoff {
    margin-right: 40px;
    padding: 10px 0 40px 0;
    font-family: var(--landing-font);
    font-size: 5vh;
    font-weight: 800;
    color: #03254C;
    line-height: 5.7vh;
}

.myvideos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 50%;
    height: auto;
    background-color: transparent;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    border: none;
    outline: none;
    padding: 10px;
}

.text-inside {
    position: relative;
    text-align: left;
    font-family: var(--std-font);
    color: var(--main-text-color);
    font-size: 4.7vh;
    font-weight: 800;
    line-height: 5.7vh;
    max-width: 670px;
    height: auto;
    margin: 0 30px;
    z-index: 3;
}

.sub-payoff {
    font-family: var(--std-font);
    font-weight: 500;
    font-size: 2.3vh;
    line-height: normal;
    /*font-size: 24px;
    line-height: 30px;*/
    text-align: left;
    margin-bottom: 0px;
    letter-spacing: unset;
}

.text-inside.boxed {
    position: relative;
    background-color: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 4px;
    font-size: 2.6vh;
    max-width: 450px;
    color: #222;
}

h1 {
    font-family: var(--std-font);
    font-weight: 600;
    /*font-size: 2.5vw;
    line-height: 3.0vw;*/
    font-size: 40px;
    line-height: 42px;
    text-align: left;
    letter-spacing: 1px;
    margin: 0;
}

h2 {
    font-family: var(--std-font);
    font-weight: 600;
    font-size: 3.5vh;
    line-height: normal;
    text-align: left;
    margin: 0;
}


.more {
    display: inline-block;
    margin: 0;
    animation-duration: 2s;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: auto;
    padding: 0px;
    bottom: 15px;
    background: transparent;
    font-size: 3vh;
    font-weight: 400;
    text-align: center;
    color: #fff;
    z-index: 99;
    cursor: pointer;
    outline: none;
}
    .more.gray {
        color: #666;
    }

    .more a {
        color: #fff;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
    }

    .more.gray a {
        color: #666;
    }

    .more > .description {
        font-family: var(--std-font);
        font-size: 14px;
        width: 100%;
    }

.line {
    width: 50%;
    height: 6px;
    background-color: var(--std-button-color);
    margin: 15px 0 20px 0;
    border-radius: 5px;
}

.video-section {
    background-color: whitesmoke;
    padding: 100px 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.video-description {
    /*text-align: left;
    font-family: var(--std-font);
    color: var(--main-text-color);
    font-size: 2.7vh;
    font-weight: 300;
    line-height: 3.7vh;
    width: 35vw;
    max-width: 500px;
    height: auto;
    margin: 0 40px 0 0;*/
    text-align: left;
    font-family: var(--std-font);
    color: var(--main-text-color);
    font-size: 2vh;
    font-weight: 500;
    line-height: 2.8vh;
    width: calc(100% - 80px);
    height: auto;
    min-height: 30vh;
    padding: 40px;
}

.video-card {
    position: relative;
    display: block;
    margin: 30px 15px;
    width: calc(30% - 30px);
    /*min-height: 22vh;*/
    background: #fff;
    border-radius: 6px;
    box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
}

.video-Tutorial {
    margin: 0;
    width: 100%;
    height: calc(100% * 0.5625);
    border-radius: 6px 6px 0 0;
    cursor: pointer;
}

.video-container {
    width: calc(40vw - 10px);
}

.video-box {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:1024px) and (orientation:portrait) {
    .main-section1-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 80%;
        margin: 0;
        padding: 0;
        height: auto;
    }

    .section1-container {
        width: 80%;
        max-height: 600px;
        margin-right: 0px;
    }

    .section1-payoff {
        margin-right: 0px;
        padding: 30px 0;
        font-family: var(--landing-font);
        font-size: 5vw;
        font-weight: 800;
        color: #03254C;
        line-height: 5.5vw;
    }

    .text-inside.boxed {
        background-color: transparent;
        color: #fff;
        max-width: unset;
        margin: 0;
    }

    h1 {
        font-size: 6.4vw;
        line-height: 8vw;
        letter-spacing: unset;
    }

    .sub-payoff {
        font-size: 2.5vh;
        line-height: 3.5vh;
    }

    .video-section {
        width: calc(100vw - 40px);
        padding: 20px;
        height: auto;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .video-description {
        width: calc(100vw - 60px);
        max-width: 500px;
        margin: 30px;
        height: auto;
    }

    .video-container {
        width: calc(100vw - 60px);
        max-width: 500px;
        margin: 0 0 30px 0;
    }
}

@media screen and (max-width:1024px) and (orientation: portrait) {
    .text-inside {
        width: auto;
        margin-top: 20px;
    }
        .text-inside.boxed {
            background-color: transparent;
            color: #fff;
            max-width: unset;
            margin: 0;
        }
}

@media screen and (max-width:767px) and (orientation: portrait) {
    .main-section1-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: calc(100% - 80px);
        margin: 0;
        padding: 40px;
    }

    .section1-container {
        width: 100%;
        height: auto;
        max-height: 700px;
        margin-right: 0px;
    }

    .section1-over-payoff {
        padding: 0px 0;
        font-family: var(--landing-font);
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
        color: #00aade;
    }
    .section1-payoff {
        padding: 30px 0;
        font-family: var(--landing-font);
        font-size: 4vh;
        font-weight: 800;
        color: #03254C;
        line-height: 5vh;
    }

    .text-inside {
        width: calc(100% - 80px);
        margin: 0 40px;
    }
        .text-inside.boxed {
            background-color: transparent;
            color: #fff;
            max-width: unset;
            margin: 0;
        }
}

@media screen and (min-width:1024px) and (max-width:1366px) and (orientation: landscape) {
    h1 {
        font-size: 3.5vh;
        line-height: 5vh;
        letter-spacing: unset;
    }
    .text-inside.boxed {
        background-color: transparent;
        color: #fff;
        max-width: unset;
        margin: 0;
    }
}

@media screen and (max-width:1023px) and (orientation: landscape) {
    h1 {
        font-size: 6vh;
        line-height: 7vh;
        letter-spacing: 1px;
    }
    .text-inside.boxed {
        background-color: transparent;
        color: #fff;
        max-width: unset;
        margin: 0;
    }

    .sub-payoff {
        font-size: 3.5vh;
        line-height: 4.5vh;
    }

    .line {
        margin: 10px 0 20px 0;
    }

    .text-inside {
        margin: 40px 0 0 0;
    }

    .video-section {
        width: calc(100vw - 40px);
        padding: 20px;
        height: auto;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .video-description {
        width: calc(100vw - 60px);
        max-width: 50vw;
        margin: 30px;
        height: auto;
    }

    .video-container {
        width: calc(100vw - 120px);
        max-width: 50vw;
        margin: 20px;
    }
}


/******************** Grafico vantaggi fiscali ****************/

.graph {
    min-height: 300px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    z-index: 20;
}

    .graph#ipad-dashboard {
        padding: 0;
        margin: 0 0 50px 0;
        width: 40vw;
        height: calc(40vw * 0.95);
        background-image: url(/images/ipad-dashboard.png);
    }

    .graph#laptop-dashboard {
        width: 50vw;
        height: calc(50vw * 0.66);
        margin: 60px 0 30px 20px;
        background-image: url(/images/laptop.png);
    }

    .graph#brand-illustration img {
        width: auto;
        height: 60vh;
        margin: 0 0 10px 30px;
    }

    .graph#benefits img {
        width: auto;
        height: 55vh;
        margin: 60px 0 0 30px;
    }

@media screen and (max-width:1024px) and (orientation: portrait) {
    .graph#benefits img {
        width: 50vw;
        height: auto;
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width:767px) and (orientation: portrait) {
      .graph#benefits img {
        width: calc(100% - 100px);
        height: auto;
        margin: 0 0 20px 0;
    }
}

@media screen and (min-width:1025px) and (max-width:1366px) and (orientation: landscape) {
    .graph#benefits img {
        width: 35vw;
        height: calc(35vw * 0.95);
        margin: 60px 0 0 30px;
    }

    .graph#brand-illustration img {
        width: auto;
        height: 45vh;
        margin: 0 0 0 30px;
    }
}

@media screen and (max-width:1023px) and (orientation: landscape) {
    .graph#benefits img {
        width: 35vw;
        height: calc(35vw * 0.95);
        margin: 0 0 30px 0;
    }
}



/****************************/
/*   FORM RICHIESTA INFO    */
/****************************/


.inline-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 120px 30px;
    height: auto;
    overflow: hidden;
    font-family: var(--landing-font);
    font-size: 16px;
    font-weight: 500;
}

.form-title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    font-family: var(--landing-font);
    color: #03254C;
}

.form-subtitle {
    font-family: var(--landing-font);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #03254C;
    max-width: 560px;
}

.form-container {
    width: 350px;
    padding: 30px 30px;
    height: auto;
    background: white;
    border-radius: 6px;
}

.form-claim-container {
    margin-right: 100px;
    font-family: var(--landing-font);
    font-size: 16px;
    font-weight: 400;
    color: #03254C;
}

.form-icon {
    width: 120px;
}

@media screen and (max-width:1024px) {
    .inline-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 0px 30px 0px;
        height: auto;
    }

    .form-claim-container {
        margin: 30px;
        font-size: min(3.2vw, 16px);
        width: calc(100% - 60px);
        max-width: 450px;
    }

    .form-icon {
        width: 80px;
        margin-bottom: 20px;
    }

    .form-container {
        width: calc(100% - 120px);
        max-width: 390px;
        margin: 30px;
        padding: 30px;
        height: auto;
        background: white;
        border-radius: 6px;
    }

    .form-title {
        font-size: min(8.5vw, 33px);
        text-align: center;
    }

    .form-subtitle {
        font-size: min(3.6vw, 18px);
        max-width: unset;
    }
}

/*********************************/
/*            Footer             */
/*********************************/

.footer-background {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: space-around;
    background: var(--footer-bg-color);
    color: var(--footer-text-color);
    width: calc(100% - 60px);
    padding: 40px 30px;
    flex: 0 0 auto;
    text-decoration: none;
    outline: none;
    line-height: 22px;
    font-family: var(--std-font);
    font-size: 14px;
    letter-spacing: 1px;
}


    .footer-background a {
        background: transparent;
        color: var(--footer-text-color);
        text-decoration: none;
        outline: none;
    }

.social {
    background-color: transparent;
    color: var(--footer-text-color);
    text-decoration: none;
    outline: none;
    font-size: 30px;
    margin: 0 10px 0 0;
}

/*********************** Embedded video ***********************/

.embedded-video {
    position: relative;
    top: calc(50vw * 54 /1400);
    left: calc(50vw * 185 / 1400);
    width: calc(50vw * 1025 / 1400);
    height: calc(50vw * 1025 / 1400 * 0.5625);
    overflow: hidden;
    border: 3px solid #eaeaea;
    border-radius: 3px;
}

.iphone-container {
    margin-top: 120px;
}

.iphone {
    width: 50vw;
    height: calc(50vw * 0.5);
    overflow: hidden;
    background-image: url(/images/iphone.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    z-index: 20;
}

.handwriting {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 100px 0 20px;
    text-align: center;
    width: calc(53% - 120px);
    height: 120px;
    background-image: url(/images/arrow.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 120px;
    font-family: var(--handwriting-font);
    font-weight: 400;
    font-size: 1.9vw;
    line-height: 2vw;
}

@media screen and (max-width:1023px) {
    .embedded-video {
        position: relative;
        top: calc(90vw * 54 /1400);
        left: calc(90vw * 185 / 1400);
        width: calc(90vw * 1025 / 1400);
        height: calc(90vw * 1025 / 1400 * 0.5625);
        overflow: hidden;
        border: 3px solid #eaeaea;
        border-radius: 3px;
    }

    .iphone-container {
        margin: 0;
    }

    .iphone {
        width: 90vw;
        height: calc(90vw * 0.5);
        overflow: hidden;
        background-image: url(/images/iphone.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top left;
        z-index: 20;
    }

    .handwriting {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 100px 0 20px;
        text-align: center;
        width: calc(50% - 120px);
        height: 120px;
        background-image: url(/images/arrow.png);
        background-repeat: no-repeat;
        background-position: right;
        background-size: 120px;
        font-family: var(--handwriting-font);
        font-weight: 400;
        font-size: 3vw;
        line-height: 4vw;
    }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
    .handwriting {
        width: calc(90% - 120px);
        justify-content: center;
        font-size: 3vh;
        line-height: 4vh;
    }
}

/*********************************/
/*         icone benefici        */
/*********************************/
.benefici-container {
    width: 100%;
    background-color: #EEF6FE;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 0;
    text-align: center;
}

.item-benefici {
    /*display: flex;
    flex-direction: column;
    align-self: flex-start;
    width: calc(20% - 40px);
    height: auto;
    min-width: 200px;
    margin: 25px;
    text-align: justify;
    font-family: var(--landing-font);
    font-weight: 400;
    font-size: 0.8vw;
    line-height: 1.2vw;
    align-items: center;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 230px;
    height: 330px;
    margin: 20px;
    padding: 0 30px;
    border: 1px solid var(--lines-color);
    border-radius: 6px;
    background: #ffffff;
    color: #333;
    text-align: center;
    font-family: var(--landing-font);
    font-size: 16px;
    font-weight: 300;
}

.item-benefici-icon {
    width: 60px;
    height: 60px;
    margin: 30px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    color: rgba(255,255,255,0.9);
    /*display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    color: #fff;
    border-radius: 50%;
    margin: 10px 0;
    padding: 5px;
    background-position: center;
    background-size: 64px;
    background-repeat: no-repeat;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);*/
}

.item-benefici-title {
    font-family: var(--landing-font);
    font-weight: 700;
    font-size: 17px;
    margin: 0px 0 15px 0;
    text-align: center;
}

.item-services-icon {
    height: 100px;
}

@media screen and (max-width:1023px) and (orientation: portrait) {
    .item-benefici {
        width: calc(40% - 60px);
        min-width: 240px;
        margin: 20px 30px;
        font-size: 1.5vh;
        line-height: 2.0vh;
        align-self: flex-start;
    }

    .item-benefici-title {
        font-size: 2.2vh;
        line-height: 2.5vh;
    }
}

@media screen and (max-width:1023px) and (orientation: landscape) {
    .item-benefici {
        width: calc(50% - 60px);
        height: auto;
        min-width: 240px;
        min-height: 320px;
        margin: 30px;
        font-size: 1.8vw;
        line-height: 2.3vw;
        align-self: flex-start;
    }

    .item-benefici-title {
        font-size: 2.5vw;
        line-height: 3vw;
    }
}

@media screen and (max-width:768px) and (orientation: portrait) {
    .item-benefici {
        width: calc(40% - 60px);
        min-width: 240px;
        margin: 20px 30px;
        font-size: 16px;
        line-height: 20px;
        align-self: flex-start;
    }

    .item-benefici-title {
        font-size: 20px;
        line-height: 25px;
    }
}


/***************************************************************/
/*                         MEDIA QUERY                         */
/***************************************************************/

@media screen and (max-width:1024px) {
    .fixedsize {
        width: calc(100% - 40px) !important;
        max-width: 300px !important;
        margin: 5px 0 !important;
        padding: 10px 0;
        letter-spacing: 2px;
    }
}


/*********************** Tre colonne **************************/
.treColonne {
    /*Numero di colonne*/
    column-count: 3;
    /* Distanza tra le colonne*/
    column-gap: 40px;
    /*Stile per il bordo delle colonne*/
    column-rule: 0px solid #666;
    /*Amplifica il supporto alle vecchie versioni di Firefox e Chrome/Safari */
    -moz-column-count: 3;
    -moz-column-gap: 40px;
    -moz-column-rule: 0px solid #666;
    -webkit-column-count: 3;
    -webkit-column-gap: 40px;
    -webkit-column-rule: 0px solid #666;
    margin: 90px;
    text-align: justify;
    font-family: var(--text-font);
    font-size: 1.3rem;
    line-height: 2rem;
}

.treColonneTitle {
    text-align: center;
    font-family: var(--std-font);
    font-weight: 500;
    font-size: 37px;
    line-height: 37px;
    color: #333;
    padding: 20px 0 0 0;
}

.treColonneSubTitle {
    text-align: justify;
    font-family: var(--std-font);
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 10px;
}

@media screen and (max-width:768px) {
    .treColonne {
        column-count: 2;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        margin: 45px;
    }
}

@media screen and (max-width:767px) {
    .treColonne {
        column-count: 1;
        -moz-column-count: 1;
        -webkit-column-count: 1;
        margin: 45px;
    }
}



/*************************************/
/*      terms command conditions     */
/*************************************/


.max960 {
    margin: 0;
    text-align: justify;
    width: 80%;
    max-width: 960px;
    font-family: var(--text-font);
    font-size: 2vh;
    font-weight: 300;
}

.terms-title1 {
    color: var(--brand-color);
    font-family: var(--std-font);
    font-size: 4vh;
    line-height: 4.5vh;
    font-weight: 500;
    text-align: center;
    margin: 120px 0 40px 0;
}

    .terms-title1 .sub {
        margin-top: 10px;
        color: var(--brand-color);
        font-family: var(--std-font);
        font-size: 2vh;
    }

.terms-title2 {
    text-transform: uppercase;
    color: var(--brand-color);
    font-size: 2vh;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}


/********************* SLIDER BAR **************************/

.optionTitle {
    color: var(--main-text-color);
    font-family: var(--std-font);
    font-weight: 500;
    font-size: 18px;
    margin: 15px 0 5px 0;
    text-align: center;
}

.counter {
    font-family: var(--text-font);
    font-weight: 500;
    font-size: 30px;
    width: 90px;
    min-width: 90px;
    /*height: 100px;*/
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0px 10px;
    text-align: center;
}


input[type='range'] {
    -webkit-appearance: none;
    width: 250px;
    height: 35px;
    background-color: transparent;
    outline: none;
}

    input[type='range']::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 5px;
        background: var(--bg-slider);
        outline: none;
        /*box-shadow: inset 1px 1px 1px rgba(000,000,000,0.10);*/
        height: 8px;
        vertical-align: middle;
        border: none;
        cursor: pointer;
    }

    input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
        border-radius: 100%;
        background-color: #00aade;
        /*box-shadow: inset 0 0 0 4px #CCC, inset 0 0 4px #CCC, inset 0 0 0 4px #CCC;*/
        height: 22px;
        width: 22px;
        vertical-align: middle;
        border: none;
        cursor: pointer;
        margin-top: -6px;
    }

        input[type='range']::-webkit-slider-thumb:hover {
            background: #00d7de;
        }

    input[type='range']:active::-webkit-slider-thumb {
        background: #00d7de;
    }

    input[type='range']::-moz-range-track {
        -moz-appearance: none;
        border-radius: 5px;
        /*box-shadow: inset 1px 1px 1px rgba(000,000,000,0.10);*/
        background-color: var(--bg-slider);
        height: 8px;
        vertical-align: middle;
        margin: 0;
        padding: 0;
        border: none;
        cursor: pointer;
    }

    input[type='range']::-moz-range-thumb {
        -moz-appearance: none;
        border-radius: 100%;
        background-color: #00aade;
        /*box-shadow: inset 0 0 0 4px #CCC, inset 0 0 4px #CCC, inset 0 0 0 4px #CCC;*/
        height: 22px;
        width: 22px;
        vertical-align: middle;
        border: none;
        cursor: pointer;
        margin-top: -6px;
    }

        input[type='range']::-moz-range-thumb:hover {
            background: #00d7de;
        }

    input[type='range']:active::-moz-range-thumb {
        background: #00d7de;
    }

input[type=range]::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    /*border-width: 39px 0;*/
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #bbb;
    /*border: 0px solid #000101;*/
    border-radius: 5px;
    /*box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;*/
}

input[type=range]::-ms-fill-upper {
    background: #ddd;
    /*border: 0px solid #000101;*/
    border-radius: 5px;
    /*box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;*/
}

input[type=range]::-ms-thumb {
    /*box-shadow: inset 0 0 0 4px #CCC, inset 0 0 4px #CCC, inset 0 0 0 4px #CCC;*/
    /*border: 0px solid #000000;*/
    height: 22px;
    width: 22px;
    border-radius: 100%;
    background: #00aade;
    cursor: pointer;
    margin-top: -2px;
}

/********************  INPUT CONTROLS *********************/

.input-label {
    font-family: var(--text-font);
    font-size: 14px;
    line-height: 16px;
    height: 16px;
}

.inputbox {
    display: block;
    width: calc(100% - 12px);
    height: 26px;
    background-color: #fff;
    color: var(--main-text-color);
    border: 1px solid var(--gray-text-color);
    border-radius: 4px;
    text-align: left;
    text-decoration: none;
    margin: 5px 5px 10px 0px;
    padding: 5px 5px 5px 5px;
    font-family: var(--text-font);
    font-size: 16px;
}

    .inputbox:focus {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        border: 1px solid var(--brand-color);
        margin: 5px 0px 10px 0px;
        border-radius: 4px;
    }

.error {
    display: block;
    background-color: var(--bg-error) !important;
    border: 1px solid var(--error) !important;
    border-radius: 4px;
}

.error-yellow {
    display: block;
    background-color: rgba(250, 206, 38, 0.8) !important;
    border-radius: 4px;
}

.upcase {
    text-transform: uppercase;
}

/************************* RADIO BUTTON GROUP *****************************/

.stv-radio-buttons-wrapper {
    clear: both;
    display: inline-block;
    box-sizing: border-box;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

.stv-radio-button {
    position: absolute;
    left: -9999em;
    top: -9999em;
    box-sizing: inherit;
}

    .stv-radio-button + label {
        box-sizing: inherit;
        float: left;
        padding: 6px 0;
        cursor: pointer;
        border: 1px solid #fff;
        margin-right: -1px;
        background-color: #fff;
        color: #777 ;
        width: 140px;
        height: 38px;
        min-width: 140px;
        font-weight: 500;
    }

        .stv-radio-button + label:first-of-type {
            border-radius: 4px 0 0 4px;
        }

        .stv-radio-button + label:last-of-type {
            border-radius: 0 4px 4px 0;
        }

    .stv-radio-button:checked + label {
        color: #333;
        background-color: #face26;
        border: 1px solid #face26;
    }



/********************************  FAQ  **************************************/

.accordion {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-family: var(--std-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    white-space:  pre-wrap;
}

    .accordion.active, .accordion:hover {
        color: #00aade;
    }

    .accordion:after {
        content: "\f105";
        font-family: "Font Awesome 6 Pro";
        font-size: 20px;
        color: #777;
        float: right;
        margin-left: 20px;
        text-align: right;
    }

    .accordion.active:after {
        content: "\f107";
    }

.faqPanel {
    color: var(--main-text-color);
    font-family: var(--text-font);
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    padding: 0 10px 0 0px;
    background-color: transparent;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #ccc;
}

    .faqPanel.noborder {
        border-bottom: none;
    }

@media screen and (max-width : 768px) {
    .accordion {
        font-family: var(--condensed-font);
        font-size: 20px;
        font-weight: 600;
        line-height: 20px;
    }
}
    /***************************************************/

    .row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        width: 100%;
        height: auto;
    }

    .centered {
        width: 100%;
        justify-content: center !important;
    }

    @media screen and (max-width : 760px) {
        .framebody {
            width: 100%;
            /*flex-direction: column;
        overflow: auto;
        -webkit-overflow-scrolling: touch;*/
            max-width: calc(100% - 40px);
        }

        .row {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            width: 100%;
            /*padding: 0 20px;*/
        }

        .centered {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-content: center;
            width: 100%;
        }
    }

    .dashed {
        margin-left: 40px;
        margin-top: 20px;
        margin-bottom: 20px;
        list-style-type: square;
    }

    /******************** countodown ************************/

    .countdown {
        color: #FFF;
        text-align: center;
        text-transform: uppercase;
        font-family: Barlow, sans-serif;
        font-size: 20px;
        letter-spacing: 5px;
        margin: 40px 30px;
    }

    .days, .hours, .minutes, .seconds {
        display: inline-block;
        padding: 20px;
        margin: 10px;
        width: 120px;
        border-radius: 10px;
    }

    .days {
        background: #D87200;
    }

    .hours {
        background: #FF3E41;
    }

    .minutes {
        background: #FFB20C;
    }

    .seconds {
        background: #2186FF;
    }

    .c-number {
        /*font-family: Barlow, sans-serif;
    color: #333;
    font-size: 48px;*/
        font-family: Barlow, sans-serif;
        color: #fff;
        font-size: 48px;
        font-weight: 600;
    }

    /******************** small countodown ************************/

    .countdown-v2 {
        color: #FFF;
        text-align: center;
        text-transform: uppercase;
        font-family: Barlow, sans-serif;
        font-size: clamp(1.3vh, 12px, 1.2vw);
        letter-spacing: 0px;
        margin: 4px;
    }

    .days-v2, .hours-v2, .minutes-v2, .seconds-v2 {
        display: inline-block;
        padding: 5px;
        margin: 5px;
        width: 40px;
        color: #fff;
    }


    .c-number-v2 {
        font-family: Dosis;
        color: #00aade;
        font-size: clamp(0.9rem, 1vw + 1rem, 2.2rem);
        line-height: clamp(0.9rem, 1vw + 1rem, 2.2rem);
        font-weight: 600;
    }

    /****************** form box ******************/

    .formBackground {
        background-color: var(--brand-color);
        background-image: var(--gradient06);
    }

    /****************** adv box *********************/

    .advbox {
        position: relative;
        align-self: center;
        width: 480px;
        height: 600px;
        background-color: rgba(0,0,0,0.9);
        background-image: url(/images/landing/blackfriday2020-01.png);
        background-position-x: center;
        background-position-y: top;
        background-size: cover;
        background-repeat: no-repeat;
        border: 1px solid #fff;
        z-index: 999;
        box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
    }

    @media screen and (max-width : 760px) {
        .advbox {
            border: none;
            background-color: transparent;
            background-size: contain;
            background-repeat: no-repeat;
            width: 100vw;
            max-width: 480px;
            height: min(100vw * 600 / 480, 480px);
        }
    }



    /***************** WhatsApp *********************/
    .whatsapp {
        position: fixed;
        z-index: 10000;
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        background-color: transparent;
        background-image: url(/images/whatsapp.png);
        background-size: cover;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .withshadow {
        box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.3);
    }

    .backgroundPicture {
        position: relative;
        align-self: center;
        width: 435px;
        height: 600px;
        /*background-color: rgba(0,0,0,0.9);*/
        background-position-x: center;
        background-position-y: top;
        background-size: contain;
        background-repeat: no-repeat;
        border-radius: 6px;
        margin: 120px 15px 10px 15px;
        z-index: 999;
        box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
    }

        .backgroundPicture.small {
            width: 377px;
            height: 520px;
        }

    @media screen and (max-width : 760px) {
        .backgroundPicture {
            border: none;
            background-color: transparent;
            background-size: contain;
            background-repeat: no-repeat;
            width: 100vw;
            max-width: 435px;
            height: min(100vw * 600 / 435, 435px);
        }
    }

    .marked {
        display: inline;
        background: linear-gradient(180deg, hsla(0,0%,100%,0) 70%, #83ffce 0);
    }

    .clientReview-card {
        position: relative;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        text-align: center;
        width: 250px;
        min-width: 250px;
        height: 360px;
        min-height: 360px;
        background-color: #fff;
        border-radius: 6px;
        margin: 10px 30px;
        padding: 25px;
        box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
    }

    .clientReview-photo {
        position: relative;
        display: block;
        align-content: center;
        margin-bottom: 25px;
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        background-color: #bcd8ed;
        border-radius: 100%;
        /*border: 1px solid #0094ff;*/
        overflow: hidden;
        box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.2);
    }

    .clientReview-statement {
        text-align: justify;
        font-family: var(--landing-font);
        font-size: 14px;
        font-weight: 300;
        color: #444;
    }

    .clientReview-signature {
        position: absolute;
        font-size: 15px;
        bottom: 25px;
        text-align: center;
        width: 100%;
        font-family: var(--landing-font);
    }
