@charset "utf-8";
@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;*/
}

:root{
    --trvtmplContainerMaxWidth: 1140px;
    --trvtmplContainerPadding: 20px;
    --trvtmplLinksTransition: opacity .3s;
    --trvtmplLinksHoverOpacity: .8;
    --trvtmplBlockBMargin: 100px;
    --trvtmplRGBColor: 0;
    --trvtmplSecondSearchColor: #66A18A;
    --trvtmplThirdSearchColor: #D9E7E0;
}

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

body {
    margin: 0;
    padding: 0;
    min-width: 360px;
}

.trvtmpl-body--y-no-scroll{
    overflow-y: hidden;
}

.trvtmpl-body--full-height{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.trvtmpl-body--full-height header{
    width: 100%;
}
.trvtmpl-body--full-height footer{
    margin-top: auto;
}

h1, h3, h4, h5, h6{
    color: var(--trvtmplFontDarkColor);
}

h2{
    color: var(--trvtmplFontDarkColor);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

p{
    color: var(--trvtmplFontDarkColor);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

/*COMMON*/
a:not(.trvtmpl-without-hover){
    transition: opacity .3s;
}
a:not(.trvtmpl-without-hover):hover{
    opacity: .8;
}
.trvtmpl-body{
    background-color: #F7F9F8;
}
.trvtmpl-container{
    max-width: var(--trvtmplContainerMaxWidth);
    padding-left: var(--trvtmplContainerPadding);
    padding-right: var(--trvtmplContainerPadding);
    margin: auto;
}
img{
    max-width: 100%;
}
.trvtmpl-overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(49, 65, 82, 0.10);
    backdrop-filter: blur(6px);
    transition: opacity .3s;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
}
.trvtmpl-overlay--active{
    pointer-events: auto;
    opacity: 1;
}
.trvtmpl-hidden-max-height{
    max-height: 0;
    overflow: hidden;
}
.trvtmpl-visible-max-height{
    max-height: unset !important;
    overflow: auto !important;
}
.trvtmpl-upper-bg{
    position: absolute;
    top: 0;
    opacity: .5;
    display: flex;
    overflow: hidden;
    justify-content: center;
    pointer-events: none;
    z-index: -1;
    width: 100%;
    /*max-height: 100%;*/
}
.trvtmpl-upper-bg img{
    width: 100%;
    height: 100%;
}
.trvtmpl-subtitle,
.trvtmpl-subtitle p{
    color: var(--trvtmplColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.trvtmpl-subtitle p{
    display: contents;
}
.trvtmpl-b-margin{
    margin-bottom: var(--trvtmplBlockBMargin);
}
.trvtmpl-modules-block-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.trvtmpl-modules-block-header h2{
    margin-top: 0;
    margin-bottom: 0;
}
.trvtmpl-modules-block-header a,
.trvtmpl-modules-block-footer a{
    text-decoration: none;
    color: var(--trvtmplFontDarkColor);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid var(--trvtmplButtonsColor);
    padding: 16px 24px;
    display: inline-block;
    border-radius: 50px;
}
.trvtmpl-modules-block-footer{
    display: none;
}
.trvtmpl-b--colored{
    padding: 100px 0;
    background-color: var(--trvtmplSecondColor);
    border-radius: 90px;
}
body .social-icon:before{
    font-size: 14px !important;
}
.SOCiconwhatsapp:before,
.SOCiconicq:before,
.SOCiconodnoklassniki:before,
.SOCiconskype:before,
.SOCicontelegram:before,
.SOCiconviber:before,
.SOCiconinstagram:before{
    background-color: var(--trvtmplColor) !important;
}
.trvtmpl-swiper-btn{
    margin: 0;
    transform: translateY(-50%);
    width: 66px;
    height: 66px;
}
.trvtmpl-swiper-btn.swiper-button-prev{
    transform: translateY(-50%) rotateZ(180deg);
}
.trvtmpl-swiper-btn:after{
    display: none;
}
.trvtmpl-block-images--loading img{
    opacity: 0;
    position: absolute;
}
.trvtmpl-page-content--fill{
    margin-bottom: var(--trvtmplBlockBMargin);
    padding-top: 30px;
}
/*COMMON END*/

/*SOCIALS*/
.trvtmpl-soc{
    display: flex;
    /*display: inline-block;*/
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
    /*max-width: 24px;*/
    /*min-width: 24px;*/
    /*max-height: 24px;*/
    /*min-height: 24px;*/
}
/*SOCIALS END*/

/*HEADER*/
.trvtmpl-header{
    margin-top: 25px;
    position: relative;
    z-index: 101;
    margin-bottom: 25px;
}
.trvtmpl-header::before{
}
.trvtmpl-header__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 35px;
    background: var(--trvtmplFourthColor);
    box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.03);
    padding: 15px 25px 15px 30px;
    transition: border-radius .3s;
}
.trvtmpl-header__burger{
    margin-right: 30px;
}
.trvtmpl-burger button{
    border: none;
    background-color: transparent;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    padding: 0;
}
.trvtmpl-burger--animate button line:nth-child(3){
    transition: transform .1s ease-out, opacity .15s;
}
.trvtmpl-burger--animate button:hover line:nth-child(3){
    transform: translateX(6px);
}
.trvtmpl-header__left-side{
    display: flex;
    align-items: center;
}
.trvtmpl-header__logo-name > a{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.trvtmpl-header__logo > div{
    display: flex;
}
.trvtmpl-header__name{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    color: rgba(49, 65, 82, 0.70);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    max-width: 250px;
}
.trvtmpl-header__name span:first-child,
.trvtmpl-header__name span:first-child p{
    color: var(--trvtmplFontDarkColor);
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    display: inline-block;
    margin-top: 0;
    margin-bottom: 3px;
}
.trvtmpl-header__name span:first-child p {
    margin-bottom: 0;
}
.trvtmpl-header__middle-side{
    margin-left: 50px;
    margin-right: 30px;
}
.trvtmpl-header__socials{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 263px;
    margin-top: -10px;
}
.trvtmpl-header__socials > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.trvtmpl-header__socials a{
    text-decoration: none;
    margin-top: 10px;
    display: flex;
}
.trvtmpl-header__socials a:nth-child(-n+5){
    /*margin-top: 0;*/
}
.trvtmpl-header__socials a:not(:last-child){
    margin-right: 9px;
}
.trvtmpl-header__socials a svg{
    width: 25px;
    height: auto;
}
.trvtmpl-header__right-side{
    display: flex;
    align-items: center;
}
.trvtmpl-header__phone-address{
    text-align: right;
    margin-right: 30px;
    max-width: 250px;
}
.trvtmpl-header__phone{
    margin-bottom: 5px;
    transition: opacity .3s;
    display: flex;
    flex-direction: column;
}
.trvtmpl-header__phone > p,
.trvtmpl-header__phone > div{
    display: inline;
    /*margin-right: 10px;*/
    margin-right: 0px;
}
.trvtmpl-header__phone a{
    color: var(--trvtmplFontDarkColor);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    /*margin-right: 10px;*/
    margin-right: 0px;
}
.trvtmpl-header__phone a:last-child,
.trvtmpl-header__phone > div:last-child,
.trvtmpl-header__phone > p:last-child{
    margin-right: 0;
}
.trvtmpl-header__phone a svg{
    display: none;
}
.trvtmpl-header__address,
.trvtmpl-header__address p{
    color: rgba(49, 65, 82, 0.60);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin: 0;
}
.trvtmpl-header__mobile-burger{
    display: none;
    pointer-events: none;
}
.trvtmpl-header--loaded .trvtmpl-header__mobile-burger{
    pointer-events: unset;
}
.trvtmpl-burger--disabled{
    pointer-events: none;
}
.trvtmpl-burger .line {
    --trvtmplAnimationDuration: .4s;
    transition: transform var(--trvtmplAnimationDuration), opacity .15s;
}
.trvtmpl-burger .line1 {
    transform: rotate(0);
    transform-origin: 0;
}
.trvtmpl-burger .line2 {
    transform: rotate(0);
    transform-origin: 0;
}
.trvtmpl-burger .line3 {
    opacity: 1;
}
.trvtmpl-burger .line.active {
}
.trvtmpl-burger .line1.active {
    transform: rotate(45deg);
    transform-origin: 8px 0px;
}
.trvtmpl-burger .line2.active {
    transform: rotate(-45deg);
    transform-origin: 10px 25px;
}
.trvtmpl-burger .line3.active {
    opacity: 0;
}

/*MENU*/
.trvtmpl-header__menu{
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(calc(100% + 5px));
    border-radius: 50px;
    background: var(--trvtmplFourthColor);
    box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.03);
    padding: 40px 110px 40px 40px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s;
}
.trvtmpl-header__menu--active{
    opacity: 1;
    pointer-events: auto;
}
.trvtmpl-header__menu nav{
    display: flex;
    flex-wrap: wrap;
    margin-left: -70px;
    margin-top: -40px;
}
.trvtmpl-header__menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 70px;
}
.trvtmpl-header__menu nav > ul{
    margin-left: 70px;
    margin-top: 40px;
    margin-right: 0;
}
.trvtmpl-header__menu ul:last-child{
    margin-right: 0;
}
.trvtmpl-header__menu a{
    text-decoration: none;
    color: var(--trvtmplFontDarkColor);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.trvtmpl-header__menu nav > ul ul li{
    margin-bottom: 15px;
}
.trvtmpl-header__menu nav > ul ul li:last-child{
    margin-bottom: 0;
}
.trvtmpl-header__menu nav > ul ul a,
.trvtmpl-header__menu nav > ul ul span{
    color: var(--trvtmplFontDarkColor);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.trvtmpl-header__menu nav > ul ul .trvtmpl-header__menu-item--active a{
    color: var(--trvtmplColor);
}
.trvtmpl-header__menu nav > ul > li{
    margin-bottom: 25px;
}
.trvtmpl-header__menu nav > ul > li:last-child{
    margin-bottom: 0;
}
.trvtmpl-header__menu nav > ul > li > a,
.trvtmpl-header__menu nav > ul > li > span{
    color: var(--trvtmplFontDarkColor);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}
.trvtmpl-header__menu nav > ul > li.trvtmpl-header__menu-item--active > a,
.trvtmpl-header__menu nav > ul > li.trvtmpl-header__menu-item--active > span{
    color: var(--trvtmplColor);
}
.trvtmpl-header__menu-label{
    display: inline-block;
    position: absolute;
    top: 25px;
    right: 25px;
    border-radius: 200px;
    background: #F1F8F6;
    padding: 12px 20px;
    color: var(--trvtmplFontDarkColor);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.6;
    pointer-events: none;
}
.trvtmpl-header__menu-label svg{
    display: none;
}
.trvtmpl-menu-item-arrow{
    display: none;
}
.trvtmpl-header__menu .trvtmpl-header__socials,
.trvtmpl-header__menu .trvtmpl-header__phone,
.trvtmpl-header__menu .trvtmpl-header__address,
.trvtmpl-header__menu .trvtmpl-header__btn-request{
    display: none;
}
.trvtmpl-menu-item--main{
    display: none;
}
/*MENU END*/

/*HEADER END*/

/*SLIDER SEARCH*/
.trvtmpl-slider-search{
    margin-bottom: 80px;
    min-height: 400px;
}
.trvtmpl-slider-search__wrapper{
    position: relative;
}
.trvtmpl-search{
    display: flex;
    position: absolute;
    top: 60px;
    right: calc(67px + var(--trvtmplContainerPadding));
    z-index: 3;
}
.trvtmpl-slider{
    overflow: hidden;
}
/*SLIDER SEARCH END*/

/*BOOKING*/
.trvtmpl-booking__wrapper h2{
    max-width: 50%;
    margin-top: 0;
}
.trvtmpl-booking__items .swiper{
    overflow: visible;
}
.trvtmpl-booking__items .swiper-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-top: -30px;
    width: calc(100% + 30px);
}
.trvtmpl-booking__item{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 15px 25px 0px rgba(0, 101, 89, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 22px 30px;
    margin-left: 30px;
    margin-top: 50px;
}
.trvtmpl-booking__bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
}
.trvtmpl-booking__bg::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    /*background-image: url("/images/booking-item-bg.jpg");*/
    background-repeat: no-repeat;
    background-position: 100% 0%;
    background-size: cover;
    opacity: .06;
}
.trvtmpl-booking__img{
    margin-bottom: 50px;
}
.trvtmpl-booking__item{
    width: calc(33.33% - 30px);
    height: auto;
}
.trvtmpl-booking__item:nth-child(1),
.trvtmpl-booking__item:nth-child(2){
    width: calc(50% - 30px);
    margin-bottom: 80px;
}
.trvtmpl-booking__item:nth-child(3),
.trvtmpl-booking__item:nth-child(4),
.trvtmpl-booking__item:nth-child(5){
    margin-top: 0;
}
.trvtmpl-booking__title{
    color: var(--trvtmplFontDarkColor);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    margin-top: auto;
    max-width: 271px;
}
.trvtmpl-booking__number{
    color: rgba(49, 65, 82, 0.04);
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: 88px;
    position: absolute;
    right: 30px;
    top: 30px;
    transform: translateY(-100%);
    z-index: -1;
}
/*BOOKING END*/

/*HOT TOURS*/
.trvtmpl-hot-tours__header{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.trvtmpl-hot-tours__header h2{
    margin-top: 0;
    margin-bottom: 0;
}
.trvtmpl-hot-tours__header a,
.trvtmpl-hot-tours__footer a{
    text-decoration: none;
    color: var(--trvtmplFontDarkColor);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #8DD3BB;
    padding: 16px 24px;
    display: inline-block;
    border-radius: 50px;
}
.trvtmpl-hot-tours__footer{
    display: none;
}
/*HOT TOURS END*/

/*MIN PRICES*/
.trvtmpl-min-prices__sm{
    display: none;
}
/*MIN PRICES END*/

/*ABOUT*/
.trvtmpl-about.trvtmpl-b-margin{
    margin-bottom: 150px;
}
.trvtmpl-about__img{
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    height: 363px;
    margin-bottom: 25px;
}
.trvtmpl-about__img img{
    min-width: unset;
    height: 100%;
    max-width: unset;
    width: auto;
}
.trvtmpl-about h2{
    margin-top: 0;
    margin-bottom: 40px;
    max-width: 50%;
}
.trvtmpl-about__desc{
    display: flex;
}
.trvtmpl-about__desc > div:nth-of-type(1){
    width: 403px;
    min-width: 403px;
    margin-right: 150px;
}
.trvtmpl-about__desc > div:nth-of-type(1) p{
    color: var(--trvtmplFontDarkColor);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    margin-bottom: 0;
}
/*ABOUT END*/

/*MESSENGER*/
.trvtmpl-messenger{
    overflow-x: clip;
    margin-bottom: 150px;
    --bgCircleColor: #D6F2E9;
}
.trvtmpl-messenger__wrapper{
    border-radius: 50px;
    background-color: var(--trvtmplThirdColor);
    padding: 90px 95px 80px;
    display: flex;
    position: relative;
}
.trvtmpl-messenger h3{
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--trvtmplFontDarkColor);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 41px;
}
.trvtmpl-messenger p{
    color: var(--trvtmplFontDarkColor);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.trvtmpl-messenger p:last-of-type{
    /*margin-bottom: 40px;*/
    margin-bottom: 0;
}
.trvtmpl-messenger__wrapper > div:nth-child(1){
    max-width: 50%;
    width: 50%;
    margin-right: 30px;
}
.trvtmpl-messenger__wrapper > div:nth-child(1) a{
    padding: 10px 24px 10px 16px;
    border-radius: 200px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #314152;
    display: inline-flex;
    text-decoration: none;
    color: #F7F9F8;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-items: center;
    margin-right: 14px;
    flex-direction: row-reverse;
    justify-content: center;
    min-width: 200px;
}
.trvtmpl-messenger__wrapper > div:nth-child(1) a:last-child{
    margin-right: 0;
}
.trvtmpl-messenger__wrapper > div:nth-child(1) a svg{
    width: 22px;
    min-width: 22px;
    height: auto;
    margin-right: 8px;
}
.trvtmpl-messenger__wrapper > div:nth-child(2){
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 50%;
    z-index: 2;
    display: flex;
    align-items: baseline;
}
.trvtmpl-messenger__wrapper > div:nth-child(2) img{
    position: absolute;
    bottom: 0;
}
.trvtmpl-messenger__wrapper > div:nth-child(2) img:nth-child(1){
    clip-path: polygon(0 0, 100% 0, 100% 77%, 0 77%);
    transform: translateY(23%);
}
.trvtmpl-messenger__wrapper > div:nth-child(2) img:nth-child(2){
    left: 200px;
}
.trvtmpl-messenger__bg{
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: 0 50px 50px 0;
    overflow: hidden;
    z-index: 1;
}
.trvtmpl-messenger__bg::before{
    content: "";
    position: absolute;
    display: block;
    width: 470px;
    height: 470px;
    background-color: var(--trvtmplColor);
    border-radius: 235px;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}
/*MESSENGER END*/

/*REVIEWS*/
.trvtmpl-reviews__wrapper{
    display: flex;
}
.trvtmpl-reviews__wrapper h2{
    margin-top: 0;
}
.trvtmpl-reviews__left-col,
.trvtmpl-reviews__right-col{
    width: calc(50% - 15px);
}
.trvtmpl-reviews__left-col{
    margin-right: 15px;
}
.trvtmpl-reviews__right-col{
    margin-left: 15px;
}
.trvtmpl-reviews__header{
    margin-bottom: 10px;
}
.trvtmpl-reviews__avatar{
    display: inline-flex;
    border-radius: 50%;
    overflow: hidden;
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 30px;
}
.trvtmpl-reviews__desc{
    margin-bottom: 30px;
}
.trvtmpl-reviews__desc p,
.trvtmpl-reviews__desc pre{
    color: var(--trvtmplFontDarkColor);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    max-height: 220px;
    overflow: auto;
}
.trvtmpl-reviews__desc p:first-child{
    margin-top: 0;
}
.trvtmpl-reviews__name{
    color: var(--trvtmplFontDarkColor);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    margin-bottom: 3px;
}
.trvtmpl-reviews__tour{
    color: var(--trvtmplFontDarkColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.trvtmpl-reviews__items-img{
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}
.trvtmpl-reviews__items-img img{
    border-radius: 50px;
    height: 100%;
    width: 100%;
}
.trvtmpl-reviews__items-desc{
    padding-right: 120px;
}
.trvtmpl-reviews__score{
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 30px;
    border-radius: 20px;
    background-color: var(--trvtmplColor);
    min-width: 270px;
}
.trvtmpl-reviews__score svg{
    position: absolute;
    right: 24px;
    top: -32px;
}
.trvtmpl-reviews__score div:nth-of-type(1){
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}
.trvtmpl-reviews__score div:nth-of-type(1) span{
    color: #FFF;
    font-size: 59px;
    font-weight: 800;
    line-height: 54px;
}
.trvtmpl-reviews__score div:nth-of-type(2){
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.trvtmpl-reviews__items-desc .swiper-pagination{
    display: flex;
    position: relative;
    text-align: left;
    margin-top: 50px;
}
.trvtmpl-reviews__items-desc .swiper-horizontal>.swiper-pagination-bullets, .trvtmpl-reviews__items-desc .swiper-pagination-bullets.swiper-pagination-horizontal, .trvtmpl-reviews__items-desc .swiper-pagination-custom, .trvtmpl-reviews__items-desc .swiper-pagination-fraction{
    bottom: 0;
}
.trvtmpl-reviews__items-desc .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .trvtmpl-reviews__items-desc .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin-left: 0;
}
.trvtmpl-reviews__items-desc .swiper-pagination-bullet{
    position: relative;
    width: 10px;
    height: 4px;
    border-radius: 200px;
    background-color: rgba(49, 65, 82, 0.30);
    opacity: 1;
    margin: 0 14px 0 0;
    outline: none;
    overflow: hidden;
    /*transition: width 5s;*/
}
.trvtmpl-reviews__items-desc .swiper-pagination-bullet:last-child{
    margin-right: 0;
}
.trvtmpl-reviews__items-desc .swiper-pagination-bullet::before{
    content: "";
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--trvtmplColor);
    pointer-events: none;
}
.trvtmpl-reviews__items-desc .swiper-pagination-bullet-active{
    width: 28px;
}
.trvtmpl-reviews__items-desc .swiper-pagination-bullet-active::before{
    width: 100%;
    animation: reviewsBulletActive 5s;
}
@keyframes reviewsBulletActive {
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}
.trvtmpl-reviews__sm-header{
    display: none;
}
.trvtmpl-reviews__header > div:last-child{
    color: var(--trvtmplFontDarkColor);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
/*REVIEWS END*/

/*NEWS*/
.trvtmpl-news__inner-wrapper {
    overflow: hidden;
}
.trvtmpl-news h2 {
    margin-top: 0;
    margin-bottom: 50px;
    max-width: 68%;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.trvtmpl-news a{
    text-decoration: none;
    color: currentColor;
}
.trvtmpl-news__img{
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 210px;
}
.trvtmpl-news__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trvtmpl-news__img a{
    display: flex;
    width: 100%;
}
.trvtmpl-news__date{
    display: inline-flex;
    border-radius: 4px;
    background: var(--trvtmplColor);
    padding: 8px 10px;

    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 9px;
    margin-bottom: 15px;
}
.trvtmpl-news__title{
    color: var(--trvtmplFontDarkColor);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 10px;
    letter-spacing: -0.44px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.trvtmpl-news__desc{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.trvtmpl-news__desc p{
    margin: 0;
    color: var(--trvtmplFontDarkColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
}
.trvtmpl-news__more-items.more-news-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.trvtmpl-news__more-items.more-news-btn a {
    background-color: var(--trvtmplButtonsColor);
    padding: 10px 15px;
    border-radius: 40px;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.trvtmpl-news__items .swiper {
    overflow: visible;
}
.trvtmpl-news__swiper-button-prev,
.trvtmpl-news__swiper-button-next {
    position: absolute;
    top: -80px;
    width: 38px;
    height: 38px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--trvtmplButtonsColor);
    border-radius: 6px;
    border: 1px solid var(--trvtmplButtonsColor);
    outline: none;
    transform: translateY(-50%);
}
.trvtmpl-news__swiper-button-prev {
    left: unset;
    right: calc(38px + 20px);
}
.trvtmpl-news__swiper-button-prev:after,
.trvtmpl-news__swiper-button-next:after {
    font-size: 14px;
}
/*NEWS END*/

/*MORE NEWS PAGE*/
.trvtmpl-news-page__items {
    font-family: inherit;
    display: grid;
    grid-template-columns: repeat(4, minmax(20%, 1fr));
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.trvtmpl-news-page__items .trvtmpl-news__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    grid-column: unset;
    grid-row: unset;
}
.trvtmpl-news-page__items .trvtmpl-news__item a {
    text-decoration: none;
    padding: 10px;
    background-color: var(--trvtmplFourthColor);
    border-radius: 20px;
}
.trvtmpl-news-page__items  .trvtmpl-news__img {
    border-radius: 15px;
    height: 175px;
}
.trvtmpl-news-page .trvtmpl-news-page__items  .trvtmpl-news__img {
    display: flex;
    background-color: var(--trvtmplColor);
    background-image: url(../img/svg/messenger-bg.svg);
    background-size: cover;
}
a .trvtmpl-news__img > img[src="/"] {
    display: none;
}
.trvtmpl-news-page .trvtmpl-news-page__items  .trvtmpl-news__title {
    box-sizing: border-box;
    width: 100%;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    padding-left: 6px;
    min-height: 50px;
}
.trvtmpl-news-page__pagination ul {
    margin-top: 50px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.trvtmpl-news-page__pagination li {
    margin: 0 10px;
    border-radius: 40px;
    background-color: var(--trvtmplBlockColor);
}
li.trvtmpl-news-page__pagination-item--active {
    background-color: var(--trvtmplButtonsColor);
}
.trvtmpl-news-page__pagination a { 
    display: flex;
    min-width: 30px;
    min-height: 30px;
    padding: 7px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--trvtmplButtonsTextColor);
}
/*MORE NEWS PAGE END*/

/*CONTACTS*/
.trvtmpl-contacts h2{
    margin-top: 0;
    margin-bottom: 0;
}
.trvtmpl-contacts__header{
    margin-bottom: 120px;
    max-width: 58%;
}
.trvtmpl-contacts__map{
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transform: translateX(-80px);
    width: 100%;
}
canvas, #map .ymaps-2-1-79-ground-pane{
    filter: grayscale(1);
    -ms-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
}
.trvtmpl-contacts__map img,
.trvtmpl-contacts__map iframe,
.trvtmpl-contacts__map #map{
    -webkit-mask-image: radial-gradient(rgba(0, 0, 0, 1) 50%, transparent 70%);
    mask-image: radial-gradient(rgba(0, 0, 0, 1) 50%, transparent 70%);
}
.trvtmpl-contacts__body{
    display: flex;
    align-items: center;
}
.trvtmpl-contacts__col-info{
    min-width: 36%;
    width: 36%;
}
.trvtmpl-contacts__info-row{
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: calc(60px + 16px);
    min-height: 60px;
    padding-right: 55px;
    margin-bottom: 20px;
}
.trvtmpl-contacts__info-row:last-child{
    margin-bottom: 0;
}
.trvtmpl-contacts__info-row svg{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60px;
    height: auto;
}
.trvtmpl-contacts__info-row a,
.trvtmpl-contacts__info-row span,
.trvtmpl-contacts__info-row span p,
.trvtmpl-contacts__info-row p{
    color: var(--trvtmplFontDarkColor);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.36px;
    margin-top: 0;
    margin-bottom: 3px;
    text-decoration: none;
}
.trvtmpl-contacts__info-row lite{
    color: rgba(49, 65, 82, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.32px;
}
.trvtmpl-contacts__info{
    margin-bottom: 60px;
}
.trvtmpl-contacts__socials{
    display: flex;
    flex-wrap: wrap;
    margin-top: -15px;
    margin-left: -30px;
}
.trvtmpl-contacts__socials > *:not(a){
    display: flex;
    flex-wrap: wrap;
}
.trvtmpl-contacts__socials a{
    text-decoration: none;
    color: var(--trvtmplFontDarkColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.32px;
    opacity: .6;
    display: flex;
    align-items: center;
    margin-top: 15px;
    margin-left: 30px;
}
.trvtmpl-contacts__socials a:hover{
    opacity: 1;
}
.trvtmpl-contacts__socials a::before{
    content: "";
    display: inline-block;
    max-width: 23px;
    width: 23px;
    max-height: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 10px;
}
.trvtmpl-contacts__socials a.trvtmpl-soc-vk::before{
    background-image: url("/templates/easytravel/img/svg/vk-icon-stroke.svg");
}
.trvtmpl-contacts__socials a.trvtmpl-soc-tg::before{
    max-width: 20px;
    background-image: url("/templates/easytravel/img/svg/tg-icon-stroke.svg");
}
.trvtmpl-contacts__socials a svg{
    display: none;
}
/*CONTACTS END*/

/*MATCH TOUR*/
.trvtmpl-match-tour{
    overflow: hidden;
    margin-bottom: 150px;
}
.trvtmpl-match-tour__header-sm{
    display: none;
}
.trvtmpl-match-tour h2{
    margin-top: 0;
    margin-bottom: 45px;
}
.trvtmpl-match-tour__wrapper{
    display: flex;
    padding-bottom: 14px;
}
.trvtmpl-match-tour__desc{
    width: 100%;
    color: var(--trvtmplFontDarkColor);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}
.trvtmpl-match-tour__gallery{
    min-width: 54%;
    width: 54%;
    margin-left: 60px;
    max-height: 400px;
}
.trvtmpl-match-tour__gallery .swiper{
    height: 100%;
}
.trvtmpl-match-tour__desc ul{
    list-style: none;
    padding: 0;
}
.trvtmpl-match-tour__desc ul li{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 25px;
}
.trvtmpl-match-tour__desc ul li:last-child{
    margin-bottom: 0;
}
.trvtmpl-match-tour__desc ul li svg{
    margin-right: 15px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    border-radius: 32px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.04);
}
/*.trvtmpl-match-tour__desc ul li::before{*/
/*    content: "";*/
/*    display: block;*/

/*    background-image: url("/templates/easytravel/img/svg/ul-icon.svg");*/
/*    background-repeat: no-repeat;*/
/*}*/
.trvtmpl-match-tour__gallery {
    position: relative;
}
.trvtmpl-match-tour__gallery-slides{
    border-radius: 50px;
    overflow: hidden;
    max-height: 100%;
    height: 100%;
}
.trvtmpl-match-tour__gallery .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}
.trvtmpl-match-tour__gallery .swiper-slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trvtmpl-match-tour__gallery .trvtmpl-swiper-btn svg{
    box-shadow: 0px 6px 10px 0px rgba(33, 29, 27, 0.07);
    border-radius: 32px;
}
.trvtmpl-match-tour__gallery .swiper-button-prev{
    left: 0;
    transform: translateY(-50%) rotateZ(180deg) translateX(50%);
}
.trvtmpl-match-tour__gallery .swiper-button-next{
    right: 0;
    transform: translateY(-50%) translateX(50%);
}
.trvtmpl-match-tour__gallery .trvtmpl-swiper-btn.swiper-button-disabled{
    display: none;
}
.trvtmpl-match-tour__gallery .swiper-pagination{
    display: flex;
    width: auto;
    bottom: 0;
    left: 50%;
    transform: translateY(50%) translateX(-50%);
    border-radius: 6px;
    background-color: #FFF;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.04);
    padding: 6px;
}
.trvtmpl-match-tour__gallery .swiper-pagination-bullet{
    position: relative;
    width: 24px;
    min-width: 24px;
    height: 16px;
    min-height: 16px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #EAECEE;
    opacity: 1;
}
.trvtmpl-match-tour__gallery .swiper-pagination-bullet::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 0;
    height: 100%;
    background-color: #314152;
}
.trvtmpl-match-tour__gallery .swiper-pagination-bullet-active{
}
.trvtmpl-match-tour__gallery:not(.trvtmpl-match-tour__gallery--swiped) .swiper-pagination-bullet-active::before{
    animation: trvtmplMatchTourBulletActive 5s;
}
.trvtmpl-match-tour__gallery.trvtmpl-match-tour__gallery--swiped .swiper-pagination-bullet-active::before{
    width: 100%;
}
@keyframes trvtmplMatchTourBulletActive {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.trvtmpl-match-tour__gallery .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.trvtmpl-match-tour__gallery .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 16px 0 0;
}
.trvtmpl-match-tour__gallery .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet:last-child,
.trvtmpl-match-tour__gallery .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:last-child{
    margin-right: 0;
}
.trvtmpl-match-tour__gallery .swiper-pagination-lock{
    display: none;
}
/*MATCH TOUR END*/

/*SUBSCRIBE*/
.trvtmpl-subscribe__outer-wrapper{
    overflow-x: clip;
    margin-bottom: 160px;
}
.trvtmpl-subscribe{
    position: relative;
    margin-top: 50px;
}
.trvtmpl-subscribe img{
    position: absolute;
    top: 0;
    left: -136px;
    transform: translateY(-30%);
    max-width: unset;
    pointer-events: none;
    z-index: -1;
}
.trvtmpl-subscribe__bg--sm{
    display: none;
}
.trvtmpl-subscribe__wrapper{
    padding-left: 45%;
}
.trvtmpl-subscribe h2{
    margin-top: 0;
    margin-bottom: 35px;
}
.trvtmpl-subscribe form{
    position: relative;
    width: 100%;
    max-width: 588px;
}
.trvtmpl-subscribe input:not([type=submit]){
    border-radius: 200px;
    border: 1px solid rgba(49, 65, 82, 0.20);
    background: #FFF;
    padding: 19px calc(165px + 15px) 19px 22px;
    width: 100%;
    height: 58px;

    color: var(--trvtmplFontDarkColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
}
.trvtmpl-subscribe input[type=submit]{
    border-radius: 200px;
    background: var(--trvtmplButtonsColor);
    padding: 20px 28px;
    border: none;

    color: var(--trvtmplFontDarkColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: opacity .3s;
    position: absolute;
    top: 1px;
    right: 0;
}
.trvtmpl-subscribe input[type=submit]:hover{
    opacity: .8;
}
/*SUBSCRIBE END*/

/*FOOTER*/
.trvtmpl-footer__wrapper{
    display: flex;
    flex-wrap: wrap;
    border-radius: 30px 30px 0px 0px;
    border: 1px solid rgba(43, 43, 43, 0.13);
    background: #F3F3F3;
    padding: 40px 0 0;
    --sidePadding: 35px;
}
.trvtmpl-footer__logo {
    /*margin-right: 100px;*/
    max-width: 18%;
    width: 18%;
    min-width: 18%;
    padding-left: var(--sidePadding);
}
.trvtmpl-footer__logo .trvtmpl-header__logo {
    margin-bottom: 15px;
}
.trvtmpl-footer__menu{
    /*margin-right: 110px;*/
    max-width: 74%;
    width: 74%;
    padding-left: 110px;
    padding-right: 90px;
}
.trvtmpl-footer__menu nav{
    display: flex;
}
.trvtmpl-footer__menu ul{
    list-style: none;
    padding: 0;
    /*display: flex;*/
}
.trvtmpl-footer__menu ul:last-child{
    margin-right: 0;
}
.trvtmpl-footer__menu li{
    margin-bottom: 15px;
}
.trvtmpl-footer__menu li:last-child{
    margin-bottom: 0;
}
.trvtmpl-footer__menu a,
.trvtmpl-footer__menu span{
    text-decoration: none;
    color: var(--trvtmplFontDarkColor);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.28px;
}
.trvtmpl-footer__menu nav > ul{
    margin: 0 50px 0 0;
}
.trvtmpl-footer__menu nav > ul > li{
    margin-bottom: 25px;
}
.trvtmpl-footer__menu nav > ul > li > a,
.trvtmpl-footer__menu nav > ul > li > a > span,
.trvtmpl-footer__menu nav > ul > li > span{
    font-weight: 600;
}
.trvtmpl-footer__socials{
    max-width: 8%;
    width: 8%;
    padding-right: var(--sidePadding);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* max-height: 100%; */
    align-content: flex-start;
}
.trvtmpl-footer__socials a{
    display: flex;
    text-decoration: none;
    margin-bottom: 10px;
    width: 50%;
    max-height: 25px;
}
.trvtmpl-footer__socials a:last-child{
    margin-bottom: 0;
}
.trvtmpl-footer__socials a svg{
    width: 24px;
    height: 24px;
}
.trvtmpl-footer__additional{
    position: relative;
    width: 100%;
    padding: 20px var(--sidePadding);
    margin-top: 45px;
    display: flex;
    align-items: center;

    color: rgba(49, 65, 82, 0.40);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.26px;
}
.trvtmpl-footer__additional::before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/templates/easytravel/img/svg/footer-border.svg");
}
.trvtmpl-footer__additional p{
    color: rgba(49, 65, 82, 0.40);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.26px;
    display: inline-block;
    margin: 0;
}
.trvtmpl-footer__additional a{
    text-decoration: none;
    color: currentColor;
}
.trvtmpl-footer__additional > div,
.trvtmpl-footer__additional > a,
.trvtmpl-footer__additional > p,
.trvtmpl-footer__additional > p a{
    margin-right: 45px;
}
.trvtmpl-footer__additional > div:last-child,
.trvtmpl-footer__additional > a:last-child,
.trvtmpl-footer__additional > p:last-child,
.trvtmpl-footer__additional > p a:last-child{
    margin-right: 0;
}
.trvtmpl-footer .trvtmpl-header__menu-mobile-main-link{
    display: none;
}
.trvtmpl-footer .trvtmpl-menu-item-arrow{
    display: none;
}
.trvtmpl-footer .organization-details p {
    margin-top: 8px;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 120%;
}
/*FOOTER END*/

/*PAGE ABOUT*/
.trvtmpl-about-p--body .trvtmpl-about .trvtmpl-subtitle{
    display: none;
}
.trvtmpl-about-p--body .trvtmpl-header{
    margin-bottom: 75px;
}
.trvtmpl-about-p--body .trvtmpl-company-digits{
    margin-top: calc(-1 * var(--trvtmplBlockBMargin));
}
/*PAGE ABOUT END*/

/*COMPANY DIGITS*/
.trvtmpl-company-digits .swiper{
    /*flex-wrap: wrap;*/
    padding-bottom: 30px;
    margin-bottom: -30px;
}
.trvtmpl-company-digits__wrapper{

}
.trvtmpl-company-digits__item{
    position: relative;
    width: 252px;
    min-width: 252px;
    height: max-content;
    min-height: 252px;
    padding: 44px;
    border-radius: 40px;
    background: var(--trvtmplFourthColor);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--trvtmplFontDarkColor);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.36px;
}
.trvtmpl-company-digits__item > p{
    margin: 0;
}
.trvtmpl-company-digits__item > p:first-of-type{
    font-size: 44px;
    font-weight: 600;
    line-height: 61px;
    letter-spacing: -0.88px;
    margin-bottom: 10px;
}
.trvtmpl-company-digits__item:nth-child(2n){
    margin-top: 70px;
}
.trvtmpl-company-digits__item:nth-child(3n){
    margin-top: 140px;
}
.trvtmpl-company-digits__item:nth-child(4n){
    margin-top: 210px;
}
.trvtmpl-company-digits__item svg{
    position: absolute;
    top: 15px;
    right: 15px;
}
/*COMPANY DIGITS END*/

/*ACHIEVEMENTS*/
.trvtmpl-achievements__outer-wrapper{
    overflow-x: clip;
    margin-bottom: 210px;
    position: relative;
}
.trvtmpl-achievements__wrapper{
    --sidePadding: 80px;
    /*position: relative;*/
    border-radius: 90px;
    background: #EBF3F1;
    padding: 70px var(--sidePadding) 170px var(--sidePadding);
    width: calc(var(--trvtmplContainerMaxWidth) + (2 * var(--trvtmplContainerPadding)) + (2 * var(--sidePadding)));
    margin-left: calc(-1 * var(--sidePadding));
    padding-right: calc(100% - (320px - 160px));
}
.trvtmpl-achievements__items{
    position: absolute;
    top: 70px;
    right: 0;
    width: calc(100vw - ((100vw - (var(--trvtmplContainerMaxWidth) - (var(--trvtmplContainerPadding) * 2))) / 2) - 320px - 120px);
    z-index: 4;
}
.trvtmpl-achievements__items .swiper{
    overflow: hidden;
}
.trvtmpl-achievements__item{
    border-radius: 20px;
    background: var(--trvtmplFourthColor);
    box-shadow: 0 23px 46px 0 rgba(0, 0, 0, 0.03);
    width: auto;
    height: 500px;
    overflow: hidden;
}
.trvtmpl-achievements__item--empty{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 350px;
}
.trvtmpl-achievements__item--empty::before{
    content: "";
    display: block;
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    background-image: url("../img/svg/achievement-empty-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}
.trvtmpl-achievements__item--empty::after{
    content: "Ваш диплом";
    color: var(--trvtmplFontDarkColor);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.7;
}
.trvtmpl-achievements__item img{
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}
.trvtmpl-achievements .swiper-button-next,
.trvtmpl-achievements .swiper-button-prev{
    padding: 0;
    margin: 0;
    width: 42px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: unset;
    right: unset;
    left: calc((100vw - (var(--trvtmplContainerMaxWidth) - (var(--trvtmplContainerPadding) * 2))) / 2);
    bottom: 70px;
    transform: translateY(100%);
    z-index: 3;
}
.trvtmpl-achievements .swiper-button-next{
    transform: translateY(100%) translateX(calc(100% + 20px));
}
.trvtmpl-achievements .swiper-button-next::after,
.trvtmpl-achievements .swiper-button-prev::after{
    font-size: 0;
    content: "";
    display: block;
    width: 42px;
    height: 12px;
    background-image: url("../img/svg/achievements-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.trvtmpl-achievements .swiper-button-prev::after{
    transform: rotateZ(180deg);
}
.trvtmpl-achievements .trvtmpl-subtitle{
    margin-bottom: 70px;
}
/*ACHIEVEMENTS END*/

/*TEAM*/
.trvtmpl-team__wrapper{
    border-radius: 50px;
    overflow: hidden;
}
.trvtmpl-team__items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #F9FFFD;
    /*grid-auto-rows: 291px;*/
}
.trvtmpl-team__cell:not(.trvtmpl-team__item){
    padding: 30px;
    background-color: #F9FFFD;
}
.trvtmpl-team__item{
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    background-color: #F9FFFD;
}
.trvtmpl-team__item img{
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}
.trvtmpl-team__item > *{
    position: relative;
    z-index: 2;
}
.trvtmpl-team__item span{
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    letter-spacing: -0.36px;
    margin-bottom: 12px;
    display: inline-block;
}
.trvtmpl-team__item-avatar + .trvtmpl-team__item-desc span {
    color: #FFF;
}
.trvtmpl-team__item p{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: -0.28px;
    margin-top: 0;
}
.trvtmpl-team__item p:last-child{
    margin-bottom: 0;
}
.trvtmpl-team__cell.trvtmpl-team__header{
    position: relative;
    grid-column: span 2;
    padding: 49px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}
.trvtmpl-team__cell.trvtmpl-team__header::after{
    content: "";
    display: block;
    width: 100%;
    height: 49px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #F9FFFD;
}
.trvtmpl-team__header h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -0.84px;
    margin: 0 0 20px 0;
}
.trvtmpl-team__header p{
    margin-bottom: 0;
}
.trvtmpl-team__subtitle{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 50px 40px;
    grid-row: 2/3;
    grid-column: 1/2;
}
.trvtmpl-team__subtitle .trvtmpl-subtitle{
    margin-bottom: 0;
}
.trvtmpl-team__item-avatar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.trvtmpl-team__item-desc{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
/*TEAM END*/

/* TEAM PAGE ITEM */
.trvtmpl-team-page__item {
    display: flex;
}
.trvtmpl-team-page__item .trvtmpl-team__item {
    margin-right: 5%;
    max-width: 35%;
    min-width: 35%;
    padding: 0;
    border-radius: 20px;
}
.trvtmpl-team-page__item-right-col {
    padding-top: 40px;
}
.trvtmpl-team-page__item .trvtmpl-team__item-avatar {
    max-height: unset;
    min-height: unset;
    position: unset;
}
.trvtmpl-team-page__btn-request-phone {
    margin-top: 40px;
    display: flex;
    align-items: center;
}
.trvtmpl-team-page__btn-request .TVBButtonCaption {
    display: flex;
    align-items: center;
}
.trvtmpl-team-page__btn-request .TVBButtonCaption:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/svg/help-icon.svg);
    background-size: cover;
    margin-right: 9px;
}
.trvtmpl-team-page__phone > a {
    border-radius: 5px;
    background-color: var(--trvtmplButtonsColor);
    padding: 12px 20px;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    max-height: 46px;
    margin-left: 20px;
}
.trvtmpl-team-page__phone a svg {
    margin-right: 1px;
}
.trvtmpl-team-page__phone > a svg path {
    fill: #fff;
}
/* TEAM PAGE ITEM END*/

/*CONTACTS PAGE*/
.trvtmpl-contacts-page a{
    /*text-decoration: none;*/
    color: currentColor;
    transition: var(--tgoLinksTransition);
}
/*CONTACTS PAGE END*/

@media screen and (max-width: 1199px){
    /*HEADER*/
    .trvtmpl-header__middle-side{
        margin-left: 20px;
        margin-right: 20px;
    }
    .trvtmpl-header__phone-address{
        margin-right: 20px;
    }
    /*HEADER END*/

    /*MESSENGER*/
    .trvtmpl-messenger__wrapper{
        padding: 70px 65px 60px;
    }
    /*MESSENGER END*/

    /*CONTACTS*/
    .trvtmpl-contacts__map{
        transform: translateX(0);
    }
    /*CONTACTS END*/

    /*SUBSCRIBE*/
    .trvtmpl-subscribe__wrapper{
        padding-left: 30%;
    }
    .trvtmpl-subscribe img{
        left: -330px;
        transform: translateY(-30%);
    }
    /*SUBSCRIBE END*/

    /*FOOTER*/
    .trvtmpl-footer__logo{
        max-width: 20%;
        width: 20%;
        min-width: 20%;
    }
    .trvtmpl-footer__menu {
        max-width: 72%;
        width: 72%;
    }
    .trvtmpl-footer__socials{
        /*max-width: 6%;*/
        /*width: 6%;*/
    }
    /*FOOTER END*/

    /*ABOUT*/
    .trvtmpl-about h2{
        max-width: 100%;
    }
    /*ABOUT END*/

    /*COMPANY DIGITS*/
    .trvtmpl-company-digits{
        overflow: hidden;
    }
    .trvtmpl-company-digits__items{
        padding-bottom: 30px;
        /*margin-bottom: -30px;*/
    }
    .trvtmpl-company-digits .swiper{
        overflow: visible;
    }
    .trvtmpl-company-digits .swiper-wrapper{
        flex-wrap: nowrap;
    }
    .trvtmpl-company-digits__item:nth-child(2n){
        margin-top: 0;
    }
    .trvtmpl-company-digits__item:nth-child(3n){
        margin-top: 0;
    }
    .trvtmpl-company-digits__item:nth-child(4n){
        margin-top: 0;
        margin-right: 35px;
    }
    /*COMPANY DIGITS END*/

    /*ACHIEVEMENTS*/
    .trvtmpl-achievements__outer-wrapper{
        overflow-x: unset;
        border-radius: 30px;
        background: #EBF3F1;
    }
    .trvtmpl-achievements{
        overflow-x: clip;
        position: relative;
    }
    .trvtmpl-achievements__wrapper{
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: calc(100% - 320px);
        border-radius: 0;
        background: transparent;
    }
    .trvtmpl-achievements .swiper-button-next, .trvtmpl-achievements .swiper-button-prev{
        left: var(--trvtmplContainerPadding);
    }
    /*ACHIEVEMENTS END*/

    /*TEAM*/
    .trvtmpl-team__items{
        grid-template-columns: repeat(3, 1fr);
    }
    .trvtmpl-team__subtitle{
        display: none;
    }
    /*TEAM END*/

    /*PAGE ABOUT*/
    .trvtmpl-about-p--body .trvtmpl-company-digits{
        margin-bottom: 20px;
    }
    /*PAGE ABOUT END*/
}

@media screen and (max-width: 1000px){

    :root{
        --trvtmplBlockBMargin: 50px;
    }

    h2{
        font-size: 24px;
        line-height: 28px;
    }

    p{
        font-size: 14px;
        line-height: 19px;
    }

    /*COMMON*/
    .trvtmpl-upper-bg img{
        min-height: 560px;
        width: 150%;
        min-width: 150%;
    }
    .trvtmpl-subtitle,
    .trvtmpl-subtitle p{
        font-size: 11px;
        line-height: 15px;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }
    .trvtmpl-modules-block-header{
        margin-bottom: 15px;
    }
    .trvtmpl-modules-block-header a{
        display: none;
    }
    .trvtmpl-modules-block-footer a{
        font-size: 14px;
    }
    .trvtmpl-modules-block-footer{
        display: block;
        margin-top: 30px;
        text-align: center;
    }
    .trvtmpl-b--colored{
        padding: 40px 0;
        border-radius: 30px;
    }
    .trvtmpl-page-content--fill{
        margin-bottom: var(--trvtmplBlockBMargin);
        padding-top: 30px;
    }
    /*COMMON END*/

    /*HEADER*/
    .trvtmpl-header{
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .trvtmpl-header__burger,
    .trvtmpl-header__address,
    .trvtmpl-header__btn-request{
        display: none;
    }
    .trvtmpl-header__phone{
        margin-bottom: 0;
        display: flex;
    }
    .trvtmpl-header__phone a{
        font-size: 0;
        max-width: 24px;
        min-width: 24px;
        max-height: 24px;
        min-height: 24px;
        display: flex;
    }
    .trvtmpl-header__phone a svg{
        display: initial;
        width: 100%;
        height: auto;
    }
    .trvtmpl-header__mobile-burger{
        display: flex;
    }
    .trvtmpl-header__mobile-burger svg{
        transform: rotateY(180deg);
    }
    .trvtmpl-header__phone-address{
        margin-right: 20px;
    }
    .trvtmpl-header__middle-side{
        margin-left: auto;
        margin-right: 10px;
    }
    .trvtmpl-header__socials a:not(:last-child){
        margin-right: 10px;
    }
    .trvtmpl-header__socials a svg{
        width: 24px;
    }
    /*MENU*/
    .trvtmpl-header__menu-label{
        display: none;
    }
    .trvtmpl-header__menu ul{
        margin-right: 30px;
    }
    /*MENU END*/
    /*HEADER END*/

    /*SLIDER SEARCH*/
    .trvtmpl-slider-search{
        min-height: unset;
    }
    .trvtmpl-slider-search__wrapper{
        position: relative;
    }
    .trvtmpl-search{
        display: flex;
        position: unset;
        top: 60px;
        right: 67px;
        z-index: 3;
        margin-bottom: 50px;
    }
    .tv-search-form .TVFormBody{
        border-radius: 20px;
        padding: 10px;
    }
    .trvtmpl-slider{
        margin-left: calc(-1 * var(--trvtmplContainerPadding));
        width: calc(100% + (var(--trvtmplContainerPadding) * 2));
    }
    /*SLIDER SEARCH END*/

    /*BOOKING*/
    .trvtmpl-booking__wrapper h2{
        max-width: 100%;
        margin-bottom: 20px;
    }
    .trvtmpl-booking{
        overflow: hidden;
    }
    .trvtmpl-booking.trvtmpl-b-margin{
        margin-bottom: 0;
        padding-bottom: var(--trvtmplBlockBMargin);
    }
    .trvtmpl-booking__items{
        /*overflow: hidden;*/
        margin-left: calc(-1 * var(--trvtmplContainerPadding));
        width: calc(100% + (var(--trvtmplContainerPadding) * 2));
        padding-left: var(--trvtmplContainerPadding);
        padding-right: var(--trvtmplContainerPadding);
    }
    .trvtmpl-booking__items .swiper{
        overflow: visible;
    }
    .trvtmpl-booking__items .swiper-wrapper{
        flex-wrap: nowrap;
        margin-left: 0;
        margin-top: 0;
    }
    .trvtmpl-booking__item{
        width: 290px;
        margin-top: 0;
        margin-left: 0;
        height: auto;
    }
    .trvtmpl-booking__item:nth-child(1),
    .trvtmpl-booking__item:nth-child(2){
        width: 290px;
        margin-bottom: 0;
    }
    .trvtmpl-booking__img{
        max-width: 46px;
        margin-bottom: 38px;
    }
    .trvtmpl-booking__title{
        font-size: 15px;
        line-height: 19px;
    }
    .trvtmpl-booking__number{
        display: none;
    }
    /*BOOKING END*/

    /*HOT TOURS*/
    .trvtmpl-hot-tours__header{
        margin-bottom: 15px;
    }
    .trvtmpl-hot-tours__header a{
        display: none;
    }
    .trvtmpl-hot-tours__footer a{
        font-size: 14px;
    }
    .trvtmpl-hot-tours__footer{
        display: block;
        margin-top: 30px;
        text-align: center;
    }
    /*HOT TOURS END*/

    /*MIN PRICES*/
    .trvtmpl-min-prices__lg{
        display: none;
    }
    .trvtmpl-min-prices__sm{
        display: block;
    }
    .trvtmpl-min-prices__sm .TVSliderView{
        margin-left: calc(-1 * var(--trvtmplContainerPadding));
        width: calc(100% + var(--trvtmplContainerPadding)) !important;
        padding-left: var(--trvtmplContainerPadding);
    }
    /*MIN PRICES END*/

    /*ABOUT*/
    .trvtmpl-about.trvtmpl-b-margin{
        margin-bottom: var(--trvtmplBlockBMargin);
    }
    .trvtmpl-about__desc{
        flex-direction: column;
    }
    .trvtmpl-about__desc > div:nth-of-type(1){
        width: 100%;
        min-width: unset;
        margin-right: 0;
    }
    .trvtmpl-about h2{
        margin-bottom: 25px;
        max-width: 80%;
    }
    .trvtmpl-about__img{
        margin-bottom: 10px;
        height: 200px;
        width: max-content;
        margin: auto;
        max-width: 100%;
        border-radius: 30px;
    }
    .trvtmpl-about__desc > div:nth-of-type(1) p{
        font-size: 18px;
        line-height: 25px;
    }
    /*ABOUT END*/

    /*MESSENGER*/
    .trvtmpl-messenger{
        margin-bottom: 50px;
    }
    .trvtmpl-messenger__wrapper{
        padding: 50px 45px 40px;
    }
    .trvtmpl-messenger h3{
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .trvtmpl-messenger p{
        font-size: 18px;
        line-height: 16px;
    }
    .trvtmpl-messenger__wrapper > div:nth-child(2) img:nth-child(1){
        clip-path: unset;
        transform: translateY(0) translateX(-50%);
        max-width: 80%;
        max-height: 310px;
        left: 50%;
    }
    .trvtmpl-messenger__wrapper > div:nth-child(2) img:nth-child(2){
        display: none;
    }
    .trvtmpl-messenger__bg::before{
        width: 360px;
        height: 360px;
    }
    .trvtmpl-messenger p:last-of-type{
        /*margin-bottom: 30px;*/
        margin-bottom: -2px;
    }
    /*MESSENGER END*/

    /*REVIEWS*/
    .trvtmpl-reviews__header{
        margin-bottom: 30px;
    }
    .trvtmpl-reviews__avatar{
        margin-bottom: 20px;
    }
    .trvtmpl-reviews__items-desc{
        padding-right: 50px;
    }
    .trvtmpl-reviews__desc{
        margin-bottom: 20px;
    }
    .trvtmpl-reviews__desc p,
    .trvtmpl-reviews__desc pre{
        font-size: 14px;
        line-height: 19px;
    }
    .trvtmpl-reviews__name{
        font-size: 14px;
        line-height: 21px;
    }
    .trvtmpl-reviews__tour{
        font-size: 12px;
        line-height: 17px;
    }
    .trvtmpl-reviews__items-desc .swiper-pagination{
        margin-top: 25px;
    }
    .trvtmpl-reviews__score{
        padding: 15px;
        min-width: 153px;
        left: 20px;
        bottom: 20px;
        border-radius: 15px;
    }
    .trvtmpl-reviews__score div:nth-of-type(1){
        font-size: 14px;
        line-height: 32px;
    }
    .trvtmpl-reviews__score div:nth-of-type(1) span{
        font-size: 31px;
        line-height: 25px;
    }
    .trvtmpl-reviews__score div:nth-of-type(2){
        font-size: 12px;
        line-height: 18px;
    }
    .trvtmpl-reviews__score svg{
        width: 30px;
        height: auto;
        right: 14px;
        top: -15px;
    }
    /*REVIEWS END*/

    /*NEWS*/
    .trvtmpl-news{
        overflow: hidden;
    }
    .trvtmpl-news .swiper{
        overflow: visible;
    }
    .trvtmpl-news h2{
        margin-bottom: 25px;
        max-width: 100%;
    }
    .trvtmpl-news__item{
        max-width: 290px;
        width: 290px;
    }
    .trvtmpl-news__img{
        height: 174px;
    }
    .trvtmpl-news__date{
        font-size: 12px;
        margin-bottom: 10px;
    }
    .trvtmpl-news__title{
        font-size: 16px;
        line-height: 22px;
    }
    .trvtmpl-news__desc p{
        font-size: 14px;
        line-height: 19px;
    }
    .trvtmpl-news__more-items.more-news-btn {
        margin-top: 30px;
    }
    /*NEWS END*/

    /*MORE NEWS PAGE*/
    .trvtmpl-news-page__items {
        grid-template-columns: repeat(2, minmax(20%, 1fr));
    }
    .trvtmpl-news-page__items .trvtmpl-news__item {
        max-width: 100%;
        width: 100%;
    }
    /*MORE NEWS PAGE END*/

    /*CONTACTS*/
    .trvtmpl-contacts__header{
        margin-bottom: 30px;
        max-width: 100%;
    }
    .trvtmpl-contacts__body{
        flex-direction: column-reverse;
    }
    .trvtmpl-contacts__map{
        transform: translateX(0);
        margin-right: 0;
        width: calc(100% + 2 * var(--trvtmplContainerPadding));
        margin-top: 60px;
    }
    .trvtmpl-contacts__map img,
    .trvtmpl-contacts__map iframe,
    .trvtmpl-contacts__map #map{
        max-height: 500px;
    }
    .trvtmpl-contacts__info{
        margin-bottom: 30px;
    }
    .trvtmpl-contacts__info-row a,
    .trvtmpl-contacts__info-row span,
    .trvtmpl-contacts__info-row span p,
    .trvtmpl-contacts__info-row p{
        font-size: 15px;
        line-height: 21px;
    }
    .trvtmpl-contacts__info-row lite{
        font-size: 14px;
        line-height: 18px;
    }
    .trvtmpl-contacts__info-row svg{
        max-width: 50px;
    }
    .trvtmpl-contacts__col-info{
        min-width: 100%;
        width: 100%;
    }
    .trvtmpl-contacts__info-row{
        padding-left: calc(50px + 15px);
        padding-right: 0;
        margin-bottom: 10px;
    }
    .trvtmpl-contacts__socials a{
        font-size: 12px;
        line-height: 16px;
    }
    .trvtmpl-contacts__socials a::before{
        max-width: 17px;
        max-height: 14px;
    }
    .trvtmpl-contacts__socials a.trvtmpl-soc-tg::before{
        max-width: 15px;
    }
    /*CONTACTS END*/

    /*MATCH TOUR*/
    .trvtmpl-match-tour{
        margin-bottom: var(--trvtmplBlockBMargin);
    }
    .trvtmpl-match-tour h2{
        display: none;
    }
    .trvtmpl-match-tour__header-sm{
        display: block;
        color: var(--trvtmplFontDarkColor);
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
        margin-bottom: 25px;
        order: 1;
    }
    .trvtmpl-match-tour__wrapper{
        flex-direction: column;
    }
    .trvtmpl-match-tour__gallery{
        min-width: unset;
        width: 100%;
        max-width: 600px;
        order: 2;
        margin: 0 0 25px;
    }
    .trvtmpl-match-tour__desc{
        font-size: 15px;
        line-height: 19px;
        order: 3;
    }
    .trvtmpl-match-tour__desc ul li{
        margin-bottom: 20px;
        align-items: flex-start;
    }
    .trvtmpl-match-tour__desc ul li svg{
        width: 28px;
        min-width: 28px;
        height: 28px;
        min-height: 28px;
        margin-right: 12px;
    }
    .trvtmpl-match-tour__desc .tv-free-button{
        margin-top: 0;
    }
    .trvtmpl-match-tour__gallery .trvtmpl-swiper-btn{
        display: none;
    }
    .trvtmpl-match-tour__gallery .swiper-pagination{
        display: none;
    }
    .trvtmpl-match-tour__gallery .swiper-slide{
        max-height: 250px;
        min-height: 250px;
    }
    .trvtmpl-match-tour__gallery-slides{
        border-radius: 30px;
    }
    /*MATCH TOUR END*/

    /*SUBSCRIBE*/
    .trvtmpl-subscribe__wrapper{
        padding-left: 30%;
    }
    .trvtmpl-subscribe img{
        left: -330px;
        transform: translateY(-30%);
    }
    .trvtmpl-subscribe form{
        max-width: 75%;
    }
    .trvtmpl-subscribe input:not([type=submit]){
        padding: 14px calc(48px + 10px ) 14px 16px;
        font-size: 14px;
        line-height: normal;
        height: 48px;
    }
    .trvtmpl-subscribe input[type=submit]{
        width: 48px;
        padding: 0;
        height: 48px;
        border-radius: 48px;
        position: absolute;
        font-size: 0;
        top: 0;
        right: 1px;
        background-image: url("/templates/easytravel/img/svg/tg-icon-stroke.svg");
        background-size: 16px 15px;
        background-repeat: no-repeat;
        background-position: center;
    }
    /*SUBSCRIBE END*/

    /*FOOTER*/
    .trvtmpl-footer__wrapper{
        --sidePadding: 15px;
    }
    .trvtmpl-footer__logo{
        max-width: 23%;
        width: 23%;
    }
    .trvtmpl-footer__menu{
        max-width: 69%;
        width: 69%;
        padding-left: 40px;
        padding-right: 30px;
    }
    .trvtmpl-footer__socials{
        /*max-width: 5%;*/
        /*width: 5%;*/
    }
    .trvtmpl-footer__menu > ul{
        margin: 0 25px 0 0;
    }
    /*FOOTER END*/

    /*COMPANY DIGITS*/
    .trvtmpl-company-digits__item{
        width: 192px;
        min-width: 192px;
        min-height: 192px;
        padding: 30px;
    }
    .trvtmpl-company-digits__item > p:first-of-type{
        font-size: 32px;
        line-height: 38px;
    }
    .trvtmpl-company-digits__item svg{
        width: 38px;
        height: auto;
    }
    /*COMPANY DIGITS END*/

    /*ACHIEVEMENTS*/
    .trvtmpl-achievements__outer-wrapper{
        margin-bottom: var(--trvtmplBlockBMargin);
    }
    .trvtmpl-achievements__wrapper{
        padding: 40px 0;
    }
    .trvtmpl-achievements .swiper-button-next, .trvtmpl-achievements .swiper-button-prev{
        display: none;
    }
    .trvtmpl-achievements__items{
        position: initial;
        width: 100%;
        margin-top: 35px;
    }
    .trvtmpl-achievements__item{
        width: 100%;
        height: 100%;
        margin: auto 0;
        box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.03);
    }
    .trvtmpl-achievements__item--empty::before{
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        margin-bottom: 20px;
    }
    .trvtmpl-achievements__item--empty::after{
        font-size: 14px;
        line-height: 16px;
    }
    .trvtmpl-achievements .trvtmpl-subtitle{
        margin-bottom: 10px;
    }
    .trvtmpl-achievements h2{
        margin-top: 0;
    }
    /*ACHIEVEMENTS END*/

    /*TEAM*/
    .trvtmpl-team__header h2{
        font-size: 24px;
        font-weight: 700;
        line-height: 28px;
        letter-spacing: -0.48px;
    }
    /*TEAM END*/
    .no-slide {
    	display: none;
	}
}

@media screen and (max-width: 991px) {
    /*TEAM*/
    .trvtmpl-team__items{
        /*grid-auto-rows: 254px;*/
    }
    /*TEAM END*/
}

@media screen and (min-width: 768px){
    .trvtmpl-sm-only{
        display: none;
    }
    .no-slide img {
        max-height: 447px;
        object-fit: cover;
        border-radius: 30px;
    }
}

@media screen and (max-width: 767px){
    .trvtmpl-lg-only{
        display: none;
    }
    /*COMMON*/
    .trvtmpl-upper-bg img{
        width: 200%;
        min-width: 200%;
    }
    /*COMMON END*/

    /*HEADER*/
    .trvtmpl-header__phone a{
        max-width: 28px;
        min-width: 28px;
        max-height: 28px;
        min-height: 28px;
    }
    .trvtmpl-header__middle-side{
        display: none;
    }
    .trvtmpl-header__name{
        font-size: 10px;
        line-height: 13px;
    }
    .trvtmpl-header__name span:first-child,
    .trvtmpl-header__name span:first-child p{
        font-size: 17px;
        line-height: 12px;
    }
    .trvtmpl-header__logo img{
        max-width: 24px;
    }
    /*MENU*/
    /*.trvtmpl-header--menu-opened .trvtmpl-header__wrapper{*/
    /*    border-bottom-left-radius: 0;*/
    /*    border-bottom-right-radius: 0;*/
    /*}*/
    .trvtmpl-header--loaded{
        position: relative;
    }
    .trvtmpl-header--loaded .trvtmpl-header__wrapper{
        position: absolute;
        top: 0;
        left: var(--trvtmplContainerPadding);
        width: calc(100% - (var(--trvtmplContainerPadding) * 2));
    }
    .trvtmpl-header__wrapper{
        flex-wrap: wrap;
        overflow-y: auto;
        max-height: 90vh;
        /*margin-bottom: 30px;*/
    }
    .trvtmpl-header__menu{
        position: relative;
        transform: translateY(0);
        background-color: transparent;
        box-shadow: none;
        max-height: 0;
        opacity: 1;
        pointer-events: auto;
        overflow: hidden;
        padding: 0;
        border-radius: 0;
        transition: max-height .3s;
    }
    .trvtmpl-header__menu nav{
        padding-top: 30px;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        margin-bottom: 35px;
        margin-left: 0;
        margin-top: 0;
    }
    .trvtmpl-header__menu ul{
        margin-right: 0;
        margin-bottom: 10px;
    }
    .trvtmpl-header__menu ul:last-child{
        margin-bottom: 0;
    }
    .trvtmpl-header__menu nav > ul{
        border-radius: 10px;
        border: 1px solid #ECF3F1;
        background: #F0F7F5;
        padding: 18px;
        margin-top: 0;
        margin-left: 0;
    }
    .trvtmpl-header__menu nav > ul > li{
        margin-bottom: 20px;
    }
    .trvtmpl-header__menu nav > ul > li:nth-child(2){
        margin-top: 20px;
    }
    .trvtmpl-header__menu nav > ul > li:first-child,
    .trvtmpl-header__menu nav > ul > li:last-child{
        margin-bottom: 0;
    }
    .trvtmpl-header__menu nav > ul ul li{
        margin-bottom: 15px;
    }
    .trvtmpl-header__menu nav > ul ul a{
        font-size: 14px;
        line-height: 16px;
    }
    .trvtmpl-header__menu nav > ul > ul{
        margin-bottom: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .15s ease-in-out;
    }
    .trvtmpl-header__menu nav > ul > ul > li:first-child{
        padding-top: 20px;
    }
    .trvtmpl-menu-item--parent{
        position: relative;
    }
    .trvtmpl-menu-item-arrow{
        display: block;
        width: 28px;
        min-width: 28px;
        height: 28px;
        min-height: 28px;
        border-radius: 50%;
        background-color: #E8F0ED;
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
    }
    .trvtmpl-menu-item-arrow::before{
        content: "";
        display: block;
        width: 10px;
        min-width: 10px;
        height: 7px;
        min-height: 7px;
        background-image: url('../img/svg/menu-down-arrow.svg');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        transition: transform .3s;
    }
    .trvtmpl-menu-item--parent--opened .trvtmpl-menu-item-arrow::before{
        transform: translateY(-50%) translateX(-50%) rotateX(180deg);
    }
    .trvtmpl-header__menu .trvtmpl-header__address,
    .trvtmpl-header__menu .trvtmpl-header__btn-request{
        display: unset;
    }
    .trvtmpl-header__menu .trvtmpl-header__socials,
    .trvtmpl-header__menu .trvtmpl-header__phone{
        display: flex;
    }
    .trvtmpl-header__menu{
        display: flex;
        flex-direction: column;
    }
    .trvtmpl-header__menu-label{
        display: block;
        font-size: 0;
        padding: 0;
        position: unset;
        border-radius: 0;
        opacity: 1;
        background-color: transparent;
        line-height: initial;
        margin-bottom: 35px;
    }
    .trvtmpl-header__menu-label svg{
        display: unset;
    }
    .trvtmpl-header__phone-address{
        /*display: none;*/
    }
    .trvtmpl-header__menu .trvtmpl-header__phone{
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .trvtmpl-header__menu .trvtmpl-header__phone a{
        color: var(--trvtmplFontDarkColor);
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
        max-width: unset;
        min-width: unset;
        max-height: unset;
        min-height: unset;
        display: flex;
        background-image: none;
        margin-bottom: 8px;
    }
    .trvtmpl-header__menu .trvtmpl-header__phone a:last-child{
        margin-bottom: 0;
    }
    .trvtmpl-header__menu .trvtmpl-header__phone a svg{
        display: none;
    }
    .trvtmpl-header__socials{
        margin-bottom: 30px;
    }
    .trvtmpl-header__socials a:not(:last-child){
        margin-right: 20px;
    }
    .trvtmpl-header__address{
        margin-bottom: 30px;
    }
    .trvtmpl-header__address,
    .trvtmpl-header__address p{
        color: rgba(49, 65, 82, 0.60);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
    }
    .trvtmpl-header__menu-item--active:not(.trvtmpl-lg-only){
        display: flex;
        align-items: center;
    }
    header .trvtmpl-header__menu-item--active::before{
        content: "";
        display: block;
        width: 12px;
        min-width: 12px;
        height: 2px;
        min-height: 2px;
        background-color: var(--trvtmplColor);
        margin-right: 8px;
    }
    .trvtmpl-header--menu-opened .trvtmpl-header__phone{
        opacity: 0;
        pointer-events: none;
    }
    .trvtmpl-header--menu-opened .trvtmpl-header__menu .trvtmpl-header__phone{
        opacity: 1;
        pointer-events: auto;
    }
    header .trvtmpl-menu-item--main{
        display: flex;
    }
    footer .trvtmpl-menu-item--main{
        display: none;
    }
    /*MENU END*/
    /*HEADER END*/

    /*SLIDER SEARCH*/
    .trvtmpl-slider-search{
        margin-bottom: 50px;
    }
    /*SLIDER SEARCH END*/

    /*MESSENGER*/
    .trvtmpl-messenger{
        padding-left: 0;
        padding-right: 0;
    }
    .trvtmpl-messenger__wrapper{
        flex-direction: column;
        padding: 40px var(--trvtmplContainerPadding) 0;
        overflow: hidden;
        border-radius: 30px;
    }
    .trvtmpl-messenger__wrapper > div:nth-child(1){
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
    }
    .trvtmpl-messenger__wrapper > div:nth-child(2){
        position: relative;
        max-width: 100%;
        width: 100%;
        left: 0;
        display: flex;
        justify-content: center;
    }
    .trvtmpl-messenger__wrapper > div:nth-child(2)::before{
        content: "";
        display: block;
        width: 360px;
        height: 360px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(calc(-50% - 20px)) translateX(-50%);
        border-radius: 360px;
        background: var(--trvtmplColor);
    }
    .trvtmpl-messenger__wrapper > div:nth-child(2) img:nth-child(1){
        position: relative;
        max-width: 100%;
        max-height: unset;
    }
    .trvtmpl-messenger__bg{
        display: none;
    }
    .trvtmpl-messenger__wrapper > div:nth-child(1) a{
        width: calc(50% - 17px);
        justify-content: center;
        min-width: unset;
    }
    /*MESSENGER END*/

    /*REVIEWS*/
    .trvtmpl-reviews__wrapper{
        flex-direction: column;
    }
    .trvtmpl-reviews__left-col,
    .trvtmpl-reviews__right-col{
        width: 100%;
    }
    .trvtmpl-reviews__left-col{
        order: 3;
        margin-right: 0;
    }
    .trvtmpl-reviews__right-col{
        order: 2;
        margin-left: 0;
        margin-bottom: 25px;
    }
    .trvtmpl-reviews__items-desc{
        padding-right: 0;
    }
    .trvtmpl-reviews__sm-header{
        display: block;
        order: 1;
    }
    .trvtmpl-reviews__left-col .trvtmpl-reviews__header{
        display: none;
    }
    .trvtmpl-reviews__header{
        margin-bottom: 25px;
    }
    .trvtmpl-reviews__header h2{
        margin-bottom: 0;
    }
    .trvtmpl-reviews__item{
        display: flex;
    }
    .trvtmpl-reviews__item-left-col{
        width: 50px;
        min-width: 50px;
        margin-right: 15px;
    }
    .trvtmpl-reviews__item-right-col{

    }
    .trvtmpl-reviews__avatar{
        width: 50px;
        max-width: 50px;
        height: 50px;
        max-height: 50px;
    }
    .trvtmpl-reviews__items-desc .swiper-pagination{
        padding-left: calc(50px + 15px);
    }
    .trvtmpl-reviews__items-img .trvtmpl-reviews__item{
        text-align: center;
    }
    .trvtmpl-reviews__img-wrapper{
        display: flex;
        margin: auto;
        position: relative;
        max-height: 200px;
    }
    .trvtmpl-reviews__items-img,
    .trvtmpl-reviews__items-img img{
        border-radius: 30px;
    }
    /*REVIEWS END*/

    /*SUBSCRIBE*/
    .trvtmpl-subscribe__outer-wrapper{
        margin-bottom: var(--trvtmplBlockBMargin);
    }
    .trvtmpl-subscribe img:not(.trvtmpl-subscribe__bg--sm){
        display: none;
    }
    .trvtmpl-subscribe img{
        left: 50%;
        transform: translateY(-30%) translateX(-68%);
    }
    .trvtmpl-subscribe__bg--sm{
        display: initial;
    }
    .trvtmpl-subscribe__wrapper{
        padding-left: 0;
    }
    .trvtmpl-subscribe form{
        max-width: 558px;
    }
    /*SUBSCRIBE END*/

    /*FOOTER*/
    footer li.trvtmpl-lg-only{
        display: list-item;
    }
    .trvtmpl-footer__wrapper{
        border-radius: 50px 50px 0 0;
        flex-direction: column;
        padding: 40px 20px;
    }
    .trvtmpl-footer__menu nav{
        flex-wrap: wrap;
    }
    .trvtmpl-footer__logo{
        max-width: 100%;
        width: 100%;
        min-width: unset;
        padding: 0;
        margin-bottom: 40px;
    }
    .trvtmpl-footer__menu{
        max-width: 100%;
        width: 100%;
        min-width: unset;
        padding: 0;
        margin-bottom: 30px;
    }
    .trvtmpl-footer__menu nav > ul{
        margin: 30px 0 0 0;
        width: 50%;
    }
    .trvtmpl-footer__menu nav > ul:nth-child(2n-1) {
        width: calc(50% - 30px);
        margin-right: 30px;
    }
    .trvtmpl-footer__menu ul:nth-child(-n+2){
        margin-top: 0;
    }
    .trvtmpl-footer__socials{
        position: relative;
        max-width: 100%;
        width: 100%;
        min-width: unset;
        padding: 30px 0 0 0;
        margin-bottom: 30px;
        display: flex;
        margin-top: -10px;
        justify-content: space-around;
    }
    .trvtmpl-footer__socials > div{
        display: flex;
    }
    .trvtmpl-footer__socials::before{
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url("/templates/easytravel/img/svg/footer-border.svg");
    }
    .trvtmpl-footer__socials a{
        margin-bottom: 0;
        margin-right: 20px;
        margin-top: 10px;
        width: auto;
    }
    .trvtmpl-footer__socials a:last-child{
        margin-right: 0;
    }
    .trvtmpl-footer__additional{
        align-items: flex-start;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    .trvtmpl-footer__additional::before{
        display: none;
    }
    .trvtmpl-footer__additional > div,
    .trvtmpl-footer__additional > a,
    .trvtmpl-footer__additional > p,
    .trvtmpl-footer__additional > p a{
        margin-bottom: 10px;
    }
    .trvtmpl-footer__additional > div:last-child,
    .trvtmpl-footer__additional > a:last-child,
    .trvtmpl-footer__additional > p a:last-child,
    .trvtmpl-footer__additional > p:last-child{
        margin-bottom: 0;
    }
    .trvtmpl-footer__menu .trvtmpl-menu-item--main{
        display: none;
    }
    /*FOOTER END*/

    /*PAGE ABOUT*/
    .trvtmpl-about-p--body .trvtmpl-header{
        margin-bottom: 25px;
    }
    .trvtmpl-about-p--body .trvtmpl-company-digits {
        margin-top: unset;
    }
    /*PAGE ABOUT END*/

    /*NEWS*/
    .trvtmpl-news__swiper-button-prev, 
    .trvtmpl-news__swiper-button-next {
        display: none;    
    }
    /*NEWS END*/

    /*TEAM*/
    .trvtmpl-team__wrapper{
        border-radius: 30px;
    }
    .trvtmpl-team__cell.trvtmpl-team__header{
        padding: 40px 25px;
        display: block;
    }
    .trvtmpl-team__cell.trvtmpl-team__header::after{
        display: none;
    }
    .trvtmpl-team__items{
        grid-template-columns: repeat(2, 1fr);
        /*grid-template-rows: auto 291px;*/
        /*grid-auto-rows: 291px;*/
    }
    /*TEAM END*/

    /* TEAM PAGE ITEM */
    .trvtmpl-team-page__item {
        flex-direction: column;
    }
    .trvtmpl-team-page__item .trvtmpl-team__item {
        margin-right: 0;
        max-width: unset;
        min-width: unset;
        height: auto;
    }
    .trvtmpl-team-page__btn-request-phone {
        flex-direction: column;  
        margin-top: 35px;
    }
    .trvtmpl-team-page__btn-request-phone > div {
        margin-bottom: 25px;
        width: 100%;
    }
    .trvtmpl-team-page__btn-request .tv-free-button,
    .trvtmpl-team-page__btn-request .tv-free-button .TVBButton {
        width: 100%;
    }
    .trvtmpl-team-page__btn-request .TVBButtonCaption {
        justify-content: center;
    }
    .trvtmpl-team-page__phone > a {
        margin-left: 0;
        justify-content: center;
    }
    /* TEAM PAGE ITEM END*/
 
    /*MORE NEWS PAGE*/
    .trvtmpl-news-page__items {
        grid-template-columns: repeat(1, minmax(20%, 1fr));
    }
    /*MORE NEWS PAGE END*/
}

@media screen and (max-width: 500px){
    /*TEAM*/
    .trvtmpl-team__items{
        /*grid-template-rows: auto 230px;*/
        /*grid-auto-rows: 230px;*/
        /*grid-template-columns: 1fr;*/
        /*grid-template-rows: auto 336px;*/
        /*grid-auto-rows: 336px;*/
        display: flex;
        flex-direction: column;
    }
    .trvtmpl-team__item{
        padding-bottom: 100%;
    }
    /*TEAM END*/
}

/*@media screen and (max-width: 500px){*/
/*    !*TEAM*!*/
/*    .trvtmpl-team__items{*/
/*        !*grid-template-columns: 1fr;*!*/
/*        !*grid-template-rows: auto 336px;*!*/
/*        !*grid-auto-rows: 336px;*!*/
/*    }*/
/*    !*TEAM END*!*/
/* }*/
.trvtmpl-team__item-avatar:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.6) 100%),
linear-gradient(0deg, rgb(141 211 187 / 90%), rgb(141 211 187 / 90%)),
linear-gradient(0deg, #f0fffb, #F2F9F7);
    /* background-position-y: -5px; *//* height: 99%; */
}
.trvtmpl-header__logo img {
    height: auto;
    max-width: 150px;
    width: 100%;
}
.trvtmpl-footer .trvtmpl-header__logo img {
  max-width: 100%;
}
@media screen and (max-width: 1000px){
    .trvtmpl-header__logo img {
        max-width: 160px;
    } 
    .trvtmpl-footer .trvtmpl-header__logo img {
        max-width: 300px;
    }
}
div#mod-custom334 {
    height: 440px;
    overflow: hidden;
    position: relative;
    min-width: 560px;
}
#mod-custom334 > div {
    width: 500px !important;
}
@media screen and (max-width: 767px) {
    #mod-custom334 > div {
        width: 100% !important;
    }
    div#mod-custom334 {
      min-width: 0px;
    }
    #mod-custom334 > p > iframe {
      width: 100%;
    }
}
.trvtmpl-cruise {
    margin-top: 200px;
}
@media screen and (max-width: 767px) {
.trvtmpl-cruise {
    margin-top: 50px;
}}