@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Thin.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraLight.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraBold.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Black.woff') format('woff'),
    url('../fonts/Montserrat/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    /*font-display: swap;*/
}

*{
    box-sizing: border-box;
    font-family: "Montserrat" !important;
}

html{
    overflow-x: hidden;
    height: 100%;
}

body{
    margin: 0;
    padding: 0;
    min-width: 360px;
    /*min-height: 100vh;*/
    /*height: 100%;*/
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

:root{
/*
    --trvMainColor: #2F80ED; 
    --trvBtnSecFontColor: #2F80ED;
*/

    
    --trvContainerMaxWidth: 1200px;
    --trvContainerPadding: 20px;
    --trvMainColor: #027AD0;
    --trvBgLightColor: #F4F7FB;
    --trvBgMediumColor: #EEF2F8;
    --trvAccentColor: #FF6856;
    --trvFontBlackColor: #2B3F5A;
    --trvFontWhiteColor: #FFFFFF;
    --trvFontDarkBlueColor: #82B3F4;
    --trvFontLightBlueColor: #ACCCF8;
    --trvFontDarkGreyColor: #808C9C;
    --trvFontLightGreyColor: #AAB2BD;
    --trvBtnBgColor: #FF6856;
    --trvBtnBgHoverColor: #EA5543;
    --trvBtnBgActiveColor: #EA5543;
    --trvBtnBgClickColor: #CC4433;
    --trvBtnBgDisabledColor: #FFF0EE;
    --trvBtnTransBgColor: transparent;
    --trvBtnTransBgHoverColor: #F1F7FF;
    --trvBtnTransBgActiveColor: #F1F7FF;
    --trvBtnTransBgClickColor: #F1F7FF;
    --trvBtnTransBgDisabledColor: #EEF2F8;
    --trvBtnBgTransition: background-color .2s ease-in-out;
    --trvBtnSecFontColor: #027AD0;
    --trvBtnSecBorderColor: #82B3F4;
    --trvBtnSecBgColor: transparent;
    --trvBtnSecBgHoverColor: #F1F7FF;
    --trvBlockRoundedRadius: 100px;
    --trvBlockRoundedSm30Radius: 100px;
    --trvBlockMarginBDefault: 90px;
    --trvBlockMarginB70: 70px;
    --trvLinksHoverOpacity: .7;
    --trvPaddingMaxWidth: calc(((100vw - var(--trvContainerMaxWidth) + var(--trvContainerPadding) * 2) / 2) - 10px);
    --trvMediaLg: 1000px;
    --trvMediaSmMenu: 1000px;
    --trvMediaSm: 900px;
}
/*GENERAL*/
.trv-container{
    max-width: var(--trvContainerMaxWidth);
    padding-left: var(--trvContainerPadding);
    padding-right: var(--trvContainerPadding);
    margin: auto;
}
a{
    transition: opacity .3s;
}
em{
    font-style: normal;
    color: var(--trvMainColor);
}
img{
    image-rendering: -webkit-optimize-contrast;
}
main.trv-main--noYscroll{
    overflow-y: hidden;
}
.trv-btn{
    display: inline-block;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    text-decoration: none;
    background-color: var(--trvBtnBgColor);
    border-radius: 7px;
    padding: 15px 30px;
    transition: var(--trvBtnBgTransition);
    border: 1px solid transparent;
}
.trv-btn--lg{
    padding: 17px 30px;
    font-size: 15px;
    line-height: 21px;
}
.trv-btn--md{
    padding: 14px 28px;
    font-size: 13px;
    line-height: 18px;
}
.trv-btn--sm{
    padding: 12px 24px;
    font-size: 12px;
    line-height: 17px;
}
.trv-btn:hover{
    background-color: var(--trvBtnBgHoverColor);
}
.trv-btn:active,
.trv-btn--active{
    background-color: var(--trvBtnBgActiveColor);
}
.trv-btn:disabled,
.trv-btn--disabled{
    background-color: var(--trvBtnBgDisabledColor);
}
.trv-btn--transparent{
    border: 1px solid var(--trvMainColor);
    background-color: var(--trvBtnTransBgColor);
    color: var(--trvMainColor);
}
.trv-btn--transparent:hover,
.trv-btn.trv-btn--transparent:active,
.trv-btn--active.trv-btn--transparent{
    background-color: var(--trvBtnTransBgActiveColor);
}
.trv-btn.trv-btn--transparent:disabled,
.trv-btn--disabled.trv-btn--transparent{
    color: var(--trvFontLightBlueColor);
    border-color: transparent;
}
.trv-btn--secondary{
    color: var(--trvBtnSecFontColor);
    border-color: var(--trvBtnSecBorderColor);
    background-color: var(--trvBtnSecBgColor);
}
.trv-btn--secondary:hover{
    border-color: var(--trvBtnSecBorderColor);
    background-color: var(--trvBtnSecBgHoverColor);
}
.trv-btn--blue-main{
    background-color: var(--trvMainColor);
    color: var(--trvFontWhiteColor);
    transition: opacity .3s;
}
.trv-btn--blue-main:hover{
    background-color: var(--trvMainColor);
    opacity: var(--trvLinksHoverOpacity);
}
.trv-tab{
    background-color: var(--trvBgMediumColor);
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
}
.trv-tab--active{
    background-color: var(--trvMainColor);
    color: var(--trvFontWhiteColor);
}
.trv-socials,
.trv-socials a{
    display: flex;
    align-items: center;
    transition: color .3s;
}
.trv-socials path{
    transition: fill .3s;
}
.trv-socials a:hover{
    color: var(--trvMainColor);
}
.trv-socials a:not(:last-child){
    margin-right: 14px;
}
.trv-svg-sprites,
.trv-svg-sprites--img{
    display: none;
}
.trv-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .7);
    z-index: 11;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out .3s;
}
.trv-overlay--active{
    opacity: 1;
    pointer-events: unset;
}
h1{
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -0.02em;
    margin: 0 0 30px 0;
}
h2{
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 30px 0;
}
h4{
    color: var(--trvFontBlackColor);
}
/*p{*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    font-size: 15px;*/
/*    line-height: 22px;*/
/*    letter-spacing: -0.02em;*/
/*    color: var(--trvFontDarkGreyColor);*/
/*}*/
ol li{
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
}
.trv-block{
    margin-bottom: 70px;
}
.trv-body.trv-body--min-height{
    --minHeightValue: 0;
    min-height: var(--minHeightValue);
}
.trv-body.trv-body--overflowXClip{
    overflow-x: clip;
}
.trv-ul{
    margin: 0 0 30px;
    padding: 0;
}
.trv-ul li{
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    display: flex;
    align-items: center;
}
.trv-ul--def li{
    align-items: flex-start;
}
.trv-ul li:not(:last-child){
    margin-bottom: 10px;
}
.trv-ul li::before{
    content: "";
    display: block;
    width: 5px;
    min-width: 5px;
    height: 5px;
    min-height: 5px;
    border-radius: 50%;
    background-color: var(--trvMainColor);
    margin-right: 10px;
}
.trv-ul--def li::before{
    transform: translateY(7px);
}
.trv-ul--marker-pat li::before{
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    background-color: transparent;
    background-image: url("../images/svg/ul--marker-pat.svg");
    background-size: cover;
    border-radius: none;
}
.swiper-button-prev{
    left: 0;
}
.swiper-button-next{
    right: 0;
}
.swiper-button-prev,
.swiper-button-next{
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 0.901099px solid #E7E7E7;
    border-radius: 3px;
    background-color: #FFF;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .3s ease-in-out;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
    background-color: var(--trvBgLightColor);
}
.swiper-button-prev::after,
.swiper-button-next::after{
    content: "";
}
.swiper-button-prev svg,
.swiper-button-next svg{
    transition: opacity .3s ease-in-out;
}
.swiper-button-prev svg{
    transform: rotate(180deg);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled{
    opacity: 1;
}
.swiper-button-next.swiper-button-disabled svg,
.swiper-button-prev.swiper-button-disabled svg{
    opacity: 0.2;
}
.trv-page-content .page-header h1{
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
}
.trv-page-content{
    background-color: var(--trvMainColor);
}
.trv-page-content__inner-wrapper{
    /*max-width: var(--trvContainerMaxWidth);*/
    /*margin: auto;*/
    /*padding-left: var(--trvContainerPadding);*/
    /*padding-right: var(--trvContainerPadding);*/
    /*padding-bottom: 30px;*/
}
.trv-btn-tab{
    display: inline-block;
    background-color: var(--trvBgLightColor);
    border-radius: 6px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
    padding: 13px 15px;
    text-decoration: none;
    transition: background-color .3s, color .3s;
}
.trv-btn-tab:not(.trv-btn-tab--active):hover{
    background-color: var(--trvBgMediumColor);
}
.trv-btn-tab--active{
    background: var(--trvMainColor);
    color: var(--trvFontWhiteColor);
}
.trv-block-rounded{
    position: relative;
    border-radius: var(--trvBlockRoundedRadius);
    background-color: var(--trvBgLightColor);
    margin-top: calc(-1 * var(--trvBlockRoundedRadius));
    padding-top: var(--trvBlockRoundedRadius);
    padding-bottom: var(--trvBlockRoundedRadius);
}
.trv-block-rounded--sm-30{
    border-radius: var(--trvBlockRoundedSm30Radius);
    margin-top: calc(-1 * var(--trvBlockRoundedSm30Radius));
    padding-top: var(--trvBlockRoundedSm30Radius);
    padding-bottom: var(--trvBlockRoundedSm30Radius);
}
.trv-block-rounded:nth-child(1),
.trv-block-rounded--first-rounded{
    z-index: 1;
}
.trv-block-rounded:nth-child(2),
.trv-block-rounded--second-rounded{
    z-index: 2;
}
.trv-block-rounded:nth-child(3),
.trv-block-rounded--third-rounded{
    z-index: 3;
}
.trv-block-rounded:nth-child(4),
.trv-block-rounded--fourth-rounded{
    z-index: 4;
}
.trv-block-rounded:nth-child(5),
.trv-block-rounded--fifth-rounded{
    z-index: 5;
}
.trv-block-rounded:nth-child(6),
.trv-block-rounded--sixth-rounded{
    z-index: 6;
}
.trv-block-rounded--up{
    border-radius: var(--trvBlockRoundedRadius) var(--trvBlockRoundedRadius) 0 0;
    padding-bottom: 0;
}
.trv-block-rounded--sm-30.trv-block-rounded--up{
    border-radius: var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius) 0 0;
    padding-bottom: 0;
}
.trv-block-rounded--bottom{
    padding-top: 0;
    border-radius: 0 0 var(--trvBlockRoundedRadius) var(--trvBlockRoundedRadius);
}
.trv-block-rounded--sm-30.trv-block-rounded--bottom{
    padding-top: 0;
    border-radius: 0 0 var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius);
}
.trv-before-block-rounded.trv-block-rounded--sm-30.trv-block-rounded--up,
.trv-before-block-rounded{
    padding-bottom: var(--trvBlockRoundedSm30Radius);
}
.trv-before-block-rounded--sm-30.trv-block-rounded--sm-30.trv-block-rounded--up,
.trv-before-block-rounded--sm-30{
    padding-bottom: var(--trvBlockRoundedSm30Radius);
}
.trv-after-block-rounded.trv-block-rounded--sm-30.trv-block-rounded--up,
.trv-after-block-rounded{
    padding-top: var(--trvBlockRoundedSm30Radius);
}
.trv-after-block-rounded--sm-30.trv-block-rounded--sm-30.trv-block-rounded--up,
.trv-after-block-rounded--sm-30{
    padding-top: var(--trvBlockRoundedSm30Radius);
}
.trv-block-rounded--white{
    background-color: #FFF;
}
.trv-block-rounded--light-grey{
    background-color: var(--trvBgLightColor);
}
.trv-block-rounded--medium-grey{
    background-color: var(--trvBgMediumColor);
}
.trv-block-intersection{
    --trvHeightBlock: 150px;
    transform: translateY(calc(-1 * var(--trvHeightBlock)));
    margin-bottom: calc(-1 * var(--trvHeightBlock));
}
.trv-block-before-intersection{
    --trvHeightBlock: 150px;
    position: relative;
}
.trv-block-before-intersection::after{
    content: "";
    display: block;
    margin-bottom: var(--trvHeightBlock);
}
.trv-block-with-first-intersection{
    padding-top: 0;
}
.trv-modal{
    position: fixed;
    top: 0;
    left: 0;
    min-width: 360px;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    background: rgba(43, 63, 90, 0.5);
    backdrop-filter: blur(10px);
    /*background-color: rgba(0, 0, 0, .8);*/
    z-index: 1000000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease-in-out;

    display: flex;
    align-items: center;
    justify-content: center;
}
.trv-modal--active{
    opacity: 1;
    pointer-events: auto;
}
.trv-modal--video video{
    max-height: 60%;
    max-width: 80%;
}
.trv-modal__close{
    --posTop: 0;
    --posLeft: 0;
    top: var(--posTop);
    left: var(--posLeft);
    position: absolute;
    color: #FFFFFF;
    display: none;
    cursor: pointer;
    padding: 15px;
    transition: opacity .2s;
}
.trv-modal__close--active{
    display: flex;
}
.trv-modal__close:hover{
    opacity: .7;
}
.trv-modal__close svg{
    width: 15px;
    height: auto;
}
.trv-modal__close svg path{
    fill: currentColor;
}
.trv-modal .trv-modal-form__title{
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 30px 0;
}
.trv-modal form{
    display: flex;
    flex-direction: column;
}
.trv-modal input:not([type=submit]){
    font-size: 14px;
    background: #F4F7FB;
    border: 1px solid #E9EDF3;
    border-radius: 7px;
    padding: 14px 18px;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
}
.trv-modal input[type=submit]{
    padding: 15px;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    background: var(--trvMainColor);
    border-radius: 7px;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 5px;
    max-width: 100%;
    border: none;
    transition: opacity .3s;
}
.trv-modal-form__footer{
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    color: var(--trvFontDarkGreyColor);
}
.trv-modal p a{
    color: var(--trvMainColor);
}
.trv-modal p a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-tag{
    display: flex;
    align-items: center;
    padding: 12px;
    justify-content: center;
    background: var(--trvMainColor);
    box-shadow: 0px 7px 15px rgb(27 111 223 / 70%);
    border-radius: 6px;
    border: 1px solid #75B0FF;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
}
.trv-tag::before {
    content: "";
    display: block;
    width: 13px;
    height: 14px;
    background-image: url(/templates/tourvisor/images/svg/modules-preivew--gift-icon.svg);
    background-size: cover;
    margin-right: 10px;
}
.trv-block-margin-b{
    margin-bottom: var(--trvBlockMarginBDefault);
}
.trv-block-padding-t{
    padding-top: var(--trvBlockMarginBDefault);
}
.trv-block-padding-b{
    padding-bottom: var(--trvBlockMarginBDefault);
}
.trv-block-margin-b-70{
    margin-bottom: var(--trvBlockMarginB70);
}
.trv-block-padding-t-70{
    padding-top: var(--trvBlockMarginB70);
}
.trv-block-padding-b-70{
    padding-bottom: var(--trvBlockMarginB70);
}
.trv-m-b-10{
    margin-bottom: 10px;
}
.trv-m-l-13{
    margin-left: 13px;
}
/*custom select(nice-select2.js)*/
.trv-body .nice-select{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    padding: 18px 50px 18px 20px;
    height: auto;
    min-width: 180px;
    border-radius: 10px;
}
.trv-body .nice-select:before{
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--trvBgLightColor);
    position: absolute;
    pointer-events: none;
    right: 15px;
    transform: translateY(-50%);
}
.trv-body .nice-select:after{
    border-bottom: 1px solid;
    border-right: 1px solid;
    border-color: var(--trvFontDarkGreyColor);
    right: 27px;
}
.trv-body .nice-select:before,
.trv-body .nice-select:after{
    top: 50%;
}
.trv-body .nice-select:active,
.trv-body .nice-select.open,
.trv-body .nice-select:focus{
    border-color: var(--trvFontLightBlueColor);
}
.trv-body .nice-select .nice-select-dropdown{
    margin-top: 10px;
    width: 100%;
}
.trv-body .nice-select .option{
    color: var(--trvFontBlackColor);
}
.trv-body .nice-select .list{
    -webkit-tap-highlight-color: red;
}
.trv-body .nice-select .list::-webkit-scrollbar{
    width: 5px;
    /*background-color: red;*/
}
.trv-body .nice-select .list::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
/*custom select(nice-select2.js) end*/
/*table*/
table{
    width: 100%;
    border-collapse: collapse;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #2B3F5A;
}
tr{
    border: 1px solid #E6EDF7;
}
th, td{
    text-align: center;
    padding: 15px 25px;
    border-right: 1px solid #E6EDF7;
}
th:last-of-type, td:last-of-type{
    border-right: none;
}
th{
    background-color: var(--trvBgLightColor);
    font-weight: 700;
    overflow: hidden;
}
th:first-child, td:first-child{
    text-align: left;
}
th{
}
/*table{*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    font-size: 14px;*/
/*    line-height: 20px;*/
/*    text-align: center;*/
/*    letter-spacing: -0.02em;*/
/*    color: #2B3F5A;*/
/*}*/
table a{
    line-height: 30px;
    color: var(--trvMainColor);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px dashed;
    border-color: var(--trvMainColor);
    transition: opacity .3s;
}
table a:hover{
    opacity: .7;
}
.trv-table-cells-red th,
.trv-table-cells-red td,
th.trv-table__cell--red,
td.trv-table__cell--red{
    color: var(--trvAccentColor);
    background-color: #FFF9F8;
}
.trv-table-cells-blue th,
.trv-table-cells-blue td,
th.trv-table__cell--blue,
td.trv-table__cell--blue{
    color: var(--trvMainColor);
    background-color: #F6FBFF;
}
.trv-table-cells-blue-bg th,
.trv-table-cells-blue-bg td,
th.trv-table__cell--blue-bg,
td.trv-table__cell--blue-bg{
    background-color: #F6FBFF;
}
.trv-table-cells-icon-yes th::before,
.trv-table-cells-icon-yes td::before,
table th.trv-table__cell--icon-yes::before,
table td.trv-table__cell--icon-yes::before{
    content: "";
    display: block;
    width: 16px;
    height: 12px;
    background-image: url("../images/svg/table-icon-yes.svg");
    background-size: cover;
    margin: auto;
}
.trv-table-cells-icon-not th::before,
.trv-table-cells-icon-not td::before,
table .trv-table__cell--icon-not::before,
table .trv-table__cell--icon-not::before{
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("../images/svg/table-icon-not.svg");
    background-size: cover;
    margin: auto;
}
.trv-table-cell--selected{
    background-color: var(--trvMainColor);
    color: #FFFF;
}
.trv-table-cell--selected-border,
.trv-table-cell--before-selected-border{
    position: relative;
    overflow: initial;
}
.trv-table-cell--selected-border::after,
.trv-table-cell--before-selected-border::after{
    content: "";
    width: 1px;
    height: 110%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--trvMainColor);
    z-index: 1;
}
.trv-table-cell--before-selected-border::after{
    right: -1px;
    transform: translateX(100%);
}
/*table end*/
.trv-not-loaded{
    border: 2px solid red;
}
.trv-b-header{
    background-color: var(--trvMainColor);
    padding: 60px var(--trvContainerPadding);
    color: #FFFFFF;
    max-width: var(--trvContainerMaxWidth);
    margin-left: auto;
    margin-right: auto;
}
.trv-b-header--flex{
    display: flex;
}
.trv-b-header--flex > p{
    width: 50%;
    margin: 0 0 0 auto;
}
.trv-b-header h1{
    margin: 0;
}
.trv-b-header p{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
}
.trv-b-body{
    padding: var(--trvBlockRoundedSm30Radius) calc((100vw - var(--trvContainerMaxWidth) + var(--trvContainerPadding)) / 2);
    background-color: #FFFFFF;
    border-radius: var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius) 0 0;
}
.trv-b-rounded{
    position: relative;
    padding-top: var(--trvBlockRoundedSm30Radius);
    padding-bottom: var(--trvBlockRoundedSm30Radius);
    margin-bottom: calc(-1 * var(--trvBlockRoundedSm30Radius));
}
.trv-b-rounded::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--trvBlockRoundedSm30Radius);
    background-color: var(--trvBgLightColor);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    /*border: 1px solid transparent;*/
}
.trv-b-rounded:nth-child(1){
    z-index: 1;
}
.trv-b-rounded:nth-child(2){
    z-index: 2;
}
.trv-b-rounded:nth-child(3){
    z-index: 3;
}
.trv-b-rounded:nth-child(4){
    z-index: 4;
}
.trv-b-rounded:nth-child(5){
    z-index: 5;
}
.trv-b-rounded:nth-child(6){
    z-index: 6;
}
.trv-body .trv-b-lindex{
    z-index: 1;
}
.trv-b-rounded--up{
    padding-bottom: 0;
    margin-bottom: 0;
}
.trv-b-rounded--up::before{
    border-radius: var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius) 0 0;
}
.trv-b-rounded--white{
    background-color: var(--trvBgLightColor);
}
.trv-b-rounded--medium-grey{
    background-color: var(--trvBgMediumColor);
}
.trv-b-rounded--medium-grey::before{
    background-color: var(--trvBgMediumColor);
}
.trv-b-rounded--bg-white{
    background-color: #FFFFFF;
}
.trv-b-rounded--bg-light-grey{
    background-color: var(--trvBgLightColor);
}
.trv-b-rounded--bg-medium-grey{
    background-color: var(--trvBgMediumColor);
}
.trv-b-rounded--white::before{
    background-color: #FFFFFF;
}
.trv-b-rounded--bg-blue{
    background-color: var(--trvMainColor);
}
.trv-b-rounded--up{}
.trv-b-rounded--up::before{}
.trv-b-rounded > *{
    position: relative;
    z-index: 2;
}
.trv-body .trv-padding--0{
    padding: 0;
}
.trv-el--border{
    border: 1px solid #a8a8a8;
    border-radius: 20px;
    padding: 20px;
}
.trv-bg--white{
    background-color: #FFF;
}
.trv-bg--light-grey{
    background-color: var(--trvBgLightColor);
}
.trv-el--hidden{
    display: none !important;
}
.trv-el--full-width{
    max-width: 100% !important;
    width: 100% !important;
}
.trv-block-padding-b-0{
    padding-bottom: 0 !important;
}
.trv-input--error{
    border-color: var(--trvAccentColor) !important;
}
.trv-input--valid{
    border-color: var(--trvAccentColor) !important;
}
.trv-form-notification{
    background-color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    width: 620px;
    max-width: 85%;
    text-align: left;
    padding: 50px 45px 45px;
    position: relative;
    margin: 0 auto;
}
.trv-form-notification p{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
}
.trv-form-notification div.h-h2{
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 30px 0;
}
.trv-consultation-notification{
    display: none;
}
.trv-modal .trv-consultation-notification{
    display: initial;
}
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.trv-modal-form{
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 45px 50px;
}
/*.trv-modal-form*/
/*GENERAL END*/

