*{  
    --color-base: rgba(18, 31, 123, 1);
    --color-base-light: rgba(238, 244, 253, 1);
    --color-primary: rgba(151, 84, 0, 1);
    --color-primary-light: rgba(255, 246, 235, 1);
    --color-red: #B72525;
    --color-button-primary: rgba(252, 163, 51, 1);
    --color-button-primary-hover: rgba(253, 186, 102, 1);
    --color-text-tertiary: rgba(196, 193, 200, 1);

    --value-1: calc(var(--coef) * 0.068vw);
    --value-2: calc(var(--coef) * 0.14vw);
    --value-3: calc(var(--coef) * 0.21vw);
    --value-4: calc(var(--coef) * 0.28vw);
    --value-5: calc(var(--coef) * 0.35vw);
    --value-6: calc(var(--coef) * 0.42vw);
    --value-7: calc(var(--coef) * 0.49vw);
    --value-8: calc(var(--coef) * 0.56vw);
    --value-9: calc(var(--coef) * 0.63vw);
    --value-10: calc(var(--coef) * 0.7vw);
    --value-12: calc(var(--coef) * 0.83vw);
    --value-13: calc(var(--coef) * 0.9vw);
    --value-14: calc(var(--coef) * 0.97vw);
    --value-15: calc(var(--coef) * 1.04vw);
    --value-16: calc(var(--coef) * 1.11vw);
    --value-18: calc(var(--coef) * 1.25vw);
    --value-20: calc(var(--coef) * 1.39vw);
    --value-22: calc(var(--coef) * 1.53vw);
    --value-24: calc(var(--coef) * 1.67vw);
    --value-25: calc(var(--coef) * 1.74vw);
    --value-28: calc(var(--coef) * 1.95vw);
    --value-30: calc(var(--coef) * 2.08vw);
    --value-32: calc(var(--coef) * 2.22vw);
    --value-34: calc(var(--coef) * 2.36vw);
    --value-40: calc(var(--coef) * 2.78vw);
    --value-48: calc(var(--coef) * 3.33vw);
    --value-50: calc(var(--coef) * 3.47vw);
    --value-58: calc(var(--coef) * 4.03vw);
    --value-60: calc(var(--coef) * 4.17vw);
    --value-64: calc(var(--coef) * 4.45vw);
    --value-70: calc(var(--coef) * 4.86vw);
    --value-80: calc(var(--coef) * 5.56vw);
    --value-90: calc(var(--coef) * 6.25vw);
    --value-100: calc(var(--coef) * 6.95vw);  

    --default-font-size: var(--value-16);
    --default-body-line-height: 1.5;
    --container-width: calc(12 * var(--value-100) + var(--value-20));
    --coef: 1;
    --type-width: calc(7.8 * var(--value-100));
} 

:root {
    scroll-behavior: initial;
}

body{
    margin:0;
    -webkit-tap-highlight-color:  transparent;  
    overflow-x: hidden; 
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: var(--default-body-line-height);
    color: var(--color-base);
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: var(--default-font-size);
    -webkit-font-smoothing: antialiased;
}

p{
    margin: 0 0 var(--value-10);
}

p:last-child{
    margin-bottom: 0;
}

body.active{
    overflow: hidden;
}

.grecaptcha-badge {
    visibility: hidden;
}

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

img{
    max-width:100%;
    height:auto;
}

.d-grid,
.g-box{
    display: grid;
    grid-gap: var(--value-30);
    grid-auto-rows: min-content;
}

.d-flex,
.f-box{
    display: flex;
}

.flex-column{
    flex-direction: column;
}

.justify-between{
    justify-content: space-between;
}

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

.container{
    padding:0 var(--value-20);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.sect{
    padding: var(--value-40) 0;
}

.rows{
    gap:var(--value-48);
    display: flex;
    flex-direction: column;
}

.title-box{
    display: flex;
    flex-direction: column;
    gap: var(--value-16);        
}

.title-box .title{
    font-weight: 600;
    font-style: normal;
    margin:0;
    font-size: var(--value-20); 
    line-height: 1.2;
}

.title-box.sect-title{
    width: 100%;
    max-width: var(--type-width);
    margin: 0 auto;
}

.title-box.sect-title .title{
    font-size: var(--value-32); 
    font-weight: 700;
    line-height: 1.25;
}

.title-box.main-title .title{
    font-size: var(--value-48); 
    font-weight: 700;
    line-height: 1.2;
}


.bt{
    min-width: var(--value-100);
    min-height: calc(var(--value-40) + var(--value-4));
    padding: var(--value-12) var(--value-16);
    border-radius: var(--value-4);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    background-color: var(--color-button-primary);
    border: none;
    outline: none;
    color: var(--color-base);
    font-weight: 600;
    cursor: pointer;
    line-height: 1.43;
    transition: 0.2s background-color, 0.2s border-color;
    -moz-transition: 0.2s background-color, 0.2s border-color;
    -webkit-transition: 0.2s background-color, 0.2s border-color;
}

.bt:hover{
    background-color: var(--color-button-primary-hover);
    color: var(--color-base);
}


.bt.transparent{
    background-color: transparent;
}

.bt.transparent:hover {
    background-color: #EEF4FD;
}

header{
    font-size: var(--value-14);
    font-weight: 600;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    border-bottom: var(--value-1) solid transparent;
    transition: border-color .2s ease, padding .2s ease;
    -moz-transition: border-color .2s ease, padding .2s ease;
    -webkit-transition: border-color .2s ease, padding .2s ease;
    -o-transition: border-color .2s ease, padding .2s ease;
    z-index: 999;
}

header .logo-box{
    flex: 1;
}

header .logo-box img,
header .logo-box svg,
footer .logo-box img{
    width: calc(var(--value-90) + var(--value-2));
    height: auto;
}

header .top-bar{
    background-color: #000;
    padding: var(--value-12) 0;
    color: #fff;
    transition: margin-top .2s ease;
    -moz-transition: margin-top .2s ease;
    -webkit-transition: margin-top .2s ease;
    -o-transition: margin-top .2s ease;
}

header .main-bar{
    padding: var(--value-16) 0;
    font-weight: 600;
}

header.scroll{
    background-color: var(--color-base);
}

header .main-bar .columns{
    align-items: center;
    gap: var(--value-4);
}

header .animation-btn-box{
    margin-left: calc(-1* var(--value-4));
    transition: margin-left .2s ease;
    -moz-transition: margin-left .2s ease;
    -webkit-transition: margin-left .2s ease;
    -o-transition: margin-left .2s ease;
}

header.show-btn .animation-btn-box{
    margin-left: 0;
}


header .animation-btn-box .bt {
    display: inline-flex;
    white-space: nowrap;
    padding: var(--value-12) 0;
    min-width: initial;
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .2s ease, visibility .2s ease, width .2s ease, padding .2s ease;
    -moz-transition: opacity .2s ease, visibility .2s ease, width .2s ease, padding .2s ease;
    -webkit-transition: opacity .2s ease, visibility .2s ease, width .2s ease, padding .2s ease;
    -o-transition: opacity .2s ease, visibility .2s ease, width .2s ease, padding .2s ease;
}
header.show-btn .animation-btn-box .bt {
    opacity: 1;
    visibility: visible;
    width: calc(var(--value-100) + var(--value-10));
    padding: var(--value-12) var(--value-16);
}

header .main-bar .wrap-menu{
    align-items: center;
    justify-content: flex-end;
    gap: var(--value-4);
}

header .phone img,
header .phone svg{
    width: var(--value-24);
    display: none;
}

header .phone i{
    font-style: normal;
}

header .menu-box ul{   
    padding:0;
    margin: 0;
    display: flex;
    list-style: none;
    justify-content: flex-end;
    gap: var(--value-4);
}

header .menu-box ul li a,
header .menu-box ul li span,
header .phone,
header .sign-in{
    color: #fff;
    min-height: calc(var(--value-40) + var(--value-4));
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.43;
    padding: var(--value-12) var(--value-16);
    border-radius: var(--value-4);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: 0.2s ease background-color, 0.2s ease border-color;
    -o-transition: 0.2s ease background-color, 0.2s ease border-color;
    -moz-transition: 0.2s ease background-color, 0.2s ease border-color;
    -webkit-transition: 0.2s ease background-color, 0.2s ease border-color;
}

header .menu-box ul li a:hover,
header .menu-box ul li span:hover,
header .menu-box ul li.current-menu-item a,
header .sign-in:hover,
header .phone:hover{
    background-color: rgba(255, 255, 255, 0.1);
}

header .main-bar .sign-in{
    border: var(--value-1) solid rgba(255, 255, 255, 0.5);
    padding: var(--value-10) var(--value-16);
}

header.show-btn .main-bar .sign-in{
    border-color: transparent;
}

header .menu-bt-box{
    display: none;
}

header .menu-phone-box,
header .menu-sign-in-box,
header .menu-logo-box,
header .close-menu,
header .menu-btn-box{
    display: none;
}

.overlay{
    display: none;
}

.main-wrap{
    --header-height: calc(var(--value-70) + var(--value-7));
}

.sect.head-sect{
    min-height: calc(var(--value-100) * 5 + var(--value-9));
    padding-top: calc(var(--header-height) + var(--value-32));
    margin-bottom: var(--value-40);
    background-color: var(--color-base);
    color: #fff;
}

.sect.head-sect .columns{
    grid-template-columns: 1fr auto;
    grid-gap: calc(var(--value-100) + var(--value-64));
    align-items: center;
    padding-right: calc(var(--value-50) + var(--value-6));
}

.sect.head-sect .img-box{
    width: calc(2.9 * var(--value-100))
}

.sect.head-sect .img-box img{
    width: 100%;
    height: auto;
}

.sect.head-sect .content-box{
    gap: var(--value-24);
    font-size: var(--value-20);
    line-height: 1.4;
    z-index: 1;
    position: relative;
}

footer{
    background-color: var(--color-base);
    padding: var(--value-80) 0;
    color: var(--color-text-tertiary);
    margin-top: var(--value-40);
    font-size: var(--value-14);
}

footer .rows{
    grid-gap: var(--value-40);
}

footer a{
    color: var(--color-text-tertiary);
    text-decoration: none;
    transition: 0.2s color;
    -moz-transition: 0.2s color;
    -webkit-transition: 0.2s color;
}

footer a:hover{
    color: rgba(255, 255, 255, 1);
}

footer .title{
    margin:0;
    font-size: var(--value-16);
    font-weight: 600;
    color: #fff;
}

footer .item ul{
    padding: 0;
    margin:0;
    list-style: none;
    display: grid;
    grid-gap: var(--value-4);
}

footer .item ul li.more-link{
    margin-top: var(--value-12);
}

footer a{
    text-decoration: inherit;
}

footer .footer-bar .item{
    grid-gap: var(--value-12);
}

footer .reg-list{
    grid-gap: var(--value-16);
}

footer .reg-list .reg-item{
    display: grid;
    grid-template-columns: var(--value-30) 1fr;
    grid-gap: var(--value-16);
    align-items: center;
}

footer .reg-list .reg-item img{
    width:auto;
}

footer .reg-list .reg-item p span{
    display: block;
}

footer .footer-bar{
    grid-template-columns: 1fr 1fr 1fr 1.2fr 1fr 1fr;
    grid-gap: var(--value-20);
}

footer .pad-left{
    padding-left: var(--value-60);
}

footer .footer-bar .col-span-2{
    grid-column-start: span 2;
}

footer .cont-box p{
    margin-bottom: 0;
}

.sect.text-img-sect .columns{
    grid-template-columns: 1fr var(--type-width);
    grid-gap: var(--value-40);
}

.sect.text-img-sect .content-box{
    gap: var(--value-16);
}

.sect.text-img-sect .image-block{
    position: relative;
}

.sect.text-img-sect .image-block .message-box{
    position: absolute;
    top: var(--value-60);
    right: calc(-1 * var(--value-16));
}

.sect.text-img-sect .img-box{
    border-radius: var(--value-2);
    overflow: hidden;
}

.sect.text-img-sect .img-box>img{
    width: 100%;
}

.message-box{
    padding: var(--value-16);
    border: var(--value-1) solid;
    grid-template-columns: auto 1fr;
    width: 100%;
    grid-gap: var(--value-12);
    font-weight: 600;
    border-radius: var(--value-2);
    z-index: 1;
    align-items: center;
}

.message-box .ico-box{
    width: var(--value-32);
}

.message-box p{
    margin: 0;
}

.message-box .info{
    gap: var(--value-4);
}

.message-box.great-news{
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    max-width: calc(3.25 * var(--value-100));
}

.message-box.great-news .ava-box{
    overflow: hidden;
    border-radius: var(--value-2);
    width: var(--value-64);
    height: var(--value-64);
}

.message-box.great-news .ava-box img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.message-box.congrats{
    border-color: #136413;
    background-color: #EDF8ED;
    color: #136413;
}


.sect.triggers.primary{
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.sect.triggers.secondary{
    color: var(--color-base);
    background-color: var(--color-base-light);
}

.sect.triggers.primary,
.sect.triggers.secondary{
    padding: var(--value-80) 0;
    margin: var(--value-40) 0;
}

.sect.triggers .items-list{
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--value-20);
}

.sect.triggers .items-list .item{
    gap: var(--value-4);
}

.sect.triggers .items-list .item .ico-box{
    width: calc(var(--value-90) + var(--value-2));
}

.items-posts-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--value-20);
}

