html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    background: #F8FAFC;
    color: #000;
    font-family: "Carlito", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}
p {
    margin: 0;
}
h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
    max-width: 1512px;
    padding: 0 48px;
    margin: 0 auto;
}
.page-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    color: rgba(0, 0, 0, 0.87);
}
.page-sm-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 52px; 
    color: rgba(0, 0, 0, 0.87);
}
.section-title, .article-title {
    color: rgba(0, 0, 0, 0.87);
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 32px;
}
.index-events {
    padding-top: 0 !important;
    margin-top: -140px;
}
.button {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border: none;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    /* min-width: 216px; */
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    /* background-color: #FF4E50; */
    background: #0EA5E9;
    transition: background-color .3s ease-out, color .3s ease-out, border-color .3s ease-out;
}
.button:hover {
    background: #36CDFF;
    /* background-color: #CD1719; */
}
.button-outline {
    padding: 12px 52px;
    border-radius: 12px;
    border: 1px solid #0EA5E9;
    color: #0EA5E9;
    font-size: 18px;
    font-weight: 700;
    background-color: transparent;
}
.button-outline:hover {
    border-color: #0EA5E9 !important;
    background-color: #0EA5E9 !important;
    color: #fff !important;
}
.button-outline-white {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.20);
    padding: 12px 32px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.button-outline-white:hover {
    border-color: #fff;
    background-color: #fff;
    color: #0EA5E9;
}
.button-small-blue, .button-small-gray {
    min-width: unset;
    background-color: transparent;
    padding: 12px 16px;
}
.button-small-blue {
    color: #4893fd;
}
.button-small-gray {
    color: rgba(0, 0, 0, 0.38);
}
.button-small-blue:hover, .button-small-gray:hover {
    background-color: #eef5ff;
    color: #4893fd;
}
.button-small-gray svg path {
    transition: fill .3s ease-out;
}
.button-small-gray:hover svg path {
    fill: #4893fd;
}
.header {
    position: absolute;
    width: 100%;
    height: 72px;
    top: 0;
    left: 0;
    z-index: 11;
    background-color: #fff;
    transition: background-color .3s ease-out;
}
.header.fixed {
    position: fixed;
}
.header-white {
    background-color: transparent;
}
.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo__img {
    display: block;
    width: 168px;
}
.header-logo__img-white {
    display: none;
}
.header-white .header-logo__img-blue {
    display: none;
}
.header-white .header-logo__img-white {
    display: block;
}
.header-menu {
    display: flex;
    align-items: center;
}
.header-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.header-nav li {
    margin-right: 28px;
}
.header-nav li:last-child {
    margin: 0;
}
.header-nav__link {
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s ease-out;
}
.header-nav__link:hover {
    color: #0EA5E9;
}
.header-white .header-nav__link {
    color: #fff;
}
.header-white .header-nav__link:hover {
    color: #36CDFF;
}
.header-lang {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; 
    color: rgba(0, 0, 0, 0.38);
    text-decoration: none;
    margin-left: 32px;
    transition: opacity .3s ease-out;
}
.header-lang:hover {
    opacity: 0.64;
}
.header-white .header-lang {
    color: rgba(255, 255, 255, 0.60);
}
.mobile-menu {
    width: 40px;
    height: 40px;
    margin-right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}