/*HEADER*/
.trv-header{
    position: relative;
}
.trv-header__upper{
    background-color: #fff;
}
.trv-header__upper-inner-wrapper{
    display: flex;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
}
.trv-header__logo,
.trv-header__tabs,
.trv-header__add-menu{
    margin-right: 40px;
}
.trv-header__logo a{
    display: flex;
    color: var(--trvMainColor);
}
.trv-header__logo a svg{
    width: 120px;
    height: auto;
    overflow: visible;
}
.trv-header__tabs{
    padding: 3px;
    background-color: var(--trvBgMediumColor);
    border-radius: 6px;
}
.trv-header__tabs a{
    display: inline-block;
    transition: background-color .3s;
}
.trv-header__tabs a:not(.trv-tab--active):hover{
    background-color: var(--trvBgLightColor);
}
.trv-header__add-menu{
    margin-left: auto;
}
.trv-header__add-menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.trv-header__add-menu li:nth-child(1),
.trv-header__add-menu li:nth-child(2){
    /*display: none;*/
}
.trv-header__add-menu li:not(:first-child) {
    margin-left: 30px;
}
.trv-header__add-menu svg,
.trv-header__add-menu img{
    margin-right: 7px;
}
.trv-header__add-menu a{
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
    display: flex;
    align-items: center;
}
.trv-header__add-menu a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-header__add-menu svg{
    color: var(--trvMainColor);
}
.trv-header__language{
    /*margin-left: auto;*/
    position: relative;
    display: flex;
    align-self: stretch;
    transform: translateY(-1px);
    z-index: 8;
}
.trv-header__language > a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
}
.trv-header__language > a > img{
    margin-right: 8px;
    width: 19px;
    height: auto;
    border-radius: 2px;
}
.trv-header__language:not(.trv-header__language--phones-b2b) > a > svg{
    transform: translateY(1px);
}
.trv-header__language--phones-b2b > a > span{
    margin-right: 8px;
}
.trv-header__language-drop{
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    transform: translateX(-13px);
    background-color: #FFFFFF;
    box-shadow: 0px -1px 13px rgba(43, 63, 90, 0.04), 0px 20px 15px rgba(43, 63, 90, 0.07);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.trv-header__language--phones-b2b .trv-header__language-drop{
    width: calc(100% + 26px);
}
.trv-header__language-drop a,
.trv-header__language-drop > div{
    display: flex;
    align-items: center;
    padding: 14px;
    transition: background-color .3s;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    cursor: pointer;
}
.trv-header__language-drop > div a{
    padding: 0;
}
.trv-header__language-drop a:first-child,
.trv-header__language-drop > div:first-child{
    margin-top: 13px;
}
.trv-header__language--active,
.trv-header__language-drop a:hover,
.trv-header__language-drop > div:hover{
    background-color: var(--trvBgMediumColor);
}
.trv-header__language-drop a img,
.trv-header__language-drop > div img{
    margin-right: 10px;
    width: 19px;
    height: auto;
    border-radius: 2px;
}
.trv-header__language-drop--active{
    display: initial;
}
.trv-header__language > a::after{
    content: "";
    display: block;
    width: 10px;
    height: 6px;
    background-image: url("../images/svg/language-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.trv-header__socials{
    margin-right: 40px;
}
.trv-header__socials a{
    color: var(--trvFontLightBlueColor);
}
.trv-header__lower-inner-wrapper{
    max-width: var(--trvContainerMaxWidth);
    padding-left: var(--trvContainerPadding);
    padding-right: var(--trvContainerPadding);
    margin: auto;
}
.trv-header__lower{
    background-color: var(--trvMainColor);
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.trv-header__lower ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.trv-header__lower li{
    position: relative;
}
.trv-header__lower .trv-menu > nav > ul > li{
    white-space: nowrap;
}
.trv-header__lower li::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    opacity: 0;
    transition: opacity .3s;
}
.trv-header__lower li:not(:last-child)::before{
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 20%);
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(calc(-50%)) translateX(100%);
    pointer-events: none;
}
.trv-header__lower  .trv-menu-item--active::after,
.trv-header__lower li:hover::after{
    opacity: 1;
}
.trv-header__lower li:not(:last-child){
    margin-right: 44px;
}
.trv-header__lower a{
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--trvFontWhiteColor);
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
}
.trv-header__lower-inner-wrapper,
.trv-header__lower nav,
.trv-header__lower a,
.trv-header__lower ul{
    height: 100%;
}
.trv-header__lower--menu-out .trv-menu > nav > ul{
    justify-content: space-between;
}
.trv-header__lower--menu-out li:not(:last-child){
    margin-right: 0;
}
.trv-header__lower--menu-out li:not(:last-child)::before{
    display: none;
}
.trv-header__mobile-burger,
.trv-header__mobile-logo{
    display: none;
}
.trv-header__lower .trv-menu__submenu--2{
    display: none;
}
.trv-menu__submenu{
    position: fixed;
    left: 0;
    width: 100%;
    background-color: var(--trvBgMediumColor);
    z-index: 10;
    border-bottom: 5px solid #C5DBF9;
    box-shadow: 0px 100px 80px rgba(42, 68, 125, 0.07), 0px 41.7776px 33.4221px rgba(42, 68, 125, 0.0503198), 0px 22.3363px 17.869px rgba(42, 68, 125, 0.0417275), 0px 12.5216px 10.0172px rgba(42, 68, 125, 0.035), 0px 6.6501px 5.32008px rgba(42, 68, 125, 0.0282725), 0px 2.76726px 2.21381px rgba(42, 68, 125, 0.0196802);
    opacity: 0;
    pointer-events: none;
    /*transition: opacity .1s, pointer-events .1s;*/
}
.trv-menu__submenu--active{
    opacity: 1;
    pointer-events: auto;
}
.trv-menu__submenu-inner-wrapper{
    display: flex;
}
.trv-menu__submenu-rs,
.trv-menu__submenu-ls{
    width: 50%;
}
.trv-menu__submenu-ls{
    background-color: var(--trvBgMediumColor);
    border-right: 1px solid #E4E8EE;
}
.trv-menu__submenu-rs{
    background-color: var(--trvBgLightColor);
}
.trv-menu__submenu-ls .trv-menu__submenu-section-inner-wrapper:first-child,
.trv-menu__submenu-rs .trv-menu__submenu-section-inner-wrapper:first-child{
    padding-top: 50px;
}
.trv-menu__submenu-section{
    border-bottom: 1px solid #E4E8EE;
}
.trv-menu__submenu-section:last-child{
    border-bottom: none;
}
.trv-menu__submenu-section-inner-wrapper{
    padding-top: 30px;
    padding-bottom: 35px;
    max-width: calc(var(--trvContainerMaxWidth) / 2);
    /*padding-left: var(--trvContainerPadding);*/
    /*padding-right: var(--trvContainerPadding);*/
}
.trv-menu__submenu-ls .trv-menu__submenu-section-inner-wrapper{
    padding-left: var(--trvContainerPadding);
    margin-left: auto;
}
.trv-menu__submenu-rs .trv-menu__submenu-section-inner-wrapper{
    padding-right: var(--trvContainerPadding);
    margin-left: 0;
    padding-left: 70px;
}
.trv-menu__submenu-section h4,
.trv-menu__submenu-section-inner-wrapper > div{
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 30px;
}
.trv-menu__submenu a{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    padding: 0;
}
.trv-menu__submenu a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-menu__submenu-section--main a{
    font-weight: 600;
    color: var(--trvMainColor);
}
.trv-menu__submenu-section a svg{
    margin-right: 13px;
    min-width: 11px;
}
.trv-menu__submenu-section a img{
    margin-right: 13px;
    max-width: 20px;
    opacity: 0.6;
}
.trv-menu__submenu--level-2 a{
    display: flex;
    align-items: flex-start;
    white-space: initial;
}
.trv-menu__submenu-section ul{
    display: list-item;
    columns: 2;
}
.trv-menu__submenu-section li{
    margin-bottom: 20px;
}
.trv-header__lower .trv-menu__submenu-section li::after{
    display: none;
}
.trv-header__lower .trv-menu__submenu-section li:not(:last-child){
    margin-right: 0;
}
.trv-header__lower .trv-menu__submenu-section li:not(:last-child)::before{
    display: none;
}
.trv-header__language-mobile{
    display: none;
}
.trv-menu-item--parent > a{
    position: relative;
}
.trv-menu-item--parent > a::after{
    /*content: "";*/
    /*display: block;*/
    /*width: 44px;*/
    /*height: 100%;*/
    /*position: absolute;*/
    /*right: 0;*/
    /*top: 0;*/
    /*transform: translateX(100%);*/
}
.trv-header__lower .trv-header__lower-el--hidden{
    display: none;
}
.trv-menu__submenu-tool-i{
    position: relative;
}
.trv-menu__submenu-tool-i::before{
    content: "";
    display: block;
    width: 11px;
    height: 21px;
    background-image: url("../images/svg/m_tools_i.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 13px;
    opacity: 0.6;
}
/*MOBILE MENU*/
.trv-mobile-menu{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 360px;
    min-width: 360px;
    height: 100vh;
    background-color: #fff;
    z-index: 12;
    transition: transform ease-in-out .4s;
    pointer-events: none;
}
.trv-mobile-menu--active{
    transform: translateX(0);
    pointer-events: auto;
}
.trv-mobile-menu--inner-wrapper{
    height: 100%;
    overflow: auto;
    padding-left: var(--trvContainerPadding);
    padding-right: var(--trvContainerPadding);
    padding-bottom: 120px;
}
.trv-mobile-menu__header,
.trv-mobile-menu__tabs,
.trv-mobile-menu__menu,
.trv-mobile-menu__add-menu{
    border-bottom: 1px solid rgba(43, 63, 90, 0.1);
}
.trv-mobile-menu__header{
    padding-top: 20px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trv-mobile-menu__logo a{
    color: var(--trvMainColor);
    display: flex;
}
.trv-mobile-menu__logo a svg{
    width: 95px;
    height: 21px;
}
.trv-mobile-menu__close a{
    color: var(--trvFontBlackColor);
    display: flex;
    padding: 8px;
    background-color: var(--trvBgLightColor);
    border-radius: 6px;
    overflow: hidden;
}
.trv-mobile-menu__close a svg{
    opacity: 0.4;
}
.trv-mobile-menu__tabs .trv-header__tabs{
    margin-right: 0;
}
.trv-mobile-menu__tabs{
    display: flex;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.trv-mobile-menu__menu{
    padding-top: 20px;
    padding-bottom: 20px;
}
.trv-mobile-menu__menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.trv-mobile-menu__menu li{
}
.trv-mobile-menu__menu li:not(:last-child){
    margin-bottom: 5px;
}
.trv-mobile-menu__menu a{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
    text-decoration: none;
    padding: 7px 8px 7px 17px;
    background: var(--trvBgLightColor);
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.trv-mobile-menu__menu a:not(.trv-menu__submenu-tool-i)::before{
    content: "";
    display: block;
    width: 4px;
    height: 15px;
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--trvMainColor);
    border-radius: 0px 15px 15px 0px;
}
.trv-mobile-menu__arrow{
    background-color: #EAEFF7;
    border-radius: 7px;
    width: 27px;
    height: 27px;
    display: flex;
}
.trv-mobile-menu__arrow-bg{
    width: 100%;
    height: 100%;
    background-image: url("../images/svg/mobile-menu-arrow.svg");
    background-size: 9px;
    background-repeat: no-repeat;
    background-position: center;
}
.trv-mobile-menu-nav--b2b .trv-mobile-menu__arrow-bg{
    background-image: url("../images/svg/mobile-menu-arrow-2.svg");
    background-size: 6px 10px;
}
.trv-mobile-menu-nav--b2b li{
    /*min-height: 41px;*/
}
.trv-mobile-menu-nav--b2b li:not(.trv-mobile-menu__menu-item--parent) a{
    padding: 11px 8px 11px 17px;
}
.trv-mobile-menu-nav--b2b li:not(.trv-mobile-menu__menu-item--parent) .trv-mobile-menu__arrow{
    display: none;
}
.trv-mobile-menu__add-menu{
    padding-top: 20px;
    padding-bottom: 20px;
}
.trv-mobile-menu__add-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.trv-mobile-menu__add-menu li:not(:first-child) {
    margin-top: 20px;
}
.trv-mobile-menu__add-menu a{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.trv-mobile-menu__add-menu svg,
.trv-mobile-menu__add-menu img{
    margin-right: 10px;
    color: var(--trvMainColor);
}
.trv-mobile-menu__socials{
    padding-top: 20px;
}
.trv-mobile-menu__socials a{
    color: var(--trvMainColor);
}
.trv-mobile-menu__menu-item--parent .trv-mobile-menu__arrow-bg{
    transform: rotate(90deg);
    transition: transform .3s;
}
.trv-mobile-menu__menu-item--parent.trv-mobile-menu__menu-item--open .trv-mobile-menu__arrow-bg{
    transform: rotate(0);
}
.trv-mobile-menu__menu-item--parent{
}
.trv-mobile-menu__menu .trv-mobile-menu__menu-item--parent a{
    border-radius: 7px 7px 0 0;
}
.trv-mobile-menu__submenu{
    overflow: hidden;
    height: 0;
    transition: height .3s ease-in-out;
}
.trv-mobile-menu__submenu--level-2 .trv-mobile-menu__submenu-inner-wrapper{
    padding: 0 27px 13px 27px;
    background-color: var(--trvBgLightColor);
    border-radius: 0 0 7px 7px;
}
.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a{
    background-color: var(--trvBgMediumColor);
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
    border-radius: 7px;
}
.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a svg{
    margin-right: 12px;
    max-width: 17px;
    height: auto;
}
.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a img{
    margin-right: 12px;
    max-width: 17px;
    opacity: 0.6;
}
.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a.trv-svg-icon svg{
    height: 18px;
    width: auto;
    max-width: 11px;
}
.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a:not(.trv-menu__submenu-tool-i)::before{
    display: none;
}
.trv-mobile-menu__submenu-inner-wrapper h4,
.trv-mobile-menu__submenu-section-inner-wrapper > div{
    margin: 0 0 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    max-width: 70%;
}
.trv-mobile-menu__submenu-inner-wrapper .trv-mobile-menu__submenu-section:first-child h4,
.trv-mobile-menu__submenu-section:first-child .trv-mobile-menu__submenu-section-inner-wrapper > div{
    padding-top: 13px;
}
.trv-mobile-menu__menu .trv-mobile-menu__menu-item--blue{
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
}
.trv-mobile-menu__submenu-section{
    margin-bottom: 20px;
}
.trv-mobile-menu__submenu-section:last-child{
    margin-bottom: 0;
}
.trv-mobile-menu__submenu-section:last-child li:last-child{

}
.trv-header.trv-header--fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
    box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.07);
}
.trv-header.trv-header--fixed.trv-header--mobile-menu-opened{
    box-shadow: unset;
}
.trv-header--fixed-off .trv-mobile-menu{
    position: fixed;
}
.trv-header--fixed .trv-header__lower{
    transition: opacity .3s;
}
.trv-header--fixed.trv-header--mobile-menu-opened .trv-header__lower{
    /*opacity: 0;*/
}
.trv-header--fixed .trv-header__lower::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .7);
    transition: opacity ease-in-out .3s;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}
