body{
    font-family: 'SF Pro Display';
    margin: 0px;
    padding: 0px;
    background: #F3F6F5;
}
html.no-scroll, body.no-scroll{
    overflow: hidden;
    height: 100%;
}
ul{
    padding: 0px;
    margin: 0px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: unset;
    cursor: pointer;
}
h1, h2, h3, h4, h5, p{
    margin: 0px;
}
input, button, textarea, select{
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    font-family: 'SF Pro Display';
}
.center{
    width: 90%;
    max-width: 1110px;
    height: auto;
    margin: 0 auto;
}
.center-min{
    width: 90%;
    max-width: 920px;
    height: auto;
    margin: 0 auto;
}
@media screen and (max-width: 1050px){
    .center, .center-min{
        width: calc(100% - 32px);
        height: auto;
    }
}

/* HEADER */
header{
    width: 100%;
    height: 95px;
    float: left;
    background: #02100B;
    position: fixed;
    z-index: 1000005;
}
.header__row{
    width: 100%;
    height: 95px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}
.header__item{
    width: fit-content;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
.header__item:first-child{
    display: none;
}
.header__item:first-child.active{
    display: block;
}
.header__item-bar{
    width: 21px;
    height: 18px;
    background-image: url("../images/icon/bar.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.header__item-bar.active{
    background-image: url("../images/icon/close.svg");
}
.header__item-logo{
    width: fit-content;
    height: auto;
    float: left;
}
.header__item-logo img{
    width: 132.972px;
    height: 38.527px;
    float: left;
    object-fit: contain;
    object-position: center;
}
.header__item ul{
    width: fit-content;
    height: auto;
    float: left;
}
.header__item ul > li{
    width: fit-content;
    height: auto;
    float: left;
    margin: 0 0 0 39px;
}
.header__item ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.header__item__priceTablo{
    width: 140px;
    height: auto;
    float: right;
    border-radius: 10px;
    background: linear-gradient(244.36deg, #24674E 33.79%, #093D29 90.28%);
    padding: 4px 0 7px;
    margin: 0 0 0 62px;
    display: none;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.header__item__priceTablo.active{
    display: flex;
}
.header__item__priceTablo-withoutDiscount{
    width: fit-content;
    height: auto;
    float: left;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.header__item__priceTablo-withoutDiscount span{
    width: fit-content;
    height: auto;
}
.header__item__priceTablo-withoutDiscount span > sup{
    color: #FFF;
    font-size: 7px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.65;
}
.header__item__priceTablo-withoutDiscount span > b{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: line-through;
    opacity: 0.65;
}
.header__item__priceTablo-withDiscount{
    width: fit-content;
    height: auto;
    float: left;
}
.header__item__priceTablo-withDiscount sup{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header__item__priceTablo-withDiscount b{
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
@media screen and (max-width: 1050px){
    header{
        height: 45.701px;
    }
    .header__row{
        height: 45.701px;
    }
    .header__item{
        width: 33.3%;
    }
    .header__item:first-child{
        display: block;
    }
    .header__item:last-child{
        justify-content: right;
    }
    .header__item-logo{
        margin: 0 auto;
    }
    .header__item-logo img{
        width: 58.521px;
        height: 16.75px;
    }
    .header__item ul {
        width: 100%;
        height: auto;
        float: left;
        position: absolute;
        left: 0;
        top: -400%;
        background: #03100b;
        padding: 0 16px 16px;
        box-sizing: border-box;
        transition: .4s;
        opacity: 0;
        z-index: -1;
    }
    .header__item ul.active{
        transition: .4s;
        top: 45px;
        opacity: 1;
    }
    .header__item ul > li{
        width: 100%;
        height: auto;
        float: left;
        margin: 15px 0 0 0;
    }
    .header__item ul > li > a {
        font-size: 18px;
        line-height: 21px;
    }
    .header__item__priceTablo{
        width: fit-content;
        height: 28px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-content: center;
        border-radius: 4px;
        opacity: 1;
        background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
        padding: 0 5.8px;
        margin: 0;
        float: right;
    }
    .header__item__priceTablo-withoutDiscount{
        display: none;
    }
    .header__item__priceTablo-withDiscount{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-content: center;
    }
    .header__item__priceTablo-withDiscount b{
        font-size: 18px;
        margin: 0 0 0 2px;
    }
}
/* HEADER */

/* MAIN */
.main{
    width: 100%;
    height: auto;
    float: left;
    padding: 41px 0 69px;
    margin: 95px 0 0 0;
    background-image: url("../images/background/main.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.main__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    letter-spacing: 1px;
}
.main__item-title br{
    display: none;
}
.main__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.56px;
    margin: 21px 0 0 0;
}
.main__item-stepTitle{
    width: 100%;
    height: auto;
    float: left;
    color: #21C98A;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    margin: 37px 0 0 0;
}
.main__stepNumber{
    width: 360px;
    height: 59px;
    border-radius: 10px;
    margin: 12px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main__stepNumber__box{
    width: 120px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-content: center;
    align-items: center;
    transition: .4s;
    position: relative;
}
.main__stepNumber__box:nth-child(1){
    border-radius: 10px 0px 0px 10px;
    border: 1px solid #3E5049;
    transition: .4s;
}
.main__stepNumber__box:nth-child(2){
    border-radius: 0;
    border-top: 1px solid #3E5049;
    border-right: 1px solid #3E5049;
    border-bottom: 1px solid #3E5049;
    transition: .4s;
}
.main__stepNumber__box:nth-child(3){
    border-radius: 0;
    border-top: 1px solid #3E5049;
    border-right: 1px solid #3E5049;
    border-bottom: 1px solid #3E5049;
    border-radius: 0 10px 10px 0;
    transition: .4s;
}
.main__stepNumber__box p{
    width: 100%;
    height: auto;
    float: left;
    color: #3E5049;
    font-size: 37px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
}
.main__stepNumber__box.active{
    background: linear-gradient(180deg, #081E15 0%, #164230 50.52%, #081E15 100%);
    border-color: rgba(17, 107, 73, 1) !important;
    cursor: pointer;
    transition: .4s;
}
.main__stepNumber__box:nth-child(2).active::before, .main__stepNumber__box:nth-child(3).active::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(17, 107, 73, 1) !important;
    left: -1px;
    top: 0;
}
.main__stepNumber__box.active p{
    color: #21C98A;
    font-weight: 700;
}
@media screen and (max-width: 1050px){
    .main{
        padding: 40.3px 0 37px;
        margin: 45.7px 0 0 0;
    }
    .main__item-title{
        font-size: 37px;
    }
    .main__item-title br{
        display: block;
    }
    .main__item-description {
        font-size: 21px;
        margin: 12px 0 0 0;
    }
    .main__item-stepTitle {
        font-size: 18px;
        margin: 21px 0 0 0;
    }
    .main__stepNumber {
        width: 247px;
        height: 44px;
        border-radius: 9px;
        margin: 9px auto 0;
    }
    .main__stepNumber__box{
        width: 82.3px;
        height: 100%;
        box-sizing: border-box;
        display: flex;
        align-content: center;
        align-items: center;
        transition: .4s;
    }
    .main__stepNumber__box:nth-child(1){
        border-radius: 9px 0px 0px 9px;
        border: 1px solid #3E5049;
        transition: .4s;
    }
    .main__stepNumber__box:nth-child(2){
        border-radius: 0;
        border-top: 1px solid #3E5049;
        border-right: 1px solid #3E5049;
        border-bottom: 1px solid #3E5049;
        transition: .4s;
    }
    .main__stepNumber__box:nth-child(3){
        border-radius: 0;
        border-top: 1px solid #3E5049;
        border-right: 1px solid #3E5049;
        border-bottom: 1px solid #3E5049;
        border-radius: 0 9px 9px 0;
        transition: .4s;
    }
    .main__stepNumber__box p{
        font-size: 25.386px;
    }
}
/* MAIN */

/* QUIZ */
.quiz{
    width: 100%;
    height: auto;
    float: left;
    padding: 50px 0 159px;
}
.quiz__row{
    width: 100%;
    height: auto;
    float: left;
}
.quiz__item{
    width: 100%;
    height: auto;
    float: left;
    display: none;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.quiz__item[data-id="1"]{
    display: flex;
}

.quiz__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    text-align: center;
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quiz__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.42px;
    text-align: center;
    margin: 16px 0 0 0;
}
.quiz__item-description .mob-br{
    display: none;
}
.quiz__item-description .pc-br{
    display: block;
}
.quiz__item-back{
    width: fit-content;
    height: auto;
    color: rgba(0, 0, 0, 0.36);
    font-size: 16px;
    font-style: normal;
    font-family: 'Aktiv Grotesk Corp';
    font-weight: 500;
    line-height: normal;
    margin: 37px auto 0;
    position: relative;
    padding: 0 0 0 16px;
    cursor: pointer;
}
.quiz__item-back::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 7px;
    background-image: url("../images/icon/back.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 5.5px;
}
.quiz__item__personal{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 37px 43px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    margin: 37px 0 0 0;
}
.quiz__item__personal-item{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 21.5px;
}
.quiz__item__personal-item input{
    width: 100%;
    height: 76px;
    float: left;
    display: block;
    color: #000;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.42px;
    background: transparent;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
    padding: 25px 25px 26px;
    box-sizing: border-box;
    transition: .4s;
}
.quiz__item__personal-item input.error{
    border-color: rgba(169, 25, 13, 0.5);
    transition: .4s;
}
.quiz__item__personal-item input.error + label{
    color: rgba(169, 25, 13, 0.5);
    transition: .4s;
}
.quiz__item__personal-item input:focus{
    /*border-color: blue;*/
}
.quiz__item__personal-item label{
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 23px;
    left: 31.55px;
    color: rgba(0, 0, 0, 0.50);
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.42px;
    padding: 26px 0;
    transition: all .3s ease;
    padding: 0 5px;
    transition: .4s;
}
.quiz__item__personal-item input:focus + label,
.quiz__item__personal-item input:valid + label{
    top: -10px;
    left: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: #fff;
}
.quiz__item__personal-item input:focus + label{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: #fff;
}
.quiz__item__personal-button{
    width: fit-content;
    height: auto;
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    padding: 26px 149px 25px;
    border-radius: 10px;
    margin: 15.5px auto 0;
    cursor: pointer;
    border-bottom: 3.5px solid #04140E;
}
.quiz__item__personal-button span{
    width: fit-content;
    height: auto;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-family: 'Aktiv Grotesk Corp';
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.42px;
    padding: 0 18px 0 0;
    position: relative;
}
.quiz__item__personal-button span::after{
    content: "";
    position: absolute;
    right: 0;
    top: 5.4px;
    width: 9px;
    height: 15.545px;
    background-image: url("../images/icon/next.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.quiz__item__calligrapher{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 37px 0 0 0;
    align-content: flex-start;
    align-items: flex-start;
}
.quiz__item__calligrapher__item{
    width: calc(33.3% - 20px);
    height: auto;
    border-radius: 9px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    padding: 13px 15px 23px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    cursor: pointer;
    transition: .4s;
    position: relative;
}
.quiz__item__calligrapher__item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 9px;
    transition: .4s;
}
.quiz__item__calligrapher__item::after{
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-color: #fff;
    border-radius: 5px;
}
.quiz__item__calligrapher__item.active::before{
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    transition: .4s;
}
.quiz__item__calligrapher__item-popular{
    width: 100%;
    height: auto;
    float: left;
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    border-radius: 6px;
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    padding: 6px 0;
    position: relative;
    z-index: 1005;
}
.quiz__item__calligrapher__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 21px 0 0 0;
    position: relative;
    z-index: 1005;
}
.quiz__item__calligrapher__item-price{
    width: fit-content;
    height: auto;
    float: left;
    text-align: center;
    margin: 2px 0 0 0;
    position: relative;
    z-index: 1005;
}
.quiz__item__calligrapher__item-price sup{
    color: #0D6947;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: absolute;
    top: 6px;
    left: -15px;
}
.quiz__item__calligrapher__item-price span{
    color: #0D6947;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.quiz__item__calligrapher__item-description{
    width: calc(100% - 24px);
    height: auto;
    float: left;
    padding: 21px 0 0 25px;
    margin: 16px 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    color: #000;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.42px;
    text-align: left;
    position: relative;
    z-index: 1005;
}
.quiz__item__calligrapher__item-description .mob-br{
    display: none;
}
.quiz__item__calligrapher__item-description::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 19px;
    height: 19px;
    background-image: url("../images/icon/check.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.quiz__item__calligrapher__item-time{
    width: 100%;
    height: 29px;
    float: left;
    border-radius: 4px;
    border: 2px solid #174C38;
    background: #FFF;
    margin: 28px 0 0 0;
    padding: 5px 8px 5px 6px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    z-index: 1005;
}
.quiz__item__calligrapher__item-time.min::before{
    content: "";
    position: absolute;
    width: 116px;
    height: 19px;
    border-radius: 2px;
    background: #578F0F;
    left: 4px;
    top: 2;
}
.quiz__item__calligrapher__item-time.medium::before{
    content: "";
    position: absolute;
    width: 92px;
    height: 19px;    
    border-radius: 2px;
    background: #BC8314;
    left: 4px;
    top: 2;
}
.quiz__item__calligrapher__item-time.max::before{
    content: "";
    position: absolute;
    width: 23px;
    height: 19px;    
    border-radius: 2px;
    background: #8F0F0F;
    left: 4px;
    top: 2;
}
.quiz__item__calligrapher__item-time span{
    color: #000;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.quiz__item__extra{
    width: 100%;
    height: auto;
    float: left;
    padding: 67px 0 50px;
}
.quiz__item__extra-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 37px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin: 0 0 13px;
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quiz__item__extra__item{
    width: 100%;
    height: auto;
    float: left;
    margin: 21px 0 0 0;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    padding: 34px 55px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.quiz__item__extra__item-poster{
    width: 100%;
    height: auto;
    float: left;
    margin: -40px 0 28px 0;
    display: block;
}
.quiz__item__extra__item-poster.mobile{
    display: none;
}
.quiz__item__extra__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}
.quiz__item__extra__item-title br{
    display: none;
}
.quiz__item__extra__item-desription{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 6px 0 0 0;
}
.quiz__item__extra__item-desription br{
    display: none;
}
.quiz__item__extra__item-desription .pc-br{
    display: block;
}
.quiz__item__extra__item-more{
    width: fit-content;
    height: auto;
    color: rgba(1, 68, 136, 0.65);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: underline;
    margin: 16px auto 0;
    cursor: pointer;
}
.quiz__item__extra__item__select{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 21px 0 0 0;
}
.quiz__item__extra__item__option{
    width: calc(50% - 11.5px);
    height: 76px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}
.quiz__item__extra__item__option::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 9px;
    transition: .4s;
}
.quiz__item__extra__item__option::after{
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background-color: #fff;
    border-radius: 5px;
}
.quiz__item__extra__item__select.max .quiz__item__extra__item__option{
    width: calc(33.3% - 15.3px);
}
.quiz__item__extra__item__option p{
    color: #000;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.42px;
    position: relative;
    z-index: 10005;
}
.quiz__item__extra__item__option span{
    color: rgba(0, 0, 0, 0.50);
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.42px;
    margin: 0 0 0 4px;
    position: relative;
    z-index: 10005;
}
.quiz__item__extra__item__option em{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 2px 0 0 0;
    position: relative;
    z-index: 10005;
}
.quiz__item__extra__item__option.active{
    border: unset;
}
.quiz__item__extra__item__option.active::before{
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    transition: .4s;
}
.quiz__item__extra__item__option.active p{
    color: #0D6947;
    font-weight: 700;
}
.quiz__item__extra__item__option.active span{
    color: rgba(13, 105, 71, 0.50);
    font-weight: 700;
}
.quiz__item__extra__item__option.active em{
    color: #0D6947;
}
.quiz__item__buttons{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
}
.quiz__item__buttons-button{
    width: 100%;
    max-width: 540px;
    height: 76px;
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    border-bottom: 3px solid #04140E;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-content: center;
    align-items: center;
}
.quiz__item__buttons-button p{
    width: 100%;
    height: auto;
    float: left;
    color: #FFF;
    text-align: center;
    font-family: 'Aktiv Grotesk Corp';
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.42px;
    margin: 4px 0 0;
}
.quiz__item__buttons-button p > b{
    font-weight: 500;
    color: #ffffff;
}
.quiz__item__buttons-button p > span{
    color: #ffffff;
}
.quiz__item__buttons-description{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 16px 0 0 0;
}
.quiz__item__buttons-description a{
    color: #00F;
    text-decoration: underline;
}
.quiz__item__buttons-payMethods{
    width: 349px;
    height: 26.49px;
    margin: 21px auto 0;
    display: block;
}
.quiz__item__buttons-payMethods-mobile{
    display: none;
}
.quiz__item__confirm{
    width: 100%;
    max-width: 730px;
    height: auto;
    float: left;
    margin: 50px 0 0 0;
}
.quiz__item__confirm__row{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 10px;
    background: #FFF;
    padding: 55px 95px 51.5px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.quiz__item__confirm__box{
    width: 100%;
    height: auto;
    float: left;
    margin: 21px 0 0 0;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
}
.quiz__item__confirm__box:nth-child(1){
    box-shadow: unset;
    margin: 0;
    position: relative;
}
.quiz__item__confirm__box:nth-child(2){
    /* overflow: hidden; */
}
.quiz__item__confirm__total{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-end;
    align-content: flex-end;
    margin: 37px 0 0 0;
}
.quiz__item__confirm__total-total{
    color: #000;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 7px;
}
.quiz__item__confirm__total-priceDiscount{
    width: fit-content;
    height: auto;
    margin: 0 0 0 16px;
    position: relative;
}
.quiz__item__confirm__total-priceDiscount sup{
    color: #0D6947;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 7px;
    left: -14px;
}
.quiz__item__confirm__total-priceDiscount span{
    color: #0D6947;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.quiz__item__confirm__total-price{
    width: fit-content;
    height: auto;
    margin: 0 0 4px 21px;
    position: relative;
}
.quiz__item__confirm__total-price sup{
    color: #808080;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    left: -12px;
    top: 5px;
}
.quiz__item__confirm__total-price span{
    color: #808080;
    font-size: 37px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: line-through;
}
.quiz__item__confirm__total-order{
    width: 100%;
    height: 76px;
    float: left;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.42px;
    border-radius: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.quiz__item__confirm__total-order.card{
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    border-bottom: 3px solid #04140E;
    margin: 21px 0 0 0;
}
.quiz__item__confirm__total-order.card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/vectory/cardpay.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 35.387px;
}
.quiz__item__confirm__total-order.apple{
    background: linear-gradient(91deg, #000 0%, #424242 100%), #D9D9D9;
    border-bottom: 3px solid #6A6A6A;
    margin: 12px 0 0 0;
}
.quiz__item__confirm__total-order.apple::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/vectory/applepay.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 35.387px;
}
.quiz__item__confirm__total-order.google{
    background: linear-gradient(91deg, #000 0%, #424242 100%), #D9D9D9;
    border-bottom: 3px solid #6A6A6A;
    margin: 12px 0 0 0;
}
.quiz__item__confirm__total-order.google::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/vectory/googlepay.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 35.387px;
}
.quiz__item__confirm__total-order.paypal{
    background: linear-gradient(91deg, #00318D 0%, #1257D8 100%), #D9D9D9;
    border-bottom: 3px solid #031E51;
    margin: 12px 0 4.5px 0;
}
.quiz__item__confirm__total-order.paypal::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/vectory/paypal.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 35.387px;
}
.quiz__item__confirm__box__selects{
    width: 100%;
    height: auto;
    float: left;
    padding: 28px 32px 30px;
    box-sizing: border-box;
    display: none;
}
.quiz__item__confirm__box-item{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 18px;
}
.quiz__item__confirm__box-item:last-child{
    margin: 0;
}
.quiz__item__confirm__box-item input{
    width: 100%;
    height: 76px;
    float: left;
    display: block;
    color: #000;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.42px;
    background: transparent;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
    padding: 25px 18px 26px;
    box-sizing: border-box;
}
.quiz__item__confirm__box-inpt.error{
    border-color: rgba(169, 25, 13, 0.5);
    transition: .4s;
}
.quiz__item__confirm__box-inpt.error + label {
    color: rgba(169, 25, 13, 0.5);
    transition: .4s;
}
.quiz__item__confirm__box-item label{
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 25px;
    left: 18px;
    color: rgba(0, 0, 0, 0.50);
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.42px;
    padding: 26px 0;
    transition: all .3s ease;
    padding: 0 5px;
}
.quiz__item__confirm__box-item input:focus + label,
.quiz__item__confirm__box-item input:valid + label{
    top: -10px;
    left: 13px;
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: #fff;
}
.quiz__item__confirm__box-item input:focus + label{
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background: #fff;
}
.quiz__item__confirm__box-item-drop{
    width: 100%;
    height: 77px;
    background-color: #ffffff00;
    border-radius: 10px;
    z-index: 10005;
    position: absolute;
    left: 0;
    top: 0px;
}
.quiz__item__confirm__box-item-drop::after{
    content: "";
    position: absolute;
    width: 18px;
    height: 9px;
    right: 16px;
    top: 34px;
    background-image: url("../images/icon/drop-dropdown.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    transition: .4s;
}
.quiz__item__confirm__box-item-drop.active::after{
    transform: rotate(180deg);
    transition: .4s;
}
.quiz__item__confirm__box-item-dropdown{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    margin: 9px 0 0 0;
    overflow: hidden;
    display: none;
    position: absolute;
    z-index: 100005;
    top: 76.5px;
}
.quiz__item__confirm__box-item-dropdown li{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 14.47px 13px 14.53px;
    box-sizing: border-box;
    cursor: pointer;
    transition: .4s;
}
.quiz__item__confirm__box-item-dropdown li.active{
    background: rgba(167, 208, 193, 1);
    transition: .4s;
}
.quiz__item__confirm__box-item-dropdown li > p{
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.quiz__item__confirm__box-item-dropdown li > span{
    color: rgba(0, 0, 0, 0.50);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 0 5px;
}
.quiz__item__personal-button{
    width: 539px;
    height: auto;
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    padding: 26px 0 25px;
    border-radius: 10px;
    margin: 15.5px auto 0;
    cursor: pointer;
    border-bottom: 3.5px solid #04140E;
    display: flex;
    justify-content: center;
}
.quiz__item__personal-button span{
    width: fit-content;
    height: auto;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-family: 'Aktiv Grotesk Corp';
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.42px;
    padding: 0 18px 0 0;
    position: relative;
    
}
.quiz__item__personal-button span::after{
    content: "";
    position: absolute;
    right: 0;
    top: 5.4px;
    width: 9px;
    height: 15.545px;
    background-image: url("../images/icon/next.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.quiz__item__personal-button.viber span{
    -webkit-animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) alternate-reverse both;
	animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) alternate-reverse both;  
}
@-webkit-keyframes shake-horizontal {
    0%,
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-7px);
                transform: translateX(-7px);
    }
    20%,
    40%,
    60% {
        -webkit-transform: translateX(7px);
                transform: translateX(7px);
    }
    80% {
        -webkit-transform: translateX(3px);
                transform: translateX(3px);
    }
    90% {
        -webkit-transform: translateX(-3px);
                transform: translateX(-3px);
    }
}
@keyframes shake-horizontal {
    0%,
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-4px);
                transform: translateX(-4px);
    }
    20%,
    40%,
    60% {
        -webkit-transform: translateX(4px);
                transform: translateX(4px);
    }
    80% {
        -webkit-transform: translateX(2px);
                transform: translateX(2px);
    }
    90% {
        -webkit-transform: translateX(-2px);
                transform: translateX(-2px);
    }
}
.quiz__item__confirm__box-title{
    width: 100%;
    height: 49px;
    float: left;
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 0;
    background: linear-gradient(270deg, #20805C 0%, #093D29 100%);
    padding: 0 29.62px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    align-content: center;
    position: relative;
}
.quiz__item__confirm__box-title.drop{
    cursor: pointer;
    border-radius: 10px;
}
.quiz__item__confirm__box-title.drop::after{
    content: "";
    position: absolute;
    width: 15.545px;
    height: 9px;
    right: 20.45px;
    background-image: url("../images/icon/drop.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: rotate(0deg);
    transition: .4s;
}
.quiz__item__confirm__box-title.drop.active{
    border-radius: 10px 10px 0 0;
}
.quiz__item__confirm__box-title.drop.active::after{
    transform: rotate(180deg);
    transition: .4s;
}
@media screen and (max-width: 1050px){
    .quiz{
        padding: 40px 0 87px;
    }
    .quiz__item-title{
        font-size: 28px;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .quiz__item-description{
        font-size: 18px;
        margin: 12px 0 0 0;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .quiz__item-description .mob-br{
        display: block;
    }
    .quiz__item-description .pc-br{
        display: none;
    }
    .quiz__item__personal{
        border-radius: 7px;
        background: #FFF;
        box-shadow: 0px 4.687318325042725px 9.37463665008545px 0px rgba(0, 0, 0, 0.05);
        padding: 21px 14px 31px;
        margin: 28px 0 0 0;
    }
    .quiz__item-back {
        font-size: 18px;
        margin: 28px auto 0;
        padding: 0 0 0 16px;
    }
    .quiz__item-back::before{
        top: 6.5px;
    }
    .quiz__item__personal-item{
        margin: 0 0 16px;
    }
    .quiz__item__personal-item label {
        top: 26px;
        left: 14px;
        font-size: 18px;
    }
    .quiz__item__personal-item input {
        font-size: 18px;
        padding: 25px 14px 26px;
    }
    .quiz__item__personal-item input:focus + label, .quiz__item__personal-item input:valid + label {
        top: -8px;
        left: 9px;
        font-size: 14px;
    }
    .quiz__item__personal-button{
        width: 100%;
        height: 76px;
        padding: 0;
        border-radius: 9px;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        align-items: center;
        align-content: center;
        margin: 12px auto 0;
    }
    .quiz__item__personal-button span{
        letter-spacing: unset;
    }
    .quiz__item__personal-button span::after{
        top: 4.4px;
    }
    .quiz__item__extra{
        padding: 21px 0 67px;
    }
    .quiz__item__extra__item{
        margin: 16px 0 0 0;
        padding: 21px 15px 28px;
    }
    .quiz__item__extra__item-title{
        font-size: 21px;
    }
    .quiz__item__extra__item-title br{
        display: block;
    }
    .quiz__item__extra__item-desription{
        margin: 9px 0 0 0;
        font-size: 18px;
        letter-spacing: 0.36px;
    }
    .quiz__item__extra__item-desription .pc-br{
        display: none;
    }
    .quiz__item__extra__item-desription br{
        display: block;
    }
    .quiz__item__extra__item__select{
        margin: 9px 0 0 0;
    }
    .quiz__item__extra__item__option{
        width: 100% !important;
        margin: 12px 0 0;
        border: unset;
    }
    .quiz__item__extra__item__option p{
        font-size: 18px;
        transition: 0s;
    }
    .quiz__item__extra__item__option span{
        font-size: 18px;
        transition: 0s;
    }
    .quiz__item__extra__item__option em{
        transition: 0s;
    }
    .quiz__item__extra__item__option::before{
        border: 1px solid rgba(0, 0, 0, 0.50);
        box-sizing: border-box;
        background: #fff;
        transition: 0s;
    }
    .quiz__item__extra__item__option.active::before,.quiz__item__extra__item__option.active::after {
        border: unset;
        background: #0D6947;
        transition: 0s;
    }
    .quiz__item__extra__item__option.active p{
        color: #FFF;
        transition: 0s;
    }
    .quiz__item__extra__item__option.active span{
        color: rgba(255, 255, 255, 0.50);
        transition: 0s;
    }
    .quiz__item__extra__item__option.active em{
        color: #FFF;
        transition: 0s;
    }
    .quiz__item__extra__item-more {
        color: #00F;
        font-size: 18px;
        margin: 16px auto 0;
    }
    .quiz__item__extra-title{
        font-size: 28px;
        margin: 0 0 5px;
    }
    .quiz__item__buttons{
        padding: 0 16px;
        box-sizing: border-box;
    }
    .quiz__item__buttons-button p{
        font-size: 18px;
    }
    .quiz__item__buttons-description{
        font-size: 18px;
    }
    .quiz__item[data-id="1"] .quiz__item__buttons-description{
        font-size: 15px;
    }
    .quiz__item__buttons-payMethods{
        display: none;
    }
    .quiz__item__buttons-payMethods-mobile{
        width: 271px;
        height: auto;
        display: block;
        margin: 37px auto 0;
    }
    .quiz__item__calligrapher__item{
        width: 100% !important;
        margin: 0 0 16px;
        padding: 21px 20px 28px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .quiz__item__calligrapher__item::after {
        left: 4px;
        top: 4px;
        width: calc(100% - 8px);
        height: calc(100% - 8px);
    }
    .quiz__item__calligrapher__item-popular {
        width: 100%;
        height: 39px;
        border-radius: 4px;
        padding: 0;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 16px;
    }
    .quiz__item__calligrapher__item-description {
        width: 100%;
        height: auto;
        float: left;
        padding: 17px 0 0 25px;
        margin: 9px 0 0 0;
        font-size: 18px;
        line-height: normal;
        letter-spacing: normal;
    }
    .quiz__item__calligrapher__item-description .mob-br{
        display: block;
    }
    .quiz__item__calligrapher__item-description::before {
        left: 0;
        top: 19px;
    }
    .quiz__item__calligrapher__item-time {
        margin: 17px 0 0 0;
    }
    .quiz__item__calligrapher__item-title {
        width: fit-content;
        height: 50px;
        float: left;
        color: #000;
        text-align: left;
        font-size: 21px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin: 0;
        display: flex;
        align-content: center;
        align-items: center;
    }
    .quiz__item__calligrapher__item-price {
        width: fit-content;
        height: 50px;
        float: left;
        text-align: center;
        margin: 0;
        position: relative;
        display: flex;
        align-content: center;
        align-items: center;
    }
    .quiz__item__calligrapher__item-price span {
        width: fit-content;
        color: #0D6947;
        font-size: 37px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .quiz__item__calligrapher__item-price sup {
        color: #0D6947;
        font-size: 21px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        position: absolute;
        top: 3px;
        left: -17px;
    }
    .quiz__item__extra__item-poster {
        width: 100%;
        height: 192px;
        float: left;
        margin: -5px 0 21px 0;
        display: none;
        object-fit: cover;
        object-position: center;
        border-radius: 9px;
    }
    .quiz__item__extra__item-poster.mobile{
        display: block;
    }
    .quiz__item[data-id="3"]{
        padding: 0 18px 0;
        box-sizing: border-box;
        background: #F3F6F5;
    }
    .quiz__item__confirm{
        margin: 37px 0 0 0;
    }
    .quiz__item__confirm__row{
        padding: 0;
        box-shadow: unset;
        background: unset;
    }
    .quiz__item__confirm__box-title {
        height: 48px;
        font-size: 18px;
        padding: 13px 16px;
    }
    .quiz__item__confirm__box-title.drop::after{
        right: 15px;
    }
    .quiz__item__confirm__box{
        margin: 16px 0 0 0;
        box-shadow: unset;
        box-shadow: 0px 4.691775798797607px 9.383551597595215px 0px rgba(0, 0, 0, 0.10);
        border-radius: 7px;
    }
    .quiz__item__confirm__box-title.drop{
        border-radius: 7px;
    }
    .quiz__item__confirm__box-title.drop.active{
        border-radius: 10px 10px 0 0;
    }
    .quiz__item__confirm__box:nth-child(1){
        box-shadow: 0px 4.687318325042725px 9.37463665008545px 0px rgba(0, 0, 0, 0.05);
        padding: 26px 14px 28px;
        box-sizing: border-box;
    }
    .quiz__item__confirm__box-item label {
        top: 26px;
        left: 14px;
        font-size: 18px;
    }
    .quiz__item__confirm__box-item input {
        font-size: 18px;
        padding: 25px 14px 26px;
    }
    .quiz__item__confirm__box-item input:focus + label, .quiz__item__confirm__box-item input:valid + label {
        top: -8px;
        left: 9px;
        font-size: 14px;
    }
    .quiz__item__confirm__total{
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        border-radius: 0px 0px 7.038px 7.038px;
        background: unset;
        box-shadow: unset;
        margin: 37px 0 0 0;
        position: relative;
    }
    .quiz__item__confirm__total-order{
        margin: 12px 0 0 0;
        background: linear-gradient(270deg, #3AC993 0%, #196649 100%);
        border: unset;
        border-radius: 7.038px;
    }
    .quiz__item__confirm__total-total{
        font-size: 18px;
    }
    .quiz__item__confirm__total-priceDiscount{
        margin: 0 0 0 24px;
    }
    .quiz__item__confirm__total-priceDiscount sup{
        font-size: 18px;
        top: 4px;
        left: -13px;
    }
    .quiz__item__confirm__total-priceDiscount span{
        font-size: 37px;
    }
    .quiz__item__confirm__total-price span{
        font-size: 21px;
        color: #000;
    }
    .quiz__item__confirm__total-price sup{
        left: -9px;
        top: 1px;
        color: #000;
    }
    .quiz__item__confirm__total-price{
        margin: 0 0 4px 20px;
    }
    .quiz__item__confirm__box__selects{
        padding: 21px 14px 22px;
    }
    .quiz__item__confirm__box-item-drop{
        border-radius: 9px;
    }
    .quiz__item__confirm__box-item-drop::after{
        right: 13px;
    }
}
@media screen and (max-width: 330px){
    .quiz__item-description br{
        display: none;
    }
    .quiz__item-description .mob-br{
        display: none;
    }
    .quiz__item__calligrapher__item-description .mob-br{
        display: none;
    }
    .quiz__item__calligrapher__item-time span {
        font-size: 11px;
    }
    .quiz__item__extra__item-title br {
        display: none;
    }
    .quiz__item__extra__item-desription br{
        display: none;
    }
    .quiz__item__buttons-description br{
        display: none;
    }
    .quiz__item__confirm__total-total {
        font-size: 17px;
        margin: 0 0 5px;
    }
    .quiz__item__confirm__total-priceDiscount span {
        font-size: 30px;
    }
}
/* QUIZ */

/* FOOTER */
footer{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0 34px;
}
.footer__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding: 10px 0 0 0;
}
.footer__item{
    width: 33.3%;
    height: auto;
}
.footer__item-copyright{
    width: fit-content;
    height: auto;
    float: left;
    color: rgba(0, 0, 0, 0.65);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.footer__item-copyright br{
    display: none;
}
.footer__item__network{
    width: fit-content;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}
.footer__item__network a{
    width: fit-content;
    height: auto;
    margin: 0 7.5px;
}
.footer__item__network a > img{
    width: 20px;
    height: 20px;
    object-fit: fill;
    object-position: center;
}
.footer__item ul{
    width: fit-content;
    height: auto;
    float: right;
}
.footer__item ul > li{
    width: fit-content;
    height: auto;
    float: left;
    margin: 0 0 0 20px;
}
.footer__item ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    color: rgba(1, 68, 136, 0.65);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: underline;
}

@media screen and (max-width: 1050px){
    footer{
        padding: 0 0 82px;
    }
    .footer__row{
        padding: 0;
    }
    .footer__item{
        width: 100%;
        margin: 21px 0 0 0;
    }
    .footer__item-copyright {
        width: 100%;
        font-size: 16px;
        text-align: center;
    }
    .footer__item-copyright br{
        display: block;
    }
    .footer__item__network a {
        margin: 0 22px;
    }
    .footer__item ul {
        width: 100%;
        height: auto;
        float: unset;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer__item ul > li{
        margin: 0;
    }
    .footer__item ul > li > a{
        font-size: 16px;
    }
}
/* FOOTER */

/* MODAL */
.modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000005;
    display: none;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.modal__row{
    width: 100%;
    max-width: 518px;
    height: auto;
    float: left;
    border-radius: 10px;
    background: linear-gradient(0deg, #F3F6F5 0%, #F3F6F5 100%), #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.modal__row.max{
    max-width: 670px;
}
.modal__item{
    width: 100%;
    height: auto;
    float: left;
    padding: 21px 30px 28px 22px;
    box-sizing: border-box;
    position: relative;
}
.modal__item-close{
    width: 36px;
    height: 36px;
    border-radius: 0px 10px;
    background: linear-gradient(0deg, #0D6947 0%, #0D6947 100%), #FFF;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
.modal__item-close::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/icon/close.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}
.modal__item-title{
    width: 100%;
    height: auto;
    float: left;
    color: #0D6947;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.42px;
    text-align: left;
}
.modal__item-description{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.36px;
    margin: 6px 0 0 0;
}
.modal__box{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 11px 10px 14px;
    box-sizing: border-box;
}
.modal__box-title{
    width: 100%;
    height: auto;
    float: left;
    color: #0D6947;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}
.modal__box-description{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.36px;
    margin: 6px 0 0 0;
    text-align: left;
}
.modal__box__carousel{
    width: 100%;
    height: auto;
    float: left;
    margin: 18px 0 0 0;
}
.modal__box__carousel__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modal__box__carousel__section{
    width: calc(50% - 11px);
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}
.modal__box__carousel__section-signature{
    width: 100%;
    height: 171px;
    float: left;
    border-radius: 12.205px;
    background: rgba(217, 217, 217, 0.01);
    box-shadow: 0px 2.4409124851226807px 6.10228157043457px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.modal__box__carousel__section-signature img{
    width: 160px !important;
    height: fit-content;
    float: left;
    object-fit: contain;
    object-position: center;
}
.modal__box__carousel__section-title{
    width: 100%;
    height: auto;
    float: left;
    color: #0D6947;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.42px;
    text-align: left;
    margin: 21px 0 0 0;
}
.modal__box__carousel__section-description{
    width: 100%;
    height: auto;
    float: left;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.36px;
    text-align: left;
    margin: 6px 0 0 0;
}
.modal__box__carousel .owl-nav{
    width: 194px;
    height: auto;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 27px auto 0;
}
.modal__box__carousel-prev{
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background-color: rgba(23, 76, 56, 0);
    background-image: url("../images/icon/prev-carousel.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    transition: .4s;
}
.modal__box__carousel-prev:hover{
    transition: .4s;
    background-color: rgba(23, 76, 56, 0.20);
}
.modal__box__carousel-next{
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background-color: rgba(23, 76, 56, 0);
    background-image: url("../images/icon/next-carousel.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    transition: .4s;
}
.modal__box__carousel-next:hover{
    transition: .4s;
    background-color: rgba(23, 76, 56, 0.20);
}
.modal__box__carousel .owl-dots{
    width: 110px;
    height: 14px;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -23px auto 0;
    align-content: center;
    align-items: center;
}
.modal__box__carousel .owl-dots > .owl-dot{
    width: 5.571px;
    height: 5.571px;
    background-color: rgba(23, 76, 56, 0.20);
    border-radius: 100px;
    transition: .3s;
}
.modal__box__carousel .owl-dots > .owl-dot:has(+ .owl-dot.active){
    width: 9.286px;
    height: 9.286px;
    background-color: rgba(23, 76, 56, 0.50);
    transition: .3s;
}
.modal__box__carousel .owl-dots > .owl-dot.active{
    width: 13px;
    height: 13px;
    background-color: #174C38;
    transition: .3s;
}
.modal__box__carousel .owl-dots > .owl-dot.active+.owl-dot{
    width: 9.286px;
    height: 9.286px;
    background-color: rgba(23, 76, 56, 0.50);
    transition: .3s;
}
.modal-mobile-close{
    width: fit-content;
    height: auto;
    color: #00F;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: underline;
    margin: 0 auto 8px;
    display: none;
}
@media screen and (max-width: 1050px){
    .modal{
        overflow: scroll;
        height: 100%;
        box-sizing: border-box;
    }
    .modal.max{
        align-content: flex-start;
        align-items: flex-start;
    }
    .modal__row.max {
        max-width: 340px;
        margin: 20px auto;
    }
    .modal__row{
        max-width: 340px;
        border-radius: 7px;
        background: linear-gradient(0deg, #F3F6F5 0%, #F3F6F5 100%), #FFF;
        box-shadow: 0px 4.68965482711792px 11.724136352539062px 0px rgba(0, 0, 0, 0.25);
    }
    .modal__item{
        padding: 21px 18px;
    }
    .modal__item-description{
        margin: 9px 0 0 0;
        letter-spacing: 0.36px;
    }
    .modal__item-close {
        width: 30px;
        height: 30px;
        border-radius: 0px 7px;
    }
    .modal__item-close::before {
        background-size: 16px 16px;
    }
    .modal__box{
        padding: 0;
    }
    .modal__box-title{
        font-size: 27px;
        text-align: left;
    }
    .modal__box-title br{
        display: none;
    }
    .modal__box__carousel{
        margin: 4px 0 24px 0;
    }
    .modal-mobile-close{
        display: block;
    }
    .modal__box__carousel__section{
        width: 100%;
        margin: 21px 0 0 0;
    }
    .modal__box__carousel__section-title{
        margin: 16px 0 0 0;
    }
    .modal__box__carousel__section-description{
        margin: 9px 0 0 0;
    }
    .modal__box-description{
        margin: 9px 0 0 0;
    }
}
/* MODAL */

/* ERROR */
.paymentError{
    width: 100%;
    height: auto;
    float: left;
    padding: 150px 0;
}
.paymentError__row{
    width: 100%;
    height: auto;
    float: left;
}
.paymentError__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.paymentError__item-vectory{
    width: 100%;
    max-width: 605px;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.paymentError__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 500;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    color: #0D6947;
    margin: 60px 0 0 0;
}
.paymentError__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #000000;
    margin: 25px 0 0 0;
}
.paymentError__item-button{
    width: fit-content;
    height: auto;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    padding: 25px 95px;
    margin: 70px auto 0;
    border-radius: 10px;
    background: linear-gradient(180deg, #174C38 0%, #093D29 100%);
    border-bottom: 3px solid #04140E;
}

@media screen and (max-width: 700px){
    .paymentError{
        padding: 120px 0;
    }
    .paymentError__item-vectory{
        width: 90%;
    }
    .paymentError__item-title{
        margin: 23px 0 0 0;
        font-size: 52px;
        line-height: 62px;
    }
    .paymentError__item-description{
        margin: 23px 0 0 0;
        font-size: 24px;
        line-height: 29px;
    }
    .paymentError__item-button{
        margin: 45px auto 0;
        padding: 24px 85px;
        font-size: 24px;
        line-height: 28px;
    }
}
@media screen and (max-width: 500px){
    .paymentError{
        padding: 150px 0;
    }
    .paymentError__item-title{
        margin: 20px 0 0 0;
        font-size: 45px;
        line-height: 54px;
    }
    .paymentError__item-description{
        margin: 20px 0 0 0;
        font-size: 21px;
        line-height: 25px;
    }
    .paymentError__item-button{
        margin: 44px auto 0;
        padding: 21px 74px;
        font-size: 21px;
        line-height: 24px;
    }
}
@media screen and (max-width: 400px){
    .paymentError{
        padding: 75px 0;
    }
    .paymentError__item-title{
        margin: 15px 0 0 0;
        font-size: 39px;
        line-height: 47px;
    }
    .paymentError__item-description{
        margin: 15px 0 0 0;
        font-size: 18px;
        line-height: 21px;
    }
    .paymentError__item-button{
        margin: 35px auto 0;
        padding: 18px 65px;
        font-size: 18px;
        line-height: 21px;
    }
}
/* ERROR */

/* SUCCESS */
.paymentSuccess{
    width: 100%;
    height: auto;
    float: left;
    padding: 130px 0;
}
.paymentSuccess__row{
    width: 100%;
    height: auto;
    float: left;
}
.paymentSuccess__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.paymentSuccess__item-vectory{
    width: 228px;
    height: 238px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}
.paymentSuccess__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 700;
    font-size: 128.461px;
    line-height: 153px;
    text-align: center;
    color: #0D6947;
    position: relative;
}
.paymentSuccess__item-title::after{
    content: "";
    width: 451.9px;
    height: 161.39px;
    background-image: url('../images/vectory/thanks.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 160px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.paymentSuccess__item-information{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 300;
    font-size: 28px;
    line-height: 33px;
    color: #131418;
    text-align: center;
    margin: 130px 0 0 0;
}
.paymentSuccess__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-weight: 300;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #131418;
    margin: 25px 0 0 0;
}
.paymentSuccess__item-description a{
    font-weight: 600;
}
.paymentSuccess__item-button{
    width: fit-content;
    height: auto;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    padding: 25px 95px;
    margin: 70px auto 0;
    border-radius: 10px;
    background: linear-gradient(180deg, #174C38 0%, #093D29 100%);
    border-bottom: 3px solid #04140E;
}

@media screen and (max-width: 810px){
    .paymentSuccess{
        padding: 80px 0;
    }
    .paymentSuccess__item-title{
        font-size: 64px;
        line-height: 77px;
        margin: 30px 0 0 0;
    }
    .paymentSuccess__item-title::after{
        width: 226.57px;
        height: 80.92px;
        top: 38px;
        -webkit-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }
    .paymentSuccess__item-information{
        font-size: 24px;
        line-height: 29px;
        margin: 70px 0 0 0;
    }
    .paymentSuccess__item-description{
        font-size: 18px;
        line-height: 21px;
        margin: 20px 0 0 0;
    }
    .paymentSuccess__item-button{
        margin: 50px auto 0;
        padding: 24px 85px;
        font-size: 24px;
        line-height: 28px;
    }
}
@media screen and (max-width: 500px){
    .paymentSuccess__item-title{
        font-size: 56px;
        line-height: 67px;
        margin: 25px 0 0 0;
    }
    .paymentSuccess__item-title::after{
        width: 199.33px;
        height: 71.19px;
        top: 35px;
    }
    .paymentSuccess__item-information{
        font-size: 21px;
        line-height: 25px;
        margin: 67px 0 0 0;
    }
    .paymentSuccess__item-description{
        font-size: 16px;
        line-height: 19px;
        margin: 18px 0 0 0;
    }
    .paymentSuccess__item-button{
        margin: 44px auto 0;
        padding: 21px 74px;
        font-size: 21px;
        line-height: 24px;
    }
}
@media screen and (max-width: 400px){
    .paymentSuccess__item-title{
        font-size: 46px;
        line-height: 55px;
        margin: 20px 0 0 0;
    }
    .paymentSuccess__item-title::after{
        width: 164.66px;
        height: 58.81px;
        top: 30px;
    }
    .paymentSuccess__item-information{
        font-size: 18px;
        line-height: 21px;
        margin: 50px 0 0 0;
    }
    .paymentSuccess__item-description{
        font-size: 14px;
        line-height: 17px;
        margin: 14px 0 0 0;
    }
    .paymentSuccess__item-description br{
        display: none;
    }
    .paymentSuccess__item-button{
        margin: 40px auto 0;
        padding: 18px 65px;
        font-size: 18px;
        line-height: 21px;
    }
}
/* SUCCESS */