@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;*/
}
@font-face {
    font-family: "Cormorant Infant";
    src: url("../fonts/CormorantInfant/CormorantInfant-300.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: "Cormorant Infant";
    src: url("../fonts/CormorantInfant/CormorantInfant-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: "Cormorant Infant";
    src: url("../fonts/CormorantInfant/CormorantInfant-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: "Cormorant Infant";
    src: url("../fonts/CormorantInfant/CormorantInfant-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    /*font-display: swap;*/
}
@font-face {
    font-family: "Cormorant Infant";
    src: url("../fonts/CormorantInfant/CormorantInfant-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    /*font-display: swap;*/
}

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

:root {
    --trvtmplContainerPadding: 20px;
    --trvtmplContainerMaxWidth: 1100px;
    --trvtmplLinksTransition: opacity 0.3s;
    --trvtmplLinksHoverOpacity: 0.8;
    --trvtmplFontColorDark: #0a0b1e;
}

body {
    margin: 0;
    padding: 0;
    min-width: 360px;
    background-color: var(--trvtmplBodyBackgroundColor);
}

/* main {
    position: relative;
} */

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

h1 {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 38px;
    line-height: 49px;
    color: #ffffff;
}

h2 {
    font-family: "Cormorant Infant";
    font-weight: 500;
    font-size: 36px;
    line-height: 47px;
    color: #ffffff;
}

p {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

ul {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;

    padding-inline-start: 26px;
}
ul li::marker {
    color: var(--trvtmplTemplateColorMain);
}

/* TV MODULES FIX */
.TVModalContainer ul,
.TVMobileContainer ul,
.TVModalContainer p,
.TVMobileContainer p {
    font-size: inherit;
    color: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    padding-inline-start: inherit;
}
/* TV MODULES FIX END */

.trvtmpl-visible-max-height {
    max-height: unset !important;
    overflow: auto !important;
}

.trvtmpl-hover--link {
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-hover--link:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}

/* .trvtmpl-page-content.trvtmpl-empty {
    margin: 0;
} */

/* CONTAINER */
.trvtmpl-container {
    padding-left: var(--trvtmplContainerPadding);
    padding-right: var(--trvtmplContainerPadding);
    max-width: var(--trvtmplContainerMaxWidth);
    margin-left: auto;
    margin-right: auto;
}
/* CONTAINER END */

/* SECTION */
.trvtmpl-section {
    padding-top: 110px;
    padding-bottom: 110px;
}
.trvtmpl-section.trvtmpl-section--dark {
    background-color: var(--trvtmplDarkBlockBackgroundColor);
}
/* SECTION END */

/* BLOCK BG */
.trvtmpl-block-bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.trvtmpl-block-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(179.73deg, rgba(23, 23, 24, 0.7) 0.27%, rgba(23, 23, 24, 0) 26.63%),
        linear-gradient(359.73deg, #222222 0.24%, rgba(34, 34, 34, 0) 59.23%),
        linear-gradient(0deg, rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.7)),
        linear-gradient(0deg, rgba(54, 75, 95, 0.3), rgba(54, 75, 95, 0.3));
}
/* BLOCK BG END */

/* MAIN COLOR OVERLAY */
.trvtmpl-main-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--trvtmplTemplateColorMain);
    z-index: 2;
    opacity: 0.6;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.trvtmpl-benefits__images-item,
.trvtmpl-news__item-image,
.trvtmpl-match-tour__right-col,
#map {
    position: relative;
}
.trvtmpl-benefits__images-item::after,
.trvtmpl-news__item-image::after,
.trvtmpl-match-tour__right-col::after,
#map::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--trvtmplTemplateColorMain);
    z-index: 2;
    opacity: 0.6;
    mix-blend-mode: multiply;
    pointer-events: none;
}
/* MAIN COLOR OVERLAY END */

/* P UTILS*/
.trvtmpl-p-container p:first-child {
    margin-top: 0 !important;
}
.trvtmpl-p-container p:last-child {
    margin-bottom: 0 !important;
}
.trvtmpl-p-no-margin-container p {
    margin: 0 !important;
}
/* P UTILS END */

/* SWIPER */
body .swiper-button-next,
body .swiper-button-prev {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: unset;
    margin: 0;

    transition: opacity 0.3s;
}
body .swiper-button-next:hover,
body .swiper-button-prev:hover {
    opacity: 0.8;
}
body .swiper-button-next:after,
body .swiper-button-prev:after {
    content: "";
    width: 7px;
    height: 12px;
    background-image: url("../images/svg/swiper-arrow.svg");
    background-size: cover;
    filter: invert(1);
}
body .swiper-button-prev:after {
    transform: scaleX(-1);
}
body .swiper-button-next:after {
    transform: translateX(1px);
}
body .swiper-pagination-bullet-active {
    background-color: var(--trvtmplTemplateColor);
}
/* SWIPER END */

/* MAP */
#map {
    width: 100%;
    height: 682px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(10, 11, 30, 0.5);
}
#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);
}
/* MAP END */

/* BLOCK HEADER */
.trvtmpl-block-header {
    text-align: center;
    margin: 0 auto;
}
.trvtmpl-block-header h1,
.trvtmpl-block-header h2 {
    margin: 0;
}
.trvtmpl-block-header p {
    width: 767px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.5;
}
/* BLOCK HEADER END */

/* PAGE HEADER TITLE */
.trvtmpl-page-header h1 {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 51px;
    color: #ffffff;

    margin: 0;
}
h2,
h3,
h4 {
    font-family: "Cormorant Infant";
}
h3 {
    font-size: 24px;
    line-height: 160%;
}
/* PAGE HEADER TITLE END */

/* PAGINATION */
.trvtmpl-pagination {
    margin-top: 20px;
}
.trvtmpl-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trvtmpl-pagination li:not(:first-child) {
    margin-left: 10px;
}
.trvtmpl-pagination li {
    color: #ffffff;
}
.trvtmpl-pagination li.trvtmpl-pagination__item--active {
    color: var(--trvtmplTemplateColorMain);
    pointer-events: none;
}
.trvtmpl-pagination li a {
    color: currentColor;
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-pagination li a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
/* PAGINATION END */

/* HEADER */
.trvtmpl-header {
    position: relative;
}
.trvtmpl-header__inner-wrapper {
    max-width: 1350px;
    padding: 40px var(--trvtmplContainerPadding);

    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}
.trvtmpl-header__top {
    display: flex;
    width: 100%;
}
.trvtmpl-header__left-col {
    display: flex;
    align-items: center;
}
.trvtmpl-header__logo {
    max-width: 240px;
    min-width: max-content;
}
.trvtmpl-logo {
    display: flex;
}
.trvtmpl-logo img {
    max-width: 320px;
    height: auto;
}
.trvtmpl-header__right-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    column-gap: 27px;
    max-width: 75%;
}
.trvtmpl-header__phone {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--trvtmplTemplateColorMain);
}
.trvtmpl-header__phone .trvtmpl-icon--phone-icon {
    display: none;
}
.trvtmpl-header__address {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
    opacity: 0.5;

    margin-top: 6px;
}
.trvtmpl-header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 50%;
    text-align: right;
}
.trvtmpl-header__socials .trvtmpl-socials__item {
    height: 24px;
    width: 24px;
}
.trvtmpl-header__bottom {
    width: 100%;
    max-width: 1120px;
    margin: 70px auto 0px;
}
.trvtmpl-header__page-title {
    text-align: center;
}
.trvtmpl-header__page-title h1 {
    margin: 0;
}
.trvtmpl-header__page-title :first-child {
    margin-top: 0;
}
.trvtmpl-header__page-title :last-child {
    margin-bottom: 0;
}
.trvtmpl-header__page-title p {
    margin: 0;
}
.trvtmpl-header__search {
    margin-top: 30px;
}
/* HEADER END */

/* HEADER ABSOLUTE */
.trvtmpl-body--main-page .trvtmpl-header,
.trvtmpl-body.about-page .trvtmpl-header,
.trvtmpl-body.team-page .trvtmpl-header {
    position: absolute;
    width: 100%;
    z-index: 2;
}
/* HEADER ABSOLUTE END */