.trv-header--fixed.trv-header--mobile-menu-opened .trv-header__lower::before{
    opacity: 1;
}
/*HEADER END*/

/*FOOTER*/
.trv-footer{
    background-color: var(--trvMainColor);
    position: relative;
    z-index: 7;
    margin-top: auto;
}
.trv-footer__inner-wrapper{
}
.trv-footer__upper-inner-wrapper{
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
}
.trv-footer__logo{
    margin-right: 120px;
    transform: translateY(-7px);
}
.trv-footer__logo a{
    text-decoration: none;
    color: var(--trvFontWhiteColor);
    display: flex;
}
.trv-footer__logo a:not(.trv-svg-icon) svg{
    width: 107px;
    height: 25px;
}
.trv-footer__logo path{
    /*fill: currentColor !important;*/
}
.trv-footer__menu{
    margin-right: 100px;
}
.trv-footer__menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.trv-footer__menu nav > ul{
    display: flex;
}
.trv-footer__menu li{
}
.trv-footer__menu nav > ul > li:not(:last-child){
    margin-right: 90px;
}
.trv-footer__menu a{
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
}
.trv-footer__menu a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-footer__menu nav > ul > li > a{
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    display: flex;
    margin-bottom: 15px;
}
.trv-footer__qr-phones-socials{
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
}
.trv-footer__qr-links{
    grid-column: 1;
    grid-row: 1;
    margin-right: 120px;
}
.trv-footer__phones{
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.trv-footer__socials{
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
}
.trv-footer__qr-links a{
    display: none;
}
.trv-footer__qr-links > img{
    border-radius: 10px;
    width: 76px;
}
.trv-footer__phones > div{
    display: flex;
    flex-direction: column;
}
.trv-footer__phones > div:not(:last-child){
    margin-bottom: 15px;
}
.trv-footer__phones > div:not(:last-child)::after{
    content: "";
    width: 30px;
    height: 1px;
    background-color: #6DA6F2;
    margin-top: 15px;
}
.trv-footer__phones a{
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
}
.trv-footer__phones a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-footer__phones span{
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
    margin-top: 5px;
}
.trv-footer__socials a{
    text-decoration: none;
    color: var(--trvFontLightBlueColor);
}
.trv-footer__socials a:hover{
    color: var(--trvFontWhiteColor);
}
.trv-footer__bottom{
    background-color: rgb(0 0 0 / 10%);
}
.trv-footer__bottom-inner-wrapper{
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
}
.trv-footer__copyright,
.trv-footer__popd a,
.trv-footer__conditions a,
.trv-footer__rights-info a,
.trv-footer__sitemap a{
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkBlueColor);
    text-decoration: none;
}
.trv-footer__copyright{
    margin-right: 105px;
}
.trv-footer__popd{
    margin-right: 60px;
}
.trv-footer__conditions{
    margin-right: 60px;
}
.trv-footer--b2c__el{
    display: none;
}
.trv-footer--b2c .trv-footer__menu > nav > ul ul .trv-footer--b2c__el{
    display: initial;
}
.trv-footer--b2c .trv-footer__menu li svg{
    transform: translateY(3px);
    margin-right: 5px;
}
.trv-footer:not(.trv-footer--b2c) .trv-menu-item-soc{
    display: none;
}
.trv-footer--b2c .trv-menu-item-soc{
    margin-left: 45px;
}
/*FOOTER END*/