.header-white .mobile-menu svg path {
    fill: #fff;
}
.footer {
    background-color: #111;
    padding: 80px 0 100px;
}
.footer-top {
    display: flex;
}
.footer-left {
    width: 48%;
    width: calc(50% - 12px);
    margin-right: 24px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 24px;
}
.footer-logo-wrap {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo img {
    display: block;
    width: 240px;
    max-width: 100%;
}
.footer-nav {
    grid-column: span 2;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav li {
    margin-bottom: 12px;
}
.footer-nav li:last-child {
    margin-bottom: 0;
}
.footer-nav__link {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: opacity .3s ease-out;
}
.footer-nav__link:hover {
    color: #36CDFF;
}
.footer-right {
    display: flex;
    align-items: flex-start;
    width: 48%;
    width: calc(50% - 12px);
}
.footer-contacts {
    width: 48%;
    width: calc(50% - 12px);
    font-size: 14px;
    line-height: 16px;
    margin-right: 24px;
}
.footer-contacts:last-child {
    margin: 0;
}
.footer-contacts__title {
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
}
.footer-contacts__address {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 32px;
}
.footer-contacts__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
}
.footer-contacts__links:last-child {
    margin-bottom: 0;
}
.footer-contacts__docs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-contacts__docs-link {
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
    transition: opacity .3s ease-out;
}
.footer-contacts__link {
    color: #fff;
    text-decoration: none;
    padding-left: 28px;
    min-height: 16px;
    background: top left / 16px no-repeat;
    margin-bottom: 16px;
    transition: opacity .3s ease-out;
}
.footer-contacts__link:last-child, .footer-contacts__docs-link:last-child {
    margin-bottom: 0;
}
.footer-contacts__link:hover, .footer-contacts__docs-link:hover {
    opacity: 0.64;
}
.footer-contacts__tel {
    background-image:  url('../img/icons/phone-white.svg');
}
.footer-contacts__mail {
    background-image: url('../img/icons/mail-white.svg');
}
.footer-bottom {
    border-top: 1px solid #4893FD;
    padding-top: 19px;
    margin-top: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 14px;
    line-height: 16px; 
    color: rgba(255, 255, 255, 0.60);
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: opacity .3s ease-out;
}
.footer-bottom a:hover {
    opacity: 0.64;
}
.feedback-slider-section button.button {
    color: #fff;
    background: #0EA5E9;
}
.impressions-bg {
    background: url('../img/impressions-bg.avif') no-repeat center center;
    background-size: cover;
    padding: 0 !important;
}
.impressions-shadow {
    background: linear-gradient(90deg, rgba(19, 165, 233, 0.92) 0%, rgba(221, 210, 218, 0.92) 53.45%, rgba(245, 158, 16, 0.92) 107.94%);
    padding: 100px 0;
}
.impressions-shadow .section-title {
    color: #fff;
}
.impressions-shadow a.button {
    background: #fff;
    border: 0;
}
.intro-slider .slick-track {
    display: flex;
}
.intro-slider__slide {
    height: auto;
    min-height: 796px;
    padding: 152px 0 80px;
    border-radius: 0 0 32px 32px;
    background: center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}
.intro-slider.slick-initialized .intro-slider__slide {
    display: flex;
}
.intro-slider .intro-slider__slide:not(:first-of-type) {
    display: none;
}
.intro-slider.slick-initialized .intro-slider__slide:not(:first-of-type) {
    display: flex;
}
.intro-slider__section {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}
.intro-slider__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
    margin-bottom: 24px;
}
.intro-slider__details {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
}
.intro-slider__details-date {
    display: flex;
    align-items: center;
    margin-right: 18px;
}
.intro-slider__details-place {
    display: flex;
    align-items: center;
}
.intro-slider__details span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-left: 10px;
}
.intro-slider .slick-dots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 100px;
    right: 64px;
}
.intro-slider .slick-dots li {
    margin: 0 8px 0 0;
}
.intro-slider .slick-dots li:last-child {
    margin-right: 0;
}
.intro-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 6px;
    padding: 0;
    border-radius: 4px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.60);
    transition: background .3s ease-out, width .3s ease-out;
}
.intro-slider .slick-dots li button:hover {
    background: #36CDFF;
}
.intro-slider .slick-dots li.slick-active button {
    background: #36CDFF;
    width: 48px;
    border-radius: 2px;
}
.slider-section {
    padding: 100px 0;
}
.slider-section_last {
    padding-bottom: 148px
}
.slider-section_blue {
    background-color: #EEF7FB;
}
.slider-title {
    display: flex;
    align-items: center;
    min-height: 48px;
    margin: 0 120px 48px 0;
}
.slider-button-wrap {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-button-wrap .button {
    padding: 12px 52px;
    border-radius: 12px;
    border: 1px solid #0EA5E9;
    color: #0EA5E9;
    font-size: 18px;
    font-weight: 700;
    margin: 0 5px;
}
/* .slider-button-wrap .button:last-child {
    margin: 0;
} */
/* .index-activities {
    background: url('../img/activities-decor-2.svg') right 280px no-repeat;
} */
.index-activities-bg {
    width: 100%;
    height: 650px;
    border-radius: 32px;
    background: url('../img/activities_bg.avif') lightgray 50% / cover no-repeat;
    position: relative;
}
.index-activities-gradient {
    width: 100%;
    height: 800px;
    margin-top: -24px;
    border-radius: 0 0 32px 32px;
    background: linear-gradient(90deg, #E0F1F9 0%, #F7F0E3 100%);
}
.index-activities {
    margin-top: -1300px;
    position: relative;
    padding-bottom: 24px;
}
.index-activities .container {
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04);
    padding: 64px 32px;
}
.index-quest .container {
    border-radius: 32px;
    padding: 0;
    background: linear-gradient(90deg, #13A5E9 0%, #D4BDCF 53.45%, #F59E10 107.94%);
}
.index-quest_bg {
    background: url('../img/quest_bg.svg') no-repeat right center;
    padding: 48px 100px 48px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-quest_left {
    display: flex;
    flex-direction: column;
    max-width: 620px;
}
.index-quest_bg span {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 16px;
}
.index-quest_bg p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}
.index-quest_bg a {
    width: 180px;
    border-radius: 12px;
    background: #0EA5E9;
    padding: 12px 32px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
}
.inside-quest {
    margin-top: 64px;
}
.slider-cards__slide {
    margin: 0 12px;
    height: auto;
}
.slider-cards__slide-wrap {
    width: calc(100% - 48px);
    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: 24px;
}
.news-slider .slider-cards__slide {
    height: 100%;
    border-radius: 20px;
    background: #fff !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
/* .slider-cards .slick-list {
    margin: 0 -12px;
} */
.slider-cards .slick-track {
    margin-left: 0;
    display: flex;
}
.slider-cards.slick-initialized .event-card, .slider-cards.slick-initialized .tour-card, .slider-cards.slick-initialized .article-card, .slider-cards.slick-initialized .impression-card, .slider-cards.slick-initialized .place-card {
    display: flex;
} 
.index-avia {
    border-radius: 0 0 32px 32px;
    background: linear-gradient(90deg, #E0F1F9 0%, #F7F0E3 100%);
    padding-bottom: 200px;
}
.index-avia__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
.index-avia__top-left {
    display: flex;
    flex-direction: column;
}
.index-avia__top-right {
    display: flex;
    align-items: flex-end;
}
.index-avia__title {
    color: rgba(0, 0, 0, 0.90);
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 8px;
}
.index-avia__subtitle {
    color: rgba(0, 0, 0, 0.90);
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
}
.index-avia__time {
    color: #0EA5E9;
    font-size: 48px;
    font-weight: 700;
    margin-right: 12px;
    line-height: 48px;
}
.index-avia__path {
    color: #0EA5E9;
    font-size: 21px;
    font-weight: 400;
    line-height: 21px;
    padding-bottom: 4px;
}
.index-avia__plane {
    width: 100%;
    margin-bottom: 12px;
    background: url('../img/dashes_bg.svg') repeat-x center center;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.index-avia__plane-city {
    padding: 4px;
    border: 8px solid #0EA5E9;
    background: #fff;
    border-radius: 12px;
}
.index-avia__airplane {
    position: absolute;
    left: 0;
    top: -8px;
    z-index: 2;
    animation: planeFly 7s linear infinite;
}
@keyframes planeFly {
  from {
    left: 0%;
  }
  to {
    left: 97%;
  }
}
.index-avia__cities {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-avia__cities-block {
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    position: relative;
}
.index-avia__cities-block span {
    margin-right: 8px;
    border-bottom: 2px solid #0EA5E9;
    color: rgba(0, 0, 0, 0.90);
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}
.index-avia__dropdown {
    display: none;
    flex-direction: column;
    width: 200px;
    padding: 8px 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px 0 rgba(17, 17, 17, 0.12);
    position: absolute;
    top: 40px;
    z-index: 3;
}
.index-avia__to {
    right: 0;
}
.index-avia__from {
    left: 0;
}
.index-avia__cities-block img.active {
    transform: rotate(180deg);
}
.index-avia__dropdown.active {
    display: flex;
}
.index-avia__dropdown a {
    padding: 12px 20px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.index-avia__dropdown a:hover {
    font-weight: 700;
    color: #0EA5E9;
}
.activity-card-wrap {
    padding-bottom: 50%;
    min-height: 348px;
    overflow: hidden;
    position: relative;
}
.activity-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: center / cover no-repeat;
    overflow: hidden;
}
.activity-card:hover .activity-card__img {
    transform: scale(1.15);
}
.activity-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 16px;
    overflow: hidden;
    background: center / cover no-repeat;
    transition: transform 1.2s ease-out;
}
.activity-card__decor {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.activity-card__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    text-align: left;
    position: absolute;
    left: 20px;
    bottom: 24px;
    width: calc(100% - 40px);
}
.activity-card-wide {
    grid-column: span 2;
}
.event-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.event-card-big {
    background: center / cover no-repeat;
    transition: transform 1.2s ease-out;
    border-radius: 20px;
}
.event-card-big .event-card__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.80) 0%, rgba(17, 17, 17, 0.00) 100%);
}
.event-card-big .event-card__title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}
.event-card-big .event-card__details {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.event-card-big .intro-slider__details-date {
    margin: 0 !important;
}
.event-card-big span {
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
.event-card__img-wrap {
    width: 100%;
    height: 232px;
    overflow: hidden;
    border-radius: 20px;
}
.event-card__img {
    width: 100%;
    height: 100%;
    background: center / cover no-repeat;
    transition: transform 1.2s ease-out;
}
.event-card:hover .event-card__img {
    transform: scale(1.15);
}
.event-card__content {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.event-card__title {
    color: rgba(0, 0, 0, 0.90);
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 24px;
}
.event-card__details {
    display: flex;
    flex-direction: column;
}
.event-card__details .intro-slider__details-date {
    margin-bottom: 16px;
}
.event-card__details .intro-slider__details-date span {
    color: rgba(0, 0, 0, 0.90);
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
.event-card__details .intro-slider__details-place span {
    color: rgba(0, 0, 0, 0.90);
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
.event-card__details .intro-slider__details-date img, .event-card__details .intro-slider__details-place img {
    margin-right: 8px;
}
.event-card__subtitle {
    font-size: 16px;
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.60);
    margin-bottom: 24px;
}
.event-card__date {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.38);
    margin-top: auto;
}
.news-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.news-card__img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
}
.news-card__img {
    width: 100%;
    height: 100%;
    background: center / cover no-repeat;
    transition: transform 1.2s ease-out;
}
.news-card:hover .news-card__img {
    transform: scale(1.15);
}
.news-card__date {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    margin: 0 20px 8px 20px;
}
.news-card__title {
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin: 0 20px 20px 20px;
}
.slider-section-news .slick-track {
    padding-bottom: 10px;
}
.tour-card, .place-card {
    min-height: 376px;
    padding: 16px;
    border-radius: 24px;
    background: center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.tour-card__title {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
}
.place-card__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    margin-bottom: 18px;
}
.tour-card__price {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.84);
}
.place-card__type {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 12px;
}
.tour-card__price {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.tour-card__price img {
    margin-right: 8px;
}
.slider-section-news {
    padding-top: 0;
}
.place-card__type {
    margin-bottom: 12px;
}
.tour-card__button, .place-card__button {
    width: 100%;
    min-width: unset;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.20);
}
.tour-card__button:hover, .place-card__button:hover {
    border: 1px solid #fff;
    background: #fff;
    color: #0EA5E9;
}
.article-card, .impression-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
}
.article-card {
    min-height: 336px;
}
.impression-card {
    min-height: 512px;
    border-radius: 32px;
    overflow: hidden;
}
.article-card__img-wrap, .impression-card__img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.article-card__img, .impression-card__img {
    width: 100%;
    height: 100%;
    background: center / cover no-repeat;
    transition: transform 1.2s ease-out;
}
.article-card:hover .article-card__img {
    transform: scale(1.15);
}
.article-card__title, .impression-card__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
}
.impression-card:hover .impression-card__img {
    transform: scale(1.1);
}
.operator-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    padding-bottom: 40px;
    background-color: #fff;
}
.operator-card__img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 12px;
}
.operator-card__img {
    width: 100%;
    height: 100%;
    background: center / cover no-repeat;
    transition: transform 1.2s ease-out;
}
.operator-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
    text-align: center;
    margin: 0 32px;
}
.operator-card:hover .operator-card__img {
    transform: scale(1.15);
}
.article-page {
    padding: 96px 0 100px;
}
.breadcrumbs {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.breadcrumbs li:last-child {
    margin-right: 0;
}
.breadcrumbs li::after {
    content: url('../img/icons/breadcrumbs-arrow-white.svg');
    display: block;
    line-height: 0;
    margin-left: 20px;
}
.breadcrumbs li:last-child::after {
    display: none;
}
.breadcrumbs li a {
    text-decoration: none;
    color: #fff;
    transition: color .3s ease-out;
}
.breadcrumbs li a:hover {
    color: #4893FD;
}
.breadcrumbs_white {
    color: rgba(255, 255, 255, 0.60);
}
.breadcrumbs_white  li a {
    color: #fff;
}
.breadcrumbs_white  li::after {
    content: url('../img/icons/breadcrumbs-arrow-white.svg');
}
.article-head {
    min-height: 672px;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0 0 32px 32px;
    background: center / cover no-repeat;
}
.article-head__title {
    color: #fff;
}
.article-head__date {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 8px;
}
.article-head__place {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.article-head__type {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 16px; 
    color: #fff;
    margin-top: 16px;
}
.article-head__type img {
    width: 16px;
    margin-right: 12px;
}
.article-head__info {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4px 32px;
    margin-top: 16px;
}
.article-head__info-item {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 24px; 
    font-weight: 500;
    color: #fff;
}
.article-head__info-item img {
    width: 16px;
    margin: 4px 12px 0 0;
}
.article-row {
    display: flex;
    align-items: flex-start;
    margin: 0 -12px;
    margin-bottom: 80px;
}
.article-row__side {
    width: 25%;
    flex-shrink: 0;
    padding: 0 12px;
}
.article-row__main {
    width: 75%;
    padding: 0 12px; 
}
.article-row.fixed .article-row__side {
    position: fixed;
    top: 96px;
}
.article-row__side.bottom {
    align-self: flex-end;
}
.article-row.fixed .article-row__main {
    margin-left: 25%;
}
.article-share {
    max-width: 160px;
    margin: 0 auto;
}
.article-share__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 16px;
}
.article-main > *, .article-small {
    /* max-width: 65%;
    max-width: calc(66.666% - 24px); */
    max-width: 696px;
}
.article-subtitle {
    color: rgba(0, 0, 0, 0.87);
    font-size: 21px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 32px;
}
.article-panorama {
    width: 100%;
    margin-bottom: 64px;
}
.article-info {
    width: 100%;
    padding: 48px 64px;
    background-color: #EEF7FB;
    border-radius: 32px;
    margin-bottom: 64px;
}
.article-info-small {
    max-width: 696px;
}
.article-info__row {
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.no-padding {
    padding: 0 !important;
}
.article-info__row-left {
    display: flex;
    width: 63%;
    width: calc((100% - 64px) / 3 * 2 + 32px);
    margin-right: 32px;
}
.article-info__row-right {
    width: 33%;
    width: calc((100% - 64px) / 3);
}
.article-info__row-left .article-info__block {
    width: 48%;
    width: calc(50% - 16px);
    margin-right: 32px;
}
.article-info__row-left .article-info__block:last-child {
    margin: 0;
}
.article-info__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.article-info__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px; 
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}
.article-info__item, .article-info__text {
    color: rgba(0, 0, 0, 0.90);
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    margin-bottom: 16px;
}
.article-info__item {
    display: flex;
    align-items: flex-start;
    transition: opacity .3s ease-out;
}
.article-info__item:last-child, .article-info__text:last-child {
    margin-bottom: 0;
}
.article-info__item img {
    width: 16px;
    margin-right: 12px;
}
a.article-info__item:hover {
    opacity: 0.64;
}
.article-info__text a {
    font-weight: 500;
    color: #0EA5E9;
    text-decoration: underline;
}
.article-info__text a:hover {
    text-decoration: none;
}
.article-info__text b {
    font-weight: 600;
}
.article-info__button {
    margin-top: 40px;
}
.operator-info {
    display: flex;
    align-items: center;
    padding: 64px 0;
    width: 100%;
    max-width: 936px;
}
.operator-info__img {
    width: 48%;
    width: calc(50% - 12px);
    padding: 0 56px 0 64px;
    margin-right: 24px;
}
.operator-info__img img {
    display: block;
    border-radius: 12px;
    width: 100%;
}
.operator-info__text {
    width: 48%;
    width: calc(50% - 12px);
    max-width: 400px;
    padding: 0 64px 0 0;
}
.operator-info__name {
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 32px;
}
.article-text {
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.87);
}
.article-text p {
    color: rgba(0, 0, 0, 0.87);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}