/* MENU */
.trvtmpl-header__menu {
    position: absolute;
    background-color: antiquewhite;
    top: 100px;
    right: 50px;

    padding: 26px 16px 26px 20px;
    background: rgba(30, 30, 30, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 30px;
    min-width: 220px;
    text-align: right;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 0.3s;
    z-index: 21;
}
.trvtmpl-header__menu.trvtmpl-header__menu--active {
    opacity: 1;
    pointer-events: all;
}
.trvtmpl-header__menu li {
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    color: #ffffff;
}
.trvtmpl-header__menu a,
.trvtmpl-header__menu li > span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.trvtmpl-header__menu .trvtmpl-menu a {
    opacity: 0.5;
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-header__menu a:hover {
    opacity: 1;
}
.trvtmpl-header__menu a:hover::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    margin-left: 10px;
}
.trvtmpl-header__menu .trvtmpl-menu li > span,
.trvtmpl-header__menu .trvtmpl-menu li > .trvtmpl-icon--menu-item-down-arrow {
    opacity: 0.5;
}
.trvtmpl-header__menu nav > ul:not(:first-child),
.trvtmpl-header__menu ul > li:not(:first-child) {
    margin-top: 20px;
}
.trvtmpl-header__menu-close,
.trvtmpl-header__menu-socials,
.trvtmpl-header__menu-contacts,
.trvtmpl-header__menu-request {
    display: none;
}
.trvtmpl-header__burger {
    cursor: pointer;
    width: 45px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trvtmpl-header__burger-icon {
    display: flex;
}
.trvtmpl-header__burger-icon svg {
    overflow: visible;
    transition: width ease-in-out 0.15s;
}
.trvtmpl-header__burger--active .trvtmpl-header__burger-icon svg {
    width: 18px;
}
.trvtmpl-header__burger path {
    transition: transform ease-in-out 0.15s;
}
.trvtmpl-header__burger--active path:first-child {
    transform: translate(7px, -12px) rotate(45deg);
}
.trvtmpl-header__burger--active path:last-child {
    transform: translate(2px, 14px) rotate(-45deg);
}
.trvtmpl-header__menu .trvtmpl-menu__item--parent {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}
.trvtmpl-header__menu .trvtmpl-icon--menu-item-down-arrow {
    margin-left: 10px;
    transition: transform 0.2s;
}
.trvtmpl-header__menu .trvtmpl-menu__item--opened .trvtmpl-icon--menu-item-down-arrow {
    transform: rotateX(180deg);
}
.trvtmpl-header__menu .trvtmpl-menu__item--parent ~ ul {
    overflow: hidden;
    transition: max-height 0.15s ease-in-out;
}
.trvtmpl-header__menu .trvtmpl-menu__item--parent ~ ul li:first-child:before {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    background-color: transparent;
}
/* MENU END */

/* OVERLAY */
.trvtmpl-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 0.3s;
}
.trvtmpl-overlay--active {
    opacity: 1;
    pointer-events: unset;
}
/* OVERLAY END */

/* FOOTER MENU */
.trvtmpl-footer__menu {
    opacity: 0.5;
}
.trvtmpl-footer__menu nav {
    display: flex;
    flex-direction: column;
}
.trvtmpl-footer__menu ul {
    display: flex;
}
.trvtmpl-footer__menu li {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #ffffff;
}
.trvtmpl-footer__menu li:not(:first-child),
.trvtmpl-menu__item--parent ~ ul {
    margin-left: 30px;
}
.trvtmpl-footer__menu nav > ul:not(:first-child) {
    margin-top: 16px;
}
/* .trvtmpl-footer__menu nav > ul {
    width: 25%;
    padding: 0 20px;
}
.trvtmpl-footer__menu nav > ul:nth-of-type(n + 5) {
    margin-top: 40px;
}
.trvtmpl-footer__menu li {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    opacity: 0.8;
    color: var(--trvtmplFontColorDark);
}
.trvtmpl-footer__menu li:not(:first-child),
.trvtmpl-footer__menu li.trvtmpl-menu__item--parent ~ ul {
    margin-top: 40px;
}
.trvtmpl-footer__menu li.trvtmpl-menu__item--parent,
.trvtmpl-footer__menu li > a.bold {
    font-weight: 600;
    font-size: 22px;
}
.trvtmpl-footer__menu .trvtmpl-menu__item--parent span {
    cursor: default;
} */
/* FOOTER MENU END */

/* FOOTER */
.trvtmpl-footer__inner-wrapper {
    padding-top: 130px;
    display: flex;
    flex-wrap: wrap;
}
.trvtmpl-footer__subcription {
    max-width: calc(61% - 20px);
    margin-right: 20px;
}
.trvtmpl-footer__subcription-title h2 {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    line-height: 66px;
    text-transform: uppercase;
    color: var(--trvtmplTemplateColorMain);

    margin: 0;
}
.trvtmpl-footer__subcription-button {
    display: flex;
    margin-top: 35px;
}
.trvtmpl-footer__contacts {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--trvtmplTemplateColorMain);
    text-align: right;

    max-width: 39%;
    margin-left: auto;
    padding-top: 8px;
}
.trvtmpl-footer__phone .trvtmpl-phone {
    justify-content: flex-end;
}
.trvtmpl-footer__phone,
.trvtmpl-footer__mail {
    margin-top: 20px;
}
.trvtmpl-footer__logo-menu {
    display: flex;
    margin-top: 120px;
    width: 100%;
}
.trvtmpl-footer__menu {
    margin-left: auto;
}
.trvtmpl-footer__bottom {
    width: 100%;
    margin-top: 35px;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
}
.trvtmpl-footer__copyright,
.trvtmpl-footer__link a {
    color: currentColor;
    text-decoration: none;
}
.trvtmpl-footer__organization-details p {
    opacity: unset !important;
}
.trvtmpl-footer__copyright,
.trvtmpl-footer__link p,
.trvtmpl-footer__organization-details p {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    color: #ffffff;
    opacity: 0.3;
}
.trvtmpl-footer__link p {
    margin: 0;
}
.trvtmpl-footer__copyright {
    flex-shrink: 0;
}
.trvtmpl-footer__link {
    margin-left: auto;
    text-align: right;
}
/* FOOTER END */

/* MAIN PAGE */
.trvtmpl-body--main-page .trvtmpl-header__bottom {
    margin-top: 280px;
}
.trvtmpl-body--main-page .trvtmpl-header__title,
.trvtmpl-body--main-page .trvtmpl-header__desc {
    text-align: center;
}
/* MAIN PAGE END */

/* CONTACTS PAGE */
.trvtmpl-contacts-page {
    color: #ffffff;
}
.trvtmpl-contacts-page a,
.trvtmpl-contacts-page p,
.trvtmpl-contacts-page .trvtmpl-address__content {
    font-size: 18px;
    line-height: 160%;
}
/* CONTACTS PAGE END */

/* ABOUT PAGE */
/* .trvtmpl-body.about-page .trvtmpl-header__bg {
    background-image: url("/images/header-bg--about.jpg");
    height: 965px;
} */
/* ABOUT PAGE END */

/* NEWS PAGE */
.trvtmpl-news-page__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.trvtmpl-news-page .trvtmpl-news__item {
    background-color: transparent;
    width: 320px;
}
.trvtmpl-news-page .trvtmpl-news__item-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;

    transition: opacity 0.3s ease;
}
.trvtmpl-news-page .trvtmpl-news__item-image {
    display: flex;
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    overflow: visible;
}
.trvtmpl-news-page .trvtmpl-news__item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}
.trvtmpl-news-page .trvtmpl-news__item-date,
.trvtmpl-news-page .trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-date {
    font-weight: 500;
    font-size: 13px;
    line-height: 9px;
    color: var(--trvtmplFontColorDark);

    display: inline-block;
    padding: 8px 10px;
    background-color: var(--trvtmplTemplateColorMain);
    border-radius: 20000px;
    position: absolute;
    left: 34px;
    bottom: 0;
    transform: translate(0, 50%);
    margin-bottom: 0;
    z-index: 3;
}
.trvtmpl-news-page .trvtmpl-news__item-title,
.trvtmpl-news-page .trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #ffffff;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}
.trvtmpl-news-page .trvtmpl-news__item-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--trvtmplFontColorDark);
    margin-top: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;

    opacity: 0.7;
}
.trvtmpl-news-page .trvtmpl-news__item-body {
    padding: 28px 34px;
}
.trvtmpl-news-page .trvtmpl-news__item:nth-child(n + 4) {
    display: flex;
}
.trvtmpl-news-page .trvtmpl-news__item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
}
.trvtmpl-news-page .trvtmpl-news__item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
}
.trvtmpl-news-page .trvtmpl-news__item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
}
/* NEWS PAGE END */