/*MOBILE APP*/
.trv-mobile-app__inner-wrapper{
    position: relative;
    background: var(--trvMainColor);
    border-radius: 20px;
    padding: 65px 100px;
    overflow: hidden;
}
.trv-benefits + .trv-mobile-app{
    /*height: 0;*/
    /*background-color: var(--trvBgLightColor);*/
    padding-bottom: 90px;
}
.trv-benefits + .trv-mobile-app .trv-mobile-app__inner-wrapper{
    /*transform: translateY(-50%);*/
}
.trv-mobile-app__inner-wrapper::before,
.trv-mobile-app__inner-wrapper::after{
    content: "";
    display: block;
    width: 7px;
    height: 92px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--trvAccentColor);
}
.trv-mobile-app__inner-wrapper::before{
    left: 0;
}
.trv-mobile-app__inner-wrapper::after{
    right: 0;
}
.trv-mobile-app__inner-wrapper p{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
    margin-top: 0;
    max-width: 372px;
}
.trv-mobile-app__inner-wrapper p:first-of-type{
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    margin-bottom: 25px;
}
.trv-mobile-app__inner-wrapper p:nth-of-type(2){
    margin-bottom: 0;
}
.trv-mobile-app__inner-wrapper > img{
    position: absolute;
}
.trv-mobile-app__inner-wrapper > img:first-of-type{
    bottom: 31px;
    right: 89px;
    width: 243px;
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.07));
}
.trv-mobile-app__inner-wrapper > img:nth-of-type(2){
    top: 41px;
    right: 358px;
    width: 243px;
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.07));
}
.trv-mobile-app__inner-wrapper > img:nth-of-type(3){
    display: none;
}
.trv-mobile-app__inner-wrapper > img:nth-of-type(4){
    top: 180px;
    right: 551px;
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.12);
    width: 90px;
    border-radius: 10px;
}
.trv-mobile-app__inner-wrapper > div:not(.trv-mobile-app__bg){
    display: none;
}
.trv-mobile-app__bg{
    position: absolute;
    width: 243px;
    height: 100%;
    background-image: url("../images/webp/mobile-app-bg2.webp");
    background-size: 100%;
    left: 0;
    top: 0;
}
.trv-mobile-app__bg1{
    left: 48%;
    top: 42px;
}
.trv-mobile-app__bg2{
    left: 71%;
    top: -31px;
    background-position: bottom;
}
.trv-mobile-app__inner-wrapper > img.trv-mobile-app__gif{
    top: 180px;
    right: 551px;
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.12);
    width: 90px;
    border-radius: 10px;
}
/*MOBILE APP END*/

/*QA*/
.trv-qa--main-page .trv-qa__inner-wrapper{
    padding-top: 246px;
    margin-bottom: 90px;
}
.trv-qa__inner-wrapper{
    display: flex;
}
.trv-qa__title{
    min-width: 369px;
    max-width: 369px;
    margin-right: 120px;
}
.trv-qa__items{
    width: 100%;
}
.trv-qa__item{
    border-radius: 7px;
    background: var(--trvBgLightColor);
}
.trv-qa__item:not(:last-child){
    margin-bottom: 10px;
}
.trv-qa__item > div:nth-of-type(1){
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 25px 20px 25px;
}
.trv-qa__item > div:nth-of-type(1) .trv-svg-icon-wrapper{
    order: 1;
    position: relative;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    border-radius: 16px;
    background-color: #E5F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}
.trv-qa__item--active-start > div:nth-of-type(1) .trv-svg-icon-wrapper{
    animation: qa-icon-bg 1s ease forwards;
}
.trv-qa__item--active-end > div:nth-of-type(1) .trv-svg-icon-wrapper{
    animation: qa-icon-bg-reverse 1s ease forwards;
}
.trv-qa__item--active-start .trv-svg-icon--qa-plus-minus svg{
    animation: qa-icon-for-bg 1s ease forwards;
}
.trv-qa__item--active-end .trv-svg-icon--qa-plus-minus svg{
    animation: qa-icon-for-bg-reverse 1s ease forwards;
}
.trv-qa__item--active-start .trv-svg-icon--qa-plus-minus path:first-of-type,
.trv-qa__item--active-start .trv-svg-icon--qa-plus-minus path:nth-of-type(2){
    animation: qa-minus-hide 1s ease forwards;
}
.trv-qa__item--active-end .trv-svg-icon--qa-plus-minus path:first-of-type,
.trv-qa__item--active-end .trv-svg-icon--qa-plus-minus path:nth-of-type(2){
    animation: qa-minus-show 1s ease forwards;
}
.trv-qa__item > div:nth-of-type(2){
    color: var(--trvFontBlackColor);
    height: 0;
    overflow: hidden;
    transition: height .3s ease-in-out;
    padding-left: 41px;
    padding-right: 77px;
}
.trv-qa__item > div:nth-of-type(2) p{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
    margin: 0;
}
.trv-qa__item > div:nth-of-type(2) p:not(:last-child){
    margin-bottom: 20px;
}
.trv-qa__item > div:nth-of-type(2) a{
    color: var(--trvMainColor);
}
.trv-qa__item > div:nth-of-type(2) a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-qa--v2 .trv-svg-icon-wrapper{
    position: relative;
}
.trv-qa--v2 .trv-svg-icon-wrapper::before{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("../images/svg/qa-plus-icon.svg");
    background-size: 100%;
    background-position: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.trv-qa--v2 .trv-qa__item--active .trv-svg-icon-wrapper::before{
    background-image: url("../images/svg/qa-minus-icon.svg");
    width: 14px;
    height: 2px;
}
.trv-qa.trv-qa--items-white-bg .trv-qa__item {
    background-color: #FFFFFF;
}
/*QA END*/

/*VIDEO (youtube)*/
.trv-video{
    display: none;
}
.trv-video__inner-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    max-width: calc(var(--trvContainerMaxWidth) - var(--trvContainerPadding) * 2);
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    height: 450px;
}
.trv-video__inner-wrapper::before{
    content: "";
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(47, 128, 237, 0.6), rgba(47, 128, 237, 0.6));
}
.trv-video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.trv-video img{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
}
.trv-video svg{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
    pointer-events: none;
}
.trv-video svg circle{
    transition: fill-opacity .3s;
}
.trv-video__inner-wrapper:hover svg circle{
    fill-opacity: .4;
}
.trv-video--active img,
.trv-video--active .trv-video__inner-wrapper::before,
.trv-video--active svg{
    display: none;
}
.trv-video--active iframe{
    /*display: block;*/
}
/*VIDEO (youtube) END*/

/*CARDS*/
.trv-cards__header{
    display: flex;
    margin-bottom: 50px;
}
.trv-cards__header h2{
    margin-bottom: 0;
}
.trv-cards__header p{
    min-width: 570px;
    width: 570px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
    margin: 0 0 0 170px;
}
.trv-cards__header p a{
    color: var(--trvMainColor);
}
.trv-cards__header p a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-cards__items{
    margin-left: -20px;
    margin-top: -30px;
    display: flex;
    flex-wrap: wrap;
    --swiperHeight: 0;
}
.trv-cards__items .swiper{
    overflow: visible;
}
.trv-cards__items .swiper-wrapper{
    flex-wrap: wrap;
    transform: translate3d(0px,0,0);
}
.trv-cards__item{
    background: #FFFFFF;
    box-shadow: 0px 100px 80px rgba(201, 207, 221, 0.07), 0px 41.7776px 33.4221px rgba(201, 207, 221, 0.0503198), 0px 22.3363px 17.869px rgba(201, 207, 221, 0.0417275), 0px 12.5216px 10.0172px rgba(201, 207, 221, 0.035), 0px 6.6501px 5.32008px rgba(201, 207, 221, 0.0282725), 0px 2.76726px 2.21381px rgba(201, 207, 221, 0.0196802);
    border-radius: 20px;
    padding: 30px;
    margin-left: 20px;
    margin-top: 30px;
    width: calc(25% - 20px);
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.trv-cards__item--one-third{
    width: calc(33.33% - 20px);
}
.trv-cards__item--full-width{
    width: calc(100% - 20px);
}
.trv-cards__item--callback-module{
    flex-direction: row;
}
.trv-cards__item--callback-module .trv-cards__item-rs{
    min-width: 670px;
    width: 670px;
    margin-left: 75px;
}
.trv-cards__item::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    background-image: url("/templates/tourvisor/images/svg/cards-item-corner-icon.svg");
    background-size: cover;
}
.trv-cards__item h4{
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 15px;
}
.trv-cards__item p{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
    margin: 0 0 15px;
}
.trv-cards__item ul{
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}
.trv-cards__item li{
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    display: flex;
    align-items: center;
}
.trv-cards__item li:not(:last-child){
    margin-bottom: 4px;
}
.trv-cards__item li::before{
    content: "";
    display: block;
    width: 3px;
    min-width: 3px;
    height: 3px;
    min-height: 3px;
    border-radius: 50%;
    background-color: var(--trvMainColor);
    margin-right: 7px;
}
.trv-cards__item a{
    margin-top: auto;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--trvMainColor);
    padding-top: 10px;
}
.trv-cards__item a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-cards__item a span{
    margin-right: 12px;
}
.trv-cards__item--callback-module .trv-callback-module-block__rs{
    min-width: 340px;
    width: 340px;
}
.trv-cards__item-tag{
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    background: #F2B8B8;
    border-radius: 20px 0px;
    padding: 10px 18px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.trv-cards__item-tag--blue{
    background-color: #A4C3EC;
}
.trv-cards__item-tag--purple{
    background-color: #C7BBE7;
}
.trv-cards__item-tag--green{
    background-color: #B8D3D1;
}
.trv-callback-module-block__ls .TVBButton{
    pointer-events: none;
}
/*CARDS END*/

/*CALLBACK MODULE BLOCK*/
.trv-callback-module-block__inner-wrapper{
    padding: 35px 40px;
    background-color: var(--trvMainColor);
    display: flex;
    border-radius: 17px;
    overflow: hidden;
}
.trv-callback-module-block h4{
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    margin: 0 0 20px;
}
.trv-callback-module-block p{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
    margin: 0 0 15px;
}
.trv-callback-module-block p:last-child{
    margin-bottom: 0;
}
.trv-callback-module-block__ls{
    width: auto;
}
.trv-callback-module-block__ls p{
    display: none;
}
.trv-callback-module-block__ls .TVBMediumSize{
    padding: 14px 28px;
}
.trv-callback-module-block__ls .tv-free-button .TVBButtonCaption{
    display: flex;
}
.trv-callback-module-block__ls .tv-free-button .TVBButtonCaption::after{
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    white-space: nowrap;
}
.trv-callback-module-block__ls .tv-free-button .TVBColor{
    background-color: var(--trvAccentColor);
    transition: var(--trvBtnBgTransition);
}
.trv-callback-module-block__ls .tv-free-button .TVBColor:hover{
    background-color: var(--trvBtnBgHoverColor);
}
.trv-callback-module-block__rs{
    min-width: 50%;
    width: 50%;
    margin-left: 50px;
}
/*CALLBACK MODULE BLOCK END*/

/*MULTI OFFICE*/
.trv-multi-office{
    display: flex;
    align-items: center;
}
.trv-multi-office h4{
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 20px;
}
.trv-multi-office p{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
    margin: 0 0 20px;
}
.trv-multi-office a{
    margin-top: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--trvMainColor);
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--trvMainColor);
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}
.trv-multi-office a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-multi-office a span{
    margin-right: 15px;
}
.trv-multi-office__ls{
    max-width: 450px;
    min-width: 450px;
    margin-right: 55px;
}
.trv-multi-office__rs img{
    max-width: 100%;
}
/*MULTI OFFICE END*/

