/* ADDRESS */
.trvtmpl-address {
    display: flex;
    align-items: center;
}
.trvtmpl-address__icon {
    margin-right: 5px;
}
.trvtmpl-address--without-icon .trvtmpl-address__icon {
    display: none;
}
/* ADDRESS END */

/* PHONER */
.trvtmpl-phone {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trvtmpl-phone--justify-end {
    justify-content: flex-end;
}
.trvtmpl-phone__link {
    display: flex;
}
.trvtmpl-phone__icon {
    margin-right: 5px;
}
.trvtmpl-phone a {
    color: currentColor;
    text-decoration: none;
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-phone a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
.trvtmpl-phone--without-icon .trvtmpl-phone__icon {
    display: none;
}
/* PHONER END */

/* MAIL */
.trvtmpl-mail a {
    color: currentColor;
    text-decoration: none;
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-mail a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
/* MAIL END */

/* SOCIALS */
.trvtmpl-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-left: -20px;
}
.trvtmpl-socials.trvtmpl-socials--vertical {
    margin-top: 0;
    margin-left: 0;
}
.trvtmpl-socials.trvtmpl-socials--justify-end {
    justify-content: flex-end;
}
.trvtmpl-socials a {
    text-decoration: none;
    transition: var(--trvtmplLinksTransition);
    margin-left: 20px;
    margin-top: 10px;
    width: 22px;
    height: 22px;
}
.trvtmpl-socials a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
.trvtmpl-socials--vertical {
    flex-direction: column;
}
.trvtmpl-socials.trvtmpl-socials--vertical a {
    margin-left: 0;
    margin-top: 0;
}
.trvtmpl-socials.trvtmpl-socials--vertical a:not(:first-child) {
    margin-top: 20px;
}
.trvtmpl-socials__item {
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trvtmpl-socials.trvtmpl-socials--colorful .trvtmpl-socials__item {
    background-color: var(--trvtmplTemplateColor);
}
/* SOCIALS END */

/* MENU */
.trvtmpl-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu li {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    color: #ffffff;
}
.trvtmpl-menu li > span {
    cursor: pointer;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu nav > ul > li {
    padding: 10px 0;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu li:not(:first-child)::before {
    content: "";
    display: block;
    width: 9px;
    height: 5px;
    position: absolute;
    background-image: url("../images/svg/menu-item-marker-icon.svg");
    background-size: cover;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.trvtmpl-menu a {
    text-decoration: none;
    color: currentColor;
    transition: var(--trvtmplLinksTransition);
}
.trvtmpl-menu a:hover {
    opacity: var(--trvtmplLinksHoverOpacity);
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu__item--parent a,
.trvtmpl-header__body-banner-menu .trvtmpl-menu__item--parent span {
    display: flex;
    align-items: center;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu__item--parent > a::after,
.trvtmpl-header__body-banner-menu .trvtmpl-menu__item--parent > span::after {
    content: "";
    width: 10px;
    height: 6px;
    display: block;
    background-image: url("../images/svg/menu-item-down-arrow.svg");
    background-size: cover;
    margin-left: 10px;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu .trvtmpl-menu__submenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    background-color: #f7f7f9;
    box-shadow: 0px 1px 23px rgba(0, 0, 0, 0.05), 0px 15px 30px rgba(20, 59, 121, 0.03);
    border-radius: 12px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    min-width: 100%;
    z-index: 1;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu__item--parent:hover .trvtmpl-menu__submenu {
    opacity: 1;
    pointer-events: initial;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu__submenu li {
    color: var(--trvtmplFontColorDark);
    width: 100%;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu__submenu a {
    padding: 10px 15px;
    transition: background-color 0.15s;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu__submenu a:hover {
    opacity: 1;
    background-color: #ededed;
}
.trvtmpl-menu--vertical ul {
    flex-direction: column;
}
.trvtmpl-header__body-banner-menu ul:not(.trvtmpl-menu__submenu) > .trvtmpl-header__menu-item--active::after {
    content: "";
    width: 20%;
    height: 3px;
    display: block;
    position: absolute;
    background-color: var(--trvtmplTemplateColor);
    left: 0;
    bottom: 0;
}
.trvtmpl-header__body-banner-menu .trvtmpl-menu__item--parent:hover::after {
    opacity: 0;
}
.trvtmpl-header__body-banner-menu ul.trvtmpl-menu__submenu > .trvtmpl-header__menu-item--active {
    color: var(--trvtmplTemplateColor);
}
/* MENU END */

/* MOBILE MENU */
.trvtmpl-header__mobile-menu {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    z-index: 21;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 30px 20px 30px 50px;
    box-sizing: border-box;
    background: rgba(247, 247, 249, 0.95);
    backdrop-filter: blur(2px);
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow: auto;
}
.trvtmpl-header__mobile-menu li {
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    color: #4c4c4ccc;
}
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--parent a,
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--parent span {
    justify-content: flex-end;
}
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--parent a::after,
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--parent span:after {
    filter: invert(1);
}
li.trvtmpl-menu__item--parent {
    font-weight: 600;
    color: var(--trvtmplFontColorDark);
}
.trvtmpl-header__mobile-menu--active {
    transform: translateX(0);
}
.trvtmpl-header__mobile-menu .trvtmpl-menu ul > li:not(:first-child),
.trvtmpl-header__mobile-menu .trvtmpl-menu nav > ul:not(:first-child) {
    margin-top: 25px;
}
.trvtmpl-header__mobile-menu-close {
    margin-bottom: 35px;
}
.trvtmpl-header__mobile-menu-socials,
.trvtmpl-header__mobile-menu-contacts,
.trvtmpl-header__mobile-menu-request {
    margin-top: 35px;
}
.trvtmpl-header__mobile-menu-socials {
    max-width: 60%;
}
.trvtmpl-header__mobile-menu-phone {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--trvtmplFontColorDark);
}
.trvtmpl-header__mobile-menu-address {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    font-weight: 500;
    font-size: 14px;
    color: #4c4c4c99;
}
.trvtmpl-header__mobile-menu .trvtmpl-header__menu-item--active {
    color: var(--trvtmplTemplateColor);
}
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--parent {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.trvtmpl-header__mobile-menu .trvtmpl-menu-item-arrow{
    margin-left: 10px;
    transition: transform .2s;
}
.trvtmpl-header__mobile-menu .trvtmpl-menu-item-arrow path{
    fill: var(--trvtmplFontColorDark);
}
.trvtmpl-header__mobile-menu .trvtmpl-header__menu-item--active .trvtmpl-menu-item-arrow path{
    fill: var(--trvtmplTemplateColor);
}
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--opened .trvtmpl-menu-item-arrow{
    transform: rotateX(180deg);
}
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--parent ~ ul{
    overflow: hidden;
    transition: max-height 0.15s ease-in-out;
}
.trvtmpl-header__mobile-menu .trvtmpl-menu__item--parent ~ ul li:first-child:before{
    content: "";
    display: block;
    width: 100%;
    height: 25px;
    background-color: transparent;
}
/* MOBILE 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 */