/* TEAM PAGE */
.trvtmpl-team-page__item {
    color: #ffffff;
}
.trvtmpl-team-page__item a {
    color: currentColor;
    text-decoration: none;
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-team-page__item a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
.trvtmpl-team-page__item img:first-of-type {
    border-radius: 32px;
}
/* .trvtmpl-team-page .description {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}
.trvtmpl-team-page__item::after {
    content: "";
    display: table;
    clear: both;
}
.trvtmpl-team-page__item h2 {
    margin-top: 0;
}
.trvtmpl-team-page__item img {
    float: left;
    margin-right: 20px;
}
.trvtmpl-team-page__item p {
    padding-top: 20px;
} */
/* TEAM PAGE END */

/* REVIEWS PAGE */
.trvtmpl-reviews-page__items {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-top: -20px;
    height: auto;
}
.trvtmpl-reviews-page__item {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    overflow: hidden;
    width: calc(33.33% - 20px);
    height: auto;
    max-height: 375px;
    margin-left: 20px;
    margin-top: 20px;
}
.trvtmpl-reviews-page__item-comment {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0.8;

    height: 100%;
    overflow: auto;
}
.trvtmpl-reviews-page__item-comment::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f1f1f1;
}

.trvtmpl-reviews-page__item-comment::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}

.trvtmpl-reviews-page__item-comment::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: #f1f1f1;
}
.trvtmpl-reviews-page__item-author {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
    color: var(--trvtmplTemplateColorMain);
}
.trvtmpl-reviews-page__item-body {
    background-color: #272727;
    padding: 30px 35px 35px;
    height: 100%;
    overflow: hidden;
}
.trvtmpl-reviews-page__item-footer {
    display: flex;
    align-items: center;
    background-color: #2b2b2b;
    padding: 16px 35px 20px;
}
.trvtmpl-reviews-page__item-footer-left {
    margin-right: 15px;
}
.trvtmpl-reviews-page__item-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.trvtmpl-reviews-page__date {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: #ffffff;

    opacity: 0.5;
    margin-top: 4px;
}
/* REVIEWS PAGE END */

/* TV SEARCH */
.trvtmpl-search {
    position: relative;
}
.trvtmpl-search__inner-wrapper {
    padding-top: 369px;
    padding-bottom: 80px;
}
.trvtmpl-search__title {
    text-align: center;
    margin-bottom: 30px;
}
.trvtmpl-search__title h1 {
    margin: 0;
}
.trvtmpl-search__title p {
    margin-top: 6px;
}
.trvtmpl-search__request {
    display: none;
}
.trvtmpl-search__bg.trvtmpl-block-bg {
    background-image: url("/images/fon.jpg");
}
.trvtmpl-search__socials {
    display: none;
}
.trvtmpl-search__module {
    min-height: 82px;
}
/* TV SEARCH END */

/* TV HOT */
.trvtmpl-tv-hot__header {
    margin-bottom: 40px;
}
.trvtmpl-tv-hot__button-more-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.trvtmpl-tv-hot__button-more {
    display: flex;
}
.trvtmpl-tv-hot__button-more a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: var(--trvtmplButtonsFontColorSecondary) !important;
    text-decoration: none;

    padding: 16px 24px;
    position: relative;
    background-color: var(--trvtmplButtonsColorSecondary) !important;
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-tv-hot__button-more a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
.trvtmpl-tv-hot__button-more a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--trvtmplButtonsColorMain) !important;
    opacity: 0.4;
    border-radius: 8px;
    box-sizing: border-box;
}
/* TV HOT END */

/* TV MIN PRICE TV HOT SECTION */
.trvtmpl-section--tv-min-price-tv-hot {
    padding-top: 40px;
    padding-bottom: 110px;
}
/* TV MIN PRICE TV HOT SECTION END */

/* TV SLIDER */
.trvtmpl-slider {
    position: relative;
}
/* TV SLIDER END */

/* GUIDE */
.trvtmpl-guide {
    position: relative;
    overflow: hidden;
}
.trvtmpl-guide::after,
.trvtmpl-guide::before {
    content: "";
    width: 420px;
    height: 78px;
    display: block;
    background-image: url("../images/svg/guide-bg-pattern.svg");
    background-position: center 70%;
    position: absolute;
}
.trvtmpl-guide::before {
    top: 70px;
    right: 0;
    transform: translate(40%, 0);
}
.trvtmpl-guide::after {
    bottom: 70px;
    left: 0;
    transform: translate(-40%, 0);
}
.trvtmpl-guide__header {
    margin-bottom: 45px;
}
.trvtmpl-guide__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    counter-reset: guide-counter;
}
.trvtmpl-guide__item {
    counter-increment: guide-counter;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 33.33%;
    padding: 0 65px;
    position: relative;
}
.trvtmpl-guide__item:nth-child(n + 4) {
    margin-top: 65px;
}
.trvtmpl-guide__item .trvtmpl-icon--guide-separator-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
.trvtmpl-guide__item:not(.with-separator) .trvtmpl-icon--guide-separator-icon {
    display: none;
}
.trvtmpl-guide__item p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0.8;
}
.trvtmpl-guide__item::before {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.02em;
    color: #1e1e1e;

    content: counter(guide-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1; /* делает блок квадратным, а border-radius превращает его в круг */
    min-width: 46px; /* минимальный размер */
    min-height: 46px;
    padding: 10px;
    box-sizing: border-box;
    background: var(--trvtmplTemplateColorMain);
    margin-bottom: 16px;
}
/* GUIDE END */

/* MESSENGER */
.trvtmpl-messenger {
    background-image: url("/images/messenger-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.trvtmpl-messenger::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #1e1e1e, transparent);
    pointer-events: none;
    z-index: 4;
}
.trvtmpl-messenger__inner-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    max-width: 820px;
}
.trvtmpl-messenger__image {
    width: 287px;
    min-width: 287px;
    height: calc(590px - 150px);
    border-radius: 45px 45px 0 0;
    overflow: hidden;
    padding: 5px;
    position: relative;
    margin-right: 60px;
    margin-top: 110px;
}
.trvtmpl-messenger__image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../images/png/phone.png");
    z-index: 3;
}
.trvtmpl-messenger__image img {
    position: relative;
    z-index: 2;
}
.trvtmpl-messenger__image p img {
    border-radius: 40px;
}
.trvtmpl-messenger__image .trvtmpl-logo img {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.trvtmpl-messenger__text h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 47px;
    color: #ffffff;

    margin: 0 0 10px 0;
}
.trvtmpl-messenger__text p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--trvtmplTemplateColorMain);
}
.trvtmpl-messenger__text a {
    color: var(--trvtmplTemplateColorMain);
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-thickness: 1px;
    text-underline-offset: 10px;
}
/* MESSENGER END */

/* REVIEWS */
.trvtmpl-reviews {
    overflow: hidden;
}
.trvtmpl-reviews_inner-wrapper .swiper {
    display: flex;
    justify-content: center;
}
.trvtmpl-reviews__header {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 40px;
}
.trvtmpl-reviews__header a,
.trvtmpl-reviews__footer a {
    padding: 14px 20px;
    background-color: var(--trvtmplButtonsColorSecondary) !important;
    border-radius: 40px;
    font-size: 14px;
    line-height: 100%;
    color: var(--trvtmplButtonsFontColorSecondary) !important;
    text-decoration: none;
    transition: var(--trvtmplLinksTransition);

    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 100px;
    height: 100%;
    transform: translateY(7px);
}
.trvtmpl-reviews__header a:hover,
.trvtmpl-reviews__footer a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
.trvtmpl-reviews__header a::before,
.trvtmpl-reviews__footer a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--trvtmplButtonsColorMain) !important;
    opacity: 0.4;
    border-radius: 8px;
    box-sizing: border-box;
}
.trvtmpl-reviews__items {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-top: -20px;
    height: auto;
}
.trvtmpl-reviews__item {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    overflow: hidden;
    width: calc(33.33% - 20px);
    height: auto;
    max-height: 375px;
    margin-left: 20px;
    margin-top: 20px;
}
.trvtmpl-reviews__item-comment {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0.8;

    height: 100%;
    overflow: auto;
}
.trvtmpl-reviews__item-comment::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f1f1f1;
}