/*REVIEWS*/
.trv-reviews__header{
    position: relative;
}
.trv-reviews__title{
    margin-bottom: 60px;
}
.trv-reviews__title h2{
    margin: 0;
}
.trv-reviews__btns .swiper-button-prev{
    right: 6px;
    left: unset;
    transform: translateY(-50%) translateX(-100%);
}
.trv-reviews__items .swiper{
    overflow: visible;
}
.trv-reviews__item{
    width: 540px;
    height: auto;
    display: flex;
    flex-direction: column;
}
.trv-reviews__item:not(:last-child){
    margin-right: 40px;
}
.trv-reviews__item-text{
    background: #FFFFFF;
    border: 1px solid var(--trvBgMediumColor);
    box-shadow: 0px 100px 80px rgba(201, 207, 221, 0.07), 0px 41.7776px 33.4221px rgba(201, 207, 221, 0.0503198), 0px 22.3363px 17.869px rgba(201, 207, 221, 0.0417275), 0px 12.5216px 10.0172px rgba(201, 207, 221, 0.035), 0px 6.6501px 5.32008px rgba(201, 207, 221, 0.0282725), 0px 2.76726px 2.21381px rgba(201, 207, 221, 0.0196802);
    border-radius: 15px;
    padding: 25px 30px;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
    margin-bottom: 20px;
    position: relative;
    height: 100%;
}
.trv-reviews__item-text::before{
    content: "";
    display: block;
    width: 20px;
    height: 17px;
    position: absolute;
    top: 0;
    right: 22px;
    transform: translateY(-50%);
    background-image: url("../images/svg/quote-icon.svg");
    background-size: cover;
}
.trv-reviews__item-text p{
    margin: 0 0 15px;
}
.trv-reviews__item-text b{
    color: var(--trvFontBlackColor);
    font-weight: 600;
}
.trv-reviews__item-text p:last-child{
    margin-bottom: 0;
}
.trv-reviews__item-author{
    display: flex;
}
.trv-reviews__item-avatar{
    width: 63px;
    height: 63px;
    min-width: 63px;
    min-height: 63px;
    margin-right: 15px;
    position: relative;
}
.trv-reviews__item-avatar img{
    max-width: 100%;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid var(--trvBgMediumColor);
}
.trv-reviews__item-avatar svg{
    position: absolute;
    width: 26px;
    height: auto;
    right: 0;
    bottom: 0;
    cursor: pointer;
}
.trv-reviews__item-avatar svg circle{
    transition: fill .3s ease-in-out;
}
.trv-reviews__item-avatar svg:hover circle{
    fill: var(--trvBgLightColor);
}
.trv-reviews__item-name{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trv-reviews__item-name span{
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin-bottom: 4px;
}
.trv-reviews__item-position{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightGreyColor);
}
.trv-reviews__btns .swiper-button-prev,
.trv-reviews__btns .swiper-button-next{
    background-color: transparent;
}
/*REVIEWS END*/

/*SOCIALS ROUNDED*/
.trv-socials-rounded{
    display: flex;
    flex-direction: column;
}
.trv-socials-rounded a{
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.02em;
    color: #2F80ED;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    opacity: 0.6;
}
.trv-socials-rounded a:hover{
    opacity: 1;
}
.trv-socials-rounded a:last-child{
    margin-bottom: 0;
}
.trv-socials-rounded svg{
    margin-right: -10px;
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: -5px;*/
    /*transform: translateY(-50%) translateX(-100%);*/
}
.trv-socials-rounded svg::before{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--trvMainColor);
}
.trv-socials-rounded a.trv-svg-icon--vk::before{
    content: "Вконтакте";
}
.trv-socials-rounded a.trv-svg-icon--tg::before{
    content: "Telegram";
}
.trv-socials-rounded a.trv-svg-icon--dzen::before{
    content: "Дзен";
}
.trv-socials-rounded a.trv-svg-icon--yt::before{
    content: "Youtube";
}
.trv-socials-rounded__refs{
    display: none;
}
.trv-socials-rounded rect{
    filter: drop-shadow(4px 7px 5px rgba(47, 128, 237, .3));
}
/*SOCIALS ROUNDED END*/

/*MEDIA ABOUT*/
.trv-b-media-about{
    /*padding-top: calc(2 * var(--trvBlockRoundedSm30Radius));*/
}
.trv-b-media-about img{
    max-width: 100%;
}
.trv-b-media-about__tabs{
    display: flex;
    margin-bottom: 50px;
}
.trv-b-media-about__tabs .swiper{
    width: 100%;
}
.trv-b-media-about__tab{
    width: 25%;
    min-height: 123px;
    border-right: 1px solid #D2DBE9;
}
.trv-b-media-about__tab:nth-child(4){
}
.trv-b-media-about__tab a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.trv-b-media-about__tab img{
    filter: saturate(0.1);
    opacity: .5;
    transition: filter .3s, opacity .3s;
}
.trv-b-media-about__tab a:hover img,
.trv-b-media-about__tab--active img{
    filter: saturate(1);
    opacity: 1;
}
.trv-b-media-about__tab--active a{
    cursor: default;
}
.trv-b-media-about__inner-wrapper{
    position: relative;
}
.trv-b-media-about__tabs-pagination{
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
}
.trv-b-media-about__tabs .swiper-wrapper{
    margin-left: 1px;
}
.trv-b-media-about__tabs-pagination .swiper-button-prev,
.trv-b-media-about__tabs-pagination .swiper-button-next{
    position: initial;
    transform: translateY(0);
    background-color: transparent;
}
.trv-b-media-about__tabs-pagination .swiper-button-prev{
    margin-right: 5px;
}
.trv-b-media-about__slide{
    background: #FFFFFF;
    border-radius: 20px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .4s ease-in-out;
}
.trv-b-media-about__slide--active {
    padding: 10px 35px;
    opacity: 1;
    height: auto;
    overflow: visible;
}
.trv-b-media-about__slides .swiper-wrapper{
    display: block;
}
.trv-b-media-about__article{
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
}
.trv-b-media-about__article-ls{
    /*min-width: max-content;*/
    margin-right: 18px;
}
.trv-b-media-about__article-rs{
    padding-top: 7px;
}
.trv-b-media-about__article-tag{
    display: flex;
}
.trv-b-media-about__article-tag a{
    display: flex;
    padding: 7px 10px;
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
    background-color: #F6FBFF;
    border-radius: 7px;
}
.trv-b-media-about__article-tag--red a{
    color: var(--trvAccentColor);
    background-color: #FFF9F8;
}
.trv-b-media-about__article-name a{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    text-decoration: none;
    margin: 0 0 10px;
    display: inline-block;
}
.trv-b-media-about__article-name a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-b-media-about__article-desc p{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
    margin: 0 0 5px;
}
.trv-b-media-about__article-desc p:last-child{
    margin-bottom: 0;
}
.trv-b-media-about__slides .swiper-scrollbar{
    display: none;
}
/*MEDIA ABOUT END*/

/*PREVIEW LIST*/
.trv-b-preview-list__inner-wrapper{
    /*padding-top: 90px;*/
}
.trv-b-preview-list__item{
    display: flex;
    align-items: center;
    background-color: var(--trvBgLightColor);
    padding: 35px 40px 35px 45px;
    border-radius: 15px;
    position: relative;
}
.trv-b-preview-list__item:not(:last-child){
    margin-bottom: 10px;
}
.trv-b-preview-list__item::before{
    content: "";
    display: block;
    width: 3px;
    height: 26px;
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--trvMainColor);
    border-radius: 0px 15px 15px 0px;
}
.trv-b-preview-list__item span{
    min-width: 39px;
    min-height: 39px;
    background: #F8FBFF;
    box-shadow: 0px 11px 25px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-right: 45px;
}
.trv-b-preview-list__item h4{
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 70px 0 0;
    width: 220px;
    min-width: 220px;
}
.trv-b-preview-list__item p{
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: rgba(43, 63, 90, 0.6);
    margin: 0;
    max-width: 440px;
}
.trv-b-preview-list__item > a{
    background-color: #EAEFF7;
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 9px 19px 9px 9px;
    transition: background-color .3s ease-in-out;
    margin-left: auto;
}
.trv-b-preview-list__item a{
    color: var(--trvMainColor);
    text-decoration: none;
}
.trv-b-preview-list__item a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-b-preview-list__item > a:hover{
    background-color: var(--trvBgMediumColor);
}
.trv-b-preview-list__item a svg{
    margin-right: 13px;
}
/*PREVIEW LIST END*/

/*LEGAL*/
.trv-legal-p{
    padding: 70px 0;
    background-color: #FFF;
}
.trv-legal-p h1{
    color: var(--trvFontBlackColor)
}
.trv-legal-p a{
    color: var(--trvMainColor);
}
.trv-legal-p a:hover{
    opacity: var(--trvLinksHoverOpacity);
}
/*LEGAL END*/

/*LOGIN TOUR AGENTS MODAL*/
.trv-login-tour-agents-modal{
    width: 580px;
    max-width: 80%;
    position: relative;
    display: none;
}
.trv-modal .trv-login-tour-agents-modal{
    display: block;
}
.trv-login-tour-agents-modal__title{
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    text-align: center;
    margin-bottom: 20px;
}
.trv-login-tour-agents-modal__desc{
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
    margin-bottom: 30px;
}
.trv-login-tour-agents-modal p{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
}
.trv-login-tour-agents-modal .trv-login-tour-agents-modal__p-title{
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: var(--trvFontBlackColor);
    margin-top: 0;
    margin-bottom: 10px;
}
.trv-login-tour-agents-modal .trv-login-tour-agents-modal__p-title + p{
    margin-top: 0;
}
.trv-login-tour-agents-modal p + .trv-btn{
    margin-top: 6px;
}
.trv-login-tour-agents-modal .trv-btn{
    width: 100%;
    text-align: center;
    transition: var(--trvBtnBgTransition), opacity .2s;
}
.trv-login-tour-agents-modal .trv-btn:hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-login-tour-agents-modal .trv-btn:not(.trv-btn--transparent){
    background-color: var(--trvMainColor);
}
.trv-login-tour-agents-modal .trv-btn + .trv-login-tour-agents-modal__p-title{
    margin-top: 30px;
}
.trv-login-tour-agents-modal .trv-btn + .trv-btn{
    margin-top: 20px;
}
.trv-login-tour-agents-modal__close{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background: var(--trvBgLightColor);
    border: 1px solid var(--trvBgMediumColor);
    border-radius: 6px;
    padding: 10px;
    display: flex;
}
/*LOGIN TOUR AGENTS MODAL END*/

/*COMMON LITE PAGE*/
.trv-common-lite-p{
    padding: 70px 0;
    background-color: #FFF;
}
.trv-common-lite-p h1{
    color: var(--trvFontBlackColor);
}
.trv-common-lite-p a:not(.trv-btn){
    color: var(--trvMainColor);
}
.trv-common-lite-p a:not(.trv-btn):hover{
    opacity: var(--trvLinksHoverOpacity);
}
.trv-common-lite-p p:not(td p){
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
}
.trv-tech-support-p td p{
    margin: 0;
}
.trv-tech-support-p th, .trv-tech-support-p td{

}
.trv-tech-support-p .supportPrice{
    margin-bottom: 30px;
}
/*COMMON LITE PAGE END*/

.trv-tech-support-p tr:first-child td:not(:last-child){
    border: 1px solid #dbe2ec;
}

.TVTooltip .TVTouristContentMinus:after{
    line-height: 24px;
}

.TVMobilePanelBlock .TVTouristContentMinus:after{
    line-height: 23px;
}

/*INVITE TO APP*/
.trv-invite-to-app{
    display: none;
}
/*INVITE TO APP END*/