.article-text a {
    font-weight: 500;
    color: #4893FD;
    text-decoration: underline;
}
.article-text a:hover {
    text-decoration: none;
}
.article-text .button {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}
.article-text .button img {
    border-radius: 0;
    margin: 0 0 0 8px;
}
.article-text .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px; 
    color: rgba(0, 0, 0, 0.87);
    margin: 64px 0 48px;
}
.article-text ul {
    margin: 48px 0;
    padding: 0;
    list-style: none;
}
.article-text ul li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}
.article-text ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4893FD;
}
.article-text ul li:last-child {
    margin-bottom: 0;
}
.article-author {
    width: 100%;
    padding: 48px 64px 64px;
    border-radius: 32px;
    background-color: #EEF5FF;
    margin: 64px 0;
}
.article-author__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px; 
    color: rgba(0, 0, 0, 0.38);
    margin-bottom: 20px;
}
.article-author__row {
    display: flex;
    align-items: center;
}
.article-author__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: center / cover no-repeat;
    flex-shrink: 0;
    margin-right: 24px;
}
.article-author__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 8px;
}
.article-author__position {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.60);
}
.article-quote {
    padding: 24px 24px 32px 24px;
    background: #EEF7FB;
    border-radius: 12px;
    margin: 32px 0;
    color: rgba(0, 0, 0, 0.87);
    font-size: 21px;
    font-weight: 400;
    line-height: 28px;
}
.article-main .article-quote {
    margin: 48px 0;
}
.info-block {
    padding: 48px 64px;
    width: 100%;
    border-radius: 32px;
    background-color: #EEF5FF;
    margin: 48px 0;
}
.info-block__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 24px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 32px;
}
.info-block__sm-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
}
.info-block__text {
    font-size: 14px;
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 32px;
}
.info-block__text-title {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.38);
    margin-bottom: 12px;
}
.info-block__button {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 32px;
}
.info-block > *:last-child {
    margin-bottom: 0;
}
.article-text img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 32px;
    margin: 48px 0;
}
.article-text .article-img {
    margin: 48px 0;
}
.article-text iframe {
    display: block;
    width: 100%;
    height: 392px;
    margin: 48px 0;
}
.article-text .article-video {
    margin: 48px 0;
}
.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 2px;
}
.video-container iframe, .article-text .video-container iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
    margin: 0;
}
.article-text .article-video .video-container {
    margin-bottom: 16px;
}
.article-main img, .article-main .article-img {
    max-width: 100%;
}
.article-main img, .article-main .article-img, .article-main iframe, .article-main .article-video  {
    margin: 64px 0;
}
.article-img img {
    max-width: 100%;
    margin: 0 0 16px 0;
}
.media-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 8px;
}
.media-copyright {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.38);
}
.article-img .media-title, .article-img .media-copyright {
    margin-left: 32px;
}
.article-main .article-img .media-title, .article-main .article-img .media-copyright {
    max-width: 664px;
}
.article-map {
    margin-top: 64px;
}
.article-map__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px; 
    color: rgba(0, 0, 0, 0.87);
    max-width: 696px;
    margin: 0 0 48px;
}
.article-map__block {
    width: 100%;
    height: 579px;
}
.article-gallery {
    margin: 64px 0;
    width: 100%;
}
.article-gallery-for {
    margin-bottom: 20px;
}
.article-gallery-for .slick-track {
    display: flex;
}
.article-gallery-for__slide {
    align-self: center;
}
.article-gallery-for__slide img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 500px;
    border-radius: 32px;
}
.article-gallery-nav {
    padding: 0 64px;
}
.article-gallery-nav .slick-list {
    margin: 0 -4px;
}
.article-gallery-nav.article-gallery-nav_small .slick-track {
    transform: none !important;
}
.article-gallery-nav .slick-track {
    display: flex;
    align-items: center;
    /* margin-left: 0; */
}
.article-gallery-nav__slide {
    width: 100%;
    opacity: 0.32;
    margin: 0 2px;
}
.article-gallery-nav__img {
    width: 100%;
    height: 56px;
    /* height: 0; */
    /* padding-bottom: 56%; */
    background: center / cover no-repeat;
    cursor: pointer;
    border-radius: 12px;
}
.article-gallery-nav__slide.slick-current {
    opacity: 1;
}
.article-img > *:last-child, .article-video > *:last-child {
    margin-bottom: 0;
}
.article-text > *:first-child {
    margin-top: 0;
}
.article-text > *:last-child {
    margin-bottom: 0;
}
.share-block .ya-share2__list {
    margin: 0 -8px -8px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap; 
}
.share-block .ya-share2__item {
    margin: 0 8px 8px 0;
}
.share-block .ya-share2__icon {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: center / 20px no-repeat;
    transition: border-color .3s ease-out, background-color .3s ease-out ;
}
.share-block .ya-share2__title, .share-block .ya-share2__copied-tooltip {
    display: none;
}
.share-block .ya-share2__item_service_vkontakte .ya-share2__icon {
    background-image: url('../img/icons/social-vk-black.svg');
}
.share-block .ya-share2__item_service_vkontakte:hover .ya-share2__icon {
    background-color: #0077FF;
    border-color: #0077FF;
    background-image: url('../img/icons/social-vk-white.svg');
}
.share-block .ya-share2__item_service_odnoklassniki .ya-share2__icon {
    background-image: url('../img/icons/social-ok-black.svg');
}
.share-block .ya-share2__item_service_odnoklassniki:hover .ya-share2__icon {
    background-color: #FF7700;
    border-color: #FF7700;
    background-image: url('../img/icons/social-ok-white.svg');
}
.share-block .ya-share2__item_service_max .ya-share2__icon {
    background-image: url('../img/icons/social-max-black.svg');
}
.share-block .ya-share2__item_service_max:hover .ya-share2__icon {
    background-color: #2958E7;
    border-color: #2958E7;
    background-image: url('../img/icons/social-max-white.svg');
}

.article-form {
    width: 100%;
    max-width: 696px;
    margin-top: 64px;
}
.article-form__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 32px;
}
.inputs-row {
    display: flex;
    margin-bottom: 32px;
}
.inputs-row .input-group {
    flex: 1;
    margin-right: 24px;
}
.inputs-row .input-group:last-child {
    margin-right: 0;
}
.input-group__title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 12px;
}
.input-group__title span {
    color: rgba(0, 0, 0, 0.38);
}
.form-input, .form-textarea {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 15px 0 19px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.87);
    transition: border-color .3s ease-out;
}
.form-textarea {
    height: 216px;
    padding: 15px;
    resize: none;
}
.form-input:hover, .form-input:focus, .form-textarea:hover, .form-textarea:focus {
    border-color: #4893FD;
}
.input-group.error .form-input, .input-group.error .form-textarea {
    border-color: #CD1719;
}
.input-group.error .error-text, .checkbox-group.error .error-text {
    display: block;
}
.error-text {
    display: none;
    font-size: 12px;
    line-height: 16px;
    color: #CD1719;
    margin-top: 8px;
}
.form-input-icon {
    position: relative;
}
.form-input-icon .form-input {
    padding-left: 48px;
}
.form-input-icon svg {
    width: 16px;
    position: absolute;
    top: 16px;
    left: 20px;
    pointer-events: none;
}
.form-input-icon svg path {
    transition: fill .3s ease-out;
}
.form-input:hover + svg path, .form-input:focus + svg path {
    fill: #4893FD;
}
.input-group.error .form-input-icon svg path {
    fill: #CD1719;
}
.checkbox-group {
    margin-top: 32px;
}
.form-submit-wrap {
    margin-top: 32px;
    text-align: center;
}
.other-section {
    padding: 100px 0 148px;
    background-color: #F8FAFC;
}
.other-section__block {
    margin-bottom: 100px;
}
.other-section__block:last-child {
    margin-bottom: 0;
}
.big-slider__title {
    font-size: 48px;
    line-height: 48px;
}
.page-head {
    min-height: 672px;
    padding: 152px 0 80px;
    border-radius: 0 0 32px 32px;
    background: center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}
.article-head .page-head__title {
    color: #fff;
}
.object-head {
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.40) 0%, rgba(17, 17, 17, 0.28) 100%);
    backdrop-filter: blur(24px);
}
.object-head .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.object-left .breadcrumbs {
    margin-bottom: 300px;
    margin-top: 20px;
}
.object-photo {
    max-width: 516px;
    border-radius: 32px;
    margin-left: 24px;
}
.page-body {
    padding: 0 0 100px 0;
}
.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}
.more-button-wrap {
    margin-top: 80px;
    text-align: center;
    display: none;
}
.card {
    display: none;
}
.card.active{
    display: block;
}
.tour-card.active, .impression-card.active, .article-card.active, .event-card.active {
    display: flex;
}
.cards-page {
    padding: 172px 0 148px;
}
.cards-page-new {
    padding-bottom: 148px;
}
.new_breadcrumbs {
    padding: 172px 0 64px 0;
}
.new_breadcrumbs li {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.38);
}
.new_breadcrumbs li a {
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.new_breadcrumbs li::after {
    content: url('../img/icons/breadcrumbs-arrow.svg');
}
.cards-page__title {
    margin-bottom: 80px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}
.impressions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}
.tourists-section {
    padding: 100px 0 148px;
}
.tourists-section__block {
    margin-bottom: 100px;
}
.tourists-section__block:last-child {
    margin-bottom: 0;
}
.souvenirs-banner, .vtours-banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 32px;
    min-height: 400px;
    overflow: hidden;
}
.vtours-banner {
    background: url('../img/banner_bg.png') center / cover no-repeat;
    margin-top: 64px;
}
.souvenirs-banner_bg {
    border-radius: 32px;
    margin-bottom: 100px;
    padding: 24px 32px 0 72px;
    background: linear-gradient(90deg, #13A5E9 0%, #D4BDCF 53.45%, #F59E10 107.94%);
}
.souvenirs-banner {
    background: url('../img/souvenirs_bg.svg') no-repeat;
    background-position: right center;
}
.souvenirs-banner__content {
    position: relative;
    z-index: 1;
    width: 50%;
    padding-right: 32px;
}
.souvenirs-banner__title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    max-width: 396px;
}
.souvenirs-banner__button {
    margin-top: 48px;
    background: #fff;
    color: #0EA5E9;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    padding: 12px 52px;
}
.souvenirs-banner__button:hover {
    background: #0EA5E9;
    color: #fff;
}
.souvenirs-banner__img {
    position: absolute;
    top: 16px;
    right: 80px;
    display: block;
    max-width: 50%;
}
.vtours-banner__content {
    position: relative;
    z-index: 1;
    padding: 48px 0 48px 72px;
    width: 50%;
}
.vtours-banner__img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 80%;
}
.vtours-banner__title, .vtour-card__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
}
.vtours-banner__text, .vtour-card__text {
    font-size: 16px;
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.87);
}
.vtours-banner__text {
    max-width: 421px;
}
.vtours-banner__button, .vtour-card__button {
    margin-top: 48px;
}
.vtour-card {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    min-height: 400px;
    background-color: #EEF5FF;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 24px;
}
.vtour-card:last-child {
    margin-bottom: 0;
}
.vtour-card__content {
    grid-column: span 5;
    padding: 48px 0 48px 72px;
    align-self: center;
}
.vtour-card__img {
    grid-column: span 7;
    background: center / cover no-repeat;
    border-bottom-left-radius: 800px;
}
.operator-page {
    padding: 172px 0 100px;
}
.operator-page__title {
    margin-bottom: 80px;
}
.article-share_mvisible {
    display: none;
}
.other-tours {
    margin-top: 100px;
}
.articles-grid, .activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}
.blue-page {
    background-color: #EEF5FF;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 80px 24px;
}
.tabs-list {
    display: flex;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    overflow-y: auto;
}
.tabs-list li {
    margin-right: 24px;
}
.tabs-list__link {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.38);
    text-decoration: none;
    display: block;
    padding-bottom: 8px;
    transition: color .3s ease-out;
}
.tabs-list__link:hover {
    color: rgba(0, 0, 0, 0.87);
}
.tabs-list__link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    margin-top: 2px;
    background-color: #0EA5E9;
    opacity: 0;
    transition: opacity .3s ease-out;
}
.tabs-list__link.active {
    color: rgba(0, 0, 0, 0.87);
    pointer-events: none;
}
.tabs-list__link.active::after {
    opacity: 1;
}
.tabs-body {
    display: none;
}
.tabs-body.active {
    display: block;
}
.error-page {
    background: url('../img/404_bg.png');
    min-height: 100vh;
    padding: 136px 0 148px;
    display: flex;
    align-items: center;
}
.error-page__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.error-page__img {
    display: block;
    max-width: 100%;
    margin-bottom: 48px;
}
.error-page__title {
    color: rgba(0, 0, 0, 0.90);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 8px;
}
.error-page__text {
    color: rgba(0, 0, 0, 0.90);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 auto 40px auto;
}
.invest-page-body {
    padding: 80px 0 148px;
}
.route-block {
    margin-top: 64px;
}
.route-block__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 44px 0;
}
.route-block__row {
    width: 100%;
    height: 568px;
    display: flex;
    justify-content: space-between;
}
.route-block__left {
    width: 31%;
    width: calc(33% - 12px);
    height: 100%;
    overflow-y: auto;
}
.route-block__right {
    width: 66%;
    width: calc(67% - 12px);
}
.route-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.route-menu__item {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; 
    color: rgba(0, 0, 0, 0.87);
    border-radius: 12px;
    background-color: #EEF5FF;
    padding: 8px 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color .3s ease-out, background-color .3s ease-out;
}
.route-menu__item:last-child {
    margin-bottom: 0;
}
.route-menu__item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-right: 12px;
}
.route-menu__item:hover {
    background-color: #4893FD;
    color: #fff;
}
.route-map {
    width: 100%;
    height: 100%;
}
.pin-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.87);
    background-color: #EEF5FF;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.20);
}
.pin-balloon {
    display: none;
    background-color: #fff;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.87);
    border-radius: 16px;
    padding: 6px 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 4px;
    margin-left: 20px;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}
.pin-container:hover .pin-number, .pin-container.active .pin-number {
    background-color: #4893FD;
    color: #fff;
}
.pin-container:hover .pin-balloon,.pin-container.active .pin-balloon {
    display: block;
}
.ymaps-2-1-79-placemark-overlay:has(.pin-container.active) {
    z-index: 651 !important;
}
.vtour-page {
    padding: 172px 0 148px;
}
.vtour-page__title {
    margin-bottom: 80px;
}
.documents-page {
    padding: 172px 0 148px;
    min-height: 100vh;
}
.documents-page__title {
    margin-bottom: 80px;
}
.documents-section {
    margin-bottom: 80px;
}
.documents-section__year-block {
    margin-bottom: 64px;
}
.documents-section:last-child, .documents-section__year-block:last-child {
    margin-bottom: 0;
}
.documents-section__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 48px;
}
.documents-section__subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 48px;
}
.documents-section__year-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px; 
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 32px;
}
.documents-section__files-group {
    margin-bottom: 48px;
}
.documents-section__files-group:last-child {
    margin-bottom: 0;
}
.document {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 19px;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 12px;
    transition: background-color .3s ease-out;
}
.document:last-child {
    margin-bottom: 0;
}
.document:hover {
    background-color: #EEF5FF;
}
.document__icon {
    width: 44px;
    flex-shrink: 0;
    margin-right: 16px;
}
.document__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.87);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.document__info {
    flex: 1;
    max-width: calc(100% - 128px);
}
.document__data {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.38);
}
.document__button {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 50%;
    margin-left: 20px;
    opacity: 0;
    transition: .3s ease-out;
}
.document__button svg path {
    transition: fill .3s ease-out;
}
.document:hover .document__button {
    opacity: 1;
}
.document__button:hover {
    border-color: #4893FD;
    background-color: #4893FD;
}
.document__button:hover svg path {
    fill: #fff;
}
.tours-filters {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
}
.clear-filters {
    align-self: flex-end;
    margin-left: auto;
    display: none;
}
.tours-range-blocks {
    display: flex;
    align-items: flex-start;
    margin-right: 48px;
}
.tours-range {
    width: 287px;
    margin-right: 32px;
}
.tours-range:last-child {
    margin: 0;
}
.tours-range__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 12px;
}
.tours-range__value {
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 8px;
}
.tours-range__slider-wrap {
    padding: 10px 12px;
}
.ui-slider {
    height: 4px;
    border: none;
    border-radius: 12px;
    background: #EEF5FF;
}
.ui-slider .ui-slider-range {
    border: none;
    height: 4px;
    top: 0;
    background: #0EA5E9;
}
.ui-slider .ui-slider-handle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff url('../img/icons/range-dot.svg') center / 8px no-repeat;
    border: 2px solid #0EA5E9;
    top: -10px;
    margin-left: -12px;
    outline: none;
    transition: transform .3s ease-out;
}
.ui-slider .ui-slider-handle:hover, .ui-slider .ui-slider-handle.ui-state-active {
    transform: scale(1.15);
}
.tours-select-blocks {
    display: flex;
    align-items: flex-start;
}
.tours-select-block {
    width: 272px;
    margin-right: 32px;
}
.tours-select-block:last-child {
    margin: 0;
}
.tours-select-block__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 14px;
}
.select {
    position: relative;
}
.select__default-option {
    width: 100%;
    height: 48px;
    padding: 0 15px 0 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.38);
    color: rgba(0, 0, 0, 0.6);
    transition: border-color .3s ease-out;
    font-size: 16px;
    line-height: 24px;
}
.select__default-option span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.select__default-option svg {
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s ease-out;
}
.select__default-option svg path {
    transition: stroke .3s ease-out;
}
.select__default-option:hover, .select__default-option.active {
    border-color: #4893fd;
}
.select__default-option:hover svg path, .select__default-option.active svg path {
    stroke: #4893fd;
}
.select__default-option.active svg {
    transform: rotate(180deg);
}
.select__dropdown {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 100%;
    margin-top: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(179, 197, 210, 0.3);
    box-shadow: 0px 0px 12px rgba(0, 51, 91, 0.04), 0px 24px 52px rgba(0, 51, 91, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    max-height: 306px;
    overflow-y: auto;
}
.select__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.select__dropdown.active {
    display: block;
}
.checkbox {
    display: block;
    min-height: 24px;
}
.checkbox__input {
    display: none;
}
.checkbox__text  {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}
.checkbox__text a {
    color: #4893FD;
    text-decoration: underline;
}
.checkbox__text::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: url('../img/icons/icon-checkbox.svg') center /contain no-repeat;
    background-size: 0;
    border-radius: 3px;
    box-sizing: border-box;
    transition: border-color .3s ease-out;
}
.checkbox:hover .checkbox__text::before {
    border-color: #4893FD;
}
.checkbox__input:checked + .checkbox__text::before {
    border-color: #1364D8;
    background-color: #1364D8;
    background-size: 10px;
}
.select__checkbox {
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color .3s ease-out;
}
.select__checkbox:hover {
    background-color: #eef5ff;
}
.select__all-button {
    margin: 0 8px;
}
.tours-filters-head {
    display: none;
    justify-content: space-between;
}
.tours-filters-head__title {
    display: flex;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.87);
}
.tours-filters-head__title img {
    margin-left: 12px;
    transition: transform .3s ease-out;
}
.tours-filters-head__title.active img {
    transform: rotate(180deg);
}
.tours-filters-head__number {
    display: none;
    font-size: 14px;
    line-height: 20px;
    color: #4893FD;
}
.select__close-button {
    display: none;
}
.select__mob-head {
    display: none;
    width: 100%;
    height: 48px;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.87);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0 40px 0 48px;
}
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 24px;
    grid-template-areas: ". a a a a a a a a a a .";
}
.feedback-grid-item {
    grid-area: a;
}
.feedback-list .feedback-card {
    margin-bottom: 24px;
}
.feedback-list .feedback-card:last-child {
    margin-bottom: 0;
}
.feedback-card {
    background-color: #EEF5FF;
    padding: 48px 48px 64px;
    border-radius: 32px;
}
.feedback-card.active {
    display: flex;
}
.feedback-card__img, .feedback-card__mob-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    background: center / cover no-repeat;
    margin-right: 24px;
}
.feedback-card__mob-img {
    display: none;
}
.feedback-card__text {
    font-size: 16px;
    line-height: 24px;
    color:  rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
}
.feedback-card__button {
    cursor: pointer;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    line-height: 24px;
    color: #4893FD;
    display: none;
    align-items: center;
    margin-bottom: 24px;
}
.feedback-card__button img {
    margin-left: 8px;
}
.feedback-card__text.hidden {
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feedback-card__button.visible {
    display: inline-flex;
}
.feedback-card__button.active img {
    transform: rotate(180deg);
}
.feedback-card__name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color:  rgba(0, 0, 0, 0.87);
    margin-bottom: 8px;
}
.feedback-card__desc {
    font-size: 14px;
    line-height: 20px;
    color:  rgba(0, 0, 0, 0.6);
}
.tourists-slider-section {
    margin-bottom: 100px;
}
.feedback-slider .slick-list{
    margin: 0;
}
.feedback-slider .slider-cards__slide {
    width: 1176px;
    height: 100%;
}
.slider-cards.slick-initialized .feedback-card {
    display: flex;
}
.modal {
    display: none;
    position: fixed;
    z-index: 12;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(17, 17, 17, 0.4);
    padding: 64px 48px;
}
.modal.active {
    display: flex;
}
.modal-block {
    width: 100%;
    max-width: 696px;
    margin: auto;
    background: #fff;
    position: relative;
    border-radius: 24px;
}
.modal-cross {
    position: absolute;
    right: 16px;
    top: 16px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    padding: 0;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: url('../img/icons/modal-close.svg') center / 16px no-repeat;
    transition: background-color .3s ease-out;
}
.modal-cross:hover {
    background-color: #EEF5FF;
}
.modal-success {
    padding: 80px 48px 64px;
    max-width: 576px;
    text-align: center;
}
.modal-success__title {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    color:  rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
}
.modal-success__text {
    font-size: 16px;
    line-height: 24px;
    color:  rgba(0, 0, 0, 0.87);
}
.modal-success__button {
    margin-top: 48px;
}
.modal-form__title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color:  rgba(0, 0, 0, 0.87);
    padding: 26px 64px 17px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.modal-form__body {
    padding: 24px 24px 64px;
}
.file-input {
    display: flex;
    align-items: center;
    margin-top: 24px;
}
.file-input__input {
    display: none;
}
.file-input__preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #D1D7E0;
    background: center / cover no-repeat;
    margin-right: 20px;
}
.file-input__preview.active {
    border: none;
}
.file-input__buttons {
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.file-input__note {
    font-size: 14px;
    line-height: 20px;
    color:  rgba(0, 0, 0, 0.38);
}
.file-input__label .file-label__icon-active {
    display: none;
}
.file-input__remove {
    display: none;
}
.file-input__remove.active {
    display: inline-flex;
}
.file-input__label.active .file-label__icon-default {
    display: none;
}
.file-input__label.active .file-label__icon-active {
    display: block;
}
.korfest-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    border-radius: 32px;
    min-height: 400px;
    padding: 40px 72px 76px;
    background: url('../img/korfest-banner-bg.png') center / cover no-repeat;
    margin-top: 64px;
}
.korfest-banner__logo {
    display: block;
    width: 128px;
    max-width: 100%;
    margin-bottom: 24px;
}
.korfest-banner__subtitle {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color:  rgba(0, 0, 0, 0.87);
    margin-bottom: 4px;
}
.korfest-banner__title {
    font-size: 68px;
    line-height: 1;
    font-weight: 700;
    color:  rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
}
.korfest-banner__text {
    font-size: 14px;
    line-height: 20px;
    color:  rgba(0, 0, 0, 0.87);
}
.korfest-banner__button {
    margin-top: 32px;
}
.main-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
}
.main-popup.hidden {
    display: none;
}
.main-popup__filter {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(17, 17, 17, 0.40);
    width: 100%;
    height: 100%;
}

.main-popup__block {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    padding: 16px 56px 64px;
    width: 100%;
    max-width: 960px;
    max-height: 100%;
}

.main-popup__cross {
    margin-right: -40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin: 0 -40px 0 auto;
    cursor: pointer;
}

.main-popup__img {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
}

.main-popup__cross:hover {
    background: #EEF5FF;
}

.main-popup__title {
    max-width: 696px;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 auto 24px;
}

.main-popup__text {
    max-width: 696px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 auto 48px;
}

.main-popup__link {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #FF4E50;
    padding: 12px 32px;
    width: 100%;
    max-width: 216px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
}

.events-search__container {
    display: flex;
    align-items: stretch;
    margin-top: 48px;
}

.events-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px 12px 20px;
    width: calc(100%);
}

.events-search input {
    outline: none;
    height: 24px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.87);
    background: transparent;
    border: 0;
    border-radius: 0;
}

.events-search__cross {
    display: none;
    align-items: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
    opacity: 0.64;
    cursor: pointer;
}

.events-search__cross img {
    margin-left: 4px;
}

.events-search__cross:hover {
    opacity: 1;
}

.events-search.active .events-search__cross {
    display: flex;
}

.events-search__button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #FF4E50;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #FFF;
    width: 215px;
    margin-left: 12px;
    cursor: pointer;
    flex: none;
}

.events-search__button img {
    margin-right: 8px;
}

.events-search__button:hover {
    background: #CD1719;
}

.tabs__container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.tabs-districts__container {
    width: 336px;
    margin-bottom: 40px;
}

.tabs-districts__container-title {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 12px;
}

.event-card__date {
    display: flex;
    align-items: center;
}

.event-card__date img {
    margin-right: 7px;
}

.event-card__map {
    margin-top: 12px;
}
.index-fortourusts {
    margin-bottom: 64px;
    height: 636px;
}
.index-fortourusts .container {
    position: relative;
    display: flex;
    align-items: center;
    height: 636px;
}
.index-fortourusts_bg {
    background: url('../img/for_tourists_bg.avif') no-repeat center center;
    background-size: cover;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 940px;
    height: 636px;
    border-radius: 32px;
}
.index-fortourusts_tags {
    padding: 48px 32px 72px 32px;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04);
    z-index: 2;
    width: 670px;
    display: flex;
    flex-direction: column;
}
.index-fortourusts_tags-title {
    margin-bottom: 32px;
    color: rgba(0, 0, 0, 0.90);
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
}
.index-fortourusts_tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.index-fortourusts_tags-link {
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}
.tag-color_1 {
    background: #FCF4FA;
}
.tag-color_2 {
    background: #FFF9EF;
}
.tag-color_3 {
    background: #EEF7FB;
}
.index-fortourusts_tags-link img {
    margin-left: 8px;
}
.index-fortourusts_tags-button {
    color: #0EA5E9;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    padding: 12px 32px;
    border-radius: 12px;
    border: 1px solid #0EA5E9;
    text-decoration: none;
    width: 180px;
    text-align: center;
}
.index-map-bg {
    width: 100%;
}

.slick-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 50%;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 50%;
    outline: none;
    background: center / 16px no-repeat;
    background-color: #fff;
    z-index: 1;
    transition: border-color .3s ease-out, background-color .3s ease-out;
}
.slick-arrow:hover {
    border-color: #0EA5E9;
    background-color: #0EA5E9;
}
.slick-prev {
    left: -72px;
    background-image: url('../img/slider-prev.svg');
}
.slick-prev:hover {
    background-image: url('../img/slider-prev-hover.svg');
}
.slick-next {
    right: -72px;
    background-image: url('../img/slider-next.svg');
}
.slick-next:hover {
    background-image: url('../img/slider-next-hover.svg');
}

.intro-slider .slick-prev {
    right: 0;
    bottom: 79px;
    left: initial;
}
.intro-slider .slick-next {
    right: 0;
    bottom: 79px;
}

.index-events .slick-prev, .index-events .slick-next, .index-tours .slick-prev, .index-tours .slick-next, .slider-section-news .slick-prev, .slider-section-news .slick-next, .feedback-slider-section .slick-prev, .feedback-slider-section .slick-next {
    border: 1px solid #0EA5E9;
}

.index-activities .slick-arrow, .index-tours .slick-arrow, .slider-section-news .slick-arrow {
    bottom: 155px;
}

.impressions-bg .slick-arrow {
    bottom: 232px;
}

.feedback-slider-section .slick-prev {
    top: -96px;
    right: 56px;
    left: initial;
}
.feedback-slider-section .slick-next {
    top: -96px;
    right: 0;
}
.slider-1card-mobile {
    display: none;
}

.events2026 .event-card-big {
    grid-column: span 2;
    min-height: 372px;
}

.error-page__button {
    border-radius: 12px;
    background: #0EA5E9;
    padding: 12px 52px;
}

.error-page__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.error-page__links a {
    padding: 16px;
    color: rgba(0, 0, 0, 0.87);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
}
.error-page__links a:hover {
    text-decoration: none;
    color: #0EA5E9;
}

.useful-section {
    padding-top: 0;
}

.reestr {
    margin: 24px 12px;
    padding: 20px 20px 20px 28px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reestr-left {
    display: flex;
    align-items: center;
}

.reestr-left img {
    margin-right: 16px;
}

.reestr-left span {
    color: rgba(0, 0, 0, 0.90);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.object-container {
    margin-top: 80px;
}

.object-wrap {
    border-radius: 0 0 32px 32px;
}

.header-logo__search-link {
    cursor: pointer;
}

.global-search {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #E0F1F9 0%, #F7F0E3 100%);
    display: none;
}
.global-search.active {
    display: flex;
}

.global-search__content {
    display: flex;
    flex-direction: column;
    max-width: 840px;
}

.global-search__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.global-search__title>img {
    cursor: pointer;
}

.global-search__title-text {
    color: rgba(0, 0, 0, 0.90);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}

.global-search__form {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.global-search__form input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #fff;
    padding: 12px 16px 12px 20px;
    outline: none;
    color: rgba(0, 0, 0, 0.87);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.global-search__form input::placeholder {
    color:  rgba(0, 0, 0, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.global-search__form-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 12px;
    background: #0EA5E9;
    cursor: pointer;
}

.global-search__form-button span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.global-search__subtitle {
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.40);
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
}

.global-search__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
}

.global-search__tags a {
    color: rgba(0, 0, 0, 0.87);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-bottom: 148px;
}

.guides-grid__item {
    display: flex;
    align-items: flex-start;
    padding: 20px 20px 32px 20px;
    border-radius: 32px;
    background: #EEF7FB;
}

.guides-grid__item-photo {
    margin-right: 24px;
    width: 100px;
    border-radius: 100px;
    flex: none;
}

.guides-grid__item-details {
    display: flex;
    flex-direction: column;
}

.guides-grid__item-fio {
    color: rgba(0, 0, 0, 0.90);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px;
}

.guides-grid__item-number {
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.guides-grid__item-email {
    color: rgba(0, 0, 0, 0.90);
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.guides-grid__item-phone {
    color: rgba(0, 0, 0, 0.90);
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.guides-grid__item-email img, .guides-grid__item-phone img {
    margin-right: 12px;
}

.guides-grid__item-socials {
    display: flex;
    align-items: center;
    gap: 4px;
}

.guides-grid__item-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    border: 0.667px solid rgba(0, 0, 0, 0.20);
}

.search_breadcrumbs {
    background: linear-gradient(90deg, #E0F1F9 0%, #F7F0E3 100%);
    padding: 172px 0 32px 0;
}

.search_breadcrumbs .global-search__form {
    margin-bottom: 0;
}

.search-breadcrumbs__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.search-breadcrumbs__title {
    color: rgba(0, 0, 0, 0.90);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}

.search-breadcrumbs__count {
    color: rgba(0, 0, 0, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.search-result__wrap {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 64px 0;
}

.search-result__wrap-left {
    display: flex;
    flex-direction: column;
    flex: none;
    width: 276px;
    padding: 8px 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px 0 rgba(17, 17, 17, 0.08);
}

.search-counters__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.search-counters__count {
    color: rgba(0, 0, 0, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.search-counters__value {
    display: flex;
    align-items: center;
}

.search-counters__value input {
    margin-right: 12px;
    cursor: pointer;
}

.search-counters__reset {
    color: #0EA5E9;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
}

.search-counters__value>span {
    color: rgba(0, 0, 0, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.search-result__wrap-right {
    display: flex;
    flex-direction: column;
}

.search-result__item {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 16px 24px 16px 16px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 8px 24px 0 rgba(17, 17, 17, 0.08);
    text-decoration: none;
}

.search-result__item>img {
    border-radius: 16px;
}

.search-result__item-details {
    display: flex;
    flex-direction: column;
}

.search-result__item-cat {
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.search-result__item-name {
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.90);
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
}

.search-result__item-date {
    color: rgba(0, 0, 0, 0.90);
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}

.search-result__item.hidden {
    display: none;
}

.map_wrap {
    background: url('../img/map.svg') no-repeat center center;
    width: 1416px;
    height: 1080px;
    position: relative;
    z-index: 0;
}

.map_place {
    position: absolute;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
}

.map_place span {
    position: absolute;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 16px 0 rgba(1, 40, 72, 0.20);
    color: rgba(0, 0, 0, 0.90);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.map_place-small span {
    padding: 4px 6px;
    font-size: 16px;
    line-height: 16px;
}

.map_place-big span {
    padding: 4px 6px;
    font-size: 20px;
    line-height: 20px;
}

.map_place-giant span {
    padding: 4px 10px;
    font-size: 28px;
    line-height: 32px;
}

.map_place:hover span {
    color: #0EA5E9;
}

.map_place span img {
    width: 12px;
}

.map_place .map_place-img {
    background: url('../img/map_pin.svg') no-repeat center center;
    background-size: contain;
}

.map_place:hover .map_place-img {
    background: url('../img/map_pin_active.svg') no-repeat center center;
    background-size: contain;
}

.map_place-small .map_place-img {
    width: 24px;
    height: 32px;
}

.map_place-big .map_place-img, .map_place-giant .map_place-img  {
    width: 42px;
    height: 56px;
}

.map_wrap .coordinates_1 {
    left: 918px;
    top: 96px;
}

.map_wrap .coordinates_1 span {
    top: 36px;
    left: -12px;
}

.map_wrap .coordinates_2 {
    left: 530px;
    top: 180px;
}

.map_wrap .coordinates_2 span {
    top: 66px;
    left: -16px;
}

.map_wrap .coordinates_3 {
    left: 640px;
    top: 340px;
}

.map_wrap .coordinates_3 span {
    top: -4px;
    left: 34px;
}

.map_wrap .coordinates_4 {
    left: 372px;
    top: 372px;
}

.map_wrap .coordinates_4 span {
    top: 66px;
    left: -2px;
}

.map_wrap .coordinates_5 {
    left: 334px;
    top: 508px;
}

.map_wrap .coordinates_5 span {
    top: 38px;
    left: -36px;
}

.map_wrap .coordinates_6 {
    left: 580px;
    top: 468px;
}

.map_wrap .coordinates_6 span {
    top: 38px;
    left: -48px;
}

.map_wrap .coordinates_7 {
    left: 930px;
    top: 542px;
}

.map_wrap .coordinates_7 span {
    top: 60px;
    left: 22px;
}

.map_wrap .coordinates_8 {
    left: 904px;
    top: 546px;
}

.map_wrap .coordinates_8 span {
    top: -28px;
    left: -164px;
}

.map_wrap .coordinates_9 {
    left: 974px;
    top: 534px;
}

.map_wrap .coordinates_9 span {
    top: -28px;
    left: -4px;
}

.map_wrap .coordinates_10 {
    left: 1106px;
    top: 452px;
}

.map_wrap .coordinates_10 span {
    top: 24px;
    left: 22px;
}

.map_wrap .coordinates_11 {
    left: 1294px;
    top: 584px;
}

.map_wrap .coordinates_11 span {
    top: -30px;
    left: -34px;
}

.map_wrap .coordinates_12 {
    left: 1222px;
    top: 614px;
}

.map_wrap .coordinates_12 span {
    top: 62px;
    left: 6px;
}

.map_wrap .coordinates_13 {
    left: 1200px;
    top: 620px;
}

.map_wrap .coordinates_13 span {
    top: -30px;
    left: -120px;
}

.map_wrap .coordinates_14 {
    left: 1144px;
    top: 720px;
}

.map_wrap .coordinates_14 span {
    top: 62px;
    left: -48px;
}

.map_wrap .coordinates_15 {
    left: 1186px;
    top: 716px;
}

.map_wrap .coordinates_15 span {
    top: 20px;
    left: 26px;
}

.map_wrap .coordinates_16 {
    left: 872px;
    top: 920px;
}

.map_wrap .coordinates_16 span {
    top: 36px;
    left: -28px;
}

.map_wrap .coordinates_17 {
    left: 872px;
    top: 828px;
}

.map_wrap .coordinates_17 span {
    top: 60px;
    left: -48px;
}

.map_wrap .coordinates_18 {
    left: 520px;
    top: 684px;
}

.map_wrap .coordinates_18 span {
    top: 60px;
    left: -32px;
}

.map_wrap .coordinates_19 {
    left: 798px;
    top: 700px;
}

.map_wrap .coordinates_19 span {
    top: 62px;
    left: -50px;
}

.map_selector {
    position: absolute;
    left: 0;
    top: 32px;
    z-index: 3;
    padding: 14px 16px;
    cursor: pointer;
    border-radius: 16px;
    border: 1px solid #0EA5E9;
    background: #EEF7FB;
    display: flex;
    flex-direction: column;
    width: 328px;
}

.map_selector-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map_selector-main span {
    color: rgba(0, 0, 0, 0.87);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.map_selector-list {
    display: none;
    flex-direction: column;
    margin-top: 14px;
}

.map_selector.active .map_selector-list {
    display: flex;
}

.map_selector-list a {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    padding: 8px 16px;
    border-radius: 24px;
    background: #fff;
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
}

.map_selector-list a img {
    width: 12px;
}

.article-map__full {
    border-radius: 32px;
    background: linear-gradient(90deg, #E0F1F9 0%, #F7F0E3 57.47%);
    padding-left: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: initial;
    overflow: hidden;
    /* margin-left: -280px; */
}

.article-map__full-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 32px;
}

.article-map__full-info span {
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.87);
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
}

.article-map__full-info p {
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.article-map__full-info a {
    text-decoration: none;
    border-radius: 12px;
    background: #0EA5E9;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    padding: 12px 32px;
}

.article-map__full>img {
    margin: 0;
    width: 50%;
    border-radius: 0 0 0 800px;
}

.object-container .tours-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: initial;
}

.object-container .tour-card__price img {
    margin: 0 8px 0 0;
}

.more-places__slide-img {
    width: 180px;
    height: 180px;
    border-radius: 146px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}

.more-places__slide-name {
    color: rgba(0, 0, 0, 0.90);
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
    display: block;
}

.more-places__slide {
    text-decoration: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.more-places__slide-color1 {
    border: 6px solid #16A5E9;
}
.more-places__slide-color2 {
    border: 6px solid #F0A330;
}
.more-places__slide-color3 {
    border: 6px solid #D4BDCF;
}

.article-map__routes {
    border-radius: 32px;
    background: #FFF9EF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 54px 80px 54px;
    max-width: initial;
}

.article-map__routes-title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.article-map__routes-title img {
    margin: 0 20px 0 0 !important;
}

.article-map__routes-title span {
    color: rgba(0, 0, 0, 0.87);
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}

.article-map__routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-map__routes-item {
    padding: 32px 24px 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.article-map__routes-itemtop {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.article-map__routes-itemtop span {
    color: rgba(0, 0, 0, 0.87);
    font-size: 21px;
    font-weight: 700;
    line-height: 24px;
}

.article-map__routes-itemtop img {
    margin: 0 0 0 2px !important;
}

.article-map__routes-itemtop p {
    color: rgba(0, 0, 0, 0.87);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.article-map__objects {
    display: flex;
    flex-direction: column;
}

.article-map__objects {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    border-radius: 32px;
    background: #EEF7FB;
    max-width: initial;
}

.article-map__objects-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 12px 12px 12px 32px;
    width: 100%;
}

.article-map__objects-head span {
    color: rgba(0, 0, 0, 0.87);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.article-map__objects-head img {
    margin: 0 !important;
}

.article-map__objects .articles-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    margin: 16px 0 32px 0;
    grid-gap: 16px 10px;
}

.article-map__objects.active {
    padding-bottom: 32px;
}
.article-map__objects.active .articles-grid {
    display: grid;
}

@media only screen and (max-width: 1600px) {
    .intro-slider__slide {
        min-height: 672px;
    }

    .map_selector {
        left: 48px;
    }

    .container-nopadding {
        padding: 0 !important;
    }
}
@media only screen and (max-width: 1367px) {
    .article-main > *, .article-small, .article-main .article-img .media-title, .article-main .article-img .media-copyright, .article-map__title, .article-info-small, .operator-info, .article-form {
        max-width: 100%;
    }
    .header-nav li {
        margin-right: 20px;
    }
    .tours-filters {
        flex-wrap: wrap;
    }
    .tours-range-blocks {
        width: 100%;
        margin: 0 0 32px;
    }
    .feedback-slider .slick-list {
        margin: 0 -12px;
    }
    .feedback-grid {
        display: block;
    }
}
@media only screen and (max-width: 1024px) {
    .article-map__routes {
        padding: 48px 24px 64px 24px;
    }
    .map_place {
        display: none;
    }
    .map_wrap {
        width: 100%;
        height: 800px;
        background-size: contain;
    }
    .slick-prev {
        top: -96px;
        right: 56px;
        left: initial;
    }
    .slick-next {
        top: -96px;
        right: 0;
    }
    .intro-slider .slick-next, .intro-slider .slick-prev {
        top: initial;
    }
    .index-activities .slick-next, .index-activities .slick-prev {
        border: 1px solid #0EA5E9;
    }

    .header.active {
        background-color: #fff;
    }
    .header.active .header-logo__img-white {
        display: none;
    }
    .header.active .header-logo__img-blue {
        display: block;
    }
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: calc(100vh - 100%);
        background-color: #fff;
        padding: 40px 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        overflow-y: auto;
    }
    .header-nav__link {
        display: block;
        padding: 8px 0;
    }
    .header.active .header-nav {
        display: block; 
    }
    .header-nav li {
        margin: 0 0 12px 0;
    }
    .header-nav__link, .header-white .header-nav__link {
        color: rgba(0, 0, 0, 0.87);
    }
    .mobile-menu {
        display: flex;
    }
    .mobile-menu-active {
        display: none;
    }
    .header.active .mobile-menu-default  {
        display: none;
    }
    .header.active .mobile-menu-active  {
        display: block;
    }
    .header-lang {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 4px 0 0;
    }
    .header.active .header-lang {
        color: rgba(0, 0, 0, 0.38);
    }
    .breadcrumbs {
        white-space: nowrap;
        overflow-y: auto;
    }
    .tours-grid, .news-grid, .impressions-grid, .articles-grid, .activities-grid, .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .souvenirs-banner__img {
        right: 32px;
        top: 32px;
    }
    .souvenirs-banner__title {
        font-size: 40px;
        line-height: 40px;
        max-width: 216px;
    }
    .article-map__block {
        height: 348px;
    }
    .route-block__row {
        flex-direction: column-reverse;
        height: auto;
    }
    .route-block__left {
        width: 100%;
    }
    .route-block__right {
        width: 100%;
        margin-bottom: 24px;
    }
    .route-map {
        height: 448px;
    }
    .tours-filters {
        flex-direction: column;
    }
    .tours-select-blocks {
        width: 100%;
    }
    .tours-range, .tours-select-block {
        width: calc(50% - 16px);
    }
    .clear-filters {
        align-self: flex-start;
        margin: 20px 0 0 -16px;
    }

    .global-search__content {
        margin: 0 48px;
    }
}
@media only screen and (max-height: 900px) {
    .main-popup__block {
        overflow-y: scroll;
    }
}
@media only screen and (max-width: 768px) {
    .article-map__routes-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .index-avia {
        padding: 48px 0 150px 0 !important;
    }
    .index-events {
        margin-top: -100px;
    }
    .slider-cards__slide-wrap {
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .index-events .slider-cards__slide {
        margin: 0;
    }
    .slider-cards {
        padding: 0 48px;
    }
    .index-activities-bg {
        height: 300px;
    }
    .index-activities {
        margin-top: -1200px;
    }
    .index-quest {
        padding: 0 40px;
    }
    .index-activities {
        padding-bottom: 16px !important;
    }
    .index-activities-gradient {
        height: 1100px;
    }
    .slider-section-news {
        padding-top: 0 !important;
    }
    .impressions-shadow {
        padding: 48px 0;
    }
    .page-title {
        font-size: 28px;
        line-height: 32px;
    }
    .page-sm-title {
        font-size: 26px;
        line-height: 28px;
    }
    .header {
        height: 48px;
    }
    .header-logo__img {
        width: 120px;
    }
    .footer {
        padding: 64px 0;
    }
    .footer-left {
        display: block;
        width: calc(50% - 8px);
        margin-right: 16px;
    }
    .footer-logo-wrap {
        grid-column: unset;
        margin-bottom: 32px;
    }
    .footer-logo img {
        width: 192px;
    }
    .footer-nav {
        grid-column: unset;
    }
    .footer-right {
        width: calc(50% - 8px);
        display: block;
    }
    .footer-contacts {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .footer-contacts__title {
        margin-bottom: 16px;
    }
    .footer-contacts__address, .footer-contacts__links {
        margin-bottom: 24px;
    }
    .footer-bottom {
        margin-top: 64px;
        padding-top: 11px;
    }
    .guides-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .section-title {
        font-size: 28px;
        line-height: 32px;
    }
    .slider-section, .other-section, .tourists-section, .operator-page {
        overflow: hidden;
    }
    .slider-section {
        padding: 48px 0;
    }
    .slider-section_last {
        padding-bottom: 64px
    }
    .slider-title {
        margin: 0 90px 24px 0;
        min-height: 40px;
    }
    .slider-cards {
        width: calc(100% + 96px);
        margin-left: -48px;
    } 
    .slider-cards .slick-arrow {
        width: 40px;
        height: 40px;
        top: -64px;
    }
    .slider-cards .slick-prev {
        right: 44px;
    }
    .slider-button-wrap {
        margin-top: 32px;
        flex-direction: column;
    }
    .slider-button-wrap .button {
        width: 100%;
        margin: 0 0 12px;
    }
    .intro-slider__slide {
        min-height: 576px;
        padding: 120px 0;
        border-radius: 0 0 24px 24px;
    }
    .intro-slider__section {
        font-size: 14px;
        line-height: 20px;
    }
    .intro-slider__title {
        font-size: 28px;
        line-height: 32px; 
        margin-bottom: 32px;
    }
    .intro-slider .slick-dots li button {
        height: 4px;
        border-radius: 2px;
    }
    .intro-slider .slick-arrow {
        width: 40px;
        height: 40px;
        bottom: 16px;
    }
    .intro-slider .slick-dots {
        bottom: 34px;
        right: 50%;
        transform: translateX(50%);
    }
    .intro-slider .slick-prev {
        right: 50%;
    }
    .intro-slider .slick-next {
        right: 0;
        left: 50%;
    }
    /* .slider-cards .slick-list {
        margin: 0 -8px;
    } */
    /* .slider-cards__slide {
        margin: 0 8px;
    } */
    .inside-quest {
        padding: 0;
    }
    .new_breadcrumbs {
        padding: 80px 0 48px 0;
    }
    .article-card__title, .impression-card__title {
        font-size: 18px;
        line-height: 20px;
    }
    .impression-card {
        min-height: 412px;
    }
    /* .index-activities {
        background-size: 160px auto;
        background-position: right 180px;
    } */
    /* .activity-card__title {
        font-size: 14px;
        line-height: 16px;
    } */
    .activities-slider .slider-cards__slide {
        margin: 0 6px;
    }
    .activity-card-wrap {
        min-height: 308px;
    }
    /* .activities-slider .slick-list {
        margin: 0 -6px;
    } */
    /* .activity-card:hover .activity-card__img {
        transform: none;
    }
    .activity-card__img {
        width: 99%;
        height: 99%;
    }
    .activity-card__decor {
        right: 0;
        bottom: 0;
    } */
    .article-page {
        padding: 68px 0 48px;
    }
    .breadcrumbs {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }
    .breadcrumbs li {
        margin-right: 12px;
    }
    .breadcrumbs li::after {
        margin-left: 12px;
    }
    .article-head {
        min-height: 420px;
        padding: 32px 16px;
        margin-bottom: 24px;
    }
    .article-head__date, .article-head__place, .article-head__info-item {
        font-size: 14px;
        line-height: 20px;
    }
    .article-head__type {
        margin-top: 12px;
    }
    .article-head__info {
        margin-top: 12px;
        flex-direction: column;
    }
    .article-head__info-item img {
        margin-top: 2px;
    }
    .article-info {
        padding: 48px 32px;
        border-radius: 24px;
        margin-bottom: 48px;
    }
    .article-info__row-left {
        width: 48%;
        width: calc(50% - 8px);
        margin-right: 16px;
        display: block;
    }
    .article-info__row-left .article-info__block {
        width: 100%;
        margin: 0 0 16px;
    }
    .article-info__row-right {
        width: 48%;
        width: calc(50% - 8px);
    }
    .article-info__button {
        margin-top: 32px;
    }
    .operator-info {
        padding: 48px 0;
        border-radius: 24px;
        margin-bottom: 24px;
    }
    .operator-info__img {
        width: calc(50% - 8px);
        padding: 0 0 0 16px;
        margin-right: 32px;
    }
    .operator-info__text {
        width: calc(50% - 24px);
        padding-right: 32px;
        max-width: unset;
    }
    .operator-info__name {
        margin-bottom: 24px;
    }
    .article-row {
        display: block;
        margin: 0;
    }
    .article-row__side {
        width: 100%;
        padding: 0;
        margin-bottom: 64px;
    }
    .article-row__main {
        width: 100%;
        padding: 0;
    }
    .article-share {
        max-width: none;
        margin: 0;
    }
    .article-title {
        font-size: 23px;
        line-height: 24px;
        margin-bottom: 48px;
    }
    .article-subtitle {
        font-size: 16px;
        line-height: 28px; 
        margin-bottom: 48px;
    }
    .article-panorama {
        margin-bottom: 48px;
    }
    .article-text .title {
        font-size: 21px;
        line-height: 24px; 
        margin: 48px 0 32px;
    }
    .article-text ul {
        margin: 32px 0;
    }
    .article-quote {
        padding: 24px 16px 32px;
    }
    .article-author {
        border-radius: 24px;
        padding: 48px 32px 64px;
        margin: 48px 0;
    }
    .article-main .article-quote {
        margin: 32px 0;
    }
    .info-block {
        padding: 48px 32px;
        margin: 32px 0;
    }
    .info-block__title {
        font-size: 18px;
        line-height: 20px; 
    }
    .article-main img, .article-main .article-img, .article-main iframe, .article-main .article-video  {
        margin: 48px 0;
    }
    .article-img img {
        margin: 0 0 16px;
    }
    .article-text img {
        border-radius: 24px;
    }
    .article-img .media-title, .article-img .media-copyright {
        margin-left: 0;
    }
    .article-gallery {
        margin: 48px 0;
    }
    .article-gallery-for {
        margin-bottom: 16px;
    }
    .article-gallery-for__slide img {
        margin: auto;
    }
    .article-gallery-for .slick-arrow {
        width: 40px;
        height: 40px;
        bottom: -64px;
    }
    .article-gallery-for .slick-arrow svg {
        width: 12px;
        height: 12px;
    }
    .article-gallery-nav {
        padding: 0 48px;
    }
    .article-gallery-nav__img { 
        border-radius: 8px;
    }
    .article-map {
        margin-top: 48px;
    }
    .article-map__title {
        font-size: 21px;
        line-height: 24px;
        margin-bottom: 32px;
    }
    .article-text > *:first-child {
        margin-top: 0;
    }
    .article-text > *:last-child {
        margin-bottom: 0;
    }
    .article-share__title {
        margin-bottom: 8px;
    }
    .share-block .ya-share2__icon {
        width: 40px;
        height: 40px;
        background-size: 16px;
    }
    .other-section {
        padding: 48px 0 64px;
    }
    .other-section__block {
        margin-bottom: 48px;
    }
    .cards-page {
        padding: 68px 0 64px;
    }
    .news-grid {
        grid-gap: 80px 16px;
    }
    .cards-page__title {
        margin-bottom: 64px;
    }
    .more-button-wrap {
        margin-top: 48px;
    }
    .more-button {
        width: 100%;
    }
    .page-head {
        min-height: 288px;
        padding: 96px 0 48px;
        border-radius: 0 0 24px 24px;
    }
    .page-body {
        padding: 0 0 64px 0;
    }
    .tours-grid {
        grid-gap: 16px;
    }
    .impressions-grid {
        grid-gap: 64px 16px;
    }
    .souvenirs-banner {
        padding: 32px;
        border-radius: 24px;
        min-height: 228px;
    }
    .souvenirs-banner__title {
        font-size: 28px;
        line-height: 32px;
    }
    .souvenirs-banner__img {
        top: 24px;
        right: 36px;
    }
    .vtours-banner {
        border-radius: 24px;
        min-height: 228px;
        margin-top: 40px;
    }
    .vtours-banner__content {
        padding: 20px 0 32px 20px;
        width: 53%;
    }
    .vtours-banner__title, .vtour-card__title {
        font-size: 23px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .vtours-banner__text, .vtour-card__text {
        font-size: 14px;
        line-height: 16px;
    }
    .souvenirs-banner__button, .vtours-banner__button, .vtour-card__button {
       margin-top: 20px;
    }
    .vtours-banner__img {
        max-width: 60%;
    }
    .vtour-card {
        display: flex;
        column-gap: 0;
        border-radius: 24px;
        min-height: 228px;
        margin-bottom: 16px;
    }
    .vtour-card__content {
        grid-column: unset;
        width: 45%;
        padding: 20px 16px 20px 32px;
    }
    .vtour-card__img {
        grid-column: unset;
        width: 55%;
    }
    .tourists-section {
        padding: 48px 0 64px;
    }
    .tourists-section__block {
        margin-bottom: 48px;
    }
    .article-row__side_mhidden {
        display: none;
    }
    .article-share_mvisible {
        display: block;
        margin-bottom: 64px;
    }
    .operator-page {
        padding: 68px 0 48px;
    }
    .operator-page__title {
        margin-bottom: 24px;
    }
    .other-tours {
        margin-top: 48px;
    }
    .articles-grid {
        grid-gap: 64px 16px;
    }
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
    }
    .activity-card-wide {
        grid-column: initial;
    }
    .events-grid {
        grid-gap: 48px 16px;
    }
    .error-page {
        padding: 96px 0 168px;
    }
    .invest-page-body {
        padding: 24px 0 64px;
    }
    .info-block__button {
        width: 100%;
    }
    .route-block {
        margin-top: 48px;
    }
    .route-block__title {
        font-size: 21px;
        line-height: 24px; 
        margin-bottom: 32px;
    }
    .route-menu__item {
        padding: 8px 16px 8px 8px;
    }
    .route-menu__item-number {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    .vtour-page {
        padding: 68px 0 64px;
    }
    .vtour-page__title {
        margin-bottom: 24px;
    }
    .documents-page {
        padding: 68px 0 64px;
    }
    .documents-page__title {
        margin-bottom: 24px;
    }
    .documents-section {
        margin-bottom: 64px;
    }
    .documents-section__year-block {
        margin-bottom: 48px;
    }
    .documents-section__title {
        font-size: 23px;
        line-height: 24px;
        margin-bottom: 32px;
    }
    .documents-section__subtitle, .documents-section__year-title {
        font-size: 21px;
        line-height: 24px; 
        margin-bottom: 32px;
    }
    .documents-section__files-group {
        margin-bottom: 32px;
    }
    .document {
        padding: 15px;
        margin-bottom: 8px;
    }
    .document__button {
        display: none;
    }
    .document__icon {
        margin-right: 12px;
    }
    .document__info {
        max-width: calc(100% - 56px);
    }
    .tours-filters {
        display: none;
        margin-bottom: 64px;
    }
    .tours-filters.active {
        display: flex;
    }
    .tours-range-blocks {
        margin-bottom: 24px;
    }
    .tours-filters-head {
        display: flex;
        margin-bottom: 32px;
    }
    .select__dropdown {
        position: fixed;
        z-index: 11;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: unset;
        padding: 0 0 64px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
        overflow-y: auto;
    }
    .select__dropdown.active {
        display: flex;
        flex-direction: column;
    }
    .select__mob-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .select__checkboxes {
        width: 100%;
        padding: 0 28px;
        margin-top: 16px;
    }
    .select__checkbox:hover {
        background-color: transparent;
    }
    .select__all-button {
        margin: 0 36px 24px;
        align-self: flex-start;
    }
    .select__close-button {
        display: inline-flex;
        margin: auto 48px 0;
    }
    .feedback-list .feedback-card {
        margin-bottom: 12px;
    }
    .feedback-card {
        padding: 48px 32px;
        border-radius: 24px;
    }
    .feedback-card__img {
        display: none;
    }
    .feedback-card__mob {
        display: flex;
        align-items: center;
    }
    .feedback-card__mob-img {
        display: block;
    }
    .tourists-slider-section {
        margin-bottom: 48px;
    }
    .article-form__title {
        font-size: 18px;
        line-height: 20px;
    }
    .inputs-row {
        display: block;
        margin-bottom: 20px;
    }
    .inputs-row .input-group {
        margin: 0 0 20px;
    }
    .inputs-row .input-group:last-child {
        margin: 0;
    }
    .form-submit {
        width: 100%;
    }
    .modal {
        padding: 0;
    }
    .modal-block {
        min-height: 100vh;
        max-width: none;
        border-radius: 0;
    }
    .modal-success {
        padding: 64px 48px;
        display: flex;
        flex-direction: column;
    }
    .modal-cross {
        top: 4px;
        right: 40px;
    }
    .modal-success__body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .modal-success__title {
        font-size: 21px;
        line-height: 24px;
    }
    .modal-success__text {
        max-width: 328px;
    }
    .modal-form__title {
        padding: 14px 80px 14px 48px;
    }
    .modal-form__body {
        padding: 24px 48px 64px;
    }
    .file-input {
        flex-direction: column;
        align-items: center;
    }
    .file-input__preview {
        margin: 0 0 4px;
    }
    .file-input__buttons {
        margin: 0 0 4px;
    }
    .feedback-card__text.hidden {
        -webkit-line-clamp: 16;
    }
    .korfest-banner {
        border-radius: 24px;
        min-height: unset;
        padding: 48px 16px;
        background-image: url('../img/korfest-banner-bg-mob.png');
        margin-top: 40px;
    }
    .korfest-banner__logo {
        margin-bottom: 16px;
    }
    .korfest-banner__subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    .korfest-banner__text {
        max-width: 279px;
    }
    .korfest-banner__title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .main-popup__block {
        padding: 16px 32px 48px;
    }
    
    .main-popup__cross {
        margin: 0 -16px 8px auto;
    }
    
    .main-popup__img {
        margin-bottom: 32px;
    }
    
    .main-popup__title {
        font-size: 21px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }
    
    .main-popup__text {
        margin: 0 auto 32px;
    }
    
    .events-search__button {
        width: fit-content;
        padding: 12px 22px;
    }
    
    .events-search__button span {
        display: none;
    }
    
    .events-search__button img {
        margin-right: 0;
    }
    
    .tabs__container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tabs__container .tabs-list {
        margin-bottom: 32px;
    }
    
    .tabs-districts__container {
        width: 100%;
        margin-bottom: 48px;
    }

    .index-fortourusts {
        margin: 0 48px 100px 48px;
    }

    .index-fortourusts_bg {
        width: 100%;
        height: 420px;
    }

    .index-fortourusts_tags {
        width: 100%;
        margin-top: 220px;
        padding: 48px 32px;
    }

    .index-quest_bg {
        padding: 32px;
    }

    .index-quest_left {
        padding-right: 32px;
    }

    .slider-1card {
        display: none;
    }
    .slider-1card-mobile {
        display: block;
    }
    .slider-cards__slide-wrap {
        display: block;
    }
    /* .event-card {
        margin: 0 12px;
    } */
     .object-left .breadcrumbs {
        margin-bottom: 80px;
    }
    .object-head .container {
        position: relative;
    }

    .object-photo {
        max-width: initial;
        position: absolute;
        width: calc(100% - 96px);
        left: 48px;
        top: 220px;
    }

    .object-head {
        justify-content: flex-start;
        margin-bottom: 332px;
    }

    .object-wrap {
        margin-top: 48px;
    }

    .global-search__title-text {
        font-size: 32px;
        line-height: 36px;
    }

    .global-search__title {
        margin-bottom: 18px;
    }

    .global-search__form-button span {
        display: none;
    }

    .search-result__wrap-left {
        display: none;
    }

    .search-breadcrumbs__title {
        font-size: 32px;
        line-height: 36px;
    }

    .search-result__wrap-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .search-result__item {
        flex-direction: column;
        margin-bottom: 0;
        gap: 16px;
    }

    .search-result__item>img {
        width: 100%;
    }

    .map_wrap {
        height: 600px;
    }

    .map_selector {
        width: calc(100% - 96px);
    }
}
@media only screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .map_wrap {
        height: 400px;
    }
    .map_selector {
        left: 16px;
        width: calc(100% - 32px);
    }
    .search-result__wrap-right {
        grid-template-columns: repeat(1, 1fr);
    }
    .search-breadcrumbs__top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-top {
        display: block;
    }
    .footer-left {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .footer-right {
        width: 100%;
    }
    /* .slider-cards .slick-list {
        margin: 0 -6px;
    } */
    .events2026 .event-card-big {
        grid-column: initial;
    }
    .slider-cards {
        width: calc(100% + 32px);
        margin-left: -16px;
    }
    .slider-cards__slide {
        margin: 0 6px;
    }
    .article-info, .article-author, .info-block {
        padding: 48px 16px;
        margin-left: -16px;
        margin-right: -16px;
        max-width: none;
        width: calc(100% + 32px);
    }
    .article-panorama {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
    .article-author__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-author__img {
        margin: 0 0 12px;
    }
    .article-text iframe {
        height: 200px;
    }
    .article-map__block {
        height: 240px;
    }
    .article-gallery-for {
        margin-bottom: 12px;
    }
    .article-gallery-nav .slick-track {
        min-height: 40px;
    }
    .article-gallery-nav__img {
        height: 32px;
    }
    .article-gallery-for .slick-arrow {
        bottom: -52px;
    }
    .tours-grid, .news-grid, .impressions-grid, .articles-grid, .events-grid {
        grid-template-columns: 1fr;
    }
    .tours-grid, .impressions-grid, .articles-grid, .events-grid {
        grid-gap: 16px;
    }
    .souvenirs-banner {
        flex-direction: column-reverse;
        padding: 20px 16px 48px;
        min-height: unset;
    }
    .souvenirs-banner__img {
        position: static;
        max-width: 100%;
        max-width: calc(100% + 64px);
        margin: 0 -32px 16px -32px;
    }
    .souvenirs-banner__content {
        width: 100%;
        padding: 0;
    }
    .souvenirs-banner__button, .vtours-banner__button, .vtour-card__button {
        width: 100%;
        min-width: unset;
    }
    .vtours-banner__content {
        padding: 40px 16px 32px;
        width: 100%;
    } 
    .vtours-banner {
        flex-direction: column;
        min-height: unset;
    }
    .vtours-banner__img {
        position: static;
        max-width: none;
        height: 240px;
        align-self: flex-end;
        margin-right: -50px;
    }
    .vtour-card {
        flex-direction: column-reverse;
        min-height: unset;
    }
    .vtour-card__content {
        width: 100%;
        padding: 32px 16px 48px 16px;
    }
    .vtour-card__img {
        width: 100%;
        height: 160px;
        border-bottom-left-radius: 600px;
    }
    .article-info__row {
        display: block;
    }
    .article-info__row-left {
        width: 100%;
        margin: 0 0 32px;
    }
    .article-info__row-right {
        width: 100%;
    }
    .operator-info {
        display: block;
        padding: 48px 16px;
    }
    .operator-info__img {
        padding: 0;
        width: 100%;
        margin: 0 0 32px;
    }
    .operator-info__text {
        width: 100%;
        padding: 0;
    }
    .activities-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .activity-card-wrap {
        min-height: 328px;
    }
    .error-page {
        padding: 96px 0 122px;
    }
    .error-page__img {
        margin-bottom: 32px;
    }
    .error-page__title {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    .error-page__text {
        margin-bottom: 32px;
    }
    .route-map {
        height: 240px;
    }
    .tours-select-blocks, .tours-range-blocks {
        display: block;
    }
    .tours-select-block, .tours-range {
        width: 100%;
        margin-bottom: 24px;
    }
    .select__mob-head {
        padding: 0 8px 0 16px;
    }
    .select__checkboxes {
        padding: 0;
    }
    .select__all-button {
        margin: 0 8px 24px;
    }
    .select__close-button {
        margin: auto 16px 0;
    }
    .feedback-card {
        padding: 48px 16px;
    }
    .feedback-card__mob {
        display: block;
    }
    .feedback-card__mob-img {
        margin: 0 0 12px;
    }
    .feedback-slider .slick-arrow {
        top: -80px;
    }
    .article-form {
        margin-top: 48px;
    }
    .modal-success {
        padding: 64px 16px;
    }
    .modal-cross {
        top: 4px;
        right: 8px;
    }
    .modal-form__title {
        padding: 14px 48px 14px 16px;
    }
    .modal-form__body {
        padding: 24px 16px 64px;
    }
    .korfest-banner {
        background-image: url('../img/korfest-banner-bg-mob-2.png');
    }
    .korfest-banner__button {
        width: 100%;
    }
    .inside-quest {
        padding: 0 !important;
    }
    
    .main-popup__block {
        padding: 16px 16px 48px;
    }
    
    .main-popup__cross {
        margin: 0 0 8px auto;
    }
    
    .main-popup__title {
        margin-bottom: 16px;
    }

    .index-avia__title {
        font-size: 28px;
        line-height: 32px;
    }

    .index-avia__time {
        font-size: 32px;
        line-height: 36px;
    }

    .index-avia__subtitle {
        font-size: 16px;
        line-height: 16px;
    }

    .index-avia__top-left {
        margin-bottom: 24px;
    }

    .index-avia__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .index-quest {
        padding: 0 16px;
    }

    .index-quest_bg {
        padding: 48px 16px 168px 16px;
        align-items: flex-start;
        flex-direction: column;
        background-position: center bottom !important;
        background-size: contain;
    }

    .index-quest .container {
        background: linear-gradient(180deg, #13A5E9 0%, #D4BDCF 49.2%, #F59E10 99.36%);
    }

    .index-quest_left {
        margin-bottom: 32px;
    }

    .index-activities-gradient {
        height: 1300px;
    }

    .index-activities {
        margin-top: -1400px;
    }

    .index-activities .container {
        padding: 64px 16px;
    }

    .index-fortourusts {
        margin: 0 0 200px 0;
    }

    .index-fortourusts .container {
        padding: 0;
    }

    .index-fortourusts_bg {
        height: 240px;
    }

    .index-fortourusts_tags {
        margin-top: 370px;
        padding: 48px 16px;
    }

    .index-fortourusts_tags-title {
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 32px;
    }

    .object-head {
        margin-bottom: 24px;
    }

    .global-search__content {
        margin: 0 16px;
    }
}