.trvtmpl-reviews__item-comment::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}

.trvtmpl-reviews__item-comment::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: #f1f1f1;
}
.trvtmpl-reviews__item-author {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
    color: var(--trvtmplTemplateColorMain);
}
.trvtmpl-reviews__item-body {
    background-color: #272727;
    padding: 30px 35px 35px;
    height: 100%;
    overflow: hidden;
}
.trvtmpl-reviews__item-footer {
    display: flex;
    align-items: center;
    background-color: #2b2b2b;
    padding: 16px 35px 20px;
}
.trvtmpl-reviews__item-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.trvtmpl-reviews__date {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: #ffffff;

    opacity: 0.5;
    margin-top: 4px;
}
.trvtmpl-reviews__item-footer-left {
    margin-right: 15px;
}
.trvtmpl-reviews__footer {
    display: none;
}
.trvtmpl-reviews-widget .mod-custom > div {
    max-width: 650px;
    width: 100% !important;
    margin: auto;
}
/* REVIEWS END */

/* BENEFITS */
.trvtmpl-benefits {
    overflow: hidden;
}
.trvtmpl-benefits__images .swiper-slide {
    border-radius: 30px;
    width: 286px;
    height: 286px;
    overflow: hidden;
}
.trvtmpl-benefits__images img {
    width: 100%;
    height: 100%;
}
.trvtmpl-benefits__images .swiper-slide:nth-child(even) {
    margin-top: 70px;
}
.trvtmpl-benefits__header {
    margin-bottom: 70px;
}
.trvtmpl-benefits__items-header {
    width: 774px;
    margin: 0 auto 40px;
}
.trvtmpl-benefits__items {
    --column-gap: 32px;
    counter-reset: benefits;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--column-gap);
}
.trvtmpl-benefits__item {
    background: #232323;
    border-radius: 30px;
    padding: 15px 30px 30px;
    position: relative;
    width: calc(50% - var(--column-gap) / 2);

    counter-increment: benefits;
}
.trvtmpl-benefits__item::before {
    content: counter(benefits, decimal-leading-zero) ".";
    display: block;
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 54px;
    color: var(--trvtmplTemplateColorMain);
}
.trvtmpl-benefits__item p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.02em;
    line-height: 21px;
    color: #ffffff;

    display: flex;
    align-items: center;
    opacity: 0.5;
    margin: 0;
}
.trvtmpl-benefits__item p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #ffffff;

    opacity: 0.8;
    margin-top: 10px;
}
.trvtmpl-benefits__item p:not(:first-child) {
    margin-top: 10px;
}
/* BENEFITS END */

/* NEWS */
.trvtmpl-news__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}
.trvtmpl-news__header h2 {
    margin: 0;
}
.trvtmpl-news__header a,
.trvtmpl-news__footer a {
    padding: 14px 20px;
    background-color: var(--trvtmplButtonsColorSecondary) !important;
    border-radius: 40px;
    font-size: 14px;
    line-height: 100%;
    color: var(--trvtmplButtonsFontColorSecondary) !important;
    text-decoration: none;
    transition: var(--trvtmplLinksTransition);

    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 100px;
    height: 100%;
    transform: translateY(7px);
}
.trvtmpl-news__header a:hover,
.trvtmpl-news__footer a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
.trvtmpl-news__header a::before,
.trvtmpl-news__footer a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--trvtmplButtonsColorMain) !important;
    opacity: 0.4;
    border-radius: 8px;
    box-sizing: border-box;
}
.trvtmpl-news__items {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    grid-template-rows: repeat(2, 192px);
    gap: 16px;
    height: auto;
}
.trvtmpl-news__item:nth-child(n + 4) {
    display: none;
}
.trvtmpl-news__item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.trvtmpl-news__item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.trvtmpl-news__item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.trvtmpl-news__item {
    --background-color: #272727;

    background-color: var(--background-color);
    border-radius: 30px;
}
.trvtmpl-news__item-link {
    text-decoration: none;

    display: flex;
    padding: 15px;
    height: 100%;
}
.trvtmpl-news__item-date {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #ffffff;

    display: inline-flex;
    flex-shrink: 0;
    padding: 3px 12px 4px;
    background-color: var(--trvtmplTemplateColorMain);
    border-radius: 8px;
    margin-bottom: 12px;
}
.trvtmpl-news__item-title {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0.8;

    flex-shrink: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-date {
    font-size: 14px;
    line-height: 21px;
}
.trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-title {
    font-size: 22px;
    line-height: 29px;
    -webkit-line-clamp: 5;
}
.trvtmpl-news__item-image {
    display: flex;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    width: 160px;
}
.trvtmpl-news__item-image::after {
    border-radius: 22px;
}
.trvtmpl-news__item-image.trvtmpl-news__item-image--no-image::after {
    background-color: #2b2b2b;
    mix-blend-mode: normal;
}
.trvtmpl-news__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trvtmpl-news-page img {
    border-radius: 22px;
}
.trvtmpl-news__item-body {
    padding: 8px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.trvtmpl-news__item-content {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0.5;

    position: relative;
    overflow: hidden;
    margin-top: 12px;
}
.trvtmpl-news__item-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to top, var(--background-color), transparent);
}
.trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-link {
    padding: 20px;
}
.trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-body {
    padding: 15px 25px;
}
.trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-image {
    width: 293px;
    height: auto;
}
.trvtmpl-news__item:not(:nth-child(1)) .trvtmpl-news__item-content {
    display: none;
}
.trvtmpl-news__item-link {
    transition: opacity 0.3s ease;
}
.trvtmpl-news__item-link:hover {
    opacity: 0.8;
}
.trvtmpl-news__footer {
    display: none;
}
/* NEWS END */

/* MATCH TOUR */
.trvtmpl-section--match-tour-contacts {
    padding-bottom: 0;
}
.trvtmpl-match-tour__inner-wrapper {
    display: flex;
    align-items: center;
}
.trvtmpl-match-tour__right-col {
    width: 369px;
    flex-shrink: 0;
    margin-left: 20px;
    border-radius: 30px;
    overflow: hidden;
}
.trvtmpl-match-tour__right-col p {
    display: flex;
}
.trvtmpl-match-tour__right-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.trvtmpl-match-tour__left-col {
    background-color: #232323;
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.trvtmpl-match-tour__left-col::before {
    content: "";
    background-image: url("../images/svg/match-tour-pattern.svg");
    display: block;
    width: 459px;
    height: 191px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(130px, 60px) rotate(-30deg);
}
.trvtmpl-match-tour__left-col h2 {
    margin: 0;
}
.trvtmpl-match-tour__left-col ul {
    color: #ffffff;
    opacity: 0.6;
}
.trvtmpl-match-tour__left-col ul li:not(:first-child) {
    margin-top: 15px;
}
/* MATCH TOUR END */

/* CONTACTS BLOCK */
.trvtmpl-contacts-block__inner-wrapper {
    display: flex;
    align-items: center;
    padding-left: 110px;
    padding-right: 110px;
    overflow: hidden;
}
.trvtmpl-contacts-block__item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 1 auto;
}
.trvtmpl-contacts-block__item:not(:first-child) {
    margin-left: 25px;
    padding-left: 25px;
}
.trvtmpl-contacts-block__item:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    opacity: 0.08;
}
.trvtmpl-contacts-block__item-icon-bg {
    background: var(--trvtmplTemplateColorMain);
    display: flex;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}