.trv-body:not(.trv-body--b2b) .trv-b2b-only,
.trv-body--b2c .trv-b2b-only,
.trv-body--b2b .trv-b2c-only,
.trv-mobile-menu--b2b .trv-b2c-only,
.trv-mobile-menu--b2c .trv-b2b-only{
    display: none;
}

/*TOUR LINK*/
.trv-tour-link {
    display: flex;
    justify-content: space-between;
    background-color: #F1F7FF;
    border-radius: 4px;
    text-decoration: none;
    padding: 11px 17px;

    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #027AD0;

    transition: background-color .3s;
}
.trv-tour-link:hover {
    background-color: #f8fbff;
}
.trv-tour-link span:first-of-type{
    margin-right: 40px;
}
/*TOUR LINK END*/

/*CUSTOM STICKY*/
.trv-c-sticky {
    position: fixed;
    top: 0;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    /*z-index: 10;*/
    transition: top 0.3s ease;  /* Опционально: плавная анимация */
}
.trv-c-sticky--active {
    position: fixed !important;
    top: 0 !important;
    transition: top 0.2s ease-in-out;
}
/*CUSTOM STICKY END*/

@media screen and (max-width: 1400px){
    .trv-header__language-drop{
        left: unset;
        right: 0;
    }
}
@media screen and (max-width: 1240px) {
    .trv-b-body{
        padding: var(--trvBlockRoundedSm30Radius) var(--trvContainerPadding);
    }
}

@media screen and (min-width: 1201px){
    .trv-mobile-menu__menu .trv-el--only-sm{
        display: none;
    }
}