.item-post{
    gap: var(--value-16);
}

.item-post .img-box{
    border-radius: var(--value-2);
    overflow: hidden;
}

.item-post .info-box{
    gap: var(--value-8)
}

.item-post .cont{
    gap: var(--value-4)
}

.item-post .title{
    color: var(--color-base);
    text-decoration: none;
}

.link{
    display: inline-flex;
    align-items: center;
    gap: var(--value-2);
    font-weight: 600;
    color: var(--color-base);
    text-decoration: none;
}

.link::after{
    content: '';
    width: var(--value-24);
    height: var(--value-24);
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/redesign/icons/arrow_outward.svg);
    background-size: var(--value-24);
}

.link.primary{
    color: var(--color-primary)
}

.link.primary::after{
    background-image: url(img/redesign/icons/arrow_outward-primary.svg); 
}

.slider-box .item{
    padding: 0 var(--value-10);
}

.sect.technology-products .title-box.sect-title .descr{
    max-width: calc(4.2 * var(--value-100));
    margin: 0 auto;
}

.sect .slider-cities{
    width:100%;
    overflow: hidden;
}

.slider-cities .owl-stage-outer {
    overflow: initial !important;
}

.slider-cities .item-post{
   width: calc(3.6 * var(--value-100));
}

.sect:has(.avatar-rows){
    overflow: hidden;
    width: 0;
}

.avatar-rows{
    grid-gap: var(--value-16);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.avatar-rows .item{
    border-radius: var(--value-2);
    overflow: hidden;
    width: calc(var(--value-100) * 1.2);
    height: calc(var(--value-100) * 1.2);
}

.avatar-rows .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-rows .item:nth-child(-n+12),
.avatar-rows .item:nth-child(n+24):nth-child(-n+36){
    transform: translateX(calc(-1 * var(--value-16)));
}

.avatar-rows .item:nth-child(n+13):nth-child(-n+24) {
    transform: translateX(calc(-1 * (var(--value-80) + var(--value-8))));
}


.sect.text-img-sect.type-2 .columns{
    grid-template-columns: calc(7.8* var(--value-100)) 1fr;
    grid-gap: var(--value-40);
}

.sect.real-solutions .columns{
    align-items: center;
}

.sect.real-solutions .images-box{
    justify-content: center;
}

.sect.real-solutions .images-box img{
    width: 100%;
    max-width: calc(2.09 * var(--value-100));
}

.sect.real-solutions .images-box .item:nth-child(1){
    margin-top: var(--value-30);
    margin-right: calc(-1 * var(--value-16));
}

.sect.real-solutions .images-box .item:nth-child(2){
    z-index: 1;
    position: relative;
}

.sect.real-solutions .images-box .item:nth-child(3){
    margin-top: var(--value-60);
    margin-left: calc(-1 * var(--value-16));
}

.life-travalign .travalin-box{
    padding: var(--value-60) var(--value-80);
    width: calc(9.4 * var(--value-100));
    margin: 0 auto;
    margin-bottom: calc(-1.2 * var(--value-100));
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    gap: var(--value-16);
    position: relative;
    z-index: 1;
}

.life-travalign .travalin-box .content{
    gap: var(--value-8);
}

.sect:has(.steps-list) .rows{
    max-width: calc(7.8* var(--value-100));
    margin: 0 auto;
}

.steps-list{
    gap: var(--value-32);
}

.steps-list .item{
    grid-template-columns: auto 1fr;
    grid-gap: var(--value-32);
    align-items: flex-start;
    position: relative;
}

.steps-list .item:not(:last-child)::before{
    content: '';
    display: block;
    width: var(--value-2);
    height: calc(100% + var(--value-32));
    background-color: var(--color-base);
    position: absolute;
    top: var(--value-5);
    left: calc((var(--value-40) - var(--value-2)) / 2);
}

.steps-list .item .icon-box{
    background-color: var(--color-base);
    border-radius: 50%;
    padding: var(--value-10);
    display: flex;
    z-index: 2;
    position: relative;
}

.steps-list .item .icon-box img{
    width: var(--value-20);
}

.steps-list .item .content-box{
    gap: var(--value-4);
}





.reviews-list {
    overflow: initial;
    position: initial;
    margin: initial;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--value-20);
    display: grid;
}

.reviews-list::before{
    display: none;
}

.reviews-list .item{
    width: 100%;
    padding: 0;
}

.reviews-list .item .rev-item{
    padding: var(--value-24);
    background-color: transparent;
    border-radius: var(--value-2);
    border: var(--value-1) solid #D5E5FB;
    gap: var(--value-16);
}

.reviews-list .item .destin {
    font-size: var(--value-14);
}

.reviews-list .item .author-box {
    grid-template-columns: auto 1fr;
    grid-gap: var(--value-16);
}

.reviews-list .item .author-box .img-box {
    width: calc(var(--value-40) + var(--value-4));
    border-radius: var(--value-2);
    overflow: hidden;
}

.reviews-list .item .rev-top-bar{
    justify-content: space-between;
    gap: var(--value-10);
    align-items: center;
    line-height: 1;
}

.reviews-list .item .name {
    font-weight: 600;
}

.stars-list{
    gap: var(--value-3);
    display: inline-flex;
}

.stars-list .star {
    display: block;
    width: var(--value-20);
    height: var(--value-20);
    background-repeat: no-repeat;
    background-size: var(--value-20);
    background-position: center;
}

.stars-list .star.full{
    background-image: url(img/redesign/stars/star-full.svg);
}

.stars-list .star.empty{
    background-image: url(img/redesign/stars/star-empty.svg);
}

.stars-list .star.half{
    background-image: url(img/redesign/stars/star-half.svg);
}

.sect.reviews .rev-sect-info{
    margin: 0 auto;
    max-width: calc(5 * var(--value-100) + var(--value-50));
    align-items: center;
    gap: calc(var(--value-30) + var(--value-1) * 2);
}

.sect.reviews .rev-sect-info img{
    width: calc(var(--value-40) + var(--value-8));
    height: auto;
}

.sect.reviews .rev-sect-info a{
    color: var(--color-base);
    text-underline-offset: var(--value-4);
}

.sect.reviews .rev-sect-info a:hover{
    text-decoration: none;
}

.sect.platforms .columns{
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--value-20);
}

.item-platform{
    color: #fff;
    padding: var(--value-60) var(--value-60) var(--value-24);
    gap: var(--value-24);
    font-size: var(--value-16);
}

.item-platform.bbb{
    background-color: #045475;
}

.item-platform.bbb .logo-box img{
    width: calc(1.92 * var(--value-100));
}

.item-platform.trustpilot{
    background-color: #1C4330;
}

.item-platform.trustpilot .logo-box img{
    width: calc(1.98 * var(--value-100));
}

.item-platform .based-on {
    font-size: var(--value-14);
}

.item-platform .rate-info{
    position: relative;
}

.item-platform .rate-info::before{
    content: '';
    width: var(--value-1);
    height: var(--value-64);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: calc(-0.5 * (var(--value-100) - var(--value-3)));
    transform:translateY(-50%);
}

.item-platform .rate-info .main{
    font-size: var(--value-40);
    font-weight: 600;
    line-height: 1;
}

.item-platform .rate-info .stars-list{
    margin-top: var(--value-4);
}

.item-platform .platform-info {
    justify-content: center;
    align-items: center;
    gap: calc(var(--value-100) - var(--value-3));
}

.sect.humans-trip{
    padding: var(--value-80) 0;
    margin: var(--value-40) 0;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.humans-trips-slider.owl-carousel{
    max-width: var(--type-width);
    margin: 0 auto;
}

.humans-trips-slider .item-trip{
    gap: var(--value-32);
    text-align: center;
}

.humans-trips-slider .item-trip .img-box{
    width: 100%;
    max-width: calc(6.6 * var(--value-100));
    margin: 0 auto;
    border-radius: var(--value-2);
    overflow: hidden;
}

.humans-trips-slider .item-trip .img-box img{
    width: 100%;
}

.humans-trips-slider .item-trip .content{
    font-size: var(--value-24);
    gap: var(--value-24);
}

.humans-trips-slider .item-trip .author{
    gap: var(--value-10);
    align-items: center;
}

.humans-trips-slider .item-trip .ava-box{
    width: calc(var(--value-40) + var(--value-4));
    height: calc(var(--value-40) + var(--value-4));
    border-radius: var(--value-2);
    overflow: hidden;
}

.humans-trips-slider .item-trip .ava-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.humans-trips-slider .item-trip .author .name{
    font-weight: 600;
}

.humans-trips-slider .owl-nav .owl-next, 
.humans-trips-slider .owl-nav .owl-prev{
    font-size: 0;
    background-color: transparent;
    border: none;
    outline: none;
    margin-top: calc(-1 * var(--value-100));
    padding: 0;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--value-48);
    height: var(--value-48);
    background-image: url(img/redesign/icons/arrow_circle_right.svg);
    background-size: var(--value-48);
    background-position: center;
    background-repeat: no-repeat;
}

.humans-trips-slider .owl-nav .owl-prev{
    left: calc((var(--container-width) - var(--type-width)) / -2);
}

.humans-trips-slider .owl-nav .owl-next{
    right: calc((var(--container-width) - var(--type-width)) / -2);
}

/* .humans-trips-slider .slick-arrow::before{
    content: '';
    width: var(--value-48);
    height: var(--value-48);
    background-image: url(img/redesign/icons/arrow_circle_right.svg);
    background-size: var(--value-48);
    background-position: center;
    background-repeat: no-repeat;
    display: block;
} */

.humans-trips-slider .owl-nav .owl-prev{
    transform: scale(-1, 1) translateY(-50%);
}

.faq-list{
    margin-top:calc(-1 * var(--value-16));
}

.faq-list .item {
    border-bottom: var(--value-1) solid #D5E5FB;
    transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
}

.faq-list .item .ask {
    padding: var(--value-16) 0;
    padding-right: var(--value-50);
    position: relative;
    cursor: pointer;
    font-size: var(--value-20);
    font-weight: 600;
}

.faq-list .item .answer {
    display: none;
    padding-bottom: var(--value-16);
}

.faq-list .item .ask::after {
    content: '';
    width: var(--value-24);
    height: var(--value-24);
    position: absolute;
    right: 0;
    top: var(--value-16);
    background-image: url(img/redesign/icons/arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: var(--value-24);
    transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
}

.faq-list .item.active .ask::after {
    transform: rotate(180deg);
}  

.faq-list .item.hide {
    display: none;
}

.show-more::before {
    content: attr(data-cont);
}

.show-more.active::before {
    content: attr(data-cont-active);
}

.width-type{
    width: 100%;
    max-width: var(--type-width);
    margin: 0 auto;
}

.sect.confidence .rows{
    gap: var(--value-16);
}

.sect.confidence .content{
    text-align: center;
    font-size: var(--value-24);
}

.sect.confidence .content .img-box img{
    width: 100%;
    max-width: calc(2.2 * var(--value-100));
    margin: 0 auto;
}

.stears-list{
    gap: var(--value-80);
}

.stears-list .item{
    grid-template-columns: var(--type-width) 1fr;
    grid-gap: var(--value-40);
}

.stears-list .item .img-box{
    position: relative;
}

.stears-list .item:nth-child(2n){
    grid-template-columns: 1fr var(--type-width);
}

.stears-list .item:nth-child(2n) .img-box{
    order: 1;
}

.stears-list .item .content{
    gap: var(--value-16);
}

.stears-list .item .options-list{
    flex-direction: column;
    gap: var(--value-12);
}
.stears-list .item .options-list .item{
    display: inline-grid;
    grid-template-columns: auto 1fr;
    grid-gap: var(--value-8);
    align-items: center;
    font-weight: 600;
}

.stears-list .item .options-list .item .ico-box{
    width: var(--value-24);
}

.stears-list .item:nth-child(1) .message-box{
    max-width: calc(2.7 * var(--value-100));
    position: absolute;
    top: var(--value-40);
    left: var(--value-20);
}

.stears-list .item:nth-child(2) .message-box{
    max-width: calc(2.9 * var(--value-100));
    position: absolute;
    top: var(--value-20);
    left: 50%;
    transform: translateX(-50%);
}

.stears-list .item:nth-child(3) .message-box{
    max-width: calc(3.6 * var(--value-100));
    position: absolute;
    top: var(--value-100);
    left: var(--value-20);
}

.stears-list .item:nth-child(4) .message-box{
    max-width: calc(3.85 * var(--value-100));
    position: absolute;
    bottom: var(--value-20);
    left: 50%;
    transform: translateX(-50%);
}







.message-box.fly-box{
    font-size: var(--value-14);
    font-weight: 600;
    gap: 0;
    padding: 0;
    background-color: var(--color-base-light);
}

.message-box.fly-box>div{
    padding: var(--value-16);
}

.message-box.fly-box .top-bar{
    gap: var(--value-12);
    border-bottom:var(--value-1) solid;
    width: 100%;
    justify-content: center;
}

.message-box.fly-box .top-bar .direction{
    gap: var(--value-5);
    align-items: center;
}

.message-box.fly-box .direction .arrow{
    width: var(--value-16);
}

.message-box.fly-box .direction .arrowimg{
    width: 100%;
}

.message-box.fly-box .top-bar .date{
    display: flex;
    align-items: center;
    gap: var(--value-12);
}

.message-box.fly-box .top-bar .date::before{
    content: '';
    width: var(--value-4);
    height: var(--value-4);
    background-color: var(--color-base);
    border-radius: 50%;
    display: inline-block;
}

.message-box.fly-box .list{
    width: 100%;
    gap: var(--value-10);
}

.message-box.fly-box .list .item{
    display: flex;
    justify-content: space-between;
    gap: var(--value-16);
    align-items: center;
}

.message-box.fly-box .list .item .info{
    display: flex;
    gap: var(--value-12);
    align-items: center;
    font-weight: 500;
}

.message-box.fly-box .list .item .logo-box{
    width: var(--value-32);
}

.message-box.fly-box .list .item .logo-box img{
    width: 100%;
}

.message-box.fly-box .list .item:first-child{
    color: var(--color-red);
}

.message-box.fly-box .list .item:first-child .info{
    text-decoration: line-through;
}

.message-box.fly-box .list .item .status{
    line-height: 1;
}

.message-box.fly-box .list .item:not(:first-child) .status{
    padding: var(--value-8) var(--value-12);
    border-radius: var(--value-2);
    background-color: #D5E5FB;
}

.sect.search-form-sect{
    padding-top: calc(var(--header-height) + var(--value-32));
    padding-bottom: 0;
    margin-bottom: 0;
    background-color: var(--color-base);
    color: #ffffff;
}

.sect.partners-line .partners-list{
    overflow: hidden;
}

.owl-carousel .owl-stage{
    display: flex;
}

.sect.partners-line{
    padding: var(--value-48) 0;
    background-color: var(--color-base);
    margin-bottom: var(--value-40);
    margin-top: calc(-1 * var(--value-1));
    z-index: 0;
    position: relative;
}

.sect.partners-line .partners-list.owl-loaded{
    overflow: hidden;
}

.sect.partners-line .partners-list .item{
    width: calc(1.25 * var(--value-100));
    padding: 0 var(--value-10);
}

.partners-list .item img{
    max-width: 100%;
}

.posts-box{
    overflow: hidden;
}

.destin-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--value-20);
}



.destin-list .owl-nav{
    position: absolute;
    display: flex;
    gap: var(--value-14);
    font-size: 0;
    right: 0;
    top: calc(-1 * var(--value-30));
    transform: translateY(-100%);
}

.destin-list .owl-nav .owl-prev,
.destin-list .owl-nav .owl-next{
    width: calc(3.8 * var(--value-10));
    height: calc(3.8 * var(--value-10));
    border-radius: 50%;
    background-image: url(img/redesign/icons/arrow-circle-right-blue.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.destin-list .owl-nav .owl-prev{
    transform: scaleX(-1);
}

.item:has(.item-post-destin){
    display: flex;
    flex-direction: column;
    gap: var(--value-24);
}

.sect.destinations .posts-box>div:nth-child(2){
    margin-top: var(--value-24);
}

.item-post-destin a{
    gap: var(--value-12);
    color: inherit;
    text-decoration: none;
}

.item-post-destin a .info-box{
    gap: var(--value-4);
}

.item-post-destin .item-title{
    display: flex;
    flex-wrap: wrap;
    gap: var(--value-7);
    align-items: center;
    font-size: var(--value-14);
    font-weight: 400;
}

.item-post-destin .item-title .time{
    display: inline-flex;
    gap: var(--value-7);
    align-items: center;
}

.item-post-destin .item-title .time::before{
    content: '';
    width: var(--value-3);
    height: var(--value-3);
    border-radius: 50%;
    background-color: var(--color-base);
}

.item-post-destin .price-box{
    display: flex;
    gap: var(--value-12);
    align-items: center;
}

.item-post-destin .price-box p{
    margin: 0;
    display: flex;
    gap: var(--value-8);
    align-items: center;
}

.item-post-destin .price-box .price{
    font-size: var(--value-20);
    font-weight: 600;
}

.item-post-destin .price-box .old-price{
    text-decoration: line-through;
}

.item-post-destin .economy{
    padding: var(--value-2) var(--value-6);
    font-size: var(--value-14);
    font-weight: 600;
    border-radius: var(--value-2);
    background-color: var(--color-red);
    color: #fff;
}

.item-post-destin .img-box{
    overflow: hidden;
    border-radius: var(--value-2);
}

.tabs-block{
    display: flex;
    flex-direction: column;
    gap: var(--value-24);
}

.tabs-nav{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    padding-right: calc(1.5 * var(--value-100));
    margin: 0;
    gap: var(--value-4);
    font-size: var(--value-20);
    font-weight: 600;
}   

.tabs-nav li{
    display: inline-flex;
    gap: var(--value-8);
    padding: var(--value-10) var(--value-16);
    border-radius: var(--value-4);
    cursor: pointer;
    align-items: center
}

.tabs-nav li img{
    width: var(--value-22);
}

.tabs-nav li.current{
    background-color: var(--color-base-light);
    cursor: default;
}

.tab{
    display: none;
}

.sect.partners{
    padding: var(--value-80) 0;
    margin: var(--value-40) 0;
    background-color: var(--color-base-light);
}

.sect.partners .partners-block{
    grid-template-columns: calc(4.8* var(--value-100)) 1fr;
    gap: var(--value-40);
}

.sect.partners .partners-list{
    grid-template-columns: repeat(4, 1fr);
}

.sect.partners .partners-list .item{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--value-60);
}

.sect.partners .partners-list .item img{
    max-width: calc(1.34 * var(--value-100));
}






.page-exp-n header .logo-box svg path{
    fill: #fff;
}

.page-exp-n header .phone svg{
    fill: #fff;
}

.page-exp-n header .menu-btn svg{
    fill: #fff;
}



/*  Это стили чисто для формы, 
они будут вынесены в стили формы в плагин когда будет фулл редизайн   */

.page-exp-n .search-form-sect{
    background-color: var(--color-base);
    padding: calc(var(--header-height) + var(--value-32) * 2) 0 0;
}

.page-exp-n .form-frame:has(.booking_form_new){
    max-width: 100%;
}

.page-exp-n form.booking_form_new .send-error{
    font-size: var(--value-14);
}

.page-exp-n .form-frame:has(.booking_form_new) form {
    font-size: var(--value-16);
    grid-gap: var(--value-24);
}

.page-exp-n .custom-radio-select,
.page-exp-n .custom-radio-select.in-form .select-options{
    font-size: var(--value-13);
}

.page-exp-n form.booking_form_new .top-bar>div {
    margin-right: 0;
}

.page-exp-n .sect.faq-opened .bt-box{
    margin-top: calc(var(--value-30) + var(--value-1) * 6);
}

.page-exp-n form.booking_form_new .fields-list{
    outline-color: transparent;
    background-color: transparent;
}

.page-exp-n .custom-radio-select.option-type .select-trigger,
.page-exp-n .custom-radio-select.option-type.active .select-trigger {
    background-color: transparent;
    color: #fff;
}

.page-exp-n .custom-radio-select .select-options{
    color: var(--color-base);
}

.page-exp-n .custom-radio-select .select-options>div label::before{
    width: var(--value-18);
    height: var(--value-18);
}

.page-exp-n .custom-radio-select .select-options>div input[type="radio"]:checked + label::before{
    border: var(--value-6) solid rgba(0, 118, 226, 1);
    
}

.page-exp-n form.booking_form_new .custom-radio-select.in-form .select-trigger::after{
    background-image: url(img/form-images/cust-sel-arrow.svg);
    background-size: var(--value-20);
}

.page-exp-n .custom-radio-select.option-type .select-trigger::after{
    background-image: url(img/form-images/arrow-down-w.svg);
    background-size: var(--value-20);
}

.page-exp-n form.booking_form_new .fields-row:first-child .field-box .select2-container--search-airports  .select2-selection__rendered:after {
    content: '';
    width: var(--value-20);
    height: var(--value-20);
    position: absolute;
    top: 50%;
    right: var(--value-16);
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    background-image: url(img/form-images/cust-sel-arrow.svg);
    background-size: var(--value-20);
}

.page-exp-n form.booking_form_new .field-box>label, 
.page-exp-n form.booking_form_new .field-box input:not(.error),
.page-exp-n form.booking_form_new .field-box>.date-box>label, 
.page-exp-n form.booking_form_new .custom-radio-select>label,
.page-exp-n form.booking_form_new .custom-radio-select.in-form .select-trigger,
.page-exp-n form.booking_form_new .field-box:has(.iti)>label,
.page-exp-n form.booking_form_new .hidden-part-two .field-box:has(.iti)>label, 
.page-exp-n form.booking_form_new .hidden-part-two .field-box>input.error:focus ~ label, 
.page-exp-n form.booking_form_new .hidden-part-two .field-box>input:not([value='']) ~ label,
.page-exp-n form.booking_form_new .select2-container--search-airports .select2-selection__rendered,
body.page-exp-n .select2-search--dropdown .select2-search__field,
.page-exp-n form.booking_form_new .with-ico input,
.page-exp-n form.booking_form_new .iti--separate-dial-code .iti__selected-dial-code,
.page-exp-n form.booking_form_new .iti__country-list .iti__country-name{
  color: var(--color-base)!important;  
}

body.page-exp-n>.select2-container--search-airports .select2-search--dropdown .select2-search__field{
    font-size: var(--value-18);
}

body.page-exp-n>.select2-container--search-airports .select2-airports-list{
    border-radius: var(--value-4);
    font-size: var(--value-14);
}

.page-exp-n form.booking_form_new .dates-group .date-return::after{
    background-color: var(--color-base);
}

.page-exp-n form.booking_form_new .with-ico::before{
    width: var(--value-24);
    height: var(--value-24);
    background-size: var(--value-24);
}

.page-exp-n form.booking_form_new .date-box.with-ico::before {
    background-image: url(img/form-images/calendar.svg);
}

.page-exp-n form.booking_form_new .takeoff.with-ico::before{
    background-image: url(img/form-images/flight-takeoff.svg);
}

.page-exp-n form.booking_form_new .takeon.with-ico::before{
    background-image: url(img/form-images/flight-takeon.svg);
}

.page-exp-n form.booking_form_new .cabin-class .with-ico::before{
    background-image: url(img/form-images/cabin-class.svg);
}


.page-exp-n form.booking_form_new .notice-box p{
    color: #898390;
}

.page-exp-n form.booking_form_new .bt{
    margin-bottom: var(--value-2);
}

body .ui-datepicker-calendar tbody tr td.ui-datepicker-today a {
    color: rgba(0, 118, 226, 1);
}

body .ui-datepicker-calendar tbody tr td a:hover{
    background-color: rgba(0, 118, 226, 1)!important;
    color: #fff!important;
}

body .ui-datepicker-top-panel>div.focus {
    color: rgba(0, 118, 226, 1);
}

body .ui-datepicker-range tbody tr td.ui-datepicker-current-day a, 
body .ui-datepicker-range tbody tr td.select-start-day a, 
body .ui-datepicker-range tbody tr td.select-end-day a{
    background-color: rgba(0, 118, 226, 1);
    color: #fff;
}

body .ui-datepicker-calendar{
    font-size: var(--value-13);
}

body .iti__country-list .iti__country.iti__highlight {
    background-color: #F5F5F7;
}

@media (min-width: 768px){
    .page-exp-n form.booking_form_new .fields-row:first-child .field-box:first-child,
    .page-exp-n form.booking_form_new .fields-row:first-child .field-box:first-child .select2-container--search-airports .select2-selection__rendered,
    .page-exp-n  form.booking_form_new .fields-row:first-child .field-box:first-child select{
        border-top-left-radius: var(--value-4);
    }

    .page-exp-n form.booking_form_new .fields-row:first-child .field-box:last-child,
    .page-exp-n form.booking_form_new .fields-row:first-child .field-box:last-child .custom-radio-select.in-form .select-trigger{
        border-top-right-radius: var(--value-4);
    }

    .page-exp-n form.booking_form_new:has(.hidden-part-two:not([style*="display: grid"])) .fields-row:first-child .field-box:first-child,
    .page-exp-n form.booking_form_new:has(.hidden-part-two:not([style*="display: grid"])) .fields-row:first-child .field-box:first-child .select2-container--search-airports .select2-selection__rendered,
    .page-exp-n form.booking_form_new:has(.hidden-part-two:not([style*="display: grid"])) .fields-row:first-child .field-box:first-child select,
    .page-exp-n form.booking_form_new.dynamic_start .fields-row:first-child .field-box:first-child,
    .page-exp-n form.booking_form_new.dynamic_start .fields-row:first-child .field-box:first-child .select2-container--search-airports .select2-selection__rendered,
    .page-exp-n form.booking_form_new.dynamic_start .fields-row:first-child .field-box:first-child select,
    .page-exp-n form.booking_form_new .fields-row:last-child .field-box:first-child,
    .page-exp-n form.booking_form_new .fields-row:last-child .field-box:first-child input{
        border-bottom-left-radius: var(--value-4);
    }

    .page-exp-n form.booking_form_new:has(.hidden-part-two:not([style*="display: grid"])) .fields-row:first-child .field-box:last-child,
    .page-exp-n form.booking_form_new.dynamic_start .fields-row:first-child .field-box:last-child,
    .page-exp-n form.booking_form_new .fields-row:last-child .field-box:last-child,
    .page-exp-n form.booking_form_new .fields-row:last-child .field-box:last-child input,
    .page-exp-n form.booking_form_new:has(.hidden-part-two:not([style*="display: grid"])) .fields-row:first-child .field-box:last-child .custom-radio-select.in-form .select-trigger,
    .page-exp-n form.booking_form_new.dynamic_start .fields-row:first-child .field-box:last-child .custom-radio-select.in-form .select-trigger{
        border-bottom-right-radius: var(--value-4);
    }

    .page-exp-n form.booking_form_new .fields-list,
    .page-exp-n form.booking_form_new .fields-row{
        grid-gap: var(--value-1);
    }

    .page-exp-n form.booking_form_new .top-bar{
        margin-bottom: calc(-1 * var(--value-20))
    }

    .page-exp-n .auto-scroll .partners-list .item{
        width: calc(var(--value-100) + var(--value-12));
    }

}

@media (min-width: 767px) and (max-width: 1400px) and (orientation: portrait){
    .page-exp-n .search-form-sect:has(form.booking_form_new){
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .ui-datepicker::before {
        background-color: #F5F5F7;
        box-shadow: 0 0 14px 10px #F5F5F7;
    }

    body.page-exp-n>.select2-container--search-airports .select2-search--dropdown .select2-search__field:focus {
        border-color: rgba(0, 118, 226, 1);
    }

    .page-exp-n .search-form-sect .title-box.main-title .title{
        font-size: 24px;
    }

    .page-exp-n form.booking_form_new .bt{
        border-radius: 4px;
        min-height: 44px;
        padding: 12px 20px;
    }

    body .ui-datepicker-bottom-panel .bt:not([disabled]){
        border-radius: 4px;
        background-color: rgba(0, 118, 226, 1);
        color: #fff;
    }

    body .ui-datepicker-bottom-panel .bt:not([disabled]):hover {
        background-color: rgba(38, 98, 187, 1);
    }

    .page-exp-n form.booking_form_new.round-trip .fields-row, 
    .page-exp-n form.booking_form_new .fields-row,
    .page-exp-n form.booking_form_new .fields-list{
        gap: 2px;
    }

    .page-exp-n .form-frame:has(.booking_form_new) form{
        gap: 0;
    }

    .page-exp-n .title-box.main-title .title br{
        display: none;
    }

    .page-exp-n .form-frame form {
        grid-gap: 0;
    }

    .page-exp-n form.booking_form_new .fields-row:first-child .field-box:first-child, 
    .page-exp-n form.booking_form_new .fields-row:first-child .field-box:first-child select, 
    .page-exp-n form.booking_form_new .fields-row:first-child .field-box:first-child .select2-container--search-airports .select2-selection__rendered {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .page-exp-n form.booking_form_new .fields-row:last-child .field-box:last-child, 
    .page-exp-n form.booking_form_new .fields-row:last-child .field-box:last-child input, 
    .page-exp-n form.booking_form_new:has(.hidden-part-two:not([style*="display: grid"])) .fields-row:first-child .field-box:last-child, 
    .page-exp-n form.booking_form_new:has(.hidden-part-two:not([style*="display: grid"])) .fields-row:first-child .field-box:last-child .custom-radio-select.in-form .select-trigger {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .page-exp-n form.booking_form_new .fields-list{
        outline: none;
        background-color: transparent;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .page-exp-n form.booking_form_new .top-bar {
        margin-bottom: 4px;
    }

    .page-exp-n .custom-radio-select.option-type .select-trigger {
        padding: 8px 12px;
        padding-right: 42px;
    }

    .page-exp-n .custom-radio-select, .page-exp-n .custom-radio-select.in-form .select-options {
        font-size: var(--value-14);
    }

    .page-exp-n form.booking_form_new .fields-row:first-child .field-box .select2-container--search-airports  .select2-selection__rendered:after {
        right: 8px;
    }

    .page-exp-n form.booking_form_new .bt-box {
        border-radius: 12px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-top: 12px;
        width: 100%;
        grid-template-columns: 1fr;
        grid-gap: 0;
        display: grid;
    }

    .page-exp-n form.booking_form_new .notice-box {
        order: 1;
        margin-top: 12px;
    }

    .page-exp-n form.booking_form_new .notice-box p{
        margin: 0;
    }

    .page-exp-n .search-form-sect:has(form.booking_form_new){
        padding-top: calc(var(--header-height) + 15px);
    }

    .page-exp-n header .item-inf{
        display: none;
    }

    .page-exp-n header .main-bar .columns {
        grid-template-columns: repeat(2, auto);
    }

    .page-exp-n .search-form-sect .title-box{
        max-width:360px;
        margin: 0 auto;
    }

    .page-exp-n .sect.search-form-sect .rows,
    .page-exp-n .search-form-sect .head-rows{
        grid-gap: 24px;
    }

    body .ui-datepicker-bottom-panel{
        background-color: #F5F5F7;
    }

    body .ui-datepicker-bottom-panel .date-info.focus label, 
    body .ui-datepicker-bottom-panel .date-info.focus span {
        color: rgba(0, 118, 226, 1);
    }

    body .ui-datepicker-range .ui-datepicker-header,
    body .ui-datepicker-calendar thead tr th{
        font-size: 16px;
    }

    body .ui-datepicker-calendar {
        font-size: 14px;
    }

    body.page-exp-n>.select2-container--search-airports .select2-search--dropdown .select2-search__field {
        font-size: 16px;
    }

    body>.select2-container--search-airports span.close-select2-mobile, 
    body button.ui-datepicker-close, 
    body.iti-mobile .iti--container::after {
        background-image: url(img/form-images/close.svg);
    }

    body .ui-datepicker::before{
        background-color: rgba(246, 246, 246, 1);
        box-shadow: 0 0 14px 10px rgba(246, 246, 246, 1);
    }

    body .ui-datepicker-range .ui-datepicker-calendar tbody tr td:not(.ui-datepicker-current-day):not(.select-start-day):not(.select-end-day) a:hover{
        background-color: transparent!important;
        color: var(--color-base)!important;
    }
}

@media (max-width: 570px){
    .page-exp-n .banner-box .img-box{
        display: none;
    }

    .page-exp-n .banner-box{
        grid-template-columns: 1fr;
    }

    .page-exp-n .banner-box .title{
        font-size:20px;
    }
}


@media (max-width: 480px){
    .page-exp-n header .logo-box img,
    .page-exp-n header .logo-box svg, 
    .page-exp-n footer .logo-box img {
        max-width: 93px;
    }
}

@media (max-width: 360px){
    .page-exp-n header .phone a{
        padding: 12px;
    }
}



@media (min-width: 1321px) and (max-width: 1440px){
    .page-exp-n form.booking_form_new .custom-radio-select.in-form .select-options {
        font-size: 13px;
    }
}

@media (min-width: 1240px) and (max-width: 1320px){
    .page-exp-n form.booking_form_new .custom-radio-select.in-form .select-options {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1199px){
    .page-exp-n form.booking_form_new .custom-radio-select.in-form .select-options {
        width: calc(3* var(--value-100) + var(--value-20));
        font-size: var(--value-12);
    }
}



/* ------------------------------- */
.template-promo-email .sect.triggers .items-list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--value-32);
    text-align: center;
}

.template-promo-email .sect.triggers .items-list .item .title-box{
    margin-bottom: var(--value-4);
}

.template-promo-email .sect.triggers .items-list .item{
    font-size: var(--value-14);
}

.template-promo-email .sect.triggers .items-list .item .ico{
    width: var(--value-100);
    margin: 0 auto;
}

.template-promo-email .sect.triggers .items-list .item .ico img{
    width:100%;
    height: auto;
}

.template-promo-email .sect.triggers .rows,
.template-promo-email .sect.destinations .rows,
.template-promo-email .sect.partners .rows{
    grid-gap: var(--value-24);
}

.template-promo-email .tabs-nav li{
    padding: var(--value-13) var(--value-16);
    font-size: var(--value-14);
}

.template-promo-email .tabs-nav{
    padding: 0;
    justify-content: center;
}

.template-promo-email .item-post-destin a,
.template-promo-email .item-post-destin a .info-box{
    gap: var(--value-8);
}

.template-promo-email .item-post-destin{
    font-size: var(--value-14);
}

.template-promo-email .item-post-destin .price-box .price {
    font-size: var(--value-16);
}

.template-promo-email .item-post-destin .item-title{
    font-weight: 600;
}

.template-promo-email .sect.partners{
    padding: var(--value-60) 0 var(--value-40);
}

.template-promo-email .sect.partners .info{
    width: 100%;
    max-width: calc(8.5* var(--value-100));
    margin: 0 auto;
    text-align: center;
    grid-gap: var(--value-16);
}

.template-promo-email .sect.partners .partners-list {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: var(--value-16) 0;
    padding: 0 calc(6.5* var(--value-10));
    display: grid;
}

.template-promo-email .reviews-list .item .rev-item .feedback-public{
    font-size: var(--value-14);
}

.template-promo-email .faq-list-item{
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--value-16);
    display: grid;
}

.template-promo-email .faq-list-item .item{
    border: var(--value-1) solid rgba(213, 229, 251, 1);
    padding: var(--value-24);
    display: grid;
    grid-auto-rows: min-content;
    grid-gap: var(--value-8);
}

.template-promo-email .faq-list-item .item .ask{
    font-weight: 600;
}

.template-promo-email.page-exp-n .search-form-sect {
    background-color: transparent;
    padding-top: calc(var(--header-height) + var(--value-70));
    margin-bottom: var(--value-40);
    padding-bottom: var(--value-80);
    position: relative;
}

.template-promo-email .search-form-sect .container{
    position: relative;
    z-index: 1;
}

.template-promo-email .search-form-sect .bg-sect{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-image: var(--pc-bg);
}

.template-promo-email header .menu-box ul{
    gap: var(--value-12);
}

.template-promo-email header .main-bar .columns{
    gap: var(--value-12); 
}

.template-promo-email header .menu-box ul li a, 
.template-promo-email header .menu-box ul li span, 
.template-promo-email header .phone, 
.template-promo-email header .sign-in{
    min-height: calc(var(--value-40) + var(--value-8));
    border-radius: var(--value-8);
}

.template-promo-email header .menu-box ul li a:hover, 
.template-promo-email header .menu-box ul li span:hover, 
.template-promo-email header .menu-box ul li.current-menu-item a, 
.template-promo-email header .sign-in:hover, header .phone:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.template-promo-email .main-title .subtitle{
    font-size: calc(2.6 * var(--value-10));
}

.template-promo-email .main-title .subtitle span{
    position: relative;
}

.template-promo-email .main-title .subtitle span::before{
    content: '';
    width: 115%;
    height: 106%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url(img/promo-email/text-image-bg.svg);
    background-position: center;
    background-size: 100% 100%;
    z-index: -1;
}

.template-promo-email .title-box.main-title{
    gap: var(--value-40);
}

.template-promo-email .title-box.main-title .title {
    font-size: var(--value-40);
    max-width: calc(9.8* var(--value-100));
    margin: 0 auto;
}
    
.template-promo-email .bt{
    background-color: rgba(255, 115, 0, 1);
    color: #fff;
}

.template-promo-email .bt:hover{
    background-color: rgba(208, 94, 0, 1);
}

.template-promo-email .popup_flow_form .popup_form_section {
    display: none;
    grid-template-columns: 1fr auto;
    gap: var(--value-16) var(--value-2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    max-width: calc(12.44* var(--value-100));
    margin: 0 auto;
    border-radius: var(--value-32);
    color: var(--color-base);
}

.template-promo-email .popup_flow_form .popup_form_section.open{
    display: grid;
    background-color: rgba(238, 244, 253, 1);
    padding: var(--value-48) var(--value-32);
    z-index: 1001;
    grid-auto-rows: min-content;
}

.popup_flow_form:has(.popup_form_section.open)::before{
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(11, 10, 13, 0.5);
    z-index: 1;
}

.popup_form_title_box,
.popup_form_desc{
    text-align: center;
    margin: 0 auto;
    max-width: calc(6.5 * var(--value-100));
    grid-column-start: span 2;
}

.popup_form_title{
    font-weight: 800;
    font-size: var(--value-24);
    line-height: 1.25;
}

.popup_form_desc{
    margin-bottom: var(--value-16);
    font-size: var(--value-20);
    letter-spacing: calc(-1* var(--value-1));
}

.close_form_popup{
    position: absolute;
    top: var(--value-20);
    right: var(--value-20);
    width: var(--value-28);
    height: var(--value-28);
    background-image: url(img/promo-email/close.svg);
    background-size: var(--value-24);
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
    cursor: pointer;
}

.popup_flow_form .popup_form_section .fields-row{
    grid-template-columns: repeat(4, 1fr)!important;
}

.template-promo-email:has(.popup_form_section.open) header{
    z-index: 1;
}


/* only pc */
@media (min-width: 768px){
    .template-promo-email.page-exp-n form.booking_form_new .bt {
        margin-bottom: 0;
        font-size: var(--value-20);
        padding: 0 var(--value-32);
    }

    .template-promo-email form.booking_form_new.round-trip .fields-row {
        grid-template-columns: calc(2.7* var(--value-100)) calc(2.7* var(--value-100)) 1fr calc(1.78* var(--value-100));
        grid-gap: var(--value-2);
    }

    .template-promo-email .custom-radio-select.in-form.selected .select-trigger>span{
        display: none;
    }

    .template-promo-email header:not(.show-btn) .animation-btn-box {
        margin-left: calc(-1* var(--value-12));
    }

    .template-promo-email .phone-box,
    .template-promo-email .animation-btn-box{
        order: 2;
    }

    .template-promo-email.page-exp-n .form-frame:has(.booking_form_new) form{
        grid-template-columns: 1fr auto;
        grid-gap: var(--value-4) var(--value-2);
    }
    
    .template-promo-email.page-exp-n form.booking_form_new .top-bar{
        grid-column-start: span 2;
        margin: 0;
        gap: var(--value-1);
    }

    .template-promo-email form.booking_form_new.round-trip .dates-group{
        background-color: transparent;
        grid-gap: var(--value-2);
    }
    
    .template-promo-email form.booking_form_new .dates-group .date-return::after{
        display: none;
    }

    .template-promo-email.page-exp-n .custom-radio-select.option-type .select-trigger::after{
        background-image: url(img/form-images/cust-sel-arrow.svg);
    }

    .template-promo-email form.booking_form_new .top-bar .custom-radio-select:first-child .select-trigger {
        border-radius: var(--value-4) 0 0 var(--value-4);
    }

    .template-promo-email form.booking_form_new .top-bar .custom-radio-select:last-child .select-trigger {
        border-radius: 0 var(--value-4) var(--value-4) 0;
    }

    .template-promo-email form.booking_form_new .top-bar .custom-radio-select .select-trigger {
        background-color: #fff;
        color: var(--color-base);
    }

    body.template-promo-email>.select2-container--search-airports{
        z-index: 1;
    }

    .template-promo-email form.booking_form_new .select2-container--search-airports .select2-selection__rendered{
        padding-right: var(--value-50);
    }

}


@media (max-width: 767px){
    .template-promo-email .search-form-sect .bg-sect{
        background-position: top center;
    }

    .template-promo-email .sect.triggers .items-list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
    }

    .template-promo-email .sect.triggers .rows, 
    .template-promo-email .sect.destinations .rows, 
    .template-promo-email .sect.partners .rows,
    .template-promo-email .rows{
        grid-gap: 16px;
    }

    .template-promo-email .sect.partners {
        padding: 20px 0;
        margin: 32px 0;
    }

    .template-promo-email .sect.partners .partners-list {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        padding: 0;
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    .template-promo-email .sect.partners .partners-list .item img{
        max-width:100%;
    }

    .template-promo-email .sect.partners .partners-list .item {
        width: 140px;
        padding: 0;
    }

    .template-promo-email header .phone{
        padding: 12px 10px;
        min-height: 40px;
    }

    .template-promo-email header.show-btn .menu-phone-box .phone{
        color: #fff;
    }

    .template-promo-email header .main-bar .wrap-menu{
        gap: 12px;
    }

    .template-promo-email .title-box.main-title {
        gap: 24px;
    }

    .template-promo-email.page-exp-n .search-form-sect .title-box.main-title .title {
        font-size: 18px;
    }

    .template-promo-email .main-title .subtitle {
        font-size: 16px;
    }

    .template-promo-email.page-exp-n .sect.search-form-sect .rows{
        grid-gap: 40px;
    }

    .template-promo-email.page-exp-n .search-form-sect,
    .template-promo-email.page-exp-n .search-form-sect:has(form.booking_form_new){
        padding-bottom: 46px!important;
        margin-bottom: 32px;
    }

    .template-promo-email .sect {
        padding: 32px 0;
    }

    .template-promo-email.page-exp-n .form-frame:has(.booking_form_new) {
        max-width: 380px;
        margin: 0 auto;
    }

    .template-promo-email .main-title .subtitle span::before{
        height: 115%;
    }

    .template-promo-email .popup_flow_form .popup_form_section{
        grid-template-columns: 1fr;
    }

    .popup_form_title_box,
    .popup_form_desc{
        grid-column-start: initial;
        text-align: left;
    }

    .popup_form_title{
        max-width: 265px;
    }

    .popup_flow_form .popup_form_section .fields-row{
        grid-template-columns: 1fr!important;
    }

    .popup_form_title_box,
    .popup_form_desc,
    .popup_flow_form .popup_form_section .fields-row,
    .popup_flow_form .popup_form_section .bt-box{
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }

    .template-promo-email .popup_flow_form .popup_form_section.open{
        padding: 32px 16px;
        border-radius: 0;
        height: 100%;
        overflow: scroll;
    }

    .popup_form_desc{
        font-size: 14px;
        margin-bottom: 8px;
    }

    .popup_flow_form .popup_form_section .bt-box{
        margin-top: 0!important;
    }

    body.template-promo-email>.select2-container--search-airports .select2-airports-list,
    .template-promo-email .select2-container--type-2.select2-container--open .select2-dropdown, 
    .template-promo-email .ui-datepicker, 
    .template-promo-email.iti-mobile .iti--container,
    body.page-exp-n.template-promo-email .ui-datepicker::before,
    body.page-exp-n.template-promo-email .ui-datepicker-bottom-panel{
        background-color: rgba(238, 244, 253, 1);
    }
}


@media (max-width: 600px){
    .template-promo-email .sect.triggers .items-list,
    .template-promo-email .faq-list-item{
        grid-template-columns: 1fr;
    }

    .template-promo-email .search-form-sect .bg-sect{
        background-image: var(--mob-bg);
    }
    
}





/* step-version */

.step_order_home form.booking_form_new .top-bar{
    margin-bottom: var(--value-3);
    grid-column-start: span 2;
}

.step_order_home .form-frame:has(.booking_form_new) form{
    gap: var(--value-12);
    align-items: flex-start;
}

.step_order_home .form-frame:has(.booking_form_new) .bt-box {
    text-align: left;
}

.step_order_home form.booking_form_new .quantity-select .with-ico::before {
    background-image: url(img/form-images/passangers.svg);
}

.step_order_home form.booking_form_new .fields-list{
    grid-gap: var(--value-1);
    grid-template-columns: repeat(2, 1fr);
}

.step_order_home form.booking_form_new .field-box:first-child,
.step_order_home form.booking_form_new .field-box:first-child .select2-container--search-airports .select2-selection__rendered,
.step_order_home form.booking_form_new .field-box:first-child select,
.step_order_home form.booking_form_new .field-box:nth-child(3),
.step_order_home form.booking_form_new .field-box:nth-child(3) .select-trigger{
    border-top-left-radius: var(--value-4)!important;
    border-bottom-left-radius: var(--value-4)!important;
}

.step_order_home form.booking_form_new .field-box:nth-child(2),
.step_order_home form.booking_form_new .field-box:nth-child(2) .select2-container--search-airports .select2-selection__rendered,
.step_order_home form.booking_form_new .field-box:nth-child(2) select,
.step_order_home form.booking_form_new .field-box:nth-child(4),
.step_order_home form.booking_form_new .field-box:nth-child(4) .select-trigger{
    border-top-right-radius: var(--value-4);
    border-bottom-right-radius: var(--value-4);
}

body.step_order_home>.select2-container--search-airports{
    z-index: 2;
}

.step_order_home form.booking_form_new .bt{
    margin-bottom: 0;
    min-width: calc(1.36 * var(--value-100));
    padding: 0 var(--value-20);
}

.step_order_home form.booking_form_new .fields-list{
    border-radius: 0;
}

.step_order_home form.booking_form_new .select2-container--search-airports .select2-selection__rendered,
.step_order_home form.booking_form_new .bt,
.step_order_home form.booking_form_new select{
    height: calc(6.4 * var(--value-10));
}

.step_order_home .select2-container .select2-selection--single:focus,
.step_order_home .select2-container .select2-selection--single:focus-visible,
.step_order_page .select2-container .select2-selection--single:focus,
.step_order_page .select2-container .select2-selection--single:focus-visible{
    outline: none;
}


.step_order_home .search-form-sect .columns{
    grid-template-columns: calc(6.8 * var(--value-100)) 1fr;
    gap: calc(4.7 * var(--value-10));
}

.step_order_home .search-form-sect .main-title{
    max-width: calc(6 * var(--value-100));
}

.step_order_home .cards-box{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.step-review-card{
    border-radius: var(--value-12);
    background-color: rgba(237, 248, 237, 1);
    gap: var(--value-12);
    padding: var(--value-24);
    color: rgba(19, 100, 19, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.step_order_home .step-review-card{
    max-width: calc(3.47 * var(--value-100));
    font-size: var(--value-14);
}

.step_order_home .step-review-card{
    box-shadow: 0px 4px 30px 0px rgba(18, 31, 123, 0.2);
}

.step_order_page a:has(.step-review-card){
    text-decoration: none;
}

.step_order_home .step-review-card:nth-child(1){
    transform: rotate(6deg);
    z-index: 1;
    position: relative;
}
.step_order_home .step-review-card:nth-child(2){
    transform: rotate(-6deg) translateX(calc(-5.7 * var(--value-10)));
    margin-top: calc(-4.7 * var(--value-10));
}

.step_order_home .step-review-card.trustpilot{
    gap: var(--value-16);
}

.step-review-card.trustpilot .head-box{
    gap: var(--value-8);
    display: flex;
    flex-direction: column;
}

.step-review-card .logo-box img{
    width: var(--value-100);
}

.step-review-card .review-info{
    gap: var(--value-16);
    align-items: center;
    line-height: 1.4;
}

.step-review-card .img-box{
    width: calc(4.4 * var(--value-10));
    height: calc(4.4 * var(--value-10));
    border-radius: var(--value-2);
    overflow: hidden;
}

.step-review-card .img-box img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

.step-review-card .name,
.step-review-card .title{
    font-size: var(--value-16);
    font-weight: 600;
}

.step-review-card .top-bar{
    justify-content: space-between;
    gap: var(--value-15);
    align-items: center;
}

.step-review-card .bottom-bar{
    gap: var(--value-8);
    font-weight: 600;
    align-items: center;
}

.step-review-card .rating{
    display: flex;
    gap: var(--value-8);
    align-items: center;
}

.step-review-card .rating::after{
    content: '';
    width: var(--value-4);
    height: var(--value-4);
    border-radius: 50%;
    background-color: rgba(19, 100, 19, 1);
}

.step-review-card .avatars-list .item{
    width: calc(3.2 * var(--value-10));
    height: calc(3.2 * var(--value-10));
    border-radius: 50%;
    overflow: hidden;
    border: var(--value-1) solid rgba(237, 248, 237, 1);
}

.step-review-card .avatars-list .item:not(:first-child){
    margin-left: calc(-1 * var(--value-10));
}

.step-review-card .avatars-list .item img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

.step-review-card .rev-content{
    gap: var(--value-4);
}

.step-review-card .rating-bage{
    padding: var(--value-8) var(--value-12);
    border-radius: var(--value-6);
    background-color: rgba(19, 100, 19, 1);
    color: #fff;
    text-align: center;
}

.step-review-card .rating-bage .rating-mark{
    font-weight: 700;
}

.step-review-card .rating-bage .rating-value{
    font-weight: 600;
    font-size: var(--value-20);
}

.step_order_home .custom-radio-select .select-options>div input[type="radio"]:checked + label::before,
.step_order_page .custom-radio-select .select-options>div input[type="radio"]:checked + label::before{
    border: var(--value-6) solid var(--color-base);
}

.step_order_home .sect.partners-line{
    margin-top: 0;
    z-index: -1;
}

.step_order_home .stars,
.step_order_page .stars{
    display: flex;
    gap: var(--value-2);
}

.step_order_home .stars .star,
.step_order_page .stars .star{
    width: var(--value-20);
    height: var(--value-20);
    background-image: url(img/step-order-images/trustpilot/star.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.step_order_page header{
    position: relative;
}

.step_order_page{
    grid-template-rows: auto 1fr;
}

.step_order_page .sect:first-child{
    padding-top: calc(3.2 * var(--value-10));
}

.step_order_home header .columns,
.step_order_page header .columns{
    height: calc(4.2 * var(--value-10));
    align-items: center;
}

.multi_step_form{
    display: flex;
    flex-direction: column;
    gap: calc(3.2 * var(--value-10));
    --sidebar-width: calc(3.47 * var(--value-100));
    font-size: var(--value-14);
}

.multi_step_form .step:not(.thanks_step){
    display: grid;
    grid-gap: var(--value-20);
    grid-template-columns: 1fr var(--sidebar-width);
}

.multi_step_form .top_bar{
    display: flex;
    flex-direction: column;
    gap: var(--value-16);
    max-width: calc(100% - var(--value-20) - var(--sidebar-width));
}

.multi_step_form .progress_bar{
    height: var(--value-6);
    width: 100%;
    border-radius: var(--value-40);
    position: relative;
    background-color: rgba(226, 224, 227, 1);
}

.multi_step_form .progress_bar .progress_fill{
    background-color: var(--color-base);
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--value-40);
    transition: .4s ease-out width;
    -o-transition: .4s ease-out width;
    -moz-transition: .4s ease-out width;
    -webkit-transition: .4s ease-out width;
}

.multi_step_form .previous_step{
    display: flex;
    align-items: center;
    gap: var(--value-4);
    padding: var(--value-2) 0;
    border: none;
    background-color: transparent;
    outline: none;
    line-height: 1;
    color: var(--color-base);
    font-size: var(--value-16);
}

.multi_step_form .previous_step .ico-box img{
    width: var(--value-20);
    height: var(--value-20);
}

.multi_step_form .step .title-box{
    margin: 0;
    gap: var(--value-8);
    max-width: calc(6 * var(--value-100));
}

.multi_step_form .step .form-content,
.multi_step_form .step .fields-list{
    display: flex;
    flex-direction: column;
    gap: var(--value-24);
}

.multi_step_form .content-section{  
    margin-top: calc(-7.5 * var(--value-10));
    display: flex;
    flex-direction: column;
    gap: var(--value-16);
}

.multi_step_form .control-wrap{
    display: flex;
    flex-direction: column;
    gap: var(--value-4);
}

.multi_step_form .control-wrap>label,
.multi_step_form .radio-row .row-content>label{
    font-weight: 600;
    font-size: var(--value-12);
}

.multi_step_form .control-wrap p{
    font-size: var(--value-12);
}

.multi_step_form .control-wrap p{
    color: rgba(137, 131, 144, 1);
}

.multi_step_form .fields-row .control-wrap p{
    max-width: calc(1.8 * var(--value-100));
}

.multi_step_form .input-control,
.step_order_page .select2-container--default .select2-search--dropdown .select2-search__field{
    padding: var(--value-12);
    border: var(--value-1) solid rgba(226, 224, 227, 1);
    border-radius: var(--value-8);
    outline: none;
    color: var(--color-base);
    background-color: #fff;
}

.multi_step_form .input-control:-webkit-autofill{
    color: var(--color-base);
    -webkit-text-fill-color: var(--color-base);
}

.multi_step_form .iti--allow-dropdown input, 
.multi_step_form .iti--separate-dial-code input[type=tel]{
    padding: var(--value-12);
}

.multi_step_form .iti--separate-dial-code .iti__selected-flag{
    padding-left: var(--value-12);
}

.multi_step_form .iti--separate-dial-code .iti__selected-flag .iti__flag{
    width: calc(2.7 * var(--value-10));
    height: var(--value-20);
}

.multi_step_form .input-control::placeholder,
.multi_step_form .custom-radio-select .input-control{
    color: rgba(137, 131, 144, 1);
}

.multi_step_form .custom-radio-select.selected .input-control{
    color: var(--color-base);
}

.multi_step_form .control-wrap .input-control:not(.date-input):focus,
.multi_step_form .control-wrap .input-control.date-input.focus{
    border-color: rgba(47, 123, 234, 1);
}

.multi_step_form .control-wrap .input-control:not(.date-input).error{
    border-color: rgba(183, 37, 37, 1);
}

.multi_step_form .control-wrap:has(.error-message){
    position: relative;
}

.multi_step_form .control-wrap .error-message{
    color: rgba(183, 37, 37, 1);
    font-size: var(--value-12);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% + var(--value-2)));
}

.multi_step_form .fields-row{
    grid-template-columns: repeat(2, 1fr);
    gap: var(--value-24) var(--value-8);
    display: grid;
}

.multi_step_form .fields-row:has(.date-return-show){
    grid-template-columns: repeat(3, 1fr);
}

.multi_step_form .radio-row{
    gap: var(--value-12);
    display: flex;
    flex-direction: column;
}

.multi_step_form .radio-row .row-content{
    gap: var(--value-8);
    max-width: calc(6 * var(--value-100));
    display: flex;
    flex-direction: column;
}

.multi_step_form .radio-list{
    display: flex;
    flex-direction: column;
}

.multi_step_form .bt.secondary{
    background-color: transparent;
    color: var(--color-base);
    padding: var(--value-12) var(--value-24);
    gap: var(--value-8);
    border-radius: var(--value-8);
    border: var(--value-1) solid rgba(226, 224, 227, 1);
}

.multi_step_form .bt.secondary:hover,
.multi_step_form .choice-btn:has(input:checked) .bt{
    border-color: var(--color-base);
}

.multi_step_form .bt.secondary.blue{
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: #fff;
}

.multi_step_form .bt.secondary:disabled{
    color: rgba(196, 193, 200, 1);
    cursor: default;
    border-color: rgba(226, 224, 227, 1);
}

.multi_step_form .bt.secondary.blue:disabled{
    background-color: rgba(246, 246, 246, 1);
    border-color: rgba(246, 246, 246, 1);
    color: rgba(196, 193, 200, 1);
    cursor: default;
}

.multi_step_form .bt.with-arrow-right::after{
    content: '';
    width: var(--value-20);
    height: var(--value-20);
    background-image: url(img/step-order-images/chevron_right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.multi_step_form .choice-btn input{
    display: none;
}

.multi_step_form .choice-buttons{
    display: flex;
    flex-direction: column;
    gap: var(--value-12);
}

.multi_step_form .choice-buttons .bt{
    min-width: calc(2 * var(--value-100));
}

.multi_step_form .step[data-step="4"] .choice-buttons .bt,
.multi_step_form .step[data-step="5"] .choice-buttons .bt{
    min-width: calc(3 * var(--value-100));
}



.multi_step_form .radio-list{
    gap: var(--value-12)
}

.radio-box input{
    display: none;
}

.radio-box label{
    display: inline-flex;
    align-items: center;
    gap: var(--value-8);
    cursor: pointer;
}

.radio-box label::before{
    content: '';
    width: var(--value-18);
    height: var(--value-18);
    border: var(--value-1) solid rgba(226, 224, 227, 1);
    border-radius: 50%;
}

.radio-box:has(input:checked) label::before{
    border: var(--value-6) solid var(--color-base);
}

.multi_step_form .custom-radio-select .select-trigger{
    position: relative;
    padding-right: calc(4.4 * var(--value-10));
    background-color: #fff;
}

.multi_step_form .custom-radio-select .select-trigger::after{
    content: '';
    position: absolute;
    top: 50%;
    right: var(--value-12);
    width: var(--value-20);
    height: var(--value-20);
    background-image: url(img/step-order-images/keyboard_arrow_down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: translateY(-50%);
    transition: .2s ease transform;
}

.multi_step_form .custom-radio-select.activ .select-trigger::after{
    transform: translateY(-50%), rotate(-180deg);
}

.page-exp-n .custom-radio-select .select-options{
    border: var(--value-1) solid rgba(226, 224, 227, 1);
}

.multi_step_form .custom-radio-select .select-options{
    width:100%;
    top: calc(100% + var(--value-8));
    border: var(--value-1) solid rgba(226, 224, 227, 1);
}

.step_order_page .ui-datepicker-top-panel,
.step_order_page .ui-datepicker{
    margin-top: var(--value-8);
}

.step_order_page .ui-datepicker{
    border: var(--value-1) solid rgba(226, 224, 227, 1);
}

.multi_step_form .trip-box{
    padding: var(--value-24);
    border-radius: var(--value-12);
    border: var(--value-1) solid rgba(226, 224, 227, 1);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: var(--value-24);
    align-items: center;
}

.multi_step_form .trip-box img{
    width: calc(3.2 * var(--value-10));
}

.multi_step_form .trip-box .info-box{
    gap: var(--value-4);
}

.multi_step_form .trip-box .destination{
    gap: var(--value-8);
    flex-wrap: wrap;
}

.multi_step_form .trip-box .destination .arrow{
    width: var(--value-20);
}

.multi_step_form .trip-box .fly-info{
    gap: var(--value-8);
    flex-wrap: wrap;
}

.multi_step_form .trip-box .fly-info>span:not(:last-child){
    display: flex;
    gap: var(--value-8);
    align-items: center;
}

.multi_step_form .trip-box .fly-info>span:not(:last-child)::after{
    content: '';
    width: var(--value-4);
    height: var(--value-4);
    background-color: var(--color-base);
    border-radius: 50%;
}

.multi_step_form .trip-box .title{
    font-weight: 700;
    font-size: var(--value-16);
}

.multi_step_form .step.thanks_step .content-section{
    width:100%;
    max-width: calc(7.13 * var(--value-100));
    margin: 0;
    gap: var(--value-24);
}

.step_order_page .agents-box{
    background-color: rgba(238, 244, 253, 1);
    padding: var(--value-16);
    border-radius: var(--value-12);
    gap: var(--value-12);
    align-items: center;
}

.step_order_page .agents-box.type-2{
    flex-direction: column;
    align-items: flex-start;
}

.step_order_page .agents-box .content-box{
    display: flex;
    flex-direction: column;
    gap: var(--value-4);
}

.step_order_page .agents-box .content ul{
    padding: 0;
    list-style: none;
    margin: 0;
    grid-gap: var(--value-16);
    display: flex;
    flex-direction: column;
}

.step_order_page .agents-box .content ul li{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: var(--value-8);
}

.step_order_page .agents-box .content ul li::before{
    content: '';
    width: var(--value-20);
    height: var(--value-20);
    background-image: url(img/step-order-images/done.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}


.step_order_page .agents-box .content p,
.step_order_page .agents-box .content ul,
.step_order_page .agents-box .content ol{
    margin-bottom: var(--value-16);
}

.step_order_page .agents-box .content p:last-child,
.step_order_page .agents-box .content ul:last-child,
.step_order_page .agents-box .content ol:last-child{
    margin-bottom: 0;
}

.step_order_page .agents-box .avatars-list .item {
    width: calc(4.8 * var(--value-10));
    height: calc(4.8 * var(--value-10));
    border-radius: 50%;
    overflow: hidden;
    border: var(--value-2) solid rgba(237, 248, 237, 1);
}

.step_order_page .agents-box .avatars-list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step_order_page .agents-box .avatars-list .item:not(:first-child) {
    margin-left: calc(-1 * var(--value-16));
}

.step_order_page .agents-box .subtitle{
    font-size: var(--value-16);
    font-weight: 700;
    line-height: 1.5;
}


.step_order_page .side-card-item{
    background-color: rgba(238, 244, 253, 1);
    padding: var(--value-24);
    border-radius: var(--value-12);
    display: flex;
    flex-direction: column;
    gap: var(--value-16);
}

.step_order_page .side-card-item.purple{
    background-color: rgba(243, 240, 253, 1);
    color: rgba(65, 38, 136, 1);
}

.step_order_page .side-card-item .box-head{
    display: flex;
    flex-direction: column;
    gap: var(--value-4);
}

.step_order_page .side-card-item .title{
    font-weight: 700;
    line-height: 1.4;
    font-size: var(--value-16);
}

.step_order_page .side-card-item.agents .title{
    font-weight: 600;
    font-size: var(--value-20);
}

.step_order_page .side-card-item ul{
    display: flex;
    flex-direction: column;
    gap: var(--value-16);
    list-style: none;
    margin: 0;
    padding: 0;
}

.step_order_page .side-card-item ul li{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: var(--value-8);
}

.step_order_page .side-card-item ul li::before{
    content: '';
    width: var(--value-20);
    height: var(--value-20);
    background-image: url(img/step-order-images/done.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.agents_slider_step{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--value-8);
}

.agents_slider_step .item{
    display: flex;
    flex-direction: column;
    gap: var(--value-8);
}

.agents_slider_step .item .item-head{
    align-items: center;
    gap: var(--value-12);
}

.agents_slider_step .item .img-box{
    overflow: hidden;
    border-radius: 50%;
    width: calc(4.8 * var(--value-10));
    height: calc(4.8 * var(--value-10));
}

.agents_slider_step .item .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agents_slider_step .item .title{
    font-size: var(--value-16);
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    gap: var(--value-4);
}

.agents_slider_step .item .title::after{
    content: '';
    width: var(--value-20);
    height: var(--value-20);
    background-image: url(img/step-order-images/verified.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: var(--value-4);
}

.agents_slider_step .owl-nav{
    display: flex;
    justify-content: flex-end;
    gap: var(--value-4);
}

.agents_slider_step .owl-prev,
.agents_slider_step .owl-next{
    font-size: 0;
    width: calc(3.2 * var(--value-10));
    height: calc(3.2 * var(--value-10));
    background-color: rgba(213, 229, 251, 1);
    border-radius: var(--value-8);
    cursor: pointer;
    background-image: url(img/step-order-images/arrow_forward.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: var(--value-20);
}

.agents_slider_step .owl-prev{
    transform: scale(-1, 1);
}

.multi_step_form .select2-container--default .select2-selection--single,
.multi_step_form .select2-container--default .select2-selection--multiple{
    border: var(--value-1) solid rgba(226, 224, 227, 1);
    border-radius: var(--value-8);
    height: auto;
    cursor: pointer;
}

.multi_step_form .select2-container--default .select2-selection--single .select2-selection__rendered{
    padding: var(--value-12);
    padding-right: var(--value-40);
    line-height: 1.6;
    color:var(--color-base);
}

.multi_step_form .select2-container--default .select2-selection--single .select2-selection__arrow,
.multi_step_form .select2-container--default .select2-selection--multiple::after{
    width: var(--value-20);
    height: var(--value-20);
    right: var(--value-12);
    top: 50%;
    transform: translateY(-50%);
}

.multi_step_form .select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: block;
    border: none;
    width:100%;
    height: 100%;
    background-image: url(img/step-order-images/keyboard_arrow_down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: .2s ease transform;
    -o-transition: .2s ease transform;
    -moz-transition: .2s ease transform;
    -webkit-transition: .2s ease transform;
    left: initial;
    margin-left: initial;
    margin-top: initial;
    position: relative;
    top: initial;
}

.multi_step_form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    transform: rotate(-180deg);
}

.step_order_page .select2-dropdown{
    border: var(--value-1) solid rgba(226, 224, 227, 1);
    box-shadow: 0 var(--value-8) var(--value-12) 0 rgba(10, 29, 61, 0.08);
    font-size: var(--value-14);
    border-radius: var(--value-8);
    margin-top: var(--value-8);
}

.step_order_page .select2-container--open .select2-dropdown--below{
    border-top: var(--value-1) solid rgba(226, 224, 227, 1);
    border-radius: var(--value-8);
    overflow: hidden;
}

.step_order_page .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.step_order_page .select2-container--default.select2-container--open.select2-container--below .select2-selection--single{
    border-radius: var(--value-8);
}

.step_order_page .select2-results__option{
    padding: var(--value-8);
    color: rgba(10, 29, 61, 1);
}

.step_order_page .select2-results__option span{
    display: flex;
    gap: var(--value-8);
    align-items: center;
}

.step_order_page .select2-results__option span img{
    width: var(--value-20);
}

.step_order_page .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background-color: rgba(241, 241, 241, 0.6);
    color: rgba(10, 29, 61, 1);
}

.step_order_page .select2-container--default .select2-results__option--selected,
.step_order_page .select2-container--default .select2-results__option--selected.select2-results__option--highlighted{
    background-color: rgba(241, 241, 241, 1);
    color: rgba(10, 29, 61, 1);
}

.step_order_page .select2-container--default .select2-search--dropdown .select2-search__field{
    padding: var(--value-8) var(--value-12);
}

.step_order_page .select2-search--dropdown{
    display: block;
    padding: var(--value-8);
}

.step_order_page .select2-results__options::-webkit-scrollbar,
.page-exp-n .iti__country-list::-webkit-scrollbar,
.step_order_page .iti__country-list::-webkit-scrollbar,
body.page-exp-n >.select2-container--search-airports .select2-results>.select2-results__options::-webkit-scrollbar{
	width: var(--value-4);
}

.step_order_page .select2-results__options::-webkit-scrollbar-thumb,
.page-exp-n .iti__country-list::-webkit-scrollbar-thumb,
.step_order_page .iti__country-list::-webkit-scrollbar-thumb,
body.page-exp-n >.select2-container--search-airports .select2-results>.select2-results__options::-webkit-scrollbar-thumb{
	background-color: #ccc;
	border-radius: var(--value-5);
}

.step_order_page .select2-container--default .select2-results>.select2-results__options{
    max-height: calc(2 * var(--value-100));
}


.multi_step_form .select2-container--default .select2-selection--multiple{
    padding: var(--value-6) var(--value-12);
    padding-right: var(--value-40);
    display: flex;
    gap: var(--value-10);
    align-items: center;
}

.multi_step_form .select2-container--default .select2-selection--multiple::after{
    content: '';
    position: absolute;
    background-image: url(img/step-order-images/keyboard_arrow_down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: .2s ease transform;
    -o-transition: .2s ease transform;
    -moz-transition: .2s ease transform;
    -webkit-transition: .2s ease transform;
}

.multi_step_form .select2-container--default.select2-container--open .select2-selection--multiple::after{
    transform: translateY(-50%) rotate(-180deg);
}

.multi_step_form .select2-selection--multiple .select2-search--inline .select2-search__field{
    margin: 0;
    line-height: 1.6;
    height: var(--value-20);
}

.multi_step_form .select2-container--default .select2-selection--multiple .select2-selection__choice__display{
    padding: 0;
}

.multi_step_form .select2-container--default.select2-container--focus .select2-selection--multiple{
    border: var(--value-1) solid rgba(226, 224, 227, 1);
}

.step_order_page .select2-airlines-list .select2-results__option span::before{
    content: '';
    display: block;
    width: var(--value-18);
    height: var(--value-18);
    border: var(--value-1) solid rgba(226, 224, 227, 1);
    border-radius: var(--value-4);
}

.step_order_page .select2-airlines-list .select2-results__option.select2-results__option--selected span::before{
    background-color: rgba(47, 123, 234, 1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    border-color: rgba(47, 123, 234, 1);
    background-image: url(img/step-order-images/done-white.svg);
}

.step_order_page .select2-container--default .select2-selection--multiple .select2-selection__choice{
    margin: 0;
    background-color: rgba(241, 241, 241, 1);
    border: none;
    padding: var(--value-6) var(--value-12);
    border-radius: var(--value-8);
    display: flex;
    gap: var(--value-2);
    align-items: center;
}

.step_order_page .select2-container .select2-selection--multiple .select2-selection__rendered{
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--value-2);
    margin: 0;
}

.step_order_page .select2-container .select2-selection--multiple .select2-selection__rendered:empty{
    display: none;
}

.step_order_page .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    position: relative;
    border: none;
    border-radius: 0;
    padding: 0;
    order: 1;
}

.step_order_page .select2-container--default .select2-selection--multiple .select2-selection__choice__remove span{
    font-size: 0;
    width: var(--value-16);
    height: var(--value-16);
    background-image: url(img/step-order-images/close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
}

.step_order_page .select2-search--inline{
    display: inline-flex;
    padding: var(--value-6) 0;
}

.auto_scroll_step .item {
    padding: 0 var(--value-10);
    width: calc(10.5 * var(--value-10));
}

.auto_scroll_step .item img{
    width: 100%;
    height: auto;
}

.auto_scroll_step{
    margin: 0 calc(-1 * var(--value-24));
    overflow: hidden;
}

.auto_scroll_step .partners_list_step{
    position: relative;
    overflow:hidden;
}

.auto_scroll_step .partners_list_step::after{
    content: '';
    width:100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #F3F0FD 0%, rgba(243, 240, 253, 0) 50%, #F3F0FD 100%);

}

.multi_step_form .bt-box .error_send:not(:empty){
    color: rgba(183, 37, 37, 1);
    background-color: rgba(183, 37, 37, 0.1);
    padding: var(--value-16);
    border-radius: var(--value-8);
    margin-top: var(--value-8);
}

.multi_step_form .btns-box{
    display: inline-flex;
    gap: var(--value-12);
    align-items: center;
}

.step_order_page .select2-container:focus-visible{
    outline: none;
}

.step_order_page .agents-box.fixed-funct{
    display: none!important;
}

.way-type-selector{
    background-color: rgba(241, 241, 241, 1);
    border-radius: var(--value-4);
    padding: var(--value-2);
    display: inline-flex;
}

.way-type-selector .radiobox input{
    display: none;
}

.way-type-selector .radiobox label{
    padding: var(--value-6) var(--value-12);
    border-radius: var(--value-2);
    font-size: var(--value-14);
}

.way-type-selector .radiobox:has(input:checked) label{
    background-color: #fff;
    font-weight: 600;
    box-shadow: 0 var(--value-3) var(--value-8) 0 rgba(0, 0, 0, 0.12);

}

.way-type-selector .radiobox:not(:has(input:checked)) label{
    cursor: pointer;
}

.around-the-world header .logo-box svg path{
    fill: var(--color-base);
}

.around-the-world header .phone svg path{
    fill: var(--color-base);
}

.around-the-world header .menu-btn svg path{
    fill: var(--color-base);
}


.around-the-world header.scroll{
    background-color: rgba(207, 227, 255, 1);
}

.around-the-world header .menu-box ul li a, 
.around-the-world header .menu-box ul li span, 
.around-the-world header .phone, 
.around-the-world header .sign-in{
    color: var(--color-base);
}

.around-the-world header .phone-box{
    order: 1;
}

.around-the-world .around-head-sect{
    padding-top: var(--header-height);
    padding-bottom: 0;
    background-color: rgba(207, 227, 255, 1);
    color: var(--color-base);
    margin-bottom: var(--value-40);
}

.around-the-world .around-head-sect .columns{
    align-items: center;
}

.around-the-world .around-head-sect .img-box{
    max-width: calc(6.3 * var(--value-100));
    width: 100%;
    margin-left: calc(-8.6 * var(--value-10));
}

.around-the-world .around-head-sect .img-box img{
    width: 100%;
    transform: translateX(var(--value-24));
}

.around-the-world .main-title .title{
    font-size: var(--value-40); 
}

.around-the-world .main-title .descr{
    font-size: calc(2.3 * var(--value-10));
    line-height: 1.2;
}

.around-the-world .around-head-sect .cont-box{
    gap: var(--value-32);
}

.around-the-world .around-head-sect .list{
    gap: var(--value-16);
    font-size: calc(2.3 * var(--value-10));
    line-height: 1.2;
}

.around-the-world .around-head-sect .list .item{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: var(--value-10);
    align-items: center;
}

.around-the-world .around-head-sect .list .item::before{
    content: '';
    background-color: rgba(26, 134, 26, 1);
    width: var(--value-32);
    height: var(--value-32);
    border-radius: var(--value-8);
    background-image: url(./img/page-around/done.svg);
    background-repeat: no-repeat;
    background-size: var(--value-24);
    background-position: center;
}

.around-the-world .how-get-ticket .columns{
    grid-template-columns: 1fr calc(5.36 * var(--value-100));
    grid-gap: calc(1.33 * var(--value-100));
    align-items: center;
}

.around-the-world .how-get-ticket .title-box.main-title{
    gap: var(--value-24);
    max-width: calc(4.61 * var(--value-100));
}

.around-the-world .how-get-ticket .info-block{
    gap: var(--value-40);
}

.around-the-world .how-get-ticket .items-list{
    gap: var(--value-40);
}

.around-the-world .how-get-ticket .items-list .item{
    counter-increment: section;
    grid-template-columns: auto 1fr;
    grid-gap: calc(2.3 * var(--value-10));
    align-items: center;
    line-height: 1.2;
}

.around-the-world .how-get-ticket .items-list .item::before{
    content: counter(section);
    width: calc(5.8 * var(--value-10));
    height: calc(5.8 * var(--value-10));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-base);
    border-radius: var(--value-8);
    line-height: 1;
    color: #fff;
    font-weight: 700;
    font-size: var(--value-24);
}

.around-the-world .how-get-ticket .items-list .item a{
    text-decoration: none;
}

.around-the-world .faq-list-around{
    width: 100%;
    max-width: calc(7 * var(--value-100));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--value-16);
}

.around-the-world .faq-list-around .item{
    padding: var(--value-24);
    border: var(--value-1) solid rgba(213, 229, 251, 1);
    border-radius: var(--value-2);
    display: flex;
    flex-direction: column;
    gap: var(--value-8);
}

.around-the-world .faq-list-around .item .ask{
    font-weight: 600;
}

.around-the-world .form-area{
    border-radius: var(--value-32);
    padding: calc(3.8 * var(--value-10));
    background-color: var(--color-base);
}

.around-the-world .form-area .text-box{
    line-height: 1.2;
}

.around-the-world .form-area .bottom-bar{
    grid-gap: var(--value-16);
}

.around-the-world .form-area .text-box{
    line-height: 1.2;
}

.around-the-world .form-area .fields-wrap,
.around-the-world .form-area form{
    display: flex;
    flex-direction: column;
    gap: var(--value-16);
}

.around-the-world .bt{
    background-color: rgba(255, 115, 0, 1);
    color: #fff;
    font-size: calc(1.9 * var(--value-10));
    font-weight: 700;
    line-height: 1.25;
    border-radius: var(--value-8);
}

.around-the-world .form-area .bt{
    width: 100%;
}

.around-the-world .text{ 
    color: #fff;
}

.around-the-world .form-area .bt-box{
    position: relative;
}

.around-the-world .form-area .bt-box .wpcf7-spinner{
    position: absolute;
    top: 50%;
    right: var(--value-20);
    transform: translateY(-50%);
    margin: 0;
}

.around-the-world .form-area input:not([type=submit]),
.around-the-world .form-area textarea{
    padding: var(--value-18) var(--value-12);
    border-radius: var(--value-8);
    width: 100%;
    line-height: 1.25;
    background-color: #fff;
    border: none;
    color: var(--color-base);
    outline: none;
}

.around-the-world .form-area input:not([type=submit]):focus-visible,
.around-the-world .form-area textarea:focus-visible{
    outline: none;
}

.around-the-world .form-area input:not([type=submit])::placeholder,
.around-the-world .form-area textarea::placeholder{
    color: var(--color-base);
}

.around-the-world .form-area input:not([type=submit])::-moz-placeholder,
.around-the-world .form-area textarea::-moz-placeholder{
    color: var(--color-base);
}

.around-the-world .wpcf7 form .wpcf7-response-output{
    margin: 0;
    padding: var(--value-12);
    border-radius: var(--value-8);
    font-size: var(--value-16);
    border: none;
    outline: none;
    color: #fff;
}

.around-the-world .wpcf7 form.invalid .wpcf7-response-output, 
.around-the-world .wpcf7 form.unaccepted .wpcf7-response-output, 
.around-the-world .wpcf7 form.payment-required .wpcf7-response-output{
    background-color: rgb(255 0 0 / 30%);
}

.around-the-world .wpcf7 form.sent .wpcf7-response-output{
    background-color: rgb(70 180 80 / 36%);
}   

.around-the-world .wpcf7 form .wpcf7-not-valid-tip{
    display: none;
}

.around-the-world .form-area input.wpcf7-not-valid, 
.around-the-world .form-area textarea.wpcf7-not-valid{
    outline: 1px solid #ed0c0c;
}


.around-the-world .form-area input:-webkit-autofill{
	-webkit-box-shadow: inset 0 0 0 50px #fff;
	-webkit-text-fill-color: var(--color-base);
}





.page-exp-o .search-form-sect .columns {
    grid-template-columns: calc(6.8 * var(--value-100)) 1fr;
    gap: calc(6.9 * var(--value-10));
}

.page-exp-o .cards-box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: var(--value-15);
}

.page-exp-o .step-review-card {
    box-shadow: 0px 4px 30px 0px rgba(18, 31, 123, 0.2);
    max-width: calc(3.40 * var(--value-100));
    font-size: var(--value-12);
    padding: var(--value-20);
}

.page-exp-o .step-review-card .info-box{
    gap: var(--value-2);
}

.page-exp-o .step-review-card:nth-child(1) {
    transform: rotate(5deg) translateX(calc(10 * var(--value-10)));
    z-index: 1;
    position: relative;
    max-width: calc(2.94 * var(--value-100));
}

.page-exp-o .step-review-card:nth-child(2) {
    transform: rotate(-6deg);
    margin-top: calc(-2.5 * var(--value-10));
}

.page-exp-o .step-review-card.trustpilot {
    gap: var(--value-16);
}

.page-exp-o .stars {
    display: flex;
    gap: var(--value-2);
}

.page-exp-o .stars .star{
    width: var(--value-16);
    height: var(--value-16);
    background-image: url(img/step-order-images/trustpilot/star.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.page-exp-o .step-review-card .name{
    font-size: var(--value-12);
}

.page-exp-o .step-review-card .img-box {
    width: calc(3.7 * var(--value-10));
    height: calc(3.7 * var(--value-10));
}

.page-exp-o .step-review-card .avatars-list .item {
    width: calc(2.7 * var(--value-10));
    height: calc(2.7 * var(--value-10));
}

.page-exp-o .step-review-card .logo-box img {
    width: var(--value-80);
}

.page-exp-o .step-review-card .rev-content{
    line-height: 1.42;
}

/* ------------- google-thanks -------------- */

.google-thanks header{
    position: relative;
    border-bottom-color: #E2E0E3;
}

.google-thanks header .main-bar {
    padding: var(--value-10) 0;
}

.google-thanks {
    grid-template-rows: auto 1fr auto;
}

.google-thanks footer{
    background-color: #fff;
    padding: 0 0 var(--value-25);
    color: inherit;
    margin-top: 0;
}

.google-thanks footer .footer-box{
    gap: var(--value-16);
}

.google-thanks footer .logo-box img {
    width: calc(2.3 * var(--value-100));
}

.google-thanks .main-wrap{
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.google-thanks .content-section{
    margin: 0 auto;
    width: 100%;
    max-width: calc(7.13 * var(--value-100));
    gap: var(--value-16);
}

.google-thanks .avatars-list{
    margin-bottom: var(--value-8);
}

.google-thanks .avatars-list .item{
    width: calc(6.4 * var(--value-10));
    height: calc(6.4 * var(--value-10));
    border-radius: 50%;
    overflow: hidden;
    border: var(--value-2) solid #fff;
}

.google-thanks .avatars-list .item:not(:first-child) {
    margin-left: calc(-1 * var(--value-16));
}

.google-thanks .avatars-list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-thanks .title-box.sect-title .title{
    font-size: var(--value-28); 
}

.google-thanks .container {
    max-width: calc(11.2 * var(--value-100));
}

.google-thanks .request-box{
    gap: var(--value-8);
    align-items: flex-start;
}

.google-thanks .request-box label{
    color: #898390;
    font-size: var(--value-14);
}

.google-thanks .request-list{
    padding: var(--value-16);
    border-radius: var(--value-16);
    gap: var(--value-4);
    border: var(--value-1) solid #E2E0E3;
    min-width:  calc(3.6 * var(--value-100));
}

.google-thanks .request-list .destination{
    gap: var(--value-2) var(--value-8);
    align-items: center;
    font-weight: 600;
    font-size: var(--value-16);
    flex-wrap: wrap;
}

.google-thanks .request-list .destination img{
    width: var(--value-20);
    height: var(--value-20);
}

.google-thanks .request-list .request-info{
    font-size: var(--value-14);
    gap: var(--value-4) var(--value-8);
    flex-wrap: wrap;
}

.google-thanks .request-list .request-info>span:not(:last-child) {
    display: flex;
    gap: var(--value-8);
    align-items: center;
}

.google-thanks .request-list .request-info>span:not(:last-child)::after {
    content: '';
    width: var(--value-2);
    height: var(--value-2);
    background-color: var(--color-base);
    border-radius: 50%;
}

.google-thanks .bt.blue{
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: #fff;
}

.google-thanks .bt.secondary{
    padding: var(--value-12) var(--value-24);
    border-radius: var(--value-8);
    min-height: calc(4.4 * var(--value-10));
    min-width: calc(9.4 * var(--value-10));
}

@media (max-width: 767px){
    .google-thanks .avatars-list {
        margin-bottom: 0;
        justify-content: center;
    }
}

@media (max-width: 430px){
    .google-thanks .request-list{
        min-width: 100%;
    }
}

/* new thanks */

.thanks-box{
    grid-template-columns: auto 1fr;
    width: 100%;
    max-width: calc(7.13 * var(--value-100));
    grid-gap: var(--value-40) calc(5.2 * var(--value-10));
    margin: 0 auto;
    align-items: center;
}

.thanks-box .img-box{
    width: 100%;
    max-width: calc(3 * var(--value-100));
}

@media (max-width: 767px){
    .thanks-box{
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .thanks-box .img-box{
        margin: 0 auto;
        max-width: 235px;
    }
}

/* end new thanks */