.trvtmpl-contacts-block__item-icon {
    padding: 7px;
    position: relative;
    border: 1px solid var(--trvtmplTemplateColorMain);
    border-radius: 50%;
}
.trvtmpl-contacts-block__item-icon svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.trvtmpl-contacts-block__item-icon .trvtmpl-icon--phone-icon path.phone-icon--pattern,
.trvtmpl-contacts-block__item-icon .trvtmpl-icon--mail-icon path.mail-icon--pattern,
.trvtmpl-contacts-block__item-icon .trvtmpl-icon--address-icon path.address-icon--pattern {
    fill: #ffffff;
}
.trvtmpl-contacts-block__item-text {
    margin-left: 15px;
}
.trvtmpl-contacts-block__item-value {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #ffffff;

    opacity: 0.8;
}
.trvtmpl-contacts-block__item-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #ffffff;

    opacity: 0.5;
}
.trvtmpl-contacts-block__item--phone .trvtmpl-contacts-block__item-text,
.trvtmpl-contacts-block__item--mail .trvtmpl-contacts-block__item-text {
    white-space: nowrap;
}
/* CONTACTS BLOCK END */

/* CIRCLES */
.trvtmpl-section.trvtmpl-section--circles {
    padding-top: 156px;
    position: relative;
}
.trvtmpl-circles__bg.trvtmpl-block-bg {
    background-image: url("/images/fon-about.jpg");
}
.trvtmpl-circles__title {
    width: 932px;
    margin: 0 auto;
}
.trvtmpl-circles__title h1 {
    text-indent: 110px;
}
.trvtmpl-circles__images {
    height: 260px;
    position: relative;
    margin-top: 50px;
}
.trvtmpl-circles__image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    box-sizing: border-box;
}
.trvtmpl-circles__image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--trvtmplButtonsColorMain) !important;
    opacity: 0.3;
    border-radius: 8px;
    box-sizing: border-box;
}
.trvtmpl-circles__image:nth-child(1) {
    left: 0.28%;
    bottom: 8.46%;
}
.trvtmpl-circles__image:nth-child(2) {
    left: 8.98%;
    bottom: 20.77%;
}
.trvtmpl-circles__image:nth-child(3) {
    left: 27.78%;
    top: 0.77%;
}
.trvtmpl-circles__image:nth-child(4) {
    left: 34.88%;
    bottom: 1.92%;
}
.trvtmpl-circles__image:nth-child(5) {
    right: 37.23%;
    top: 12.69%;
}
.trvtmpl-circles__image:nth-child(6) {
    right: 28.17%;
    bottom: 20.77%;
}
.trvtmpl-circles__image:nth-child(7) {
    right: 13.52%;
    top: 0.77%;
}
.trvtmpl-circles__image:nth-child(8) {
    right: 0.38%;
    bottom: 16.54%;
}
.trvtmpl-circles__image:nth-child(n + 9) {
    display: none;
}
.trvtmpl-circles__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trvtmpl-circles__text {
    max-width: 720px;
    margin: 50px auto 0;
}
.trvtmpl-circles__text p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #ffffff;

    opacity: 0.8;
    width: 52%;
    margin: 40px 0 0;
}
.trvtmpl-circles__text p:nth-child(even) {
    margin-left: auto;
}
/* CIRCLES END */

/* ACHIEVEMENTS */
.trvtmpl-achievements {
    overflow: hidden;
    padding-bottom: 45px;
    margin-bottom: -45px;
}
.trvtmpl-achievements__header {
    display: flex;
}
.trvtmpl-achievements__header h2 {
    margin: 0;
}
.trvtmpl-achievements__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.trvtmpl-achievements__nav .swiper-button-next {
    margin-left: 5px;
}
.trvtmpl-achievements__body {
    margin-top: 35px;
}
.trvtmpl-achievements__item {
    width: 347px;
    height: 500px;
    background: #ffffff;
    box-shadow: 0px 6px 45px rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    overflow: hidden;
}
.trvtmpl-achievements__item.trvtmpl-empty {
    display: flex;
    flex-direction: column;
}
.trvtmpl-achievements__item.trvtmpl-empty::before {
    content: "";
    background-image: url("../images/jpg/achievement-empty-bg.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.trvtmpl-achievements__body .swiper {
    overflow: visible;
}
.trvtmpl-achievements__body .swiper-wrapper {
    height: auto;
}
/* ACHIEVEMENTS END */

/* TEAM */
.trvtmpl-section.trvtmpl-section--team {
    padding-top: 150px;
}
.trvtmpl-team__header {
    width: 826px;
    margin: 0 auto 35px;
}
.trvtmpl-team__header h1 {
    text-indent: 110px;
    margin: 0;
}
.trvtmpl-team .swiper {
    overflow: visible;
}
.trvtmpl-team__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    margin-left: -25px;
    margin-top: -30px;
}
.trvtmpl-team__item {
    border-radius: 40px;
    width: calc(33.33% - 25px);
    margin-left: 25px;
    margin-top: 30px;
    text-decoration: none;
}
.trvtmpl-team__item-image {
    position: relative;
    border-radius: 32px;
    padding-bottom: 119%;
    overflow: hidden;
}
.trvtmpl-team__item-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.trvtmpl-team__item-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    position: absolute;
    margin-top: 15px;
    padding-bottom: 10px;
    left: 0;
    bottom: 0;
    padding: 16px 49px 16px 25px;
    background-color: #272727;
    border-radius: 0px 30px;
}
.trvtmpl-team__item-title {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--trvtmplTemplateColorMain);
}
.trvtmpl-team__item-position {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);
}
/* TEAM END */

/* ABOUT */
.trvtmpl-about__header {
    width: 623px;
    margin-bottom: 35px;
}
.trvtmpl-about__header h2 {
    margin: 0;
}
.trvtmpl-about__text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0.5;
}
.trvtmpl-about__text--top a {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}
.trvtmpl-about__text--top {
    width: calc(460px + 68px);
    margin-left: auto;
    padding-right: 68px;
}
.trvtmpl-about__text--bottom {
    width: calc(473px + 175px);
    margin-top: 165px;
    padding-left: 175px;
    margin-right: auto;
}
.trvtmpl-about__image-wrapper {
    width: 540px;
    height: 623px;
    position: relative;
    margin: 75px auto 0;
}
.trvtmpl-about__image {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.trvtmpl-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trvtmpl-about__digits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ABOUT END */

/* DIGITS */
.trvtmpl-digits__item {
    position: absolute;
    padding: 32px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #232323;
    border-radius: 36px;
}
.trvtmpl-digits__item::before {
    content: "";
    display: block;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #353535;
    position: absolute;
    border-radius: 30px;
}
.trvtmpl-digits__item p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: #ffffff;

    margin: 0;
    opacity: 0.8;
}
.trvtmpl-digits__item p:first-child {
    font-family: "Cormorant Infant";
    font-style: normal;
    font-weight: 500;
    font-size: 78px;
    line-height: 94px;
    color: var(--trvtmplTemplateColorMain);
}
.trvtmpl-digits__item p .sign {
    font-family: "Cormorant Infant";
    font-size: 48px;
    font-weight: 600;
}
.trvtmpl-digits__item:nth-child(1) {
    top: 62px;
    right: 0;
    transform: translateX(115%);
}
.trvtmpl-digits__item:nth-child(2) {
    top: 206px;
    left: 0;
    transform: translateX(-115%);
}
.trvtmpl-digits__item:nth-child(3) {
    bottom: 0;
    right: 73px;
    transform: translateY(50%);
}
.trvtmpl-digits__item:nth-child(n + 4) {
    display: none;
}
/* DIGITS END */

@media screen and (max-width: 1060px) {
    /* CONTACTS BLOCK */
    .trvtmpl-contacts-block__inner-wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* CONTACTS BLOCK END */
    /* TEAM PAGE */
    /* .trvtmpl-team-page .trvtmpl-team__items {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: -15px;
        margin-top: -15px;
    }
    .trvtmpl-team-page .trvtmpl-team__item {
        width: calc(33% - 15px);
        margin-left: 15px;
        margin-top: 15px;
    } */
    /* TEAM PAGE END */
}