@media screen and (max-width: 1200px){
    :root{
        --trvContainerMaxWidth: 100vw;
    }
    .trv-header__lower li:not(:last-child){
        /*margin-right: 0;*/
    }
    .trv-header__lower ul{
        /*justify-content: space-between;*/
    }
    .trv-header__lower li:not(:last-child)::before{
        /*display: none;*/
    }
    .trv-header__logo, .trv-header__tabs, .trv-header__add-menu{
        margin-right: 30px;
    }


    /*MOBILE APP*/
    .trv-benefits + .trv-mobile-app{
        padding-bottom: 50px;
    }
    .trv-mobile-app__inner-wrapper{
        display: flex;
        flex-wrap: wrap;
        padding: 29px 33px 254px 33px;
    }
    .trv-mobile-app__inner-wrapper p{
        width: 100%;
        max-width: unset;
    }
    .trv-mobile-app__inner-wrapper p:first-of-type{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    .trv-mobile-app__inner-wrapper p:nth-of-type(2){
        display: none;
    }
    .trv-mobile-app__inner-wrapper > div:not(.trv-mobile-app__bg){
        width: 100%;
    }
    .trv-mobile-app__inner-wrapper a{
        padding: 7px 12px 3px 12px;
        background-color: #2E89D5;
        display: inline-block;
        border-radius: 3px;
        line-height: 0px;
        font-size: 0px;
        letter-spacing: 0px;
    }
    .trv-mobile-app__inner-wrapper a:not(:last-of-type){
        margin-right: 9px;
    }
    .trv-mobile-app__inner-wrapper > img{
        max-width: 188px;
    }
    .trv-mobile-app__inner-wrapper > img:first-of-type{
        top: unset;
        bottom: -154px;
        left: 20px;
        width: 188px;
        z-index: 1;
    }
    .trv-mobile-app__inner-wrapper > img:nth-of-type(2){
        display: none;
    }
    .trv-mobile-app__inner-wrapper > img:nth-of-type(3){
        display: block;

        top: unset;
        bottom: -193px;
        left: 113px;
        width: 188px;
    }
    .trv-mobile-app__inner-wrapper > img:nth-of-type(4){
        display: none;
    }
    .trv-mobile-app__inner-wrapper::before, .trv-mobile-app__inner-wrapper::after{
        display: none;
    }
    .trv-mobile-app__inner-wrapper > div:not(.trv-mobile-app__bg){
        display: block;
    }
    .trv-mobile-app__bg{
        position: absolute;
        width: 243px;
        height: 100%;
        background-image: url("../images/webp/mobile-app-bg2.webp");
        background-size: 100%;
        left: 0;
        top: 0;
    }
    .trv-mobile-app__bg1{
        left: 20px;
        top: unset;
        height: 223px;
        width: 188px;
        bottom: 0;
        z-index: 2;
    }
    .trv-mobile-app__bg2{
        left: 110px;
        top: unset;
        background-position: top;
        width: 188px;
        height: 184px;
        bottom: 0;
        z-index: 1;
        background-image: url("../images/webp/mobile-app-bg-sm.webp");
    }
    .trv-mobile-app__inner-wrapper > img.trv-mobile-app__gif{
        display: none;
    }
    /*MOBILE APP END*/

    /*VIDEO (youtube)*/
    .trv-video{
        padding-left: var(--trvContainerPadding);
        padding-right: var(--trvContainerPadding);
    }
    .trv-container > .trv-video{
        padding-left: 0;
        padding-right: 0;
    }
    .trv-video__inner-wrapper{
        height: 0;
        padding-bottom: 56.25%;
        max-width: var(--trvContainerMaxWidth);
        padding-left: 0;
        padding-right: 0;
        border-radius: 15px;
    }
    .trv-video__inner-wrapper::before{
        content: "";
        z-index: 1;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(0deg, rgba(47, 128, 237, 0.6), rgba(47, 128, 237, 0.6));
    }
    .trv-video iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .trv-video img{
        position: absolute;
        top: 0;
        left: 0;
        max-width: unset;
        width: auto;
        height: 100%;
    }
    .trv-video svg{
        width: 58px;
    }
    .trv-video svg circle{
        transition: fill-opacity .2s;
    }
    .trv-video__inner-wrapper:hover svg circle{
        fill-opacity: .2;
    }
    .trv-video--active img,
    .trv-video--active .trv-video__inner-wrapper::before,
    .trv-video--active svg{
        display: none;
    }
    .trv-video--active iframe{
        /*display: block;*/
    }
    /*VIDEO (youtube) END*/

    /*QA*/
    .trv-qa__title{
        margin-right: 40px;
    }
    /*QA END*/

    .trv-footer__menu{
        margin-right: 65px;
    }
    .trv-footer__qr-links{
        margin-right: 50px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 768px){
    .trv-mobile-app__inner-wrapper{
        padding-right: 40%;
        padding-bottom: 106px;
    }
    .trv-mobile-app__bg1{
        right: calc(30% - 20px);
        transform: translateX(50%);
        left: unset;
    }
    .trv-mobile-app__bg2{
        right: calc(30% - 110px);
        transform: translateX(50%);
        left: unset;
    }
}

@media screen and (max-width: 1200px){
    :root{
        --trvBlockRoundedSm30Radius: 70px;
    }

    /*CARDS*/
    .trv-cards__header{
        flex-direction: column;
        margin-bottom: 30px;
    }
    .trv-cards__header h2{
        margin-bottom: 15px;
    }
    .trv-cards__header p{
        min-width: unset;
        width: 100%;
        margin-left: 0;
        font-size: 13px;
        line-height: 18px;
    }
    .trv-cards__items{
        margin-top: 0;

    }
    .trv-cards__items .swiper{
        overflow: visible;
        max-width: calc(100% + (var(--trvContainerPadding) * 1));
        padding-left: var(--trvContainerPadding);
        padding-right: var(--trvContainerPadding);
    }
    .trv-cards__item{
        background: #FFFFFF;
        margin-left: 0px;
        margin-top: 0px;
        width: 100%;
        max-width: 280px;
        min-height: 287px;
        height: max-content;
        position: relative;
    }
    .trv-cards__item:not(:last-child) {
        margin-right: 15px;
    }
    .trv-cards__items .swiper-wrapper{
        flex-wrap: nowrap;
        height: var(--swiperHeight) !important;
        transition-property: transform,height;
    }
    .trv-cards__item--full-width{
        width: 100% !important;
        flex-direction: column;
    }
    .trv-cards__item--callback-module{
        display: flex;
    }
    .trv-cards__item--callback-module .trv-cards__item-ls{
        /*margin-bottom: 30px;*/
    }
    .trv-cards__item--callback-module .trv-cards__item-rs{
        /*min-width: unset;*/
        /*width: 100%;*/
        /*margin-left: 0px;*/
        display: none;
    }
    .trv-cards__item::before{
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 15px;
        right: 15px;
        border-radius: 50%;
        background-image: url("/templates/tourvisor/images/svg/cards-item-corner-icon.svg");
        background-size: cover;
    }
    .trv-cards__item h4{
        font-size: 14px;
        line-height: 20px;
    }
    .trv-cards__item p{
        font-size: 13px;
        line-height: 20px;
    }
    .trv-cards__item li:not(:last-child){
        margin-bottom: 4px;
    }
    .trv-cards__item--callback-module .trv-callback-module-block__rs{
        min-width: 340px;
        width: 340px;
    }
    .trv-cards__item-tag{
        font-size: 10px;
        line-height: 14px;
    }
    /*CARDS END*/

    /*SOCIALS ROUNDED*/
    .trv-socials-rounded__real{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: -15px;
        margin-left: -45px;
    }
    .trv-socials-rounded a{
        width: calc(50% - 45px);
        margin-top: 15px;
        margin-left: 45px;
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 0;
        opacity: 1;
    }
    .trv-socials-rounded svg{
        width: 61px;
        min-width: 61px;
        height: auto;
    }
    .trv-socials-rounded svg::before{
        content: "";
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--trvMainColor);
    }
    .trv-socials-rounded a.trv-svg-icon--vk::before{
        content: "Вконтакте";
    }
    .trv-socials-rounded a.trv-svg-icon--tg::before{
        content: "Telegram";
    }
    .trv-socials-rounded a.trv-svg-icon--dzen::before{
        content: "Дзен";
    }
    .trv-socials-rounded a.trv-svg-icon--yt::before{
        content: "Youtube";
    }
    .trv-socials-rounded__refs{
        display: none;
    }
    /*SOCIALS ROUNDED END*/
}

@media screen and (min-width: 901px){
    .trv-el--only-sm{
        display: none;
    }
    .trv-mobile-menu__menu .trv-el--only-sm{
        display: block;
    }
    .trv-footer--b2c .trv-footer__menu nav  ul{
        columns: 3;
        column-gap: 72px;
    }
    .trv-footer--b2c .trv-footer__logo{
        display: flex;
        flex-direction: column;
    }
    .trv-footer--b2c .trv-footer__socials{
        margin-top: auto;
    }
    .trv-footer--b2c .trv-footer__qr-phones-socials{
        margin-left: 13px;
    }
    .trv-footer--b2c .trv-footer__menu nav > ul > li > a{
        display: none;
    }
    .trv-footer--b2c  .trv-footer__qr-phones-socials .trv-footer__phones,
    .trv-footer--b2c  .trv-footer__qr-phones-socials .trv-footer__socials{
        display: none;
    }
    .trv-footer--b2c  .trv-footer__qr-phones-socials .trv-footer__qr-links{
        margin-right: 0;
    }
    .trv-footer__popd{
        margin-right: 40px;
    }
    .trv-footer__conditions{
        margin-right: 40px;
    }
    .trv-footer__rights-info{
        margin-right: 40px;
    }
}

@media screen and (max-width: 1050px){
    .trv-footer__logo{
        margin-right: 65px;
    }
    .trv-footer__copyright{
        margin-right: 55px;
    }
    .trv-footer--b2c .trv-menu-item-soc a{
        /*margin-left: 0;*/
        font-size: 0;
    }
    .trv-footer--b2c .trv-footer__menu nav ul{
        column-gap: 0;
    }
    .trv-footer--b2c .trv-footer__copyright{
        margin-right: 90px;
    }
    .trv-footer--b2c .trv-footer__logo{
        margin-right: 100px;
    }
}

@media screen and (max-width: 1000px) {
    /*HEADER*/
    .trv-header__upper{
        display: none;
    }
    .trv-menu{
        display: none;
    }
    .trv-header__mobile-burger,
    .trv-header__mobile-logo{
        display: block;
    }
    .trv-header__mobile-logo svg{
        width: 95px;
        height: 27px;
    }
    .trv-header__lower-inner-wrapper{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
    }
    .trv-header__lower{
        border-bottom: none;
        padding-left: var(--trvContainerPadding);
        padding-right: var(--trvContainerPadding);
    }
    .trv-header__lower-inner-wrapper{
        padding-left: 0;
        padding-right: 0;
    }
    .trv-header__language-mobile{
        margin-left: auto;
        display: block;
    }
    .trv-header__language-mobile > a{
        align-items: center;
        padding: 6px;
        border-radius: 7px;
        background-color: #2E89D5;
        color: #FFFFFF;
    }
    .trv-header__language-mobile > a::after{
        content: "";
        display: block;
        width: 10px;
        height: 6px;
        background-image: url(../images/svg/language-arrow.svg);
        background-repeat: no-repeat;
        background-size: cover;
        margin-left: 6px;
        filter: invert(1) brightness(2);
    }
    .trv-header__language-mobile > a svg{
        margin-left: 6px;
    }
    .trv-header__language-mobile > a img{
        width: 19px;
        height: auto;
        border-radius: 2px;
    }
    .trv-header__language-mobile .trv-header__language-drop{
        background-color: #2E89D5;
        z-index: 10;
    }
    .trv-header__language-mobile .trv-header__language--active{
        background-color: var(--trvFontDarkBlueColor);
    }
    .trv-header__language-mobile .trv-header__language-drop a:hover{
        background-color: inherit;
    }
    .trv-header__mobile-burger{
        margin-left: auto;
    }
    .trv-header__language-mobile + .trv-header__mobile-burger{
        margin-left: 30px;
    }
    .trv-footer--b2c .trv-footer__qr-phones-socials .trv-footer__phones{
        display: none;
    }
    .trv-footer--b2c .trv-footer__qr-phones-socials{
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }
    .trv-footer--b2c .trv-footer__socials{
        transform: translateY(0);
        justify-content: flex-start;
        /*display: none;*/
    }
    .trv-footer--b2c .trv-footer__qr-links{
        align-items: flex-start;
        margin-bottom: 0;
    }
    .trv-footer--b2c .trv-menu-item-soc{
        /*margin-left: 0;*/
        /*font-size: 0;*/
    }
    .trv-header__language-mobile{
        position: relative;
    }
    .trv-header__language-mobile .trv-header__language-drop a,
    .trv-header__language-mobile .trv-header__language-drop > div{
        color: #FFFFFF;
        white-space: nowrap;
    }
    .trv-header__language-mobile > a span{
        margin-left: 10px;
    }
    .trv-header__language-mobile .trv-header__language-drop{
        right: 50%;
        transform: translateX(50%) translateY(17px);
    }
    .trv-header__language-mobile--b2c .trv-header__language-drop{
        right: 0;
        transform: translateX(0) translateY(17px);
    }
    .trv-header__language-mobile .trv-header__language-drop > div:first-child{
        margin-top: 0;
    }
    .trv-header__language-mobile .trv-header__language-drop > div:hover{
        background-color: inherit;
    }
    /*.trv-header__language-mobile .trv-header__language-drop a:hover{*/
    /*    */
    /*}*/

    /*MOBILE MENU*/
    .trv-mobile-menu{
        display: block;
    }
    .trv-menu__submenu-tool-i::before{
        height: 18px;
    }
    .trv-mobile-menu-nav{
        display: none;
    }
    .trv-mobile-menu-nav--active{
        display: initial;
    }
    /*HEADER END*/
}

@media screen and (max-width: 900px){
    :root{
        --trvBlockRoundedRadius: 20px;
        --trvBlockRoundedSm30Radius: 30px;
        --trvBlockMarginBDefault: 50px;
        --trvBlockMarginB70: 50px;
    }
    /*GENERAL*/
    h1{
        font-size: 28px;
        line-height: 31px;
        margin-bottom: 20px;
    }
    h2{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .trv-page-content .page-header h1{
        font-size: 28px;
        line-height: 31px;
    }
    .trv-ul{
        margin: 0 0 25px;
    }
    .trv-ul li{
        font-size: 13px;
        line-height: 18px;
    }
    .trv-tag{
        padding: 12px 11px;
    }
    /*.trv-btn{*/
    /*    padding: 12px 24px;*/
    /*    font-size: 12px;*/
    /*    line-height: 17px;*/
    /*}*/
    /*.trv-btn--lg{*/
    /*    padding: 14px 28px;*/
    /*    font-size: 13px;*/
    /*    line-height: 18px;*/
    /*}*/
    /*custom select(nice-select2.js)*/
    .trv-body .nice-select{
        font-size: 12px;
        line-height: 17px;
        padding: 15px 41px 15px 15px;
        min-width: 155px;
        border-radius: 7px;
    }
    .trv-body .nice-select:before{
        content: "";
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: var(--trvBgLightColor);
        position: absolute;
        pointer-events: none;
        right: 10px;
        transform: translateY(-50%);
    }
    .trv-body .nice-select:after{
        border-bottom: 1px solid;
        border-right: 1px solid;
        border-color: var(--trvFontDarkGreyColor);
        right: 20px;
    }
    .trv-body .nice-select:before,
    .trv-body .nice-select:after{
        top: 50%;
    }
    .trv-body .nice-select:active,
    .trv-body .nice-select.open,
    .trv-body .nice-select:focus{
        border-color: var(--trvFontLightBlueColor);
    }
    .trv-body .nice-select .nice-select-dropdown{
        margin-top: 10px;
        width: 100%;
    }
    .trv-body .nice-select .option{
        color: var(--trvFontBlackColor);
    }
    /*custom select(nice-select2.js) end*/
    .trv-el--only-lg{
        display: none;
    }

    /*table*/
    table{
        font-size: 13px;
        line-height: 15px;
    }
    table a {
        line-height: 20px;
        padding-bottom: 2px;
    }
    th, td{
        padding: 10px;
    }
    .trv-table-cells-icon-yes th::before,
    .trv-table-cells-icon-yes td::before,
    table th.trv-table__cell--icon-yes::before,
    table td.trv-table__cell--icon-yes::before{
        width: 12px;
        height: 9px;
    }
    .trv-table-cells-icon-not th::before,
    .trv-table-cells-icon-not td::before,
    table .trv-table__cell--icon-not::before,
    table .trv-table__cell--icon-not::before{
        width: 9px;
        height: 9px;
    }
    .trv-table-cell--selected-border::after{
        right: 0;
    }
    .trv-table-cell--before-selected-border::after{
        right: -1px;
    }
    /*table end*/
    .trv-b-header{
        padding: 40px var(--trvContainerPadding);
    }
    .trv-b-header--flex{
        flex-direction: column;
    }
    .trv-b-header--flex > h1{
        margin-bottom: 25px;
    }
    .trv-b-header--flex > p{
        width: 100%;
        margin-left: 0;
    }
    .trv-b-header p{
        font-size: 13px;
        line-height: 18px;
    }
    .trv-b-body{
        padding: var(--trvBlockRoundedSm30Radius) var(--trvContainerPadding);
    }
    .trv-form-notification p{
        font-size: 14px;
        line-height: 20px;
    }
    .trv-form-notification div.h-h2{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .trv-modal-form{
        padding: 35px 40px;
    }
    .trv-modal .trv-modal-form__title{
        font-size: 20px;
        line-height: 24px;
    }
    /*GENERAL END*/

    /*FOOTER*/
    .trv-footer__upper-inner-wrapper{
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 0;
        margin-bottom: 8px;
    }
    .trv-footer__logo{
        display: none;
    }
    .trv-footer__menu{
        margin-right: 0;
        margin-bottom: 35px;
    }
    .trv-footer__menu nav > ul{
        flex-direction: column;
    }
    .trv-footer:not(.trv-footer--b2c) .trv-footer__menu nav > ul > li > ul{
        height: 0;
        overflow: hidden;
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
        transition: height .3s ease-in-out;
    }
    .trv-footer:not(.trv-footer--b2c) .trv-footer__menu nav > ul > li > ul::before{
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: #69A3F2;
        margin-bottom: 10px;
    }
    .trv-footer__menu li{
        width: 100%;
    }
    .trv-footer:not(.trv-footer--b2c) .trv-footer__menu nav > ul > li{
        background-color: #2E89D5;
        border-radius: 7px;
    }
    .trv-footer__menu nav > ul > li:not(:last-child){
        margin-right: 0;
        margin-bottom: 10px;
    }
    .trv-footer__menu nav > ul > li > ul > li{
        margin-bottom: 3px;
    }
    .trv-footer__menu nav > ul > li > ul > li:last-child{
        margin-bottom: 13px;
    }
    .trv-footer__menu a{
        width: 100%;
    }
    .trv-footer__menu nav > ul > li > a{
        margin-bottom: 0;
        padding: 13px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 13px;
        line-height: 18px;
    }
    .trv-footer__menu nav > ul > li > a::after{
        content: "";
        display: block;
        width: 10px;
        height: 6px;
        background-image: url("../images/svg/dropdown-arrow.svg");
        background-size: cover;
        transition: transform .3s ease-in-out;
    }
    .trv-footer__menu nav > ul > li.trv-footer__menu-item--opened > a::after{
        transform: rotate(180deg);
    }
    .trv-footer__menu nav > ul > li > ul > li a{
        font-size: 12px;
        line-height: 25px;
        color: var(--trvFontWhiteColor);
    }
    .trv-footer__qr-links{
        margin-right: 0;
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .trv-footer__phones{
        grid-column: 1;
        grid-row: 1;
        min-width: 162px;
        margin-right: 20px;
        margin-bottom: 0;
    }
    .trv-footer__socials{
        grid-column: 2;
        grid-row: 2;
        transform: translateY(-100%);
        justify-content: flex-end;
    }
    .trv-socials.trv-footer__socials a:not(:last-child){
        margin-right: 11px;
    }
    .trv-footer__qr-links > img{
        display: none;
    }
    .trv-footer__qr-links a{
        padding: 7px 12px 3px 12px;
        background-color: #2E89D5;
        display: inline-block;
        border-radius: 3px;
        line-height: 0px;
        font-size: 0px;
        letter-spacing: 0px;
    }
    .trv-footer__qr-links a:not(:last-child){
        margin-bottom: 12px;
    }
    .trv-footer__phones > div:not(:last-child){
        margin-bottom: 20px;
    }
    .trv-footer__phones > div:not(:last-child)::after{
        display: none;
    }
    .trv-footer__phones a{
        font-size: 14px;
        line-height: 18px;
    }
    .trv-footer__phones span{
        margin-top: 4px;
    }
    .trv-footer__bottom{
        background-color: transparent;
    }
    .trv-footer__bottom-inner-wrapper{
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 25px;
    }
    .trv-footer__copyright{
        margin-right: 0;
        order: 5;
    }
    .trv-footer__popd{
        margin-right: 0;
    }
    .trv-footer--b2c .trv-footer__menu nav > ul > li > a{
        display: none;
    }
    .trv-footer--b2c .trv-footer__menu{
        margin-bottom: 30px;
    }
    .trv-footer--b2c .trv-footer__menu nav > ul > li > ul > li:last-child{
        margin-bottom: 0;
    }
    .trv-footer--b2c .trv-footer__socials{
        margin-top: 15px;
    }
    .trv-footer--b2c .trv-footer__upper-inner-wrapper{
        flex-direction: row;
        margin-bottom: 20px;
    }
    .trv-footer--b2c .trv-footer__menu{
        width: 50%;
        margin-bottom: 0;
    }
    .trv-footer--b2c .trv-footer__qr-phones-socials{
        width: 50%;
        align-items: flex-end;
        justify-content: space-between;
    }
    .trv-footer--b2c .trv-footer__socials .trv-svg-icon--dzen{
        width: 22px;
        height: auto;
    }
    .trv-footer--b2c .trv-footer__socials .trv-svg-icon--yt{
        width: auto;
        height: 20px;
    }
    .trv-footer--b2c .trv-socials.trv-footer__socials a:not(:last-child){
        margin-right: 20px;
    }
    /*FOOTER END*/

    /*QA*/
    .trv-qa__inner-wrapper{
        flex-direction: column;
    }
    .trv-qa__title{
        min-width: unset;
        max-width: unset;
        margin-right: 0;
    }
    .trv-qa__title h2{
        margin-bottom: 30px;
    }
    .trv-qa__items{
    }
    .trv-qa__item{
    }
    .trv-qa__item:not(:last-child){
    }
    .trv-qa__item > div:nth-of-type(1){
        font-size: 13px;
        line-height: 17px;
        padding: 15px 15px 15px 20px;
    }
    .trv-qa__item > div:nth-of-type(1) .trv-svg-icon-wrapper{
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
    }
    .trv-qa__item > div:nth-of-type(2){
        padding-left: 20px;
        padding-right: 20px;
    }
    .trv-qa__item > div:nth-of-type(2) p{
        font-weight: 500;
        font-size: 12px;
        line-height: 17px;
    }
    .trv-qa__item > div:nth-of-type(2) p:not(:last-child){
    }
    /*QA END*/

    /*CALLBACK MODULE BLOCK*/
    .trv-callback-module-block__inner-wrapper{
        padding: 20px 25px;
        flex-direction: column;
    }
    .trv-callback-module-block h4{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .trv-callback-module-block p{
        font-size: 13px;
        line-height: 20px;
    }
    .trv-callback-module-block p:last-child{
        margin-bottom: 0;
    }
    .trv-callback-module-block__ls{
        width: auto;
    }
    .trv-callback-module-block__ls p{
        display: block;
    }
    .trv-callback-module-block__ls .TVBMediumSize{
        padding: 10px 25px;
    }
    .trv-callback-module-block__ls .tv-free-button .TVBButtonCaption{
        display: flex;
    }
    .trv-callback-module-block__ls .tv-free-button .TVBButtonCaption::after{
        white-space: unset;
        text-align: center;
    }
    .trv-callback-module-block__ls .tv-free-button .TVBColor{
        background-color: var(--trvAccentColor);
        transition: var(--trvBtnBgTransition);
    }
    .trv-callback-module-block__ls .tv-free-button .TVBColor:hover{
        background-color: var(--trvBtnBgHoverColor);
    }
    .trv-callback-module-block__rs{
        display: none;
    }
    /*CALLBACK MODULE BLOCK END*/

    /*MULTI OFFICE*/
    .trv-multi-office{
        align-items: flex-start;
        flex-direction: column;
    }
    .trv-multi-office h4{
        font-size: 17px;
        line-height: 22px;
        margin: 0 0 15px;
    }
    .trv-multi-office p{
        font-size: 13px;
        line-height: 20px;
        margin: 0 0 15px;
    }
    .trv-multi-office a{
        margin-top: 5px;
        font-size: 13px;
        line-height: 18px;
    }
    .trv-multi-office a span{
        margin-right: 12px;
    }
    .trv-multi-office__ls{
        max-width: 450px;
        min-width: 450px;
        margin-right: 55px;
    }
    .trv-multi-office__rs{
        width: 100%;
        text-align: center;
    }
    /*MULTI OFFICE END*/

    /*REVIEWS*/
    .trv-reviews__title{
        margin-bottom: 30px;
    }
    .trv-reviews__btns{
        display: none;
    }
    .trv-reviews__item{
        width: 350px;
    }
    .trv-reviews__item:not(:last-child){
        margin-right: 15px;
    }
    .trv-reviews__item-text{
        font-size: 12px;
        line-height: 18px;
    }
    .trv-reviews__item-avatar{
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    .trv-reviews__item-avatar svg{
        width: 22px;
    }
    .trv-reviews__item-name span{
        font-size: 12px;
        line-height: 17px;
        margin-bottom: 4px;
    }
    .trv-reviews__item-position{
        font-size: 11px;
        line-height: 15px;
    }
    /*REVIEWS END*/

    /*MEDIA ABOUT*/
    .trv-b-media-about{
    }
    .trv-b-media-about__title{
        text-align: center;
        margin-bottom: 30px;
    }
    .trv-b-media-about img{
    }
    .trv-b-media-about__tabs{
        width: calc(100% + var(--trvContainerPadding) * 2);
        margin-left: calc(-1 * (var(--trvContainerPadding) + 1px));
    }
    .trv-b-media-about__tabs .swiper{
        width: 100%;
    }
    .trv-b-media-about__tab{
        width: 160px;
        min-height: 80px;
    }
    .trv-b-media-about__tab:nth-child(4){
    }
    .trv-b-media-about__tab a{
    }
    .trv-b-media-about__tab img{
        width: auto;
        max-height: 27px;
        max-width: 70%;
    }
    .trv-b-media-about__tab a:hover img,
    .trv-b-media-about__tab--active img{
    }
    .trv-b-media-about__tab--active a{
    }
    .trv-b-media-about__inner-wrapper{
        position: relative;
    }
    .trv-b-media-about__tabs-pagination{
        display: none;
    }
    .trv-b-media-about__tabs .swiper-wrapper{
        margin-left: 1px;
    }
    .trv-b-media-about__tabs-pagination .swiper-button-prev,
    .trv-b-media-about__tabs-pagination .swiper-button-next{
        position: initial;
        transform: translateY(0);
        background-color: transparent;
    }
    .trv-b-media-about__tabs-pagination .swiper-button-prev{
        margin-right: 5px;
    }
    .trv-b-media-about__slide{
        background-color: transparent;
        border-radius: 0;
    }
    .trv-b-media-about__slide--active {
        padding: 0;
    }
    .trv-b-media-about__slides .swiper-wrapper{
        display: flex;
    }
    .trv-b-media-about__article{
        flex-direction: column;
        padding: 25px;
        background: #FFFFFF;
        border-radius: 20px;
    }
    .trv-b-media-about__article-ls{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .trv-b-media-about__article-rs{
        padding-top: 0;
    }
    .trv-b-media-about__article-tag{
        display: flex;
    }
    .trv-b-media-about__article-tag a{
        font-size: 11px;
        line-height: 14px;
    }
    .trv-b-media-about__article-tag--red a{
        color: var(--trvAccentColor);
        background-color: #FFF9F8;
    }
    .trv-b-media-about__article-name a{
        font-size: 14px;
        line-height: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .trv-b-media-about__article-desc p{
        font-size: 13px;
        line-height: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .trv-b-media-about__article-desc p:last-child{
        margin-bottom: 0;
    }
    .trv-b-media-about__slides .swiper-scrollbar{
        display: block;
        margin-top: 30px;
        height: 2px;
    }
    .trv-b-media-about__slides .swiper-scrollbar-drag{
        background-color: #AAB2BD;
    }
    .trv-b-media-about__slides .swiper-horizontal>.swiper-scrollbar,
    .trv-b-media-about__slides .swiper-scrollbar.swiper-scrollbar-horizontal{
        position: initial;
    }
    /*MEDIA ABOUT END*/

    /*PREVIEW LIST*/
    .trv-b-preview-list{
        border-radius: 30px;
        background-color: #F1F4F9;
        padding-top: 30px;
        padding-bottom: 50px;
        width: calc(100% + 2 * var(--trvContainerPadding));
        margin-left: calc(-1 * var(--trvContainerPadding));
    }
    .trv-b-preview-list__inner-wrapper{
        padding-left: var(--trvContainerPadding);
        padding-right: var(--trvContainerPadding);
    }
    .trv-b-preview-list__inner-wrapper h2{
        text-align: center;
        margin-bottom: 40px;
    }
    .trv-b-preview-list__item{
        flex-direction: column;
        position: relative;
        padding: 0 0 0 62px;
        align-items: flex-start;
        background-color: transparent;
    }
    .trv-b-preview-list__item:not(:last-child){
        margin-bottom: 35px;
    }
    .trv-b-preview-list__item::before{
        display: none;
    }
    .trv-b-preview-list__item span{
        position: absolute;
        top: 0;
        left: 0;
        padding: 12px;
        margin-right: 0;
        font-size: 14px;
        line-height: 18px;
    }
    .trv-b-preview-list__item h4{
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .trv-b-preview-list__item p{
        line-height: 18px;
        max-width: unset;
    }
    .trv-b-preview-list__item > a{
        background-color: transparent;
        border-radius: 0;
        padding: 0;
        margin-left: 0;
        margin-top: 15px;
        padding-bottom: 5px;
        border-bottom: 1px dashed var(--trvMainColor);
    }
    .trv-b-preview-list__item > a svg{
        display: none;
    }
    /*PREVIEW LIST END*/

    /*LEGAL*/
    .trv-legal-p{
        padding: 40px 0;
        background-color: #FFF;
    }
    .trv-legal-p p{
        font-size: 14px;
        line-height: 18px;
    }
    /*LEGAL END*/

    /*LOGIN TOUR AGENTS MODAL*/
    .trv-login-tour-agents-modal{
        width: 580px;
        max-width: 85%;
    }
    .trv-login-tour-agents-modal__title{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .trv-login-tour-agents-modal__desc{
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 20px;
    }
    .trv-login-tour-agents-modal p{
        font-size: 13px;
        line-height: 19px;
    }
    .trv-login-tour-agents-modal .trv-login-tour-agents-modal__p-title{
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 5px;
    }
    .trv-login-tour-agents-modal .trv-login-tour-agents-modal__p-title + p{
        margin-top: 0;
    }
    .trv-login-tour-agents-modal p + .trv-btn{
        margin-top: 0;
    }
    .trv-login-tour-agents-modal .trv-btn{
        padding: 10px 30px;
        font-size: 13px;
        line-height: 19px;
    }
    .trv-login-tour-agents-modal .trv-btn:hover{
        opacity: var(--trvLinksHoverOpacity);
    }
    .trv-login-tour-agents-modal .trv-btn:not(.trv-btn--transparent){
        background-color: var(--trvMainColor);
    }
    .trv-login-tour-agents-modal .trv-btn + .trv-login-tour-agents-modal__p-title{
        margin-top: 20px;
    }
    .trv-login-tour-agents-modal .trv-btn + .trv-btn{
        margin-top: 10px;
    }
    .trv-login-tour-agents-modal__close{
        padding: 3px;
    }
    /*LOGIN TOUR AGENTS MODAL END*/

    /*COMMON LITE PAGE*/
    .trv-common-lite-p{
        padding: 40px 0;
    }
    .trv-common-lite-p p:not(td p){
        font-size: 14px;
    }
    /*COMMON LITE PAGE END*/

    /*TOUR LINK*/
    .trv-tour-link{
        font-size: 13px;
        line-height: 16px;
    }
    .trv-tour-link span:first-of-type{
        margin-right: 20px;
    }
    /*TOUR LINK END*/
}

@media screen and (max-width: 767px){
    /*MOBILE MENU*/
    .trv-mobile-menu{
        left: 0;
        transform: translateX(0);
        width: 100%;
        opacity: 0;
        transition: opacity ease-in-out .4s;
        pointer-events: none;
    }
    .trv-mobile-menu--active{
        opacity: 1;
        pointer-events: auto;
    }
    /*MOBILE MENU END*/

    .trv-modal{
        align-items: flex-start;
        overflow-y: auto;
        padding: 30px 0;
    }

    .trv-header--fixed.trv-header--mobile-menu-opened .trv-header__lower{
        opacity: 1;
    }
    .trv-header--fixed .trv-header__lower::before{
        display: none;
    }
}

@media screen and (max-width: 600px){
    /*INVITE TO APP*/
    .trv-modal.trv-modal--invite-to-app{
        align-items: flex-end;
        padding-bottom: 100px;
    }
    .trv-invite-to-app{
        display: none;
        background-color: #FFFFFF;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 35px 35px 50px;
        width: 322px;
        max-width: 85%;
        position: relative;
        overflow: hidden;
    }
    .trv-invite-to-app::before{
        content: "";
        display: block;
        width: 100%;
        height: 40px;
        position: absolute;
        bottom: -1px;
        left: 0;
        background-image: url("../images/svg/modal_bottom_bg.svg");
        background-size: cover;
    }
    .trv-modal .trv-invite-to-app{
        display: block;
    }
    .trv-invite-to-app p{
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        color: var(--trvFontBlackColor);
        text-align: center;
        margin-top: 0;
        margin-bottom: 40px;
    }
    .trv-invite-to-app .trv-btn{
        width: 100%;
        text-align: center;
        font-weight: 600;
        padding: 12px 30px;
    }
    .trv-invite-to-app__close{
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
        background: var(--trvBgLightColor);
        border: 1px solid var(--trvBgMediumColor);
        border-radius: 6px;
        padding: 10px;
        display: flex;
    }
    .trv-invite-to-app__close::before{
        content: "";
        display: block;
        width: 13px;
        min-width: 13px;
        height: 13px;
        min-height: 13px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background-image: url("../images/svg/close_icon.svg");
        background-size: cover;
    }
    /*INVITE TO APP END*/
}

@media screen and (max-width: 480px){
    /*GENERAL*/
    .trv-modal-form{
        padding: 45px 30px 25px;
    }
    /*GENERAL END*/

    /*MULTI OFFICE*/
    .trv-multi-office__rs img{
        transform: scale(1.5);
        padding: 55px 0 70px;
    }
    /*MULTI OFFICE END*/
}

@media screen and (max-width: 420px){
    /*REVIEWS*/
    .trv-reviews__item{
        width: 290px;
    }
    /*REVIEWS END*/

    .trv-header__language-mobile + .trv-header__mobile-burger{
        margin-left: 15px;
    }
}

/*QA*/
@keyframes qa-minus-hide{
    0% {
        opacity: 1;
    }
    5% {
        opacity: .8;
    }
    10% {
        opacity: .6;
    }
    15% {
        opacity: .4;
    }
    20% {
        opacity: .2;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes qa-minus-show{
    0% {
        opacity: 0;
    }
    5% {
        opacity: 0;
    }
    10% {
        opacity: .2;
    }
    15% {
        opacity: .4;
    }
    20% {
        opacity: .6;
    }
    30% {
        opacity: .8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes qa-icon-for-bg {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(0.8)
    }
    20% {
        transform: scale(0.9)
    }
    50% {
        transform: scale(1);
    }
    65%,
    100% {
        transform: scale(1);
    }
}

@keyframes qa-icon-for-bg-reverse {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(0.8)
    }
    20% {
        transform: scale(0.9)
    }
    50% {
        transform: scale(1);
    }
    65%,
    100% {
        transform: scale(1);
    }
}

@keyframes qa-icon-bg {
    0%{
        transform: scale(1);
        border-radius: 16px;
    }
    10% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
        border-radius: 14px
    }
    65%,
    100% {
        transform: scale(1);
        border-radius: 16px;
    }
}

@keyframes qa-icon-bg-reverse {
    0%{
        transform: scale(1);
        border-radius: 16px;
    }
    10% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
        border-radius: 14px
    }
    65%,
    100% {
        transform: scale(1);
        border-radius: 16px;
    }
}
/*QA END*/