@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    src: url('//static.tourvisor.ru/fonts/Montserrat/Montserrat-Variable-Cyrillic.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    src: url('//static.tourvisor.ru/fonts/Montserrat/Montserrat-Variable-Latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    src: url('//static.tourvisor.ru/fonts/Montserrat/Montserrat-Variable-Latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
    font-family: "Montserrat" !important;
}
html {
    overflow-x: hidden;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    min-width: 360px;
    /*min-height: 100vh;*/
    /*height: 100%;*/
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
:root {
    /*
    --trvMainColor: #2F80ED;
    --trvBtnSecFontColor: #2F80ED;
*/
    --trvContainerMaxWidth: 1200px;
    --trvContainerPadding: 20px;
    --trvMainColor: #027AD0;
    --trvBgLightColor: #F4F7FB;
    --trvBgMediumColor: #EEF2F8;
    --trvAccentColor: #FF6856;
    --trvFontBlackColor: #2B3F5A;
    --trvFontWhiteColor: #FFFFFF;
    --trvFontDarkBlueColor: #82B3F4;
    --trvFontLightBlueColor: #ACCCF8;
    --trvFontDarkGreyColor: #808C9C;
    --trvFontLightGreyColor: #AAB2BD;
    --trvBtnBgColor: #FF6856;
    --trvBtnBgHoverColor: #EA5543;
    --trvBtnBgActiveColor: #EA5543;
    --trvBtnBgClickColor: #CC4433;
    --trvBtnBgDisabledColor: #FFF0EE;
    --trvBtnTransBgColor: transparent;
    --trvBtnTransBgHoverColor: #F1F7FF;
    --trvBtnTransBgActiveColor: #F1F7FF;
    --trvBtnTransBgClickColor: #F1F7FF;
    --trvBtnTransBgDisabledColor: #EEF2F8;
    --trvBtnBgTransition: background-color .2s ease-in-out;
    --trvBtnSecFontColor: #027AD0;
    --trvBtnSecBorderColor: #82B3F4;
    --trvBtnSecBgColor: transparent;
    --trvBtnSecBgHoverColor: #F1F7FF;
    --trvBlockRoundedRadius: 100px;
    --trvBlockRoundedSm30Radius: 100px;
    --trvBlockMarginBDefault: 90px;
    --trvBlockMarginB70: 70px;
    --trvLinksHoverOpacity: .7;
    --trvPaddingMaxWidth: calc(((100vw - var(--trvContainerMaxWidth) + var(--trvContainerPadding) * 2) / 2) - 10px);
    --trvMediaLg: 1000px;
    --trvMediaSmMenu: 1000px;
    --trvMediaSm: 900px;
}

/*GENERAL*/
.trv-container {
    max-width: var(--trvContainerMaxWidth);
    padding-left: var(--trvContainerPadding);
    padding-right: var(--trvContainerPadding);
    margin: auto;
}

a {
    transition: opacity .3s;
}

em {
    font-style: normal;
    color: var(--trvMainColor);
}

img {
    image-rendering: -webkit-optimize-contrast;
}

.trv-btn {
    display: inline-block;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    text-decoration: none;
    background-color: var(--trvBtnBgColor);
    border-radius: 7px;
    padding: 15px 30px;
    transition: var(--trvBtnBgTransition);
    border: 1px solid transparent;
}

.trv-btn--lg {
    padding: 17px 30px;
    font-size: 15px;
    line-height: 21px;
}

.trv-btn--md {
    padding: 14px 28px;
    font-size: 13px;
    line-height: 18px;
}

.trv-btn--sm {
    padding: 12px 24px;
    font-size: 12px;
    line-height: 17px;
}

.trv-btn:hover {
    background-color: var(--trvBtnBgHoverColor);
}

.trv-btn:active, .trv-btn--active {
    background-color: var(--trvBtnBgActiveColor);
}

.trv-btn:disabled, .trv-btn--disabled {
    background-color: var(--trvBtnBgDisabledColor);
}

.trv-btn--transparent {
    border: 1px solid var(--trvMainColor);
    background-color: var(--trvBtnTransBgColor);
    color: var(--trvMainColor);
}

.trv-btn--transparent:hover, .trv-btn.trv-btn--transparent:active, .trv-btn--active.trv-btn--transparent {
    background-color: var(--trvBtnTransBgActiveColor);
}

.trv-btn.trv-btn--transparent:disabled, .trv-btn--disabled.trv-btn--transparent {
    color: var(--trvFontLightBlueColor);
    border-color: transparent;
}

.trv-btn--secondary {
    color: var(--trvBtnSecFontColor);
    border-color: var(--trvBtnSecBorderColor);
    background-color: var(--trvBtnSecBgColor);
}

.trv-btn--secondary:hover {
    border-color: var(--trvBtnSecBorderColor);
    background-color: var(--trvBtnSecBgHoverColor);
}

.trv-btn--blue-main {
    background-color: var(--trvMainColor);
    color: var(--trvFontWhiteColor);
    transition: opacity .3s;
}

.trv-btn--blue-main:hover {
    background-color: var(--trvMainColor);
    opacity: var(--trvLinksHoverOpacity);
}

.trv-tab {
    background-color: var(--trvBgMediumColor);
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
}

.trv-tab--active {
    background-color: var(--trvMainColor);
    color: var(--trvFontWhiteColor);
}

.trv-socials, .trv-socials a {
    display: flex;
    align-items: center;
    transition: color .3s;
}

.trv-socials path {
    transition: fill .3s;
}

.trv-socials a:hover {
    color: var(--trvMainColor);
}

.trv-socials a:not(:last-child) {
    margin-right: 14px;
}

.trv-svg-sprites, .trv-svg-sprites--img {
    display: none;
}

h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: -0.02em;
    margin: 0 0 30px 0;
}

h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 30px 0;
}

h4 {
    color: var(--trvFontBlackColor);
}

/*p{*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    font-size: 15px;*/
/*    line-height: 22px;*/
/*    letter-spacing: -0.02em;*/
/*    color: var(--trvFontDarkGreyColor);*/
/*}*/
ol li {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkGreyColor);
}

.trv-block {
    margin-bottom: 70px;
}

.trv-body.trv-body--min-height {
    --minHeightValue: 0;
    min-height: var(--minHeightValue);
}

.trv-body.trv-body--overflowXClip {
    overflow-x: clip;
}

.trv-ul {
    margin: 0 0 30px;
    padding: 0;
}

.trv-ul li {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    display: flex;
    align-items: center;
}

.trv-ul--def li {
    align-items: flex-start;
}

.trv-ul li:not(:last-child) {
    margin-bottom: 10px;
}

.trv-ul li::before {
    content: "";
    display: block;
    width: 5px;
    min-width: 5px;
    height: 5px;
    min-height: 5px;
    border-radius: 50%;
    background-color: var(--trvMainColor);
    margin-right: 10px;
}

.trv-ul b,
.trv-ul a{
    display: contents;
}

.trv-ul--def li::before {
    transform: translateY(7px);
}

.trv-ul-blue li {
    display: flex;
}

.trv-ul-blue li:not(:last-child) {
    margin-bottom: 10px;
}

.trv-ul-blue li::before {
    content: "";
    display: block;
    width: 5px;
    min-width: 5px;
    height: 5px;
    min-height: 5px;
    border-radius: 50%;
    background-color: var(--trvMainColor);
    margin-right: 10px;
}

.trv-ul--marker-pat li::before {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    background-color: transparent;
    background-image: url("../images/svg/ul--marker-pat.svg");
    background-size: cover;
    border-radius: none;
}

.trv-ul--dash li::before {
    transform: translateY(0px);
    content: "\2013";
    width: 0;
    font-weight: 600;
    min-width: 0;
    height: 0;
    color: var(--trvMainColor);
    min-height: 0;
    margin-right: 15px;
}

.trv-page-content .page-header h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
}

.trv-page-content {
    position: relative;
    background-color: var(--trvMainColor);
}

.trv-btn-tab {
    display: inline-block;
    background-color: var(--trvBgLightColor);
    border-radius: 6px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
    padding: 13px 15px;
    text-decoration: none;
    transition: background-color .3s, color .3s;
}

.trv-btn-tab:not(.trv-btn-tab--active):hover {
    background-color: var(--trvBgMediumColor);
}

.trv-btn-tab--active {
    background: var(--trvMainColor);
    color: var(--trvFontWhiteColor);
}

.trv-block-rounded {
    position: relative;
    border-radius: var(--trvBlockRoundedRadius);
    background-color: var(--trvBgLightColor);
    margin-top: calc(-1 * var(--trvBlockRoundedRadius));
    padding-top: var(--trvBlockRoundedRadius);
    padding-bottom: var(--trvBlockRoundedRadius);
}

.trv-block-rounded--sm-30 {
    border-radius: var(--trvBlockRoundedSm30Radius);
    margin-top: calc(-1 * var(--trvBlockRoundedSm30Radius));
    padding-top: var(--trvBlockRoundedSm30Radius);
    padding-bottom: var(--trvBlockRoundedSm30Radius);
}

.trv-block-rounded:nth-child(1), .trv-block-rounded--first-rounded {
    z-index: 1;
}

.trv-block-rounded:nth-child(2), .trv-block-rounded--second-rounded {
    z-index: 2;
}

.trv-block-rounded:nth-child(3), .trv-block-rounded--third-rounded {
    z-index: 3;
}

.trv-block-rounded:nth-child(4), .trv-block-rounded--fourth-rounded {
    z-index: 4;
}

.trv-block-rounded:nth-child(5), .trv-block-rounded--fifth-rounded {
    z-index: 5;
}

.trv-block-rounded:nth-child(6), .trv-block-rounded--sixth-rounded {
    z-index: 6;
}

.trv-block-rounded--up {
    border-radius: var(--trvBlockRoundedRadius) var(--trvBlockRoundedRadius) 0 0;
    padding-bottom: 0;
}

.trv-block-rounded--sm-30.trv-block-rounded--up {
    border-radius: var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius) 0 0;
    padding-bottom: 0;
}

.trv-block-rounded--bottom {
    padding-top: 0;
    border-radius: 0 0 var(--trvBlockRoundedRadius) var(--trvBlockRoundedRadius);
}

.trv-block-rounded--sm-30.trv-block-rounded--bottom {
    padding-top: 0;
    border-radius: 0 0 var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius);
}

.trv-before-block-rounded.trv-block-rounded--sm-30.trv-block-rounded--up, .trv-before-block-rounded {
    padding-bottom: var(--trvBlockRoundedSm30Radius);
}

.trv-before-block-rounded--sm-30.trv-block-rounded--sm-30.trv-block-rounded--up, .trv-before-block-rounded--sm-30 {
    padding-bottom: var(--trvBlockRoundedSm30Radius);
}

.trv-after-block-rounded.trv-block-rounded--sm-30.trv-block-rounded--up, .trv-after-block-rounded {
    padding-top: var(--trvBlockRoundedSm30Radius);
}

.trv-after-block-rounded--sm-30.trv-block-rounded--sm-30.trv-block-rounded--up, .trv-after-block-rounded--sm-30 {
    padding-top: var(--trvBlockRoundedSm30Radius);
}

.trv-block-rounded--white {
    background-color: #FFF;
}

.trv-block-rounded--light-grey {
    background-color: var(--trvBgLightColor);
}

.trv-block-rounded--medium-grey {
    background-color: var(--trvBgMediumColor);
}

.trv-block-intersection {
    --trvHeightBlock: 150px;
    transform: translateY(calc(-1 * var(--trvHeightBlock)));
    margin-bottom: calc(-1 * var(--trvHeightBlock));
}

.trv-block-before-intersection {
    --trvHeightBlock: 150px;
    position: relative;
}

.trv-block-before-intersection::after {
    content: "";
    display: block;
    margin-bottom: var(--trvHeightBlock);
}

.trv-block-with-first-intersection {
    padding-top: 0;
}

.trv-tag {
    display: flex;
    align-items: center;
    padding: 12px;
    justify-content: center;
    background: var(--trvMainColor);
    box-shadow: 0px 7px 15px rgb(27 111 223 / 70%);
    border-radius: 6px;
    border: 1px solid #75B0FF;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
}

.trv-tag::before {
    content: "";
    display: block;
    width: 13px;
    height: 14px;
    background-image: url(/templates/tourvisor/images/svg/modules-preivew--gift-icon.svg);
    background-size: cover;
    margin-right: 10px;
}

.trv-block-margin-b {
    margin-bottom: var(--trvBlockMarginBDefault);
}

.trv-block-padding-t {
    padding-top: var(--trvBlockMarginBDefault);
}

.trv-block-padding-b {
    padding-bottom: var(--trvBlockMarginBDefault);
}

.trv-block-margin-b-70 {
    margin-bottom: var(--trvBlockMarginB70);
}

.trv-block-padding-t-70 {
    padding-top: var(--trvBlockMarginB70);
}

.trv-block-padding-b-70 {
    padding-bottom: var(--trvBlockMarginB70);
}

.trv-m-b-10{
    margin-bottom: 10px;
}

.trv-m-l-13{
    margin-left: 13px;
}

.trv-not-loaded {
    border: 2px solid red;
}

.trv-b-header {
    background-color: var(--trvMainColor);
    padding: 60px var(--trvContainerPadding);
    color: #FFFFFF;
    max-width: var(--trvContainerMaxWidth);
    margin-left: auto;
    margin-right: auto;
}

.trv-b-header--flex {
    display: flex;
}

.trv-b-header--flex > p {
    width: 50%;
    margin: 0 0 0 auto;
}

.trv-b-header h1 {
    margin: 0;
}

.trv-b-header p {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
}

.trv-b-body {
    padding: var(--trvBlockRoundedSm30Radius) calc((100vw - var(--trvContainerMaxWidth) + var(--trvContainerPadding)) / 2);
    background-color: #FFFFFF;
    border-radius: var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius) 0 0;
}

.trv-b-rounded {
    position: relative;
    padding-top: var(--trvBlockRoundedSm30Radius);
    padding-bottom: var(--trvBlockRoundedSm30Radius);
    margin-bottom: calc(-1 * var(--trvBlockRoundedSm30Radius));
}

.trv-b-rounded::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    /*border-radius: var(--trvBlockRoundedSm30Radius);*/  
    border-radius: var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius) 0 0;
    background-color: var(--trvBgLightColor);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    /*border: 1px solid transparent;*/
}

.trv-b-rounded:nth-child(1) {
    z-index: 1;
}

.trv-b-rounded:nth-child(2) {
    z-index: 2;
}

.trv-b-rounded:nth-child(3) {
    z-index: 3;
}

.trv-b-rounded:nth-child(4) {
    z-index: 4;
}

.trv-b-rounded:nth-child(5) {
    z-index: 5;
}

.trv-b-rounded:nth-child(6) {
    z-index: 6;
}
.trv-b-rounded:nth-child(7) {
    z-index: 7;
}
.trv-b-rounded:nth-child(8) {
    z-index: 8;
    padding-bottom: 0;
}

.trv-body .trv-b-lindex {
    z-index: 1;
}

.trv-b-rounded--up {
    padding-bottom: 0;
    margin-bottom: 0;
}

.trv-b-rounded--up::before {
    border-radius: var(--trvBlockRoundedSm30Radius) var(--trvBlockRoundedSm30Radius) 0 0;
}

.trv-b-rounded--white {
    background-color: var(--trvBgLightColor);
}

.trv-b-rounded--medium-grey {
    background-color: var(--trvBgMediumColor);
}

.trv-b-rounded--medium-grey::before {
    background-color: var(--trvBgMediumColor);
}

.trv-b-rounded--bg-white {
    background-color: #FFFFFF;
}

.trv-b-rounded--bg-light-grey {
    background-color: var(--trvBgLightColor);
}

.trv-b-rounded--bg-medium-grey {
    background-color: var(--trvBgMediumColor);
}

.trv-b-rounded--white::before {
    background-color: #FFFFFF;
}

.trv-b-rounded--bg-blue {
    background-color: var(--trvMainColor);
}

.trv-b-rounded--up {
}

.trv-b-rounded--up::before {
}

.trv-b-rounded > * {
    position: relative;
    z-index: 2;
}

.trv-body .trv-padding--0 {
    padding: 0;
}

.trv-el--border {
    border: 1px solid #a8a8a8;
    border-radius: 20px;
    padding: 20px;
}

.trv-bg--white {
    background-color: #FFF;
}

.trv-bg--light-grey {
    background-color: var(--trvBgLightColor);
}

.trv-el--hidden {
    display: none !important;
}

.trv-el--full-width {
    max-width: 100% !important;
    width: 100% !important;
}

.trv-block-padding-b-0 {
    padding-bottom: 0 !important;
}

/*HEADER*/
.trv-header {
    position: relative;
}

.trv-header__upper {
    background-color: #fff;
}

.trv-header__upper-inner-wrapper {
    display: flex;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
}

.trv-header__logo, .trv-header__tabs, .trv-header__add-menu {
    margin-right: 40px;
}

.trv-header__logo a {
    display: flex;
    color: var(--trvMainColor);
}

.trv-header__logo a svg {
    width: 120px;
    height: auto;
    overflow: visible;
}

.trv-header__tabs {
    padding: 3px;
    background-color: var(--trvBgMediumColor);
    border-radius: 6px;
}

.trv-header__tabs a {
    display: inline-block;
    transition: background-color .3s;
}

.trv-header__tabs a:not(.trv-tab--active):hover {
    background-color: var(--trvBgLightColor);
}

.trv-header__add-menu {
    margin-left: auto;
}

.trv-header__add-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.trv-header__add-menu li:not(:first-child) {
    margin-left: 30px;
}

.trv-header__add-menu-login {
    display: flex;
    align-items: center;
}

.trv-header__add-menu-login img {
    opacity: 0;
}

.trv-header__add-menu-login:has(.tv-auth-button.tv-loaded) img {
    opacity: 1;
}

.trv-header__add-menu svg, .trv-header__add-menu img {
    margin-right: 7px;
}

.trv-header__add-menu a {
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
    display: flex;
    align-items: center;
}

.trv-header__add-menu a:hover {
    opacity: var(--trvLinksHoverOpacity);
}

.trv-header__add-menu svg {
    color: var(--trvMainColor);
}

.trv-header__language {
    /*margin-left: auto;*/
    position: relative;
    display: flex;
    align-self: stretch;
    transform: translateY(-1px);
    z-index: 8;
}

.trv-header__language > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
}

.trv-header__language > a > img {
    margin-right: 8px;
    width: 19px;
    height: auto;
    border-radius: 2px;
}

.trv-header__language:not(.trv-header__language--phones-b2b) > a > svg {
    transform: translateY(1px);
}

.trv-header__language--phones-b2b > a > span {
    margin-right: 8px;
}

.trv-header__language-drop {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    transform: translateX(-13px);
    background-color: #FFFFFF;
    box-shadow: 0px -1px 13px rgba(43, 63, 90, 0.04), 0px 20px 15px rgba(43, 63, 90, 0.07);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.trv-header__language--phones-b2b .trv-header__language-drop {
    width: calc(100% + 26px);
}

.trv-header__language-drop a, .trv-header__language-drop > div {
    display: flex;
    align-items: center;
    padding: 14px;
    transition: background-color .3s;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    cursor: pointer;
}

.trv-header__language-drop > div a {
    padding: 0;
}

.trv-header__language-drop a:first-child, .trv-header__language-drop > div:first-child {
    margin-top: 13px;
}

.trv-header__language--active, .trv-header__language-drop a:hover, .trv-header__language-drop > div:hover {
    background-color: var(--trvBgMediumColor);
}

.trv-header__language-drop a img, .trv-header__language-drop > div img {
    margin-right: 10px;
    width: 19px;
    height: auto;
    border-radius: 2px;
}

.trv-header__language-drop--active {
    display: initial;
}

.trv-header__language > a::after {
    content: "";
    display: block;
    width: 10px;
    height: 6px;
    background-image: url("../images/svg/language-arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.trv-header__socials {
    margin-right: 40px;
}
.trv-header__socials.trv-socials .trv-soc--dzen, 
.trv-header__socials.trv-socials .trv-soc--yt {
    display: none;
}

.trv-header__socials a {
    color: var(--trvFontLightBlueColor);
}

.trv-header__lower-inner-wrapper {
    max-width: var(--trvContainerMaxWidth);
    padding-left: var(--trvContainerPadding);
    padding-right: var(--trvContainerPadding);
    margin: auto;
}

.trv-header__lower {
    background-color: var(--trvMainColor);
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.trv-header__lower ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.trv-header__lower li {
    position: relative;
}

.trv-header__lower .trv-menu > nav > ul > li {
    white-space: nowrap;
}

.trv-header__lower li::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    opacity: 0;
    transition: opacity .3s;
}

.trv-header__lower li:not(:last-child)::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 20%);
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(calc(-50%)) translateX(100%);
    pointer-events: none;
}

.trv-header__lower .trv-menu-item--active::after, .trv-header__lower li:hover::after {
    opacity: 1;
}

.trv-header__lower li:not(:last-child) {
    margin-right: 44px;
}

.trv-header__lower a {
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--trvFontWhiteColor);
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
}

.trv-header__lower-inner-wrapper, .trv-header__lower nav, .trv-header__lower a, .trv-header__lower ul {
    height: 100%;
}

.trv-header__lower--menu-out .trv-menu > nav > ul {
    justify-content: space-between;
}

.trv-header__lower--menu-out li:not(:last-child) {
    margin-right: 0;
}

.trv-header__lower--menu-out li:not(:last-child)::before {
    display: none;
}

.trv-header__mobile-burger, .trv-header__mobile-logo {
    display: none;
}

.trv-header__lower .trv-menu__submenu--2 {
    display: none;
}

.trv-menu__submenu {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: var(--trvBgMediumColor);
    z-index: 10;
    border-bottom: 5px solid #C5DBF9;
    box-shadow: 0px 100px 80px rgba(42, 68, 125, 0.07), 0px 41.7776px 33.4221px rgba(42, 68, 125, 0.0503198), 0px 22.3363px 17.869px rgba(42, 68, 125, 0.0417275), 0px 12.5216px 10.0172px rgba(42, 68, 125, 0.035), 0px 6.6501px 5.32008px rgba(42, 68, 125, 0.0282725), 0px 2.76726px 2.21381px rgba(42, 68, 125, 0.0196802);
    opacity: 0;
    pointer-events: none;
    /*transition: opacity .1s, pointer-events .1s;*/
}

.trv-menu__submenu--active {
    opacity: 1;
    pointer-events: auto;
}

.trv-menu__submenu-inner-wrapper {
    display: flex;
}

.trv-menu__submenu-rs, .trv-menu__submenu-ls {
    width: 50%;
}

.trv-menu__submenu-ls {
    background-color: var(--trvBgMediumColor);
}

.trv-menu__submenu-rs {
    background-color: var(--trvBgLightColor);
    border-left: 1px solid #E4E8EE;
}

.trv-menu__submenu-ls .trv-menu__submenu-section-inner-wrapper:first-child, .trv-menu__submenu-rs .trv-menu__submenu-section-inner-wrapper:first-child {
    padding-top: 50px;
}

.trv-menu__submenu-section {
    border-bottom: 1px solid #E4E8EE;
}

.trv-menu__submenu-section:last-child {
    border-bottom: none;
}

.trv-menu__submenu-section-inner-wrapper {
    padding-top: 30px;
    padding-bottom: 35px;
    max-width: calc(var(--trvContainerMaxWidth) / 2);
    /*padding-left: var(--trvContainerPadding);*/
    /*padding-right: var(--trvContainerPadding);*/
}

.trv-menu__submenu-ls .trv-menu__submenu-section-inner-wrapper {
    padding-left: var(--trvContainerPadding);
    margin-left: auto;
}

.trv-menu__submenu-rs .trv-menu__submenu-section-inner-wrapper {
    padding-right: var(--trvContainerPadding);
    margin-left: 0;
    padding-left: 70px;
}

.trv-menu__submenu-section h4, .trv-menu__submenu-section-inner-wrapper > div {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    margin: 0 0 30px;
}

.trv-menu__submenu a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    padding: 0;
}

.trv-menu__submenu a:hover {
    opacity: var(--trvLinksHoverOpacity);
}

.trv-menu__submenu-section--main a {
    font-weight: 600;
    color: var(--trvMainColor);
}

.trv-menu__submenu-section a svg {
    margin-right: 13px;
    min-width: 11px;
}

.trv-menu__submenu-section a img {
    margin-right: 13px;
    max-width: 20px;
    opacity: 0.6;
}

.trv-menu__submenu--level-2 a {
    display: flex;
    align-items: flex-start;
    white-space: initial;
}

.trv-menu__submenu-section ul {
    display: list-item;
    columns: 2;
}

.trv-menu__submenu-section li {
    margin-bottom: 20px;
}

.trv-header__lower .trv-menu__submenu-section li::after {
    display: none;
}

.trv-header__lower .trv-menu__submenu-section li:not(:last-child) {
    margin-right: 0;
}

.trv-header__lower .trv-menu__submenu-section li:not(:last-child)::before {
    display: none;
}

.trv-header__language-mobile {
    display: none;
}

.trv-menu-item--parent > a {
    position: relative;
}
.trv-none-link > a {
    pointer-events: none;
    text-decoration: none;
}
.trv-menu-item--parent > a::after {
    /*content: "";*/
    /*display: block;*/
    /*width: 44px;*/
    /*height: 100%;*/
    /*position: absolute;*/
    /*right: 0;*/
    /*top: 0;*/
    /*transform: translateX(100%);*/
}

.trv-header__lower .trv-header__lower-el--hidden {
    display: none;
}

.trv-menu__submenu-tool-i {
    position: relative;
}

.trv-menu__submenu-tool-i::before {
    content: "";
    display: block;
    width: 11px;
    height: 21px;
    background-image: url("../images/svg/m_tools_i.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 13px;
    opacity: 0.6;
}

/*MOBILE MENU*/
.trv-mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 360px;
    min-width: 360px;
    height: 100vh;
    background-color: #fff;
    z-index: 12;
    transition: transform ease-in-out .4s;
    pointer-events: none;
}

.trv-mobile-menu--active {
    transform: translateX(0);
    pointer-events: auto;
}

.trv-mobile-menu--inner-wrapper {
    height: 100%;
    overflow: auto;
    padding-left: var(--trvContainerPadding);
    padding-right: var(--trvContainerPadding);
    padding-bottom: 120px;
}

.trv-mobile-menu__header, .trv-mobile-menu__tabs, .trv-mobile-menu__menu, .trv-mobile-menu__add-menu {
    border-bottom: 1px solid rgba(43, 63, 90, 0.1);
}

.trv-mobile-menu__header {
    padding-top: 20px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trv-mobile-menu__logo a {
    color: var(--trvMainColor);
    display: flex;
}

.trv-mobile-menu__logo a svg {
    width: 95px;
    height: 21px;
}

.trv-mobile-menu__close a {
    color: var(--trvFontBlackColor);
    display: flex;
    padding: 8px;
    background-color: var(--trvBgLightColor);
    border-radius: 6px;
    overflow: hidden;
}

.trv-mobile-menu__close a svg {
    opacity: 0.4;
}

.trv-mobile-menu__tabs .trv-header__tabs {
    margin-right: 0;
}

.trv-mobile-menu__tabs {
    display: flex;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.trv-mobile-menu__menu {
    padding-top: 20px;
    padding-bottom: 20px;
}

.trv-mobile-menu__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trv-mobile-menu__menu li {
}

.trv-mobile-menu__menu li:not(:last-child) {
    margin-bottom: 5px;
}

.trv-mobile-menu__menu a {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
    text-decoration: none;
    padding: 7px 8px 7px 17px;
    background: var(--trvBgLightColor);
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.trv-mobile-menu__menu a:not(.trv-menu__submenu-tool-i)::before {
    content: "";
    display: block;
    width: 4px;
    height: 15px;
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--trvMainColor);
    border-radius: 0px 15px 15px 0px;
}

.trv-mobile-menu__arrow {
    background-color: #EAEFF7;
    border-radius: 7px;
    width: 27px;
    height: 27px;
    display: flex;
}
.trv-mobile-menu__arrow-unvisible a .trv-mobile-menu__arrow {
    visibility: hidden;
}
.trv-mobile-menu__arrow-bg {
    width: 100%;
    height: 100%;
    background-image: url("../images/svg/mobile-menu-arrow.svg");
    background-size: 9px;
    background-repeat: no-repeat;
    background-position: center;
}

.trv-mobile-menu-nav--b2b .trv-mobile-menu__arrow-bg {
    background-image: url("../images/svg/mobile-menu-arrow-2.svg");
    background-size: 6px 10px;
}

.trv-mobile-menu-nav--b2b li {
    /*min-height: 41px;*/
}

.trv-mobile-menu-nav--b2b li:not(.trv-mobile-menu__menu-item--parent) a {
    padding: 11px 8px 11px 17px;
}

.trv-mobile-menu-nav--b2b li:not(.trv-mobile-menu__menu-item--parent) .trv-mobile-menu__arrow {
    display: none;
}

.trv-mobile-menu__add-menu {
    padding-top: 20px;
    padding-bottom: 20px;
}

.trv-mobile-menu__add-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trv-mobile-menu__add-menu li:not(:first-child) {
    margin-top: 20px;
}

.trv-mobile-menu__add-menu a {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--trvFontBlackColor);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.trv-mobile-menu__add-menu svg, .trv-mobile-menu__add-menu img {
    margin-right: 10px;
    color: var(--trvMainColor);
}

.trv-mobile-menu__socials {
    padding-top: 20px;
    display: none;
}

.trv-mobile-menu__socials--active{
    display: flex;
}

.trv-mobile-menu__socials a {
    color: var(--trvMainColor);
}

.trv-mobile-menu__menu-item--parent .trv-mobile-menu__arrow-bg {
    transform: rotate(90deg);
    transition: transform .3s;
}

.trv-mobile-menu__menu-item--parent.trv-mobile-menu__menu-item--open .trv-mobile-menu__arrow-bg {
    transform: rotate(0);
}

.trv-mobile-menu__menu-item--parent {
}

.trv-mobile-menu__menu .trv-mobile-menu__menu-item--parent a {
    border-radius: 7px 7px 0 0;
}

.trv-mobile-menu__submenu {
    overflow: hidden;
    height: 0;
    transition: height .3s ease-in-out;
}

.trv-mobile-menu__submenu--level-2 .trv-mobile-menu__submenu-inner-wrapper {
    padding: 0 27px 13px 27px;
    background-color: var(--trvBgLightColor);
    border-radius: 0 0 7px 7px;
}

.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a {
    background-color: var(--trvBgMediumColor);
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
    border-radius: 7px;
}

.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a svg {
    margin-right: 12px;
    max-width: 17px;
    height: auto;
}

.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a img {
    margin-right: 12px;
    max-width: 17px;
    opacity: 0.6;
}

.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a.trv-svg-icon svg {
    height: 18px;
    width: auto;
    max-width: 11px;
}

.trv-mobile-menu__menu .trv-mobile-menu__submenu--level-2 a:not(.trv-menu__submenu-tool-i)::before {
    display: none;
}

.trv-mobile-menu__submenu-inner-wrapper h4, .trv-mobile-menu__submenu-section-inner-wrapper > div {
    margin: 0 0 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: var(--trvFontBlackColor);
    max-width: 70%;
}

.trv-mobile-menu__submenu-inner-wrapper .trv-mobile-menu__submenu-section:first-child h4, .trv-mobile-menu__submenu-section:first-child .trv-mobile-menu__submenu-section-inner-wrapper > div {
    padding-top: 13px;
}

.trv-mobile-menu__menu .trv-mobile-menu__menu-item--blue {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: var(--trvMainColor);
}

.trv-mobile-menu__submenu-section {
    margin-bottom: 20px;
}

.trv-mobile-menu__submenu-section:last-child {
    margin-bottom: 0;
}

.trv-mobile-menu__submenu-section:last-child li:last-child {
}

.trv-header.trv-header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
    box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.07);
}

.trv-header.trv-header--fixed.trv-header--mobile-menu-opened {
    box-shadow: unset;
}

.trv-header--fixed-off .trv-mobile-menu {
    position: fixed;
}

.trv-header--fixed .trv-header__lower {
    transition: opacity .3s;
}

.trv-header--fixed.trv-header--mobile-menu-opened .trv-header__lower {
    /*opacity: 0;*/
}

.trv-header--fixed .trv-header__lower::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .7);
    transition: opacity ease-in-out .3s;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.trv-header--fixed.trv-header--mobile-menu-opened .trv-header__lower::before {
    opacity: 1;
}
.trv-header__add-menu-modal{
    cursor: pointer;
}
/*HEADER END*/
/*FOOTER*/
.trv-footer {
    background-color: var(--trvMainColor);
    position: relative;
    z-index: 7;
    margin-top: auto;
}

.trv-footer__inner-wrapper {
}

.trv-footer__upper-inner-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
}

.trv-footer__logo {
    margin-right: 120px;
    transform: translateY(-7px);
}

.trv-footer__logo a {
    text-decoration: none;
    color: var(--trvFontWhiteColor);
    display: flex;
}

.trv-footer__logo a:not(.trv-svg-icon) svg {
    width: 107px;
    height: 25px;
}

.trv-footer__logo path {
    /*fill: currentColor !important;*/
}

.trv-footer__menu {
    margin-right: 100px;
}

.trv-footer__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trv-footer__menu nav > ul {
    display: flex;
}

.trv-footer__menu li {
}

.trv-footer__menu nav > ul > li:not(:last-child) {
    margin-right: 90px;
}

.trv-footer__menu a {
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
}

.trv-footer__menu a:hover {
    opacity: var(--trvLinksHoverOpacity);
}

.trv-footer__menu nav > ul > li > a {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
    display: flex;
    margin-bottom: 15px;
}

.trv-footer__qr-phones-socials {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
}

.trv-footer__qr-links {
    grid-column: 1;
    grid-row: 1;
    margin-right: 120px;
}

.trv-footer__phones {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.trv-footer__socials {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
}

.trv-footer__qr-links a {
    display: none;
}

.trv-footer__qr-links > img {
    border-radius: 10px;
    width: 76px;
}

.trv-footer__phones > div {
    display: flex;
    flex-direction: column;
}

.trv-footer__phones > div:not(:last-child) {
    margin-bottom: 15px;
}

.trv-footer__phones > div:not(:last-child)::after {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #6DA6F2;
    margin-top: 15px;
}

.trv-footer__phones a {
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: var(--trvFontWhiteColor);
}

.trv-footer__phones a:hover {
    opacity: var(--trvLinksHoverOpacity);
}

.trv-footer__phones span {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: var(--trvFontLightBlueColor);
    margin-top: 5px;
}

.trv-footer__socials a {
    text-decoration: none;
    color: var(--trvFontLightBlueColor);
}

.trv-footer__socials a:hover {
    color: var(--trvFontWhiteColor);
}

.trv-footer__bottom {
    background-color: rgb(0 0 0 / 10%);
}

.trv-footer__bottom-inner-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
}

.trv-footer__copyright, .trv-footer__popd a, .trv-footer__conditions a, .trv-footer__rights-info a, .trv-footer__sitemap a {
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 21px;
    letter-spacing: -0.02em;
    color: var(--trvFontDarkBlueColor);
    text-decoration: none;
}

.trv-footer__copyright {
    margin-right: 105px;
}

.trv-footer__popd {
    margin-right: 60px;
}

.trv-footer__conditions {
    margin-right: 60px;
}

.trv-footer--b2c__el {
    display: none;
}

.trv-footer--b2c .trv-footer__menu > nav > ul ul .trv-footer--b2c__el {
    display: initial;
}

.trv-footer--b2c .trv-footer__menu li svg {
    transform: translateY(3px);
    margin-right: 5px;
}

.trv-footer:not(.trv-footer--b2c) .trv-menu-item-soc {
    display: none;
}

.trv-footer--b2c .trv-menu-item-soc {
    margin-left: 45px;
}

/*FOOTER END*/

.trv-about-b2c-header svg{
    display: none;
}

/*.com-content-article,*/
/*.trv-about-b2c-mobile-app,*/
/*.trv-tariffs,*/
/*.trv-about-b2b-reviews,*/
/*.trv-about-b2b-project{*/
/*    overflow-x: hidden;*/
/*}*/

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

.trv-body .trv-mobile-menu--b2b .trv-b2b-only,
.trv-body .trv-mobile-menu--b2c .trv-b2c-only{
    display: inline-flex;
}

@media screen and (max-width: 1400px) {
    .trv-header__language-drop {
        left: unset;
        right: 0;
    }
}

@media screen and (max-width: 1240px) {
    .trv-b-body {
        padding: var(--trvBlockRoundedSm30Radius) var(--trvContainerPadding);
    }
}

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

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

    .trv-header__lower li:not(:last-child) {
        /*margin-right: 0;*/
    }

    .trv-header__lower ul {
        /*justify-content: space-between;*/
    }

    .trv-header__lower li:not(:last-child)::before {
        /*display: none;*/
    }

    .trv-header__logo, .trv-header__tabs, .trv-header__add-menu {
        margin-right: 30px;
    }
    /*SOCIALS ROUNDED*/
    .trv-socials-rounded__real {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: -15px;
        margin-left: -45px;
    }

    .trv-socials-rounded a {
        width: calc(50% - 45px);
        margin-top: 15px;
        margin-left: 45px;
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 0;
        opacity: 1;
    }

    .trv-socials-rounded svg {
        width: 61px;
        min-width: 61px;
        height: auto;
    }

    .trv-socials-rounded svg::before {
        content: "";
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--trvMainColor);
    }

    .trv-socials-rounded a.trv-svg-icon--vk::before {
        content: "Ð’ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ðµ";
    }

    .trv-socials-rounded a.trv-svg-icon--tg::before {
        content: "Telegram";
    }

    .trv-socials-rounded a.trv-svg-icon--dzen::before {
        content: "Ð”Ð·ÐµÐ½";
    }

    .trv-socials-rounded a.trv-svg-icon--yt::before {
        content: "Youtube";
    }

    .trv-socials-rounded__refs {
        display: none;
    }

    /*SOCIALS ROUNDED END*/

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

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

    .trv-mobile-menu__menu .trv-el--only-sm {
        display: block;
    }

    .trv-footer--b2c .trv-footer__menu nav ul {
        columns: 3;
        column-gap: 72px;
    }
  	.trv-footer--b2c .trv-footer__menu nav ul li:nth-child(7) {
    	/*margin-bottom: 1px;*/
    }

    .trv-footer--b2c .trv-footer__logo {
        display: flex;
        flex-direction: column;
    }

    .trv-footer--b2c .trv-footer__socials {
        margin-top: auto;
    }

    .trv-footer--b2c .trv-footer__qr-phones-socials {
        margin-left: 13px;
    }

    .trv-footer--b2c .trv-footer__menu nav > ul > li > a {
        display: none;
    }

    .trv-footer--b2c .trv-footer__qr-phones-socials .trv-footer__phones, .trv-footer--b2c .trv-footer__qr-phones-socials .trv-footer__socials {
        display: none;
    }

    .trv-footer--b2c .trv-footer__qr-phones-socials .trv-footer__qr-links {
        margin-right: 0;
    }

    .trv-footer__popd {
        margin-right: 40px;
    }

    .trv-footer__conditions {
        margin-right: 40px;
    }

    .trv-footer__rights-info {
        margin-right: 40px;
    }
}

@media screen and (max-width: 1050px) {
    .trv-footer__logo {
        margin-right: 65px;
    }

    .trv-footer__copyright {
        margin-right: 55px;
    }

    .trv-footer--b2c .trv-menu-item-soc a {
        /*margin-left: 0;*/
        font-size: 0;
    }

    .trv-footer--b2c .trv-footer__menu nav ul {
        column-gap: 0;
    }

    .trv-footer--b2c .trv-footer__copyright {
        margin-right: 40px;
    }

    .trv-footer--b2c .trv-footer__logo {
        margin-right: 100px;
    }
}

@media screen and (max-width: 1000px) {
    /*GENERAL*/
    .trv-container.trv-container--desktop {
        padding-left: 0;
        padding-right: 0;
    }
    /*GENERAL END*/

    /*HEADER*/
    .trv-header__upper {
        display: none;
    }

    .trv-menu {
        display: none;
    }

    .trv-header__mobile-burger, .trv-header__mobile-logo {
        display: block;
    }

    .trv-header__mobile-logo svg {
        width: 95px;
        height: 27px;
    }

    .trv-header__lower-inner-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
    }

    .trv-header__lower {
        border-bottom: none;
        padding-left: var(--trvContainerPadding);
        padding-right: var(--trvContainerPadding);
    }

    .trv-header__lower-inner-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .trv-header__language-mobile {
        margin-left: auto;
        display: block;
    }

    .trv-header__language-mobile > a {
        align-items: center;
        padding: 6px;
        border-radius: 7px;
        background-color: #2E89D5;
        color: #FFFFFF;
    }

    .trv-header__language-mobile > a::after {
        content: "";
        display: block;
        width: 10px;
        height: 6px;
        background-image: url(../images/svg/language-arrow.svg);
        background-repeat: no-repeat;
        background-size: cover;
        margin-left: 6px;
        filter: invert(1) brightness(2);
    }

    .trv-header__language-mobile > a svg {
        margin-left: 6px;
    }

    .trv-header__language-mobile > a img {
        width: 19px;
        height: auto;
        border-radius: 2px;
    }

    .trv-header__language-mobile .trv-header__language-drop {
        background-color: #2E89D5;
        z-index: 10;
    }

    .trv-header__language-mobile .trv-header__language--active {
        background-color: var(--trvFontDarkBlueColor);
    }

    .trv-header__language-mobile .trv-header__language-drop a:hover {
        background-color: inherit;
    }

    .trv-header__mobile-burger {
        margin-left: auto;
    }

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

    .trv-footer--b2c .trv-footer__qr-phones-socials .trv-footer__phones {
        display: none;
    }

    .trv-footer--b2c .trv-footer__qr-phones-socials {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .trv-footer--b2c .trv-footer__socials {
        transform: translateY(0);
        justify-content: flex-start;
        /*display: none;*/
    }

    .trv-footer--b2c .trv-footer__qr-links {
        align-items: flex-start;
        margin-bottom: 0;
    }

    .trv-footer--b2c .trv-menu-item-soc {
        /*margin-left: 0;*/
        /*font-size: 0;*/
    }

    .trv-header__language-mobile {
        position: relative;
    }

    .trv-header__language-mobile .trv-header__language-drop a, .trv-header__language-mobile .trv-header__language-drop > div {
        color: #FFFFFF;
        white-space: nowrap;
    }

    .trv-header__language-mobile > a span {
        margin-left: 10px;
    }

    .trv-header__language-mobile .trv-header__language-drop {
        right: 50%;
        transform: translateX(50%) translateY(17px);
    }

    .trv-header__language-mobile--b2c .trv-header__language-drop {
        right: 0;
        transform: translateX(0) translateY(17px);
    }

    .trv-header__language-mobile .trv-header__language-drop > div:first-child {
        margin-top: 0;
    }

    .trv-header__language-mobile .trv-header__language-drop > div:hover {
        background-color: inherit;
    }

    /*.trv-header__language-mobile .trv-header__language-drop a:hover{*/
    /*    */
    /*}*/
    /*MOBILE MENU*/
    .trv-mobile-menu {
        display: block;
        position: fixed;
    }

    .trv-menu__submenu-tool-i::before {
        height: 18px;
    }

    .trv-mobile-menu-nav {
        display: none;
    }

    .trv-mobile-menu-nav--active {
        display: initial;
    }

    /*HEADER END*/
}

@media screen and (max-width: 900px) {
    :root {
        --trvBlockRoundedRadius: 20px;
        --trvBlockRoundedSm30Radius: 30px;
        --trvBlockMarginBDefault: 50px;
        --trvBlockMarginB70: 50px;
    }

    /*GENERAL*/
    h1 {
        font-size: 28px;
        line-height: 31px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .trv-page-content .page-header h1 {
        font-size: 28px;
        line-height: 31px;
    }

    .trv-ul {
        margin: 0 0 25px;
    }

    .trv-ul li {
        font-size: 13px;
        line-height: 18px;
    }
    
    .trv-tag {
        padding: 12px 11px;
    }

    /*.trv-btn{*/
    /*    padding: 12px 24px;*/
    /*    font-size: 12px;*/
    /*    line-height: 17px;*/
    /*}*/
    /*.trv-btn--lg{*/
    /*    padding: 14px 28px;*/
    /*    font-size: 13px;*/
    /*    line-height: 18px;*/
    /*}*/
    /*custom select(nice-select2.js)*/
    .trv-body .nice-select {
        font-size: 12px;
        line-height: 17px;
        padding: 15px 41px 15px 15px;
        min-width: 155px;
        border-radius: 7px;
    }

    .trv-body .nice-select:before {
        content: "";
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: var(--trvBgLightColor);
        position: absolute;
        pointer-events: none;
        right: 10px;
        transform: translateY(-50%);
    }

    .trv-body .nice-select:after {
        border-bottom: 1px solid;
        border-right: 1px solid;
        border-color: var(--trvFontDarkGreyColor);
        right: 20px;
    }

    .trv-body .nice-select:before, .trv-body .nice-select:after {
        top: 50%;
    }

    .trv-body .nice-select:active, .trv-body .nice-select.open, .trv-body .nice-select:focus {
        border-color: var(--trvFontLightBlueColor);
    }

    .trv-body .nice-select .nice-select-dropdown {
        margin-top: 10px;
        width: 100%;
    }

    .trv-body .nice-select .option {
        color: var(--trvFontBlackColor);
    }

    /*custom select(nice-select2.js) end*/
    .trv-el--only-lg {
        display: none;
    }
    /*FOOTER*/
    .trv-footer__upper-inner-wrapper {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 0;
        margin-bottom: 8px;
    }

    .trv-footer__logo {
        display: none;
    }

    .trv-footer__menu {
        margin-right: 0;
        margin-bottom: 35px;
    }

    .trv-footer__menu nav > ul {
        flex-direction: column;
    }

    .trv-footer:not(.trv-footer--b2c) .trv-footer__menu nav > ul > li > ul {
        height: 0;
        overflow: hidden;
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
        transition: height .3s ease-in-out;
    }

    .trv-footer:not(.trv-footer--b2c) .trv-footer__menu nav > ul > li > ul::before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: #69A3F2;
        margin-bottom: 10px;
    }

    .trv-footer__menu li {
        width: 100%;
    }

    .trv-footer:not(.trv-footer--b2c) .trv-footer__menu nav > ul > li {
        background-color: #2E89D5;
        border-radius: 7px;
    }

    .trv-footer__menu nav > ul > li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .trv-footer__menu nav > ul > li > ul > li {
        margin-bottom: 3px;
    }

    .trv-footer__menu nav > ul > li > ul > li:last-child {
        margin-bottom: 13px;
    }

    .trv-footer__menu a {
        width: 100%;
    }

    .trv-footer__menu nav > ul > li > a {
        margin-bottom: 0;
        padding: 13px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 13px;
        line-height: 18px;
    }

    .trv-footer__menu nav > ul > li > a::after {
        content: "";
        display: block;
        width: 10px;
        height: 6px;
        background-image: url("../images/svg/dropdown-arrow.svg");
        background-size: cover;
        transition: transform .3s ease-in-out;
    }

    .trv-footer__menu nav > ul > li.trv-footer__menu-item--opened > a::after {
        transform: rotate(180deg);
    }

    .trv-footer__menu nav > ul > li > ul > li a {
        font-size: 12px;
        line-height: 25px;
        color: var(--trvFontWhiteColor);
    }

    .trv-footer__qr-links {
        margin-right: 0;
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .trv-footer__phones {
        grid-column: 1;
        grid-row: 1;
        min-width: 162px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .trv-footer__socials {
        grid-column: 2;
        grid-row: 2;
        transform: translateY(-100%);
        justify-content: flex-end;
    }

    .trv-socials.trv-footer__socials a:not(:last-child) {
        margin-right: 11px;
    }

    .trv-footer__qr-links > img {
        display: none;
    }

    .trv-footer__qr-links a {
        padding: 7px 12px 3px 12px;
        background-color: #2E89D5;
        display: inline-block;
        border-radius: 3px;
        line-height: 0px;
        font-size: 0px;
        letter-spacing: 0px;
    }

    .trv-footer__qr-links a:not(:last-child) {
        margin-bottom: 12px;
    }

    .trv-footer__phones > div:not(:last-child) {
        margin-bottom: 20px;
    }

    .trv-footer__phones > div:not(:last-child)::after {
        display: none;
    }

    .trv-footer__phones a {
        font-size: 14px;
        line-height: 18px;
    }

    .trv-footer__phones span {
        margin-top: 4px;
    }

    .trv-footer__bottom {
        background-color: transparent;
    }

    .trv-footer__bottom-inner-wrapper {
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 25px;
    }

    .trv-footer__copyright {
        margin-right: 0;
        order: 5;
    }

    .trv-footer__popd {
        margin-right: 0;
    }

    .trv-footer--b2c .trv-footer__menu nav > ul > li > a {
        display: none;
    }

    .trv-footer--b2c .trv-footer__menu {
        margin-bottom: 30px;
    }

    .trv-footer--b2c .trv-footer__menu nav > ul > li > ul > li:last-child {
        margin-bottom: 0;
    }

    .trv-footer--b2c .trv-footer__socials {
        margin-top: 15px;
    }

    .trv-footer--b2c .trv-footer__upper-inner-wrapper {
        flex-direction: row;
        margin-bottom: 20px;
    }

    .trv-footer--b2c .trv-footer__menu {
        width: 50%;
        margin-bottom: 0;
    }

    .trv-footer--b2c .trv-footer__qr-phones-socials {
        width: 50%;
        align-items: flex-end;
        justify-content: space-between;
    }

    .trv-footer--b2c .trv-footer__socials .trv-svg-icon--dzen,
    .trv-footer--b2c .trv-footer__socials .trv-svg-icon--tg {
        width: 22px;
        height: auto;
    }

    .trv-footer--b2c .trv-footer__socials .trv-svg-icon--yt {
        width: auto;
        height: 20px;
    }

    .trv-footer--b2c .trv-socials.trv-footer__socials a:not(:last-child) {
        margin-right: 20px;
    }

    /*FOOTER END*/

}

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

    .trv-mobile-menu--active {
        opacity: 1;
        pointer-events: auto;
    }

    /*MOBILE MENU END*/
    .trv-modal {
        align-items: flex-start;
        overflow-y: auto;
        padding: 30px 0;
    }

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

    .trv-header--fixed .trv-header__lower::before {
        display: none;
    }
}