@media screen and (max-width: 1000px) {
    h1 {
        font-size: 32px;
        line-height: 38px;
    }

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

    p {
        font-size: 15px;
        line-height: 22px;
    }

    ul {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.02em;

        padding-inline-start: 17px;
    }

    /* BLOCK HEADER */
    .trvtmpl-block-header {
        text-align: left;
    }
    .trvtmpl-block-header p {
        width: 100%;
    }
    /* BLOCK HEADER END */

    /* BLOCK BG */
    /* BLOCK BG END*/

    /* PAGE HEADER */
    .trvtmpl-page-header h1 {
        font-size: 32px;
        line-height: 38px;
    }
    /* PAGE HEADER END */

    /* CONTAINER */
    .trvtmpl-container {
        max-width: 100%;
    }
    .trvtmpl-container.trvtmpl-container-unset-m {
        padding-left: 0;
        padding-right: 0;
    }
    /* CONTAINER END */

    /* SECTION */
    .trvtmpl-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    /* SECTION END */
.trvtmpl-logo img {
    max-width: 230px;
}
    /* MAP */
    #map {
        height: 450px;
    }
    /* MAP END */

    /* HEADER */
    .trvtmpl-header__inner-wrapper {
        padding: 20px var(--trvtmplContainerPadding);
    }
    .trvtmpl-header__address,
    .trvtmpl-header__socials,
    .trvtmpl-header__top-request {
        display: none;
    }
    .trvtmpl-header__phone {
        font-size: 0;
        line-height: 14px;
    }
    .trvtmpl-header__phone a {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .trvtmpl-header__phone .trvtmpl-icon--phone-icon {
        display: unset;
        fill: transparent;
        height: 30px;
        width: 30px;
    }
    .trvtmpl-header__right-col {
        column-gap: 16px;
    }
    .trvtmpl-header__bottom {
        margin: 30px 0 0;
    }
    .trvtmpl-header__page-title {
        text-align: left;
    }
    .trvtmpl-header__page-title p {
        display: none;
    }
    .trvtmpl-logo {
        width: 80%;
    }
    /* HEADER END */

    /* TV SEARCH */
    .trvtmpl-search__module {
        min-height: 386px;
    }
    .trvtmpl-search__inner-wrapper {
        padding-top: 98px;
        padding-bottom: 0px;
    }
    .trvtmpl-search__socials {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 65px;
        margin-left: auto;
        height: auto;
    }
    .trvtmpl-search__socials .trvtmpl-socials {
        flex-direction: column;
    }
    .trvtmpl-search__socials .trvtmpl-socials__item {
        height: 30px;
        width: 30px;
    }
    .trvtmpl-search__title {
        text-align: left;
        margin-bottom: 12px;
    }
    .trvtmpl-search__title p {
        display: none;
    }
    .trvtmpl-search__bg {
        height: 70%;
    }
    .trvtmpl-search__request {
        display: block;
        margin-bottom: 50px;
    }
    /* TV SEARCH END */

    /* TV HOT */
    .trvtmpl-tv-hot__header {
        margin-bottom: 20px;
    }
    /* TV HOT END */

    /* MENU */
    .trvtmpl-header__menu {
        height: auto;
        max-height: 100vh;
        top: 15px;
        right: 15px;
        width: calc(100% - 30px);

        padding: 30px 25px 30px 30px;
        background: #222222;
        border-radius: 30px;
        border: none;
        overflow: auto;
        text-align: left;
    }
    .trvtmpl-header__menu-close,
    .trvtmpl-header__menu-socials,
    .trvtmpl-header__menu-contacts,
    .trvtmpl-header__menu-request {
        display: block;
    }
    .trvtmpl-header__menu li {
        font-weight: 400;
        font-size: 16px;
        line-height: 16px;
    }
    .trvtmpl-header__menu-close {
        position: absolute;
        top: 30px;
        right: 25px;
    }
    .trvtmpl-header__menu a,
    .trvtmpl-header__menu li > span {
        justify-content: unset;
    }
    .trvtmpl-header__menu li.trvtmpl-menu__item--parent > span,
    .trvtmpl-header__menu .trvtmpl-menu nav > ul > li > a {
        opacity: 1;
    }
    .trvtmpl-header__menu a:hover::after {
        display: none;
    }
    .trvtmpl-header__menu-contacts,
    .trvtmpl-header__menu-socials {
        position: relative;
        color: #ffffff;
        margin-top: 25px;
        padding-top: 25px;
    }
    .trvtmpl-header__menu-contacts::before,
    .trvtmpl-header__menu-socials::before {
        content: "";
        width: 100%;
        height: 1px;
        background-color: #ffffff;
        opacity: 0.08;
        position: absolute;
        top: 0;
    }
    .trvtmpl-header__menu-socials .trvtmpl-socials__item {
        height: 30px;
        width: 30px;
    }
    .trvtmpl-header__menu-phone {
        font-weight: 400;
        font-size: 18px;
        line-height: 16px;
        color: #ffffff;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .trvtmpl-header__menu-phone .trvtmpl-phone {
        flex-direction: row-reverse;
    }
    .trvtmpl-header__menu-phone .trvtmpl-phone .trvtmpl-icon--phone-icon path.phone-icon--pattern {
        fill: var(--trvtmplTemplateColorMain);
    }
    .trvtmpl-header__menu-phone .trvtmpl-phone .trvtmpl-icon--phone-icon path.phone-icon--bg {
        display: none;
    }
    .trvtmpl-header__menu-address {
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 21px;
        opacity: 0.4;

        margin-top: 10px;
    }
    .trvtmpl-header__menu-request {
        margin-top: 25px;
    }
    .trvtmpl-header__menu .trvtmpl-menu__item--parent {
        justify-content: flex-start;
    }
    /* MENU END */

    /* OVERLAY */
    .trvtmpl-overlay {
        z-index: 0;
    }
    /* OVERLAY END */

    /* TV MIN PRICE TV HOT SECTION */
    .trvtmpl-section--tv-min-price-tv-hot {
        padding-top: 20px;
    }
    /* TV MIN PRICE TV HOT SECTION END */

    /* GUIDE */
    .trvtmpl-guide__header {
        margin-bottom: 20px;
    }
    .trvtmpl-guide::after {
        display: none;
    }
    .trvtmpl-guide::before {
        top: 45px;
        right: 0;
        transform: translate(65%, 0) scale(0.7);
    }
    .trvtmpl-guide__items {
        flex-direction: column;
    }
    .trvtmpl-guide__item {
        width: 100%;
        padding: 0;
        text-align: left;
        flex-direction: row;
        align-items: center;
    }
    .trvtmpl-guide__item p {
        font-size: 16px;
        line-height: 22px;
    }
    .trvtmpl-guide__item::before {
        font-size: 28px;
        line-height: 34px;

        min-height: 36px;
        min-width: 36px;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .trvtmpl-guide__item:nth-child(n + 4) {
        margin-top: 0;
    }
    .trvtmpl-guide__item:not(:first-child) {
        margin-top: 25px;
    }
    .trvtmpl-guide__item:not(.with-separator) .trvtmpl-icon--guide-separator-icon {
        display: unset;
    }
    .trvtmpl-guide__item:first-child .trvtmpl-icon--guide-separator-icon {
        display: none;
    }
    .trvtmpl-guide__item .trvtmpl-icon--guide-separator-icon {
        left: -25px;
        top: -18px;
        transform: rotate(270deg) translate(-0%, 0%);
        width: 35px;
        height: auto;
    }
    .trvtmpl-guide__item .trvtmpl-icon--guide-separator-icon path {
        opacity: 0.2;
    }
    /* GUIDE END */

    /* MESSENGER */
    .trvtmpl-messenger__inner-wrapper {
        padding-top: 50px;
        flex-direction: column;
    }
    .trvtmpl-messenger__text {
        text-align: center;
    }
    .trvtmpl-messenger__text h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .trvtmpl-messenger__text p {
        font-size: 18px;
        line-height: 27px;
    }
    .trvtmpl-messenger__image {
        margin: 30px auto 0;
    }
    /* MESSENGER END */

    /* REVIEWS */
    .trvtmpl-reviews_inner-wrapper .swiper {
        overflow: visible;
    }
    .trvtmpl-reviews__header a {
        display: none;
    }
    .trvtmpl-reviews__items {
        flex-wrap: nowrap;
        transform: unset;
        margin-top: 0;
        margin-left: 0;
        padding: 0 20px;
    }
    .trvtmpl-reviews__item {
        width: 300px;
        margin-top: 0;
        margin-left: 0;
    }
    .trvtmpl-reviews__item-body {
        padding: 30px 30px 45px 30px;
    }
    .trvtmpl-reviews__footer {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    .trvtmpl-reviews__footer a {
        margin-left: 0;
        transform: unset;
    }
    /* REVIEWS END */

    /* NEWS */
    .trvtmpl-news__header {
        text-align: center;
        margin-bottom: 25px;
    }
    .trvtmpl-news__header a {
        display: none;
    }
    .trvtmpl-news .swiper {
        display: flex;
        justify-content: center;
        padding: 0 20px;
    }
    .trvtmpl-news__items {
        display: flex;
        gap: 0;
    }
    .trvtmpl-news__item-link {
        flex-direction: column;
    }
    .trvtmpl-news__item-link,
    .trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-link {
        padding: 9px;
    }
    .trvtmpl-news__item-image,
    .trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-image {
        width: 100%;
        height: 157px;
    }
    .trvtmpl-news__item-body,
    .trvtmpl-news__item:nth-child(1) .trvtmpl-news__item-body {
        padding: 20px 16px;
    }
    .trvtmpl-news__item {
        width: 300px;
        max-height: 322px;
        height: auto;
    }
    .trvtmpl-news__item:nth-child(n + 4) {
        display: block;
    }
    .trvtmpl-news__item-content {
        display: none;
    }
    .trvtmpl-news__footer {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    .trvtmpl-news__footer a {
        margin-left: 0;
        transform: unset;
    }
    /* NEWS END */

    /* REVIEWS */
    .trvtmpl-reviews-page__item {
        width: calc(50% - 20px);
        margin-top: 20px;
        margin-left: 20px;
        max-height: unset;
    }
    .trvtmpl-reviews-page__item-body {
        padding: 30px 30px 45px 30px;
    }
    /* REVIEWS END */

    /* MATCH TOUR */
    .trvtmpl-section--match-tour-contacts {
        padding-bottom: 0;
    }
    .trvtmpl-match-tour__inner-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }
    .trvtmpl-match-tour__right-col {
        margin-left: 0;
        margin-top: 35px;
        width: auto;
        max-width: 450px;
    }
    .trvtmpl-match-tour__left-col {
        border-radius: 0;
        padding: 0;
        background-color: transparent;
    }
    .trvtmpl-match-tour__left-col::before {
        display: none;
    }
    /* MATCH TOUR END */

    /* BENEFITS */
    .trvtmpl-benefits__header {
        margin-bottom: 50px;
    }
    .trvtmpl-benefits__images .swiper-slide {
        width: 146px;
        height: 146px;
    }
    .trvtmpl-benefits__images .swiper-slide:nth-child(even) {
        margin-top: 37px;
    }
    .trvtmpl-benefits__items-header {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }
    .trvtmpl-benefits__items {
        --column-gap: 0;
    }
    .trvtmpl-benefits__item {
        width: 100%;
        padding: 23px;
    }
    .trvtmpl-benefits__item::before {
        font-size: 26px;
        line-height: 36px;
    }
    .trvtmpl-benefits__item:nth-child(odd) {
        border-radius: 0;
        background-color: transparent;
    }
    .trvtmpl-benefits__item p {
        font-weight: 400;
        font-size: 15px;
        line-height: 22px;
    }
    .trvtmpl-benefits__item:nth-child(odd):first-child {
        padding-top: 0;
    }
    .trvtmpl-benefits__item:nth-child(odd):last-child {
        padding-bottom: 0;
    }
    /* BENEFITS END */

    /* CONTACTS BLOCK */
    .trvtmpl-contacts-block {
        width: 100%;
    }
    .trvtmpl-contacts-block__inner-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }
    .trvtmpl-contacts-block__item:not(:first-child) {
        padding-left: 0;
        margin-left: 0;
        margin-top: 15px;
    }
    .trvtmpl-contacts-block__item:not(:first-child)::before {
        display: none;
    }
    .trvtmpl-contacts-block__item-icon {
        padding: 6px;
    }
    .trvtmpl-contacts-block__item-icon-bg {
        width: 33px;
        height: 33px;
    }
    .trvtmpl-contacts-block__item-value {
        font-size: 18px;
        line-height: 25px;
    }
    .trvtmpl-contacts-block__item-desc {
        font-size: 14px;
        line-height: 20px;
    }
    /* CONTACTS BLOCK END */

    /* CIRCLES */
    .trvtmpl-section.trvtmpl-section--circles {
        padding-top: 94px;
    }
    .trvtmpl-circles__inner-wrapper {
        display: flex;
        flex-direction: column;
        padding: 0 30px;
    }
    .trvtmpl-circles__title {
        width: 100%;
        margin-top: 30px;
    }
    .trvtmpl-circles__title h1 {
        text-indent: 0px;
    }
    .trvtmpl-circles__image:nth-child(n + 10) {
        display: none;
    }
    .trvtmpl-circles__images {
        order: -1;
        margin-top: 0;
    }
    .trvtmpl-circles__text {
        max-width: 100%;
        margin-top: 16px;
    }
    .trvtmpl-circles__text p {
        font-size: 16px;
        line-height: 24px;
        opacity: 0.5;

        width: 100%;
        margin-top: 16px;
    }
    /* CIRCLES END */

    /* ACHIEVEMENTS */
    .trvtmpl-achievements {
        padding-bottom: 30px;
        margin-bottom: -30px;
    }
    .trvtmpl-achievements__nav {
        display: none;
    }
    .trvtmpl-achievements__body {
        margin-top: 25px;
    }
    .trvtmpl-achievements__item {
        width: 237px;
        height: 335px;
        background: #272727;
        box-shadow: 0px 6px 45px rgba(0, 0, 0, 0.06);
        border-radius: 25px;
        position: relative;
    }
    .trvtmpl-achievements__item.trvtmpl-empty::before {
        background-image: url("../images/svg/achievement-empty-bg.svg");
        height: 242px;
        background-size: 100% 100%;
        position: absolute;
        top: 22px;
        left: 50%;
        transform: translateX(-50%);
    }
    .trvtmpl-achievements__item.trvtmpl-empty::after {
        content: "ваш\Aсертификат";
        font-style: normal;
        font-weight: 400;
        font-size: 26px;
        line-height: 31px;
        color: var(--trvtmplTemplateColorMain);

        opacity: 0.5;
        position: absolute;
        left: 23px;
        bottom: 22px;
    }
    /* ACHIEVEMENTS END */

    /* TEAM */
    .trvtmpl-section.trvtmpl-section--team {
        padding-top: 92px;
    }
    .trvtmpl-team__header {
        width: 100%;
        margin-bottom: 25px;
    }
    .trvtmpl-team__header h1 {
        text-indent: 0;
    }
    .trvtmpl-team {
        overflow: hidden;
    }
    .trvtmpl-team .swiper {
        overflow: visible;
    }
    .trvtmpl-team__items {
        flex-wrap: nowrap;
        justify-content: unset;
        margin-left: 0;
        margin-top: 0;
    }
    .trvtmpl-team__item {
        width: 320px;
        margin-left: 0;
        margin-top: 0;
    }
    /* TEAM END */

    /* ABOUT */
    .trvtmpl-about__header {
        width: 100%;
        margin-bottom: 16px;
    }
    .trvtmpl-about__image-wrapper {
        width: 100%;
        max-width: 274px;
        height: 369px;
    }
    .trvtmpl-about__text--top {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
    }
    .trvtmpl-about__text--bottom {
        width: 100%;
        margin-top: 103px;
        padding-left: 0;
        margin-right: 0;
    }
    .trvtmpl-about__image-wrapper {
        margin-top: 40px;
    }
    .trvtmpl-about__image {
        border-radius: 30px;
    }
    /* ABOUT END */

    /* DIGITS */
    .trvtmpl-digits__item {
        padding: 22px 26px;
    }
    .trvtmpl-digits__item p {
        font-size: 14px;
        line-height: 18px;
    }
    .trvtmpl-digits__item p:first-child {
        font-size: 64px;
        line-height: 58px;
    }
    .trvtmpl-digits__item p .sign {
        font-size: 44px;
    }
    .trvtmpl-digits__item:nth-child(1) {
        top: -24px;
        right: -23px;
        transform: none;
    }
    .trvtmpl-digits__item:nth-child(2) {
        top: 126px;
        left: -23px;
        transform: none;
    }
    .trvtmpl-digits__item:nth-child(3) {
        bottom: -73px;
        right: 25px;
        transform: none;
    }
    /* DIGITS END*/

    /* FOOTER MENU */
    .trvtmpl-footer__menu nav {
        margin-top: -10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .trvtmpl-footer__menu ul {
        flex-direction: column;
    }
    .trvtmpl-footer__menu li:not(:first-child),
    .trvtmpl-menu__item--parent ~ ul {
        margin-left: 0;
    }
    .trvtmpl-footer__menu nav > ul:not(:first-child) {
        margin-top: 30px;
    }
    .trvtmpl-footer__menu nav > ul {
        width: 45%;
        padding: 0;
        margin-top: 30px;
    }
    .trvtmpl-footer__menu li {
        font-size: 14px;
        line-height: 22px;
    }
    .trvtmpl-footer__menu li:not(:first-child),
    .trvtmpl-footer__menu li.trvtmpl-menu__item--parent ~ ul {
        margin-top: 16px;
    }
    /* FOOTER MENU END */

    /* FOOTER */
    .trvtmpl-footer__inner-wrapper {
        padding-top: 35px;
    }
    .trvtmpl-footer__subcription {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }
    .trvtmpl-footer__subcription-title h2 {
        font-size: 28px;
        line-height: 31px;
    }
    .trvtmpl-footer__subcription-button {
        margin-top: 15px;
    }
    .trvtmpl-footer__contacts {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.02em;

        text-align: left;
        margin-left: 0;
        margin-top: 26px;
        max-width: 100%;
    }
    .trvtmpl-footer__phone .trvtmpl-phone {
        justify-content: flex-start;
    }
    .trvtmpl-footer__logo-menu {
        flex-direction: column;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .trvtmpl-footer__menu {
        margin-left: 0;
    }
    .trvtmpl-footer__bottom {
        margin-top: 20px;
        padding: 20px 0;
        flex-direction: column;
    }
    .trvtmpl-footer__link {
        margin-left: 0;
        text-align: left;
    }
    .trvtmpl-footer__link {
        margin-top: 10px;
    }
    /* FOOTER END */

    /* MAIN PAGE */
    .trvtmpl-body--main-page .trvtmpl-header__inner-wrapper {
        padding-bottom: 15px;
    }
    .trvtmpl-body--main-page .trvtmpl-header__bottom {
        margin-top: 65px;
    }
    /* MAIN PAGE END */

    /* ABOUT PAGE */
    /* .trvtmpl-body.about-page .trvtmpl-header__bg {
        height: 840px;
    } */
    /* ABOUT PAGE END */

    /* NEWS PAGE */
    .trvtmpl-news-page__items {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        margin-top: -20px;
        margin-left: -20px;
    }
    .trvtmpl-news-page__items .trvtmpl-news__item {
        width: calc(50% - 20px);
        margin-top: 20px;
        margin-left: 20px;
        max-height: unset;
    }
    .trvtmpl-news-page .trvtmpl-news__item-title {
        font-size: 18px;
        line-height: 22px;
    }
    /* NEWS PAGE END */

    /* COUNTRY */
    .country-page .trvtmpl-header__bottom {
        display: none;
    }
    /* COUNTRY END */
}

@media screen and (max-width: 767px) {
    /* TEAM PAGE */
    .trvtmpl-team-page .trvtmpl-team__item {
        width: calc(50% - 15px);
    }
    .trvtmpl-team-page__item img {
        float: unset;
        margin-right: 0;
    }
    .trvtmpl-team-page__item p {
        padding-top: 0;
    }
    /* TEAM PAGE END */

    /* CIRCLES */
    .trvtmpl-circles__image:nth-child(1) {
        width: 74px;
        height: 74px;
        left: unset;
        top: unset;
        right: 0.67%;
        bottom: 14.66%;
    }
    .trvtmpl-circles__image:nth-child(2) {
        width: 77px;
        height: 77px;
        top: unset;
        right: unset;
        left: 30.67%;
        bottom: 0.75%;
    }
    .trvtmpl-circles__image:nth-child(3) {
        width: 32px;
        height: 32px;
        right: unset;
        bottom: unset;
        left: 1%;
        top: 20.3%;
    }
    .trvtmpl-circles__image:nth-child(4) {
        width: 50px;
        height: 50px;
        right: unset;
        bottom: unset;
        left: 20.33%;
        top: 5.26%;
    }
    .trvtmpl-circles__image:nth-child(5) {
        width: 50px;
        height: 50px;
        left: unset;
        top: unset;
        right: 27.67%;
        bottom: 39.1%;
    }
    .trvtmpl-circles__image:nth-child(6) {
        width: 84px;
        height: 84px;
        left: unset;
        bottom: unset;
        right: 34.33%;
        top: 23.68%;
    }
    .trvtmpl-circles__image:nth-child(7) {
        width: 52px;
        height: 52px;
        left: unset;
        bottom: unset;
        right: 2.33%;
        top: 23.31%;
    }
    .trvtmpl-circles__image:nth-child(8) {
        width: 57px;
        height: 57px;
        left: unset;
        bottom: unset;
        right: 23.33%;
        top: 0%;
    }
    .trvtmpl-circles__image:nth-child(8) {
        width: 57px;
        height: 57px;
        right: 23.33%;
        top: 0%;
    }
    .trvtmpl-circles__image:nth-child(n + 9) {
        width: 87px;
        height: 87px;
        left: 3.33%;
        bottom: 29.32%;
        display: block;
    }
    .trvtmpl-circles__image:nth-child(n + 10) {
        display: none;
    }
    /* CIRCLES END */
}

@media screen and (max-width: 640px) {
    /* HEADER  */
    .trvtmpl-header__page-desc-inner-wrapper {
        max-width: 100%;
        padding: 0 25px;
    }
    .trvtmpl-header__page-desc-content {
        position: unset;
    }
    .trvtmpl-header__page-desc-before-icon {
        bottom: unset;
        top: 0;
        transform: translateX(-62%) translateY(-90%);
    }
    .trvtmpl-header__page-desc-after-icon {
        transform: translateX(10%) translateY(70%) rotate(270deg);
    }
    /* HEADER END */
}

@media screen and (max-width: 500px) {
    /* NEWS PAGE */
    .trvtmpl-news-page__items {
        margin-top: 0;
        margin-left: 0;
    }
    .trvtmpl-news-page__items .trvtmpl-news__item {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }
    /* NEWS PAGE END */

    /* REVIEWS */
    .trvtmpl-reviews-page__items {
        margin-left: 0;
        margin-top: 0;
    }
    .trvtmpl-reviews-page__item {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }
    .trvtmpl-reviews-page__item:not(:first-child) {
        margin-top: 20px;
    }
    /* REVIEWS END */

    /* TEAM PAGE */
    .trvtmpl-team-page .trvtmpl-team__items {
        margin-left: 0;
        margin-top: 0;
    }
    .trvtmpl-team-page .trvtmpl-team__item {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .trvtmpl-team-page .trvtmpl-team__item:not(:first-child) {
        margin-top: 15px;
    }
    /* TEAM PAGE END */
}

/* @media screen and (max-width: 639px) {
    .trvtmpl-countries-p h1 {
        display: none;
    }
}

div#mod-custom341 {
    width: 100%;
    height: 820px;
    overflow: hidden;
    text-align: -webkit-center;
    position: relative;
    margin: auto;
}
@media screen and (max-width: 767px) {
    #mod-custom341 > div {
        width: 100% !important;
    }
}
#mod-custom341 > p > iframe {
    width: 100%;
} */
