/* ================================
   1. Box model
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.filter-current img,
.details ul li img,
.booking-current.booking-travelers img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: -4px;
}

.filter-current {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.details ul li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


.booking-current.booking-travelers {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

/* фон */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* спиннер */
.loader-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}


.loader_spinner_mini {
    border: 6px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

/* текст снизу */
.loader-text {
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


#toast {
    border-width: 1px;
    border-style: inset;
    -webkit-box-shadow: 2px 2px 6px;
    box-shadow: 2px 2px 6px;
    background-color: #e3e3e3;
    padding-top: 11px;
    padding-right: 17px;
    padding-bottom: 11px;
    padding-left: 17px;
    border-radius: 7px;
    opacity: 1;
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    width: max-content;
    max-width: 80%;
}

/* ================================
   2. Reset
================================ */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

:root {
    --main-font: 'Montserrat';
    --title-font: 'Montserrat';
    /*--title-font: 'Kalnia';*/

    --title-color: #2B4659;
    --primary-color: #E87E28;
    --text-color: #0C151E;
}

body {
    font-family: var(--main-font);
    line-height: 1.2;
    font-weight: 400;
    color: var(--title-color);
    background-color: #FDFDFD;
}

body.no-scroll {
    overflow: hidden;
}

/* ================================
   3. Media
================================ */
img,
picture,
video,
canvas,
svg {
    display: block;
    /*max-width: 100%;*/
    width: 100%;
    height: auto;
}

/* ================================
   4. Typography
================================ */
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: inherit;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* ================================
   5. Forms
================================ */
input,
textarea,
select,
button {
    font: inherit;
    outline: none;
}

/* ================================
   6. Tables
================================ */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ================================
   7. Accessibility helpers
================================ */
:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* ================================
   8. Utility
================================ */
.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1680px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

.main-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--primary-color);
    padding: 19px 30px;
    width: fit-content;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    justify-content: center;
}

.main-btn svg {
    width: 16px;
    height: 16px;
}

.main-back {
    background-color: transparent;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 16px;
    vertical-align: middle;
    color: #2B465999;
    margin-left: -17px;
    margin-bottom: 16px;
}

.main_subtitle {
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.038rem;
    text-transform: uppercase;
    color: var(--title-color);
    margin-bottom: 12px;
}

.main_title {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--title-color);
}

.main_description {
    font-weight: 300;
    font-size: 18px;
    color: var(--text-color);
}

.main_description .main_text_title {
    font-size: 24px;
    font-weight: 500;
}

.main_description .sub_text_title {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 500;
}

.main_description ul {
    font-size: 18px;
    line-height: 32px;
    list-style: disc;
    margin-left: 20px;
}

.js-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.js-tab-btn {
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
    padding: 14px 16px;
    color: #535E7D;
    border-radius: 50px;
    border: none;
    background: transparent;
}

.js-tab-btn.is-active {
    background: #F35C3A;
    color: #fff;
}

.js-tabs-content {
    margin-top: 20px;
}

.js-tab-item {
    display: none;
}

.js-tab-item.is-active {
    display: block;
}

/* ================ Burger Menu Start ================ */
.burger {
    width: 24px;
    height: 24px;
    margin-right: -4px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.burger svg {
    width: 16px;
    height: 16px;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: calc(100% - 15px);
    height: 100%;
    background: #fff;
    padding: 21px 12px;
    transition: right 0.3s ease;
    z-index: 1002;
    border-radius: 24px 0 0 24px;
}

.side-menu.active {
    right: 0;
}

.close {
    width: 24px;
    height: 24px;
    margin-right: -4px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close svg {
    width: 16px;
    height: 16px;
}

.side-menu .burger_logo {
    width: 111px;
    margin-bottom: 50px;
}

.burger_menu {
    text-align: right;
}

.burger_menu li a {
    color: var(--title-color);
    font-weight: 500;
    font-size: 20px;
    padding: 24px 0;
    display: block;
}

.burger_menu li:not(:last-of-type) a {
    border-bottom: 1px solid var(--text-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1001;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================ Burger Menu End ================ */
/* ================ Modal Start ================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* отключаем клики, пока модалка закрыта */
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* включаем клики при активной модалке */
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    padding: 27px 20px;
    width: 426px;
    max-width: calc(100% - 30px);
    opacity: 0;
    visibility: hidden; /* добавляем скрытие */
    pointer-events: none; /* отключаем клики */
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    z-index: 1001;
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 #1122110D;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* включаем клики */
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -4px;
}

.modal-close svg {
    width: 40px;
    height: 40px;
}

.request-form {
    display: flex;
    flex-direction: column;
}

.request-title {
    font-weight: 600;
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
}

.request-form .main-btn {
    width: 100%;
    font-size: 16px;
}

.request-form .main-btn svg {
    width: 20px;
    height: 20px;
}

.request-field {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}

.request-field:last-of-type {
    margin-bottom: 40px;
}

.request-input {
    width: 100%;
    padding: 17px 16px 18px;
    font-size: 16px;
    border: 1px solid #7F7F7F;
    border-radius: 4px;
    background: #fff;
    color: var(--text-color);
    outline: none;
}

.request-input::placeholder {
    color: #0C151E80;
    font-weight: 300;
}

.request-textarea {
    resize: none;
    min-height: 116px;
}

/* Label */
.request-label {
    position: absolute;
    top: -6px;
    left: 12px;
    font-size: 14px;
    background: #fff;
    padding: 0 4px;
    font-weight: 300;
    color: var(--text-color);
    z-index: 1;
}


/* ================ Modal End ================ */
/* ================ Header Start ================ */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 23px 0 33px;
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.header_content .header_logo {
    width: 153px;
}

.header_content .header_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.header_content .header_menu li a {
    font-size: 16px;
    color: #fff;
}

.header_content .header_menu li.active a {
    font-weight: 700;
    position: relative;
}

.header_content .header_menu li.active a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -9px;
    width: 2px;
    height: 100%;
    border-radius: 25px;
    background-color: #fff;
}

.lang-switcher {
    position: relative;
    display: inline-block;
    width: 150px;
}

.lang-current {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    width: 100%;
    color: var(--title-color);
}

.lang-current:after {
    content: '';
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
    background-image: url(/assets/img/lang-arr.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    z-index: 1;
    transition: .3s;
}

.lang-current img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 100%;
    margin: 0;
    list-style: none;
    opacity: 0;
    padding: 0 10px;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.lang-list li {
    padding: 11px 0;
}

.lang-list a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-list a img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

/* открыто */
.lang-switcher.is-open .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    width: 100%;
}

.lang-switcher.is-open .lang-current:after {
    transform: rotate(-180deg);
}

/* ================ Header End ================ */

/* ================ Main Banner Start ================ */

.main_banner .container {
    padding: 136px 59px 178px;
}

.main_banner .main_banner-content {
    position: relative;
    margin-bottom: 55px;
}

.main_banner .main_banner-content .subtitle {
    text-align: center;
    font-size: 30px;
    letter-spacing: 38%;
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 100%;
}

.main_banner .main_banner-content .title {
    font-family: var(--title-font);
    font-size: 70px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 100%;
}

.main_banner.secondary_banner .container {
    padding: 160px 0;
}

.main_banner.secondary_banner .main_banner-content,
.main_banner.secondary_banner .main_banner-content .title {
    margin-bottom: 0;
}

.tours-filter {
    background-color: #fff;
    box-shadow: 0px 4px 16px 0px #7F7F7F33;
    border-radius: 104px;
    border: 1px solid #BFC7CD;
    padding: 30px 32px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
}

.tours-filter .search-btn {
    width: 60px;
    height: 60px;
}

.filter-item {
    position: relative;
    width: calc(100% / 5);
    max-width: 244px;
}

.filter-item:after {
    content: '';
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
    background-image: url(/assets/img/lang-arr.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    z-index: 1;
    transition: .3s;
}

.filter-item.is-open:after {
    transform: rotate(-180deg);
}

.filter-item .filter-item_label {
    font-size: 14px;
    color: var(--title-color);
    font-weight: 300;
    margin-bottom: 6px;
    display: block;
}

.filter-current {
    width: 100%;
    cursor: pointer;
    background: #fff;
    padding: 10px 4px;
    font-size: 16px;
    color: #2B465980;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;

    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

.filter-item.is-open .filter-dropdown {
    max-height: fit-content;
    opacity: 1;
    visibility: visible;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0px 4px 16px 0px #7F7F7F33;
    border: 1px solid #BFC7CD;
}

.filter-list li {
    position: relative;
}

.filter-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: 0;
    width: calc(100% - 32px);
    height: 1px;
    background: #C3C3C34D;
}

.filter-list button {
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--title-color);
}

.filter-list li:hover {
    background: #C3C3C34D;
}

/* travelers */
.traveler-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    position: relative;
}

.traveler-row:not(:last-of-type):after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: 0;
    width: calc(100% - 32px);
    height: 1px;
    background: #C3C3C34D;
}

.traveler-row .title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.traveler-row .title span {
    font-weight: 300;
    font-size: 12px;
    color: #7F7F7FB2;
}

.counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter button {
    width: 24px;
    height: 24px;
    background: #7F7F7F33;
    border-radius: 4px;
    cursor: pointer;
}

.counter .count {
    min-width: 24px;
    text-align: center;
}

/* dates */

.filter-item-calendar .filter-dropdown {
    width: 350px;
}

.filter-calendar_header {
    padding: 10px 20px;
}

.filter-calendar_header .months-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.filter-calendar_header .months-arrows button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ADE6D780;
    box-shadow: 0 -0.5px 1px 0 #3384D01A inset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-calendar_header .months-arrows button svg {
    width: 15px;
    height: 15px;
}

.filter-calendar_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px 12px;
}

/* ===== months dropdown ===== */

.months-dropdown {
    position: relative;
    flex: 1;
}

.months-current {
    font-size: 16px;
    cursor: pointer;
    color: var(--text-color);
    position: relative;
}

.months-current:after {
    content: '';
    position: absolute;
    top: 0;
    right: -31px;
    bottom: 0;
    margin: auto;
    background-image: url('/assets/img/calendar-months-arr.svg');
    background-position: center center;
    background-size: contain;
    width: 12px;
    height: 6px;
    z-index: 1;
    transition: .3s;
}

.months-dropdown.is-open .months-current:after {
    transform: rotate(-180deg);
}

.months-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 5;

    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

.months-dropdown.is-open .months-list {
    max-height: 220px;
    opacity: 1;
    visibility: visible;
    border: 1px solid #7F7F7F;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.months-list button {
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
}

.months-list button:hover {
    background: #C3C3C34D;
}

.filter-calendar_body {
    padding: 10px 16px 20px;
}

.filter-calendar_footer {
    padding: 16px 20px 20px;
}

.filter-calendar_footer .filter-calendar_controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-calendar_footer .filter-calendar_controls .main-btn {
    flex: 1;
    width: 50%;
}

.filter-calendar_footer .filter-calendar_controls .main-btn.cancel-btn {
    background-color: #7F7F7F33;
    color: var(--text-color);
}

.filter-calendar_footer .filter-calendar_controls .main-btn.select-btn {
    background-color: #BB6653;
}

.filter-calendar_body {
    width: 100%;
    box-sizing: border-box;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-weekdays div {
    text-align: center;
    font-size: 13px;
    color: #7F7F7F;
    padding-bottom: 6px;
}

.calendar-days button,
.calendar-days .empty {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-days button {
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-color);
}

.calendar-days button:hover {
    background: #C3C3C34D;
}

/* states */
.calendar-days button.is-today {
    border: 1px solid #7F7F7F;
}

.calendar-days button.is-selected {
    background: #0C151D;
    color: #fff;
}

.tours-result-mob {
    display: none;
    flex-direction: column;
    gap: 5px;
    position: relative;
    margin: 33px auto 0;
    background: #fff;
    padding: 15px;
}

.tours-result-mob .title {
    font-weight: 700;
    font-size: 18px;
    color: var(--title-color);
}

.tours-result-mob ul {
    display: flex;
    gap: 25px;
}

.tours-result-mob ul li {
    font-size: 16px;
    color: #2B465980;
    position: relative;
}

.tours-result-mob ul li:not(:last-child):after {
    content: '';
    position: absolute;
    top: 0;
    right: -13px;
    height: 100%;
    width: 1px;
    background-color: #2B465980;
}

.tours-result-mob button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: transparent;
    border: none;
    padding: 10px;
}

.filter-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: -44px;
}

.filter-images img {
    border-radius: 10px;
    height: 530px;
    object-fit: cover;
}

/* ================ Main Banner End ================ */
/* ================ Directions Section Start ================ */
.directions_section {
    padding: 80px 0 40px;
    position: relative;
}

.directions_section .container {
    max-width: 1320px;
}

.directions_section .container_directions {
    max-width: 1420px;
}

.directions_swiper.swiper {
    padding: 32px 50px 50px;
}

.directions_slide {
    display: flex !important;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 0 12px 32px 0 #1A1C1C0F;
    padding: 10px;
    height: unset !important;
}

.directions_slide .img {
    border-radius: 16px;
    height: 337px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.directions_slide .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.directions_slide .title {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.75px;
    color: var(--title-color);
    margin-top: 20px;
}

.directions_slide .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535E7D;
    width: 100%;
    margin-top: 14px;
}

.directions_pagination {
    text-align: center;
}

.directions_pagination .swiper-pagination-bullet {
    width: 13px;
    height: 9px;
    border-radius: 60px;
    background: #FDDED6;
    opacity: 1;
    transition: .3s;
}

.directions_pagination .swiper-pagination-bullet-active {
    background: #F35C3A;
    width: 20px;
    height: 11px;
    transition: .3s;
}

/* ================ Directions Section End ================ */
/* ================ Excursions Section Start ================ */
.excursions_section {
    padding: 40px 0 60px;
}

.excursions_section .container {
    max-width: 1320px;
}

.excursions_section .excursions_container {
    max-width: 1420px;
}

.excursions_tabs {
    display: flex;
    gap: 12px;
    margin: 24px 50px 0;
}

.excursions_tab-btn {
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
    padding: 14px 16px;
    color: #535E7D;
    border-radius: 50px;
}

.excursions_tab-btn--active {
    border-radius: 50px;
    background: #F35C3A;
    color: #fff;
}

.excursions_tab {
    display: none;
}

.excursions_tab--active {
    display: block;
}

/* Swiper */
.excursions_swiper.swiper {
    width: 100%;
    padding: 32px 50px 50px;
}

.excursions_slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 12px 32px 0 #1A1C1C0F;
    padding: 10px;
    height: unset !important;
}

.excursions_slide .img {
    border-radius: 16px;
    height: 337px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.excursions_slide .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.excursions_slide .content {
    padding: 20px 16px;
    width: 100%;
    flex: 1;
}

.excursions_slide .content .title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: var(--title-color);
    margin-bottom: 16px;
}

.excursions_slide .content .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid #E1BFB71A;
}

.excursions_slide .content .info .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.excursions_slide .content .info .item svg {
    width: 40px;
    height: 40px;
}

.excursions_slide .content .info .item .descr {
    display: flex;
    flex-direction: column;
}

.excursions_slide .content .info .item .descr p:first-of-type {
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    color: #535E7D;
}

.excursions_slide .content .info .item .descr p:last-of-type {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: var(--title-color);
}

.excursions_slide .content .price {
    position: absolute;
    top: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #FFFFFFCC;
    backdrop-filter: blur(12px);
    border-radius: 50px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #F35C3A;
    padding: 10px 11px;
}

.excursions_slide .content .price span:first-of-type {
    font-weight: 300;
    font-size: 12px;
    margin-right: 6px;
}

.excursions_slide .content .price span {
    color: #535E7D;
}

.excursions_nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.excursions_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: .3s;
    display: none;
}

.excursions_btn:hover {
    opacity: .5;
}

.excursions_pagination {
    text-align: center;
}

.excursions_pagination .swiper-pagination-total {
    color: #F35C3A;
}

.excursions_pagination .swiper-pagination-current {
    color: #F35C3A;
}

.excursions_section.secondary_page .main_title {
    color: #4A2E2A;
}

/* ================ Excursions Section End ================ */
/* ================ Deals Section Start ================ */
.deals_section {
    padding: 100px 0 20px;
}

.container_deals {
    max-width: 1420px;
}

.deals_section .main_title,
.deals_section .main_subtitle {
    text-align: center;
}

.deals {
    position: relative;
}

.deals_swiper.swiper {
    padding: 32px 50px 50px;
}

.deals_nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.deals_btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: .3s;
    display: none;
}

.deals_btn:hover {
    opacity: .5;
}

.deals_btn-prev,
.deals_btn-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.deals_btn-prev {
    left: -72px;
}

.deals_btn-next {
    right: -72px;
}

.deals_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.deals_pagination .swiper-pagination-bullet {
    width: 13px;
    height: 9px;
    border-radius: 60px;
    background: #FDDED6;
    opacity: 1;
    transition: .3s;
}

.deals_pagination .swiper-pagination-bullet-active {
    background: #F35C3A;
    width: 20px;
    height: 11px;
    transition: .3s;
}

.deals_slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 12px 32px 0 #1A1C1C0F;
    padding: 10px;
    height: unset !important;
}

.deals_slide .img {
    border-radius: 16px;
    height: 337px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.deals_slide .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.deals_slide .content {
    padding: 12px 14px;
    width: 100%;
    flex: 1;
}

.deals_slide .content .title-info {
    display: flex;
    gap: 26px;
}

.deals_slide .content .title-info .title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 8px;
    width: 225px;
    flex: 1;
}

.deals_slide .content .title-info .benefit-list {
    display: flex;
    align-items: flex-start;
    gap: 2px
}

.deals_slide .content .title-info .benefit-list svg {
    width: 30px;
    height: 30px;
}

.deals_slide .content .rating-info {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.deals_slide .content .rating-info p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.35px;
    color: #535E7D;
}


.deals_slide .content .rating-info .rating {
    display: flex;
    align-items: center;
}

.deals_slide .content .rating-info .rating img {
    width: 20px;
    height: 20px;
}

.deals_slide .content .list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    border-top: 1px solid #E1BFB71A;
    padding-top: 32px;
}

.deals_slide .content .list li {
    font-weight: 400;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: #DAE2FF4D;
    color: var(--title-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.deals_slide .content .list li img {
    width: 20px;
    height: 20px;
}

.deals_slide .content .price {
    position: absolute;
    top: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #FFFFFFCC;
    backdrop-filter: blur(12px);
    border-radius: 50px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #F35C3A;
    padding: 10px 11px;
}

.deals_slide .content .price span {
    color: #535E7D;
}

.deals_slide .content .price img {
    width: 18px;
    height: 18px;
}

/* ================ Deals Section End ================ */
/* ================ Proof Section Start ================ */
.proof_section {
    padding: 100px 0;
}

.proof-block {
    width: 100%;
}

.proof-block .main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.proof-block .proof-info {
    max-width: 1320px;
    width: calc(100% - 10px);
    border-radius: 100px;
    padding: 40px 40px 32px;
    box-shadow: 0px 4px 16px 0px #7F7F7F33;
    margin: -60px auto 0;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.proof-block .proof-info p {
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
    color: #0C151E;
}

.proof-block .proof-info .proof-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.proof-block .proof-info .proof-clients img {
    width: 170px;
}

.proof-block .proof-info .proof-clients p {
    font-weight: 600;
    font-size: 12px;
    text-transform: lowercase;
}

.proof-block .proof-info .proof-clients p span {
    color: #F35C3A;
}

/* ================ Proof Section End ================ */
/* ================ Chains Section Start ================ */
.chains_section {
    padding: 80px 0;
}

.chains_section .container {
    max-width: 1320px;
}

.chains_grid {
    display: grid;
    gap: 30px 20px;
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
}

.chains_item {
    width: 100%;
}

.chains_item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 12px 32px 0 #1A1C1C0F;
    padding: 10px;
    cursor: pointer;
}

.chains_item .img {
    border-radius: 16px;
    height: 337px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.chains_item .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.chains_item .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    width: 100%;
    gap: 14px;
}

.chains_item .content .title-info {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 0;
    width: 100%;
}

.chains_item .content .title {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.75px;
    color: var(--title-color);
}

.chains_item .content .title-info .info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #535E7D;
}

.chains_item .content .title-info .info span:first-of-type {
    color: #545E7E;
    background-color: #CFD9FE;
    border-radius: 50px;
    padding: 4px 8px;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chains_item .content .title-info .info span:last-of-type {
    color: #535E7D;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
}

.chains_item .content .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535E7D;
    width: 100%;
}

.chains_item .content .main-btn {
    padding: 11px 51px;
    color: #000;
}

.chains_section .main-btn {
    margin: 40px auto 0;
}

.chains_container {
    display: none;
}

/* ================ Chains Section End ================ */
/* ================ Directions Content Section Start ================ */
.directions_content_section {
    padding: 136px 0 67px;
}

.directions_content_section .container {
    max-width: 1320px;
}

.directions_content {
    display: flex;
    align-items: flex-start;
    gap: 58px;
}

.directions_content .img,
.directions_content .description {
    flex: 1;
}

.directions_content .description {
    font-weight: 300;
    font-size: 16px;
    max-width: 540px;
}

.directions_content .description .main_title {
    margin-bottom: 20px;
    font-size: 36px;
}

.directions_content .description .main-img {
    display: none;
}

/* ================ Directions Content Section End ================ */
/* ================ Excursions Content Section Start ================ */
.excursions_content_section {
    padding: 136px 0 67px;
}

.excursions_content_section .container {
    max-width: 1320px;
}

.excursions_content_section .top-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.excursions_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.excursions_header .title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.excursions_header .title .route_name {
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #CFD9FE;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 50px;
    color: #545E7E;
}

.excursions_header .details {
    display: flex;
    align-items: stretch;
    gap: 9px;
}

.excursions_header .details .details_item {
    background: #F35C3A33;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 100%;
    color: #2B4659;
}

.excursions_header .details .details_item svg {
    width: 20px;
    height: 20px;
}

.photo_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    margin-bottom: 35px;
}

/* правая колонка */
.photo_right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

/* левая большая */
.photo_item.photo_item--large {
    height: 100%;
    min-height: 864px;
}

/* общие стили карточек */
.photo_item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    min-height: 190px;
    overflow: hidden;
}

.photo_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo_item .photo_more-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    background: #1A1C1C33;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo_more-btn:hover {
    background: #1A1C1C80;
}

.photo_item--large .photo_more-btn {
    display: none;
}

.gallery_modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.gallery_modal.active {
    display: flex;
}

.gallery_modal-content {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
    padding: 25px;
    position: relative;
}

.singleHotel_content_section .gallery_modal-content .excursions_header {
    margin-top: 0;
}

.gallery_close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 3;
}

.gallery_viewer {
    position: relative;
    margin-bottom: 20px;
}

.gallery_main-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.gallery_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
}

.gallery_prev {
    left: 15px;
}

.gallery_next {
    right: 15px;
}

.gallery_thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.gallery_thumb {
    width: 110px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    opacity: .6;
    border: 2px solid transparent;
    transition: .2s;
}

.gallery_thumb.active {
    opacity: 1;
    border-color: #000;
}

.gallery_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.excursions_description {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.excursions_description .main_text_title {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #535E7D;
}

.excursions_description .directions {
    background-color: #F3F3F4;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.excursions_description .directions .title {
    color: #2B4659;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.excursions_description .directions .title svg {
    width: 20px;
    height: 20px;
}

.excursions_description .directions ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0;
}

.excursions_description .directions ul li {
    position: relative;
    padding-left: 48px;
}

.excursions_description .directions ul li span {
    position: absolute;
    left: 0;
    border-radius: 50%;
    background-color: #F35C3A1A;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #F35C3A;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.excursions_description .directions ul li p:first-of-type {
    color: #2B4659;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.excursions_description .directions ul li p:last-of-type {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535E7D;
}

/* ================ Excursions Content Section End ================ */
/* ================ Search Hotel Section Start ================ */
.search_hotel_section {
    padding: 136px 0 67px;
}

.search_hotel_section .container {
    max-width: 1320px;
}

.search_hotel_section .tours-filter {
    margin: 0 auto 30px;
    position: unset;
    width: 100%;
}

.filter-content {
    display: flex;
    gap: 24px;
}

.filter-title {
    font-weight: 700;
    font-size: 22px;
}

/* ===== HOTEL FILTER WRAPPER ===== */

.hotel-filter {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    padding: 20px;
    width: 100%;
    height: fit-content;
    max-width: 386px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ===== ITEM ===== */

.hotel-filter-item {
    position: relative;
    width: 100%;
    max-width: 346px;
}

/* label */

.hotel-filter-label {
    font-size: 14px;
    color: var(--title-color);
    font-weight: 300;
    margin-bottom: 6px;
    display: block;
}

/* ===== CURRENT BUTTON ===== */

.hotel-filter-current {
    /*width: 100%;*/
    /*cursor: pointer;*/
    /*border: 1px solid #7F7F7F;*/
    /*background: #fff;*/
    /*padding: 19px 16px;*/
    /*border-radius: 4px;*/
    /*font-size: 16px;*/
    /*color: #0C151D;*/
    /*text-align: left;*/
    /*position: relative;*/
}

/* arrow */

.hotel-filter-current::after {
    /*content: '';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*right: 16px;*/
    /*bottom: 0;*/
    /*margin: auto;*/
    /*width: 12px;*/
    /*height: 6px;*/
    /*background-image: url('/assets/img/calendar-months-arr.svg');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: contain;*/
    /*transition: .3s;*/
}

.hotel-filter-item.is-open .hotel-filter-current::after {
    transform: rotate(-180deg);
}

/* ===== DROPDOWN ===== */

.hotel-filter-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;

    overflow: auto;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

.hotel-filter-item.is-open .hotel-filter-dropdown {
    max-height: 260px;
    opacity: 1;
    visibility: visible;
    border: 1px solid #7F7F7F;
    border-radius: 4px;
    padding: 10px 0;
}

.hotel-filter-item .search {
    display: block;
    position: relative;
    width: 100%;
}

.hotel-filter-item .search span {
    content: '';
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.hotel-filter-item .search input {
    text-align: left;
    position: relative;
    width: 100%;
    cursor: pointer;
    background: #fff;
    padding: 10px 4px;
    font-size: 16px;
    color: #2B465980;
    border: none;
    outline: none;
}

.hotel-filter-item .search input::placeholder {
    color: #2B465980;
}

/* ===== LIST ===== */

.hotel-filter-list li {
    position: relative;
}

.hotel-filter-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: 0;
    width: calc(100% - 32px);
    height: 1px;
    background: #C3C3C34D;
}

.hotel-filter-list button {
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-color);
}

.hotel-filter-list li:hover {
    background: #C3C3C34D;
}

/* ===== PRICE BLOCK ===== */

.hotel-price {
    position: relative;
    max-width: 346px;
    width: 100%;
}

.hotel-price-fields {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-price-fields input {
    text-align: left;
    position: relative;
    width: 100%;
    cursor: pointer;
    background: #fff;
    padding: 10px 4px;
    font-size: 16px;
    color: #2B465980;
    border: none;
    outline: none;
    border-bottom: 1px solid #E5E5E5;
}

.hotel-price-fields input::placeholder {
    color: #2B465980;
}

/* убрать стрелки у number (опционально) */
.hotel-price-fields input::-webkit-outer-spin-button,
.hotel-price-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hotel-price-fields input[type=number] {
    -moz-appearance: textfield;
}

/* ===== BY CITIES ===== */
.item-title {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--title-color);
}

.hotel-cities {
    position: relative;
    max-width: 346px;
    width: 100%;
}

.hotel-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* item */

.hotel-city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
}

/* checkbox reset */

.hotel-city input {
    width: 18px;
    height: 18px;
    accent-color: var(--text-color);
    cursor: pointer;
}

/* hover */

.hotel-city:hover {
    opacity: 0.85;
}

/* ===== BY STARS ===== */

.hotel-stars {
    position: relative;
    max-width: 346px;
    width: 100%;
}

.hotel-stars-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* item */

.hotel-star-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* checkbox */

/* скрываем radio */
.hotel-star-item input {
    display: none;
}

/* label */
.hotel-star-item {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* квадрат */
.hotel-star-item .stars::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #A1A1AA;
    border-radius: 6px;
    transition: .2s;
}

/* галочка */
.hotel-star-item .stars::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-60%) rotate(45deg) scale(0);
    transition: .2s;
}

/* checked */
.hotel-star-item input:checked + .stars::before {
    background: #F35C3A;
    border-color: #F35C3A;
}

.hotel-star-item input:checked + .stars::after {
    transform: translateY(-60%) rotate(45deg) scale(1);
}

/* звезды */
.hotel-star-item .stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* текст ALL */
.hotel-star-item .stars[data-content="all"] {
    font-size: 14px;
    color: #535E7D;
}

/* stars */

.hotel-star-item .stars {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #2B4659;
    font-weight: 500;
}

.hotel-star-item .stars img {
    width: 24px;
    height: 24px;
    display: block;
}

/* hover */

.hotel-star-item:hover {
    opacity: 0.85;
}

.hotel-filter .main-btn {
    width: 100%;
    background: #F35C3A;
    border-radius: 50px;
}

.filter-result {
    flex: 1
}

.filter-result .result-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-result .show_more {
    width: 100%;
    background-color: var(--title-color);
    margin-top: 40px;
}

.result-item {
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    width: 100%;
    box-shadow: 0px 12px 32px 0px #1A1C1C0F;
}

.result-item .img {
    width: 263px;
    padding: 14px;
}

.result-item .img img {
    border-radius: 16px;
    object-fit: cover;
    height: 100%;
}

.result-item .content {
    padding: 14px 14px 14px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.result-item .content .header {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 30px;
}

.result-item .content .header .title {
    color: var(--title-color);
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -1.8px;
}

.result-item .content .header .rating {
    display: flex;
    align-items: center;
}

.result-item .content .header .rating img {
    width: 24px;
    height: 24px;
}

.result-item .content .header .rating p {
    color: #535E7D;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    margin-left: 8px;
}

.result-item .content .details {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.result-item .content .details ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.result-item .content .details ul li {
    background-color: #F3F3F4;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #535E7D;
}

.result-item .content .details ul li svg {
    height: 13px;
    width: fit-content;
}

.result-item .content .description {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color: var(--title-color);
}

.result-item .content .description .title {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #535E7D;
}

.result-item .content .share_btn {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 0;
}

.result-item .carrier {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-item .carrier .title {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #535E7D;
}

.result-item .carrier .item {
    background-color: #F3F3F4;
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.result-item .carrier .item .info p {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
    line-height: 100%;
}

.result-item .carrier .item .info span {
    font-size: 11px;
    line-height: 16px;
    color: #535E7D;
}

.result-item .carrier .item .price {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
}

.result-item .carrier .item .price span {
    font-size: 11px;
    line-height: 16px;
    color: #535E7D;
    font-weight: 400;
}

.result-item .carrier .item.item-best {
    background: #FEEFEB;
    border: 1px solid #EED5D0;
}

.result-item .carrier .item.item-best .info p,
.result-item .carrier .item.item-best .info span,
.result-item .carrier .item.item-best .price,
.result-item .carrier .item.item-best .price span {
    color: #F35C3A;
}

.result-item .carrier .item.item-best .info p span {
    color: #fff;
    background-color: #F35C3A;
    padding: 2px 8px;
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-left: 7px;
}

/* ================ Search Hotel Section End ================ */
/* ================ Single Hotel Section Start ================ */
.singleHotel_content_section {
    padding: 136px 0 0;
}

.singleHotel_content_section .excursions_header {
    margin-top: 40px;
}

.singleHotel_content_section .excursions_header .label-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.singleHotel_content_section .excursions_header .label-block .rating {
    display: flex;
    align-items: center;
}

.singleHotel_content_section .excursions_header .label-block .rating img {
    width: 20px;
    height: 20px;
}

.singleHotel_content_section .excursions_header .main_subtitle {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #535E7D;
}

.singleHotel_content {
    display: flex;
    gap: 50px 40px;
}

.singleHotel_content .singleHotel_description {
    max-width: 894px;
}

.singleHotel_description .hotel-advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    list-style: none;
    margin: 40px 0;
}

.singleHotel_description .hotel-advantages-list li {
    font-size: 16px;
    line-height: 1;
}

.hotel-advantages-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-advantages-item img {
    width: 24px;
    height: 24px;
}

.hotel-advantages-item.hidden {
    display: none;
}

/* кнопка — правая колонка */
.show-more-wrapper {
    grid-column: 2 / 3;
}

.show-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 8px 0;
    color: #BB6653;
    font-weight: 500;
    font-size: 16px;
}

.hotel-details-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.hotel-details-list .details-list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #7F7F7F;
}

.hotel-details-list .details-list .item:first-of-type {
    padding-top: 0;
}

.hotel-details-list .details-list .item span:nth-child(1) {
    font-weight: 300;
    font-size: 18px;
    color: var(--text-color);
}

.hotel-details-list .details-list .item span:nth-child(2) {
    font-weight: 500;
    font-size: 18px;
    color: var(--text-color);
}

.hotel_main .concept_tabs_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.agency_block {
    border: 1px solid #7F7F7F;
    border-radius: 4px;
    background-color: #A1CDCC80;
    padding: 20px;
    margin: 40px 0;
}

.agency_block .title {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 12px;
}

.agency_block .subtitle {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 400;
}

.agency_block .text {
    font-size: 16px;
}

.agency_block .text:not(:last-of-type) {
    margin-bottom: 20px;
}

/*------- Single Hotel Section -------*/
/* ====== gallery swiper grid ====== */
.single-hotel {
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
}

.gallery-swiper {
    width: 100%;
}

/* сама сетка внутри одного слайда */
.gallery-swiper .slide-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    height: 490px;
}

/* карточка */
.gallery-swiper .item {
    border-radius: 21px;
    overflow: hidden;
    border: 1px solid #FFFEFD;
}

.gallery-swiper .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   СЕТКА №1 — нечётные слайды
   слева 2 / центр большая / справа 2
========================= */

.gallery-swiper .swiper-slide:nth-child(odd) .i1 {
    grid-column: 1;
    grid-row: 1;
}

.gallery-swiper .swiper-slide:nth-child(odd) .i2 {
    grid-column: 1;
    grid-row: 2;
}

.gallery-swiper .swiper-slide:nth-child(odd) .i3 {
    grid-column: 2;
    grid-row: 1 / 3;
}

.gallery-swiper .swiper-slide:nth-child(odd) .i4 {
    grid-column: 3;
    grid-row: 1;
}

.gallery-swiper .swiper-slide:nth-child(odd) .i5 {
    grid-column: 3;
    grid-row: 2;
    display: block;
}

/* =========================
   СЕТКА №2 — чётные слайды
   слева большая / центр 2 / справа большая
========================= */

.gallery-swiper .swiper-slide:nth-child(even) .i1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-swiper .swiper-slide:nth-child(even) .i2 {
    grid-column: 2;
    grid-row: 1;
}

.gallery-swiper .swiper-slide:nth-child(even) .i3 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-swiper .swiper-slide:nth-child(even) .i4 {
    grid-column: 3;
    grid-row: 1 / 3;
}

/* пятая карточка во второй сетке не используется */
.gallery-swiper .swiper-slide:nth-child(even) .i5 {
    display: none;
}

.hotel_slider {
    position: relative;
    padding: 30px 0;
}

.gallery_btn {
    position: absolute;
    top: calc(50% - 26px);
    z-index: 5;

    border-radius: 50%;
    border: 1px solid #FFFEFD;
    padding: 0;
    background-color: #fff;

    align-items: center;
    border-left: none;
    cursor: pointer;
    display: flex;
    height: 52px;
    justify-content: space-around;
    transition: .25s ease;
    width: 57px;
}

.gallery_btn-prev {
    border-radius: 0 32px 32px 0;
    left: 0;
}

.gallery_btn-next {
    border-radius: 32px 0 0 32px;
    right: 0;
}

.gallery_btn svg {
    width: 32px;
}

.gallery_btn svg path {
    fill: var(--text-color);
}

.hotel_main {
    padding: 0 20px;
}

.hotel_main .hotel_container {
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    gap: 20px;
}

.hotel_content {
    flex: 1;
    width: 100%;
    max-width: 800px;
}

.hotel-navigation {
    margin: 20px 0 20px -265px;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0;
    width: 235px;
}

.hotel-navigation.is-sticky {
    position: fixed;
    top: 0;
    z-index: 50;
}

.hotel-navigation.is-sticky-stop {
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 50;
}

.hotel-navigation .side-navigation {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

.hotel-navigation .side-navigation .side-navigation_item {
    background: #fff;
    border: 1px solid #e5eaf6;
    border-bottom-left-radius: 21px;
    border-top-left-radius: 21px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 7px 16px;
    position: relative;
    text-align: right;
    text-transform: uppercase;
    transition: transform .25s ease, color .25s ease, background-color .25s ease, border-color .25s ease;
    will-change: transform;
}

.hotel-navigation .side-navigation .side-navigation_item.is-active,
.hotel-navigation .side-navigation .side-navigation_item:hover {
    background: #ffefe5;
    border-color: #ffefe5;
    color: #ff6500;
    transform: scale(1.1) translate(-10%);
}

.hotel-navigation .side-navigation .side-navigation_item:after {
    background: #fff;
    border-bottom: 1px solid #e5eaf6;
    border-top: 1px solid #e5eaf6;
    content: "";
    display: block;
    height: calc(100% + 2px);
    left: 100%;
    position: absolute;
    top: -1px;
    transition: background-color .25s ease, border-color .25s ease;
    width: 50px;
}

.hotel-navigation .side-navigation .side-navigation_item.is-active:after,
.hotel-navigation .side-navigation .side-navigation_item:hover:after {
    background: #ffefe5;
    border-color: #ffefe5;
    height: calc(100% + 2px);
}

.hotel_actions-mob {
    display: none;
}

.hotel_actions {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e1e9f4;
    padding-bottom: 20px;
}

.hotel_actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    max-height: 40px;
    min-height: 40px;
    color: var(--primary-color);
    gap: 5px;
    padding: 11px 20px 11px 14px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
}

.hotel_actions button svg {
    width: 16px;
    height: 16px;
}

.hotel_actions button:hover {
    transform: scale(.95);
}

.hotel_content .title {
    margin-bottom: 32px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #F35C3A;
}

.hotel_content .breadcrumbs + .title {
    text-align: left;
    line-height: 1.5;
}

.hotel_description .description {
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: var(--title-color);
    margin-bottom: 30px;
}

.hotel_description .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
    background: #F3F3F4;
    padding: 32px;
    border-radius: 16px;
}

.hotel_description .list li {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hotel_description .list li p {
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #535E7D;
}

.hotel_description .list li span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1A1C1C;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel_description .list li span svg {
    width: 18px;
    height: 18px;
}

.hotel_rooms {
    padding-bottom: 30px;
}

.hotel_rooms-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel_rooms-accordion-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: normal;
    min-height: 60px;
    padding: 24px 40px 24px 24px;
    position: relative;
    text-align: left;
    width: 100%;
    box-shadow: 0 1px 2px 0 #0000000D;
    border-radius: 12px;
    background-color: #fff;
}

.hotel_rooms-accordion-header img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.hotel_rooms-accordion-header .info {
    display: flex;
    flex-direction: column;
}

.hotel_rooms-accordion-header .info p {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--title-color);
}

.hotel_rooms-accordion-header .info ul {
    display: flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535E7D;
    margin-left: 20px;
    gap: 30px;
}

.hotel_rooms-accordion-header .info ul li {
    list-style: disc;
}

.hotel_rooms-accordion-content {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-top: -6px;
    opacity: 0;
    padding: 0 24px 24px;
}

.hotel_rooms-accordion-header::before {
    border-bottom: 2px solid var(--title-color);
    border-right: 2px solid var(--title-color);
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    right: 24px;
    position: absolute;
    top: calc(50% - 6px);
    transform: rotate(45deg);
    transition: .3s;
}

.hotel_rooms-accordion-item.is-active .hotel_rooms-accordion-header::before {
    transform: rotate(-135deg);
}

.hotel_rooms-accordion-item.is-active .hotel_rooms-accordion-header {
    border: 1px solid #F35C3A66;
    border-width: 1px 1px 0 1px;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
}

.hotel_rooms-accordion-item.is-active .hotel_rooms-accordion-content {
    display: none;
    flex-direction: column;
    gap: 20px;

    background: #fff;
    opacity: 0;
    transform: translateY(6px);
    border: 1px solid #F35C3A66;
    border-width: 0 1px 1px 1px;
}

.hotel_rooms-slider {
    position: relative;
}

.hotel_rooms-swiper {
    width: 100%;
}

.hotel_rooms-swiper .swiper-slide {
    border-radius: 21px;
    overflow: hidden;
}

.hotel_rooms-gallery .photo-grid {
    display: grid;
    grid-template-columns:minmax(0, 6fr) minmax(0, 4fr);
    gap: 14px;
}

.hotel_rooms-gallery .photo-grid__item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.hotel_rooms-gallery .photo-grid__item .photo_more-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    background: #1A1C1C33;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel_rooms-gallery .photo-grid__item .photo_more-btn:hover {
    background: #1A1C1C80;
}

.hotel_rooms-gallery .photo-grid__item.photo-grid__item--big .photo_more-btn {
    display: none;
}

.hotel_rooms-gallery .photo-grid__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* одинаковая высота */
.hotel_rooms-gallery .photo-grid__item--big,
.hotel_rooms-gallery .photo-grid__item--small {
    height: 360px;
}

.hotel_rooms-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 20px;
}

.hotel_rooms-content .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
}

.hotel_rooms-content .list .list_item {
    cursor: default;
    display: flex;
    font-size: 16px;
    gap: 10px;
    line-height: 1.5;
    padding: 13px 0;
}

.hotel_rooms-content .list .list_item span {
    width: 20px;
    height: 20px;
}

/* кнопки */

.hotel_rooms-slider-btn {
    position: absolute;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    height: 50px;
    justify-content: center;
    margin-top: unset;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    z-index: 2;
}

.hotel_rooms-slider-btn:after {
    align-items: center;
    border-radius: 50%;
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #f2b187;
    content: "";
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease;
    width: 36px;
}

.hotel_rooms-slider-btn--prev {
    left: 0;
}

.hotel_rooms-slider-btn--prev:after {
    background: url('/assets/img/arrow-short-left-orange.svg') no-repeat 50% / 24px, linear-gradient(180deg, #ffefe5, #fadac7) no-repeat 50% / cover;
}

.hotel_rooms-slider-btn--next {
    right: 0;
}

.hotel_rooms-slider-btn--next:after {
    background: url('/assets/img/arrow-short-right-orange.svg') no-repeat 50% / 24px, linear-gradient(180deg, #ffefe5, #fadac7) no-repeat 50% / cover;
}

.hotel_rooms-accordion-content .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-bottom: 1px solid #E1BFB71A;
    padding-bottom: 32px;
}

.hotel_rooms-accordion-content .badges .badges__item {
    background-color: #DAE2FF;
    border-radius: 25px;
    color: #0F1A36;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -.26px;
    padding: 12px 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel_rooms-accordion-content .badges .badges__item svg {
    width: 14px;
    height: 14px;
    object-fit: cover;
}

.hotel_rooms-accordion-content .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
}

.hotel_rooms-accordion-content .list .list_item {
    cursor: default;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--title-color);
}

.hotel_rooms-accordion-content .list .list_item span svg {
    width: 40px;
    height: 40px;
}

.hotel_rooms-accordion-content .list .list_item.none {
    opacity: .5;
}

.hotel_rooms-accordion-content .list .list_item.none svg rect {
    fill: #F3F3F4;
}

.hotel_rooms-accordion-content .list .list_item.none svg path {
    fill: #535E7D;
}

.hotel_location {
    border-bottom: 1px solid #e1e9f4;
    padding-bottom: 30px;
}

.location {
    margin-bottom: 64px;
}

.location .location_hotel-type {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2B4659;
}

.location .location_text li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    list-style: disc;
    margin-left: 20px;
    color: var(--title-color);
}

.hotel_concept {
    padding: 24px;
    width: 100%;
    box-shadow: 0 1px 2px 0 #0000000D;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 30px;
}

.hotel_concept_lists {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.hotel_concept_lists ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel_concept_lists li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535E7D;
    padding-left: 25px;
    position: relative;
}

.hotel_concept_lists li:not(:first-of-type):before {
    content: url("");
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background-image: url("/assets/img/Icon_list.svg");
    background-size: contain;
    background-position: center;
}

.hotel_concept_lists li:first-of-type {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1A1C1C;
    margin-bottom: 4px;
    padding: 0;
}

.hotel_concept_lists li:first-of-type svg {
    width: 18px;
    height: 18px;
}

.concept_tab_panel {
    margin-bottom: 26px;
}

.concept_tab_content {
    display: flex;
    gap: 40px 30px;
}

.concept_tab_content img {
    width: 350px;
    border-radius: 12px;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.concept_tab_content .content {
    flex: 1;
}

.concept_tab_content .header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 16px;
    line-height: normal;
    min-height: 60px;
    padding: 24px 40px 24px 24px;
    position: relative;
    text-align: left;
    width: 100%;
    box-shadow: 0 1px 2px 0 #0000000D;
    border-radius: 12px;
    background-color: #fff;
}

.concept_tab_content .header .title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: var(--title-color);
}

.concept_tab_content .header svg {
    height: 48px;
    width: 48px;
}

.concept_tab_content .header .details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.concept_tab_content .header .details .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9F9F9;
    padding: 16px;
    border-radius: 16px;
}

.concept_tab_content .header .details .item .title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: var(--title-color);
    flex: 1;
}

.concept_tab_content .header .details .item .title svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.concept_tab_content .header .details .item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #E85A3A;
    flex: 1;
    text-align: right;
}

.concept_tab_content .advantages-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.concept_tab_content .advantages-list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-align: center;
    text-transform: uppercase;
    color: #535E7D;
    box-shadow: 0px 1px 2px 0px #0000000D;
    border-radius: 16px;
    padding: 24px;
    word-break: break-all;
}

.concept_tab_content .advantages-list .item svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.hotel_advantages {
    border-bottom: 1px solid #e1e9f4;
    padding-bottom: 30px;
}

.hotel_advantages .advantages_content {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hotel_advantages .advantages_content .advantages_item {
    align-items: center;
    color: #2e3a59;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: space-between;
    padding: 0 15px 16px;
    transition: transform .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.hotel_advantages .advantages_content .advantages_item:hover {
    transform: scale(1.1) rotate(2deg);
}

.hotel_advantages .advantages_content .advantages_item .advantages_img {
    height: 82px;
    width: 82px;
}

.hotel_advantages .advantages_content .advantages_item .advantages__text {
    color: #2e3a59;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    text-align: center;
}

.hotel_types {
    margin-bottom: 50px;
}

.hotel_types .rest-types_content {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hotel_types .rest-types_content .rest-types-item {
    align-items: center;
    background: #fff;
    border: 1px solid #e5eaf6;
    border-radius: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px 15px;
    touch-action: manipulation;
    transition: box-shadow .25s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: fit-content;
}

.rest-types-item-active {
    box-shadow: 0 10px 20px #a5aabc33;
}

/*.hotel_types .rest-types_content .rest-types-item .rest-types-item_media {*/
.hotel_types .rest-types_content .rest-types-item img {
    background-position: 50%;
    background-size: cover;
    display: block;
    width: 125px;
    height: 125px;
}

.hotel_types .rest-types_content .rest-types-item .rest-types-item_text {
    color: #2e3a59;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    text-align: center;
}

.hotel_attention {
    background: #F35C3A1A;
    padding: 22px 60px 22px 28px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hotel_attention:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 4px;
    height: 100%;
    background: #E85A3A;
}

.hotel_attention svg {
    width: 18px;
    height: 18px;
}

.hotel_attention p {
    flex: 1;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #535E7D;
}

.hotel_attention .title {
    text-align: left;
}

.related-hotels {
    width: 100%;
}

.related-hotels .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 30px;
}

.related-hotels .title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 15px;
    text-align: center;
}

.related-hotels .related-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.related-hotels .related-list .item {
    align-items: center;
    background-color: #fff;
    border: 1px solid #e1e9f4;
    border-radius: 12px;
    color: #2e3a59;
    display: flex;
    flex: 1 0 100%;
    justify-content: space-between;
    max-width: calc(33.33% - 20px);
    padding: 20px;
}

.related-hotels .related-list .item p {
    color: #2e3a59;
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 30px);
}

.related-hotels .related-list .item svg {
    width: 24px;
    height: 24px;
}

.similar_hotels .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 30px;
}

.similar_hotels .title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 15px;
    text-align: center;
}

.similar_item {
    background: #fff;
    border: 1px solid #e1e9f4;
    border-radius: 21px;
    color: var(--text-color);
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 320px;
}

.similar_item .item_slider {
    position: relative;
}

.similar_item .item_slider .banks_list {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 20px;
    z-index: 1;
    gap: 10px;
}

.similar_item .item_slider .banks_list li img {
    display: block;
    height: 32px;
    width: auto;
}

.similar_item .item_slider .similar-swiper {
    border-radius: 20px 0 0 20px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    width: 380px;
    height: 100%;
}

.similar_item .item_slider .similar-swiper img {
    height: 100%;
    object-fit: cover;
}

.similar_item .item_slider .item_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 30px 17px;
    width: calc(100% - 380px);
}

.similar_item .item_slider .swiper-pagination-bullet {
    background-color: #fff;
    opacity: .6;
}

.similar_item .item_slider .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}

.similar_item .item_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 30px 17px;
    width: calc(100% - 380px);
}

.similar_item .item_content .location-name {
    max-width: calc(100% - 125px);
}

.similar_item .item_content .location-name .location {
    color: #4a90e2;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 3px;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.similar_item .item_content .location-name .name {
    display: block;
}

.similar_item .item_content .location-name .location {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.similar_item .item_content .location-name h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.similar_item .item_content .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 8px;
}

.similar_item .item_content .rating img {
    width: 24px;
    height: 24px;
}

.similar_item .item_content .rating-stars {
    display: flex;
}

.similar_item .item_content .rating-stars img {
    width: 30px;
    height: 30px;
}

.similar_item .item_content .description {
    font-size: 16px;
    margin-bottom: 10px;
    max-height: 60px;
    overflow: hidden;
    transition: max-height .5s ease .25s;
}

.similar_item .item_content .actions {
    display: flex;
    gap: 5px;
    position: absolute;
    z-index: 1;
    right: 15px;
    top: 15px;
}

.similar_item .item_content .actions button {
    background-image: linear-gradient(180deg, #ffefe5, #fadac7);
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #f2b187;
    color: #ff6500;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 14px 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar_item .item_content .actions button svg {
    width: 16px;
    height: 16px;
}

.similar_item .bottom_line {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.similar_item .meta {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.similar_item .meta .meta_item {
    align-items: center;
    background-color: #eff2f7;
    border-radius: 25px;
    display: inline-flex;
    height: 32px;
    padding: 0 10px 0 6px;
    white-space: nowrap;
}

.similar_item .meta .meta_item svg {
    width: 24px;
    height: 24px;
}

.similar_item .meta .meta_item span {
    font-size: 14px;
    margin-left: 5px;
    color: #2e3a59;
    font-weight: 700;
    margin-top: 1px;
}

.similar_item .price {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 13px;
    margin-left: auto;
}

.similar_item .price span {
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    white-space: nowrap;
}

.similar_item .price button {
    font-size: 16px;
    max-height: 50px;
    min-height: 50px;
    background-image: linear-gradient(180deg, #ff9000, #ff6500);
    border-radius: 25px;
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #00000040;
    color: #fff;
    font-weight: 600;
    line-height: 1.25;
    padding: 15px 20.5px;
    transition: .3s;
}

.similar_item .price button:hover {
    transform: scale(.95);
}

.booking-hotel-form {
    background-color: #fff;
    border: 1px solid #e5eaf6;
    border-radius: 21px;
    box-shadow: 0 10px 20px #a5aabc33;
    flex-shrink: 0;
    height: auto;
    align-self: flex-start;
    margin-top: -67px;
    padding: 30px 20px 40px;
    position: sticky;
    top: 20px;
    width: 425px;
    display: grid;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
}

.book-form_expand-btn {
    display: none;
}

.booking-hotel-form .booking-hotel-inner {
    display: grid;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
}

.booking-hotel-form .bh-dropdown.drop-up .bh-list {
    top: auto;
    bottom: 100%;
}

.booking-hotel-form .title {
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.booking-hotel-form .booking-hotel-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-column-gap: 20px;
}

.booking-hotel-form .bh-field {
    position: relative;
}

.booking-hotel-form label {
    display: block;
    color: #353b50;
    font-size: 14px;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-hotel-form .bh-dropdown {
    position: relative;
}

.booking-hotel-form .bh-search {
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: #eff2f7;
    border: none;
    border-radius: 12px;
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #00000026;
    color: var(--text-color);
    margin: 10px 20px;
}

.booking-hotel-form .bh-search-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
}

.booking-hotel-form .bh-input {
    cursor: pointer;
    background-color: #eff2f7;
    border-radius: 12px;
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px rgba(0, 0, 0, .15);
    color: #2e3a59;
    font-size: 16px;
    font-weight: 500;
    min-height: 50px;
    padding: 10px 40px 10px 20px;
    text-align: left;
    transition: box-shadow .15s ease;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.8;
}

.booking-hotel-form .bh-input[type="text"] {
    cursor: text;
}

.booking-hotel-form .icon {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    right: 8px;
    bottom: 0;
    margin: auto;
}

.booking-hotel-form .icon.icon-arr {
    width: 24px;
    height: 24px;
    background-image: url(/assets/img/arrow-select.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.booking-hotel-form .bh-dropdown.open .icon.icon-arr {
    transform: rotate(180deg);
    transition: .3s;
}

.booking-hotel-form .bh-readonly {
    user-select: none;
}

.booking-hotel-form .bh-list {
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    overflow: auto;
    border: 1px solid #e5eaf6;
    border-radius: 12px;
    box-shadow: 4px 18px 22px #73737324;
    margin-top: 20px;
    min-width: 300px;
    padding: 20px;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 10;
}

.booking-hotel-form .bh-dropdown.open .bh-list {
    display: block;
}

.booking-hotel-form .bh-dropdown.open .bh-list.bh-nights-list {
    max-height: 220px;
    min-width: 100%;
    padding: 0;
}

.booking-hotel-form .bh-dropdown.open .bh-list.bh-list-trip,
.booking-hotel-form .bh-dropdown.open .bh-list.bh-list-type,
.booking-hotel-form .bh-dropdown.open .bh-list.bh-list-service {
    padding: 0;
}

.booking-hotel-form .bh-dropdown.open .bh-list.bh-list-type .bh-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-hotel-form .bh-option {
    padding: 8px 10px;
    cursor: pointer;
}

.booking-hotel-form .bh-dropdown.open .bh-list.bh-list-trip .bh-option {
    padding: 5px 20px;
}

.booking-hotel-form .bh-option:hover {
    background: #f0f0f0;
}

.booking-hotel-form .bh-counter {
    flex-direction: column;
    align-items: center;
    color: #2e3a59;
    display: flex;
    justify-content: space-between;
    min-height: 36px;
    padding-bottom: 18px;
    position: relative;
    width: 100%;
}

.booking-hotel-form .bh-counter:first-of-type {
    border-bottom: 1px solid #e7f1ff;
    margin-bottom: 30px;
}

.booking-hotel-form .bh-counter div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 11px 0 12px;
    position: relative;
}

.booking-hotel-form .bh-counter div:first-of-type p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}

.booking-hotel-form .bh-counter div:first-of-type span {
    color: var(--text-color);
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

.booking-hotel-form .bh-counter div:last-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.booking-hotel-form .bh-counter button {
    background: rgba(255, 101, 0, .1);
    border-radius: 100px;
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #f2b187;
    cursor: pointer;
    height: 36px;
    position: relative;
    transition: transform .25s ease, opacity .25s ease;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6500;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.booking-hotel-form .bh-counter .bh-count {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.booking-hotel-form .bh-calendar {
    padding: 8px;
}

.booking-hotel-form .bh-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.booking-hotel-form .bh-cal-header button {
    border: 0;
    background: none;
    cursor: pointer;
    font-size: 18px;
}

.booking-hotel-form .bh-cal-week,
.booking-hotel-form .bh-cal-grid {
    display: grid;
    grid-template-columns:repeat(7, 1fr);
    text-align: center;
}

.booking-hotel-form .bh-cal-week span {
    font-size: 12px;
    opacity: .6;
    padding: 4px 0;
}

.booking-hotel-form .bh-cal-day {
    padding: 6px 0;
    cursor: pointer;
    border-radius: 6px;
}

.booking-hotel-form .bh-cal-day:hover {
    background: #f0f0f0;
}

.booking-hotel-form .bh-cal-day.is-disabled {
    opacity: .3;
    pointer-events: none;
}

.booking-hotel-form .bh-cal-day.is-selected {
    background: #ff6500;
    color: #fff;
}

.book-form_price-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

.book-form_price-btn .price {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    white-space: nowrap;
}

.book-form_action {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
    width: 100%;
}

.book-form_price-btn button {
    font-size: 16px;
    max-height: 50px;
    min-height: 50px;
    background-image: linear-gradient(180deg, #ff9000, #ff6500);
    border-radius: 25px;
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #00000040;
    color: #fff;
    font-weight: 600;
    line-height: 1.25;
    padding: 15px 20.5px;
    transition: .3s;
}

.book-form_price-btn button:hover {
    transform: scale(.95);
}

.book-form_price-btn .icon-btn {
    background-image: linear-gradient(180deg, #ffefe5, #fadac7);
    box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #f2b187;
    color: #ff6500;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    max-height: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.book-form_price-btn .icon-btn svg {
    width: 16px;
    height: 16px;
}

.book-form_price-btn .meta {
    gap: 10px;
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.book-form_price-btn .meta .meta_item {
    align-items: center;
    background-color: #eff2f7;
    border-radius: 25px;
    display: inline-flex;
    height: 32px;
    padding: 0 10px 0 6px;
    white-space: nowrap;
}

.book-form_price-btn .meta .meta_item svg {
    width: 24px;
    height: 24px;
}

.book-form_price-btn .meta .meta_item span {
    font-size: 14px;
    margin-left: 5px;
    color: #2e3a59;
    font-weight: 700;
    margin-top: 1px;
}

/*------- Single Hotel Section -------*/
/* ================ Single Hotel Section End ================ */
/* ================ Booking Form Start ================ */
.booking-form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 431px;
    box-shadow: 0px 10px 25px -5px #0000000D;
    border: 1px solid #F3F4F6;
}

.booking-title {
    max-width: 95%;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.6px;
    color: #4B5563;
    margin-bottom: 38px;
}

.booking-form .main-btn {
    width: 100%;
    border: 1px solid #F35C3A;
    background: transparent;
    border-radius: 50px;
    color: #F35C3A;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

/* ===== SELECT WRAPPER ===== */

/* current button */

.booking-current {
    width: 100%;
    cursor: pointer;
    border: 1px solid #7F7F7F;
    background: #fff;
    padding: 19px 16px;
    border-radius: 4px;
    font-size: 16px;
    color: #0C151D;
    text-align: left;
    position: relative;
}

/* arrow */

.booking-current::after {
    content: '';
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-image: url('/assets/img/ion_ arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}

/* dropdown */

.booking-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 5;

    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height .3s ease, opacity .2s ease;
}

.booking-select.is-open .booking-dropdown {
    max-height: 260px;
    opacity: 1;
    visibility: visible;
    border: 1px solid #7F7F7F;
    border-radius: 4px;
    padding: 10px 0;
}

/* list */

.booking-list li {
    position: relative;
}

.booking-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #C3C3C34D;
}

.booking-list button {
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-color);
}

.booking-list li:hover {
    background: #C3C3C34D;
}

.booking-select {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}

.booking-label {
    color: #4B5563;
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #4B5563;
}

.booking-current {
    width: 100%;
    padding: 14px 16px 14px 40px;
    text-align: left;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #F9FAFB80;
    cursor: pointer;
    position: relative;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--title-color);
}

.booking-current::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('/assets/img/arrow-down-svgrepo-com.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: .3s;
}

.booking-current::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .3s;
}

.booking-current.booking-dates::before {
    background-image: url('/assets/img/location-pin-svgrepo-com.svg');
}

.booking-current.booking-travelers::before {
    background-image: url('/assets/img/calendar-lines-svgrepo-com.svg');
}

.booking-current.booking-duration::before {
    background-image: url('/assets/img/people-svgrepo-com.svg');
}

/* dropdown */
.booking-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .3s ease, opacity .2s ease;
    border-radius: 4px;
}

.booking-select.is-open .booking-dropdown {
    max-height: fit-content;
    opacity: 1;
    visibility: visible;
    border: 1px solid #7F7F7F;
    padding: 10px;
}

/* Travelers controls */
.booking-travelers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-traveler-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.booking-traveler-item button {
    width: 32px;
    height: 32px;
    border: 1px solid #7F7F7F;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

/* Calendar styles */
.booking-calendar {
    display: flex;
    flex-direction: column;
}

.booking-calendar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 12px;
    gap: 12px;
}

.months-dropdown {
    position: relative;
    flex: 1;
}

.months-current {
    cursor: pointer;
    position: relative;
}

.months-current::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 12px;
    height: 6px;
    background: url('/assets/img/calendar-months-arr.svg') center/contain no-repeat;
    transition: .3s;
}

.months-dropdown.is-open .months-current::after {
    transform: translateY(-50%) rotate(-180deg);
}

.months-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 220px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    border: 1px solid #7F7F7F;
    border-radius: 4px;
}

.months-dropdown.is-open .months-list {
    opacity: 1;
    visibility: visible;
}

/* Calendar body */
.calendar-weekdays, .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-days button, .calendar-days .empty {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.calendar-days button {
    cursor: pointer;
    border: none;
    background: transparent;
}

.calendar-days button:hover {
    background: #C3C3C34D;
}

/* Calendar footer */
.booking-calendar_footer {
    padding: 16px 20px 20px;
}

.booking-calendar_controls {
    display: flex;
    gap: 8px;
}

.booking-calendar_controls .main-btn {
    flex: 1;
}

.booking-calendar_controls .cancel-btn {
    background: #7F7F7F33;
    color: var(--text-color);
}

.booking-calendar_controls .select-btn {
    background: #BB6653;
    color: #fff;
}

.booking-btn {
    padding: 12px 30px;
    width: 100%;
    border: 1px solid #F35C3A;
    background: #F35C3A;
    border-radius: 50px;
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 767px;
    margin: 0 auto;
}

.hotel_meta {
    margin: 32px 0;
}

.hotel_meta .title {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #4B5563;
    margin-bottom: 16px;
}

.hotel_meta_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    padding: 19px 4px;
    position: relative;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
}

.hotel_meta_content .meta_item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hotel_meta_content .meta_item svg {
    width: 30px;
    height: 30px;
}

.hotel_meta_content .meta_item p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.total-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid #7F7F7F80;
    border-radius: 4px;
    background-color: #A1CDCC80;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.total-price#anri {
    margin-top: 32px;
}

.total-price .title {
    color: var(--text-color);
    font-size: 18px;
    width: 50%;
    font-weight: 700;
}

.total-price .price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    width: 50%;
}

.total-price .price img {
    width: 20px;
    height: 20px;
}

.total-price .details-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
}

.total-price .details-list .item span:last-child {
    font-weight: 700;
}

.total-price .main-btn {
    padding: 8px;
    background-color: var(--title-color);
}

.airlines-block {
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid #7F7F7F80;
    border-radius: 4px;
    background-color: #fcebda;
    padding: 14px 16px;
}

.airlines-block .title {
    color: var(--text-color);
    font-size: 18px;
    width: 50%;
    font-weight: 700;
}

.airlines-block .description {
    font-size: 16px;
    color: #473d35;
    font-weight: 700;
    margin: 15px;
    text-align: center;
}

.airlines-block .main-btn {
    width: 100%;
    padding: 8px;
    margin-top: auto;
    background-color: var(--title-color);
}

.tickets {
    margin-bottom: 32px;
}

.ticket {
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
    position: relative;
    border: 1px solid #E5E7EB;
    padding: 20px 16px;
    border-radius: 8px;
    background: #F9FAFB4D;
    margin-bottom: 32px;
}

.ticket:last-child {
    margin-bottom: 0;
}

.ticket .top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket .top .title {
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    color: #F35C3A;
    width: fit-content;
    margin: 0;
}

.ticket .top .label {
    margin-left: 5px;
    margin-right: auto;
    color: #fff;
    font-weight: 600;
    font-size: 8px;
    line-height: 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    background-color: #F35C3A;
    border-radius: 50px;
}

.ticket .top .price {
    margin-left: auto;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #E85A3A;
    margin-right: 11px;
}

.ticket .bottom {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.ticket .bottom div {
    position: relative;
    padding-left: 24px;
}

.ticket .bottom div:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #D1D5DB;
}

.ticket .bottom div p {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #4B5563;
}

.ticket .bottom div span {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--title-color);
}

.ticket.ticket-best {
    border-color: #EED5D0;
    background-color: #FEEFEB;
}

.ticket .bottom div:before {
    background-color: #F35C3A;
}

/* RADIO */
/* скрываем стандартный radio */
.ticket input {
    display: none;
}

/* кастомный radio */
.ticket .radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

/* активный */
.ticket input:checked + .top .radio {
    border-color: #2563EB;
    border-width: 4px;
}

/* точка внутри */
.ticket input:checked + .top .radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #E85A3A;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mob-tickets {
    display: none;
    border-bottom: 1px solid #e1e9f4;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.mob-tickets .main-btn {
    padding: 12px 30px;
    width: 100%;
    border: 1px solid #F35C3A;
    background: transparent;
    border-radius: 50px;
    color: #F35C3A;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 767px;
    margin: 0 auto;
}

.search-banner {
    display: none;
}

.search-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* TEXT */
.search-banner__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
}

.search-banner__subtitle {
    font-size: 14px;
    color: #8a94a6;
    margin: 0;
}

/* BUTTON */
.search-banner__btn {
    background: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: -16px;
    right: -12px;
}

/* ================ Booking Form End ================ */
/* ================ About Page Section Start ================ */
.about_page_section {
    padding: 136px 0 67px;
    position: relative;
}

.about_page_section:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/img/tg_about.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.about_page_section .container {
    max-width: 1320px;
}

.about_page_section .about_content {
    display: flex;
    align-items: center;
    gap: 36px 58px;
}

.about_page_section .about_content .description,
.about_page_section .about_content .img {
    flex: 1;
}

.about_page_section .about_content .description .main_title {
    margin-bottom: 26px;
}

.about_page_section .about_content .description p {
    font-size: 14px;
}

.about_counter_section {
    padding: 100px 0 140px;
}

.stats {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.counter {
    color: #f35c3a;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 55px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

.stats p {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #0C151E;
}

/* ================ About Page Section End ================ */
/* ================ Footer Start ================ */
footer {
    border-top: 1px solid #2B465933;
}

footer .footer_top {
    padding: 62px 0;
}

footer .footer_top .footer_content {
    display: flex;
    justify-content: space-between;
    gap: 0 15px;
    flex-wrap: wrap;
}

footer .footer_top .footer_content .footer_content-item .footer_logo {
    width: 192px;
}

footer .footer_top .footer_content .footer_content-item .footer_menu li p,
footer .footer_top .footer_content .footer_content-item .footer_social p {
    font-size: 24px;
    margin-bottom: 16px;
}

footer .footer_top .footer_content .footer_content-item .footer_menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .footer_top .footer_content .footer_content-item .footer_menu li a {
    font-size: 18px;
    font-weight: 300;
    color: #2B4659CC;
}

footer .footer_top .footer_content .footer_content-item .footer_social ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

footer .footer_top .footer_content .footer_content-item .footer_social ul li svg {
    width: 32px;
    height: 32px;
}

footer .footer_bottom .footer_copyright {
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #2B465933;
    padding: 24px 0;
}

/* ================ Footer End ================ */

@media screen and (max-width: 1900px) {
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .gallery-swiper .slide-grid {
        gap: 15px;
        height: 450px;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}

@media screen and (max-width: 1800px) {
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .hotel-navigation {
        display: none;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}

@media screen and (max-width: 1700px) {
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .gallery-swiper .slide-grid {
        height: 350px;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .gallery-swiper .slide-grid {
        gap: 10px;
        height: 400px;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}

@media screen and (max-width: 1499px) {
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .hotel_content {
        max-width: 750px;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}

@media screen and (max-width: 1399px) {
    /* ================ Main Banner Start ================ */
    .filter-images img {
        height: 430px;
    }

    /* ================ Main Banner End ================ */
}

@media screen and (max-width: 1300px) {
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .hotel_content {
        max-width: 700px;
    }

    .booking-hotel-form {
        width: 350px;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}

@media screen and (max-width: 1199px) {
    /* ================ Main Banner Start ================ */
    .main_banner .container {
        padding: 80px 15px 40px;
    }

    .tours-filter {
        padding: 20px 22px
    }

    .filter-item .filter-item_label,
    .filter-current {
        font-size: 12px;
    }

    .filter-images img {
        height: 350px;
    }

    /* ================ Main Banner End ================ */
    /* ================ Deals Section Start ================ */
    .container.container_deals {
        padding: 0;
    }

    .deals_swiper.swiper {
        padding: 32px 15px 50px;
    }

    /* ================ Deals Section End ================ */
    /* ================ Proof Section Start ================ */
    .proof_section {
        padding: 50px 0;
    }

    .proof-block .main-img {
        height: 335px;
    }

    .proof-block .proof-info {
        padding: 25px 30px;
    }

    .proof-block .proof-info p {
        font-size: 18px;
    }

    /* ================ Proof Section End ================ */
    /* ================ Excursions Section Start ================ */
    .excursions_section .excursions_container {
        padding: 0;
    }

    .excursions_tabs {
        margin: 24px 15px 0;
    }

    .excursions_swiper.swiper {
        padding: 32px 15px 25px;
    }

    /* ================ Excursions Section End ================ */
    /* ================ Directions Section Start ================ */
    .container.container_directions {
        padding: 0;
    }

    .directions_swiper.swiper {
        padding: 32px 15px 50px;
    }

    /* ================ Directions Section End ================ */
    /* ================ Excursions Content Section Start ================ */
    .excursions_header {
        flex-direction: column;
    }

    .photo_item.photo_item--large {
        min-height: 564px;
    }

    /* ================ Excursions Content Section End ================ */
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .hotel_content {
        max-width: 500px;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}

@media screen and (max-width: 1024px) {
    .main_subtitle {
        font-size: 16px;
    }

    .main_title {
        font-size: 34px;
    }

    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .booking-hotel-form .book-form_expand-btn {
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 -14px 20px -3px #a8b2c245;
        cursor: pointer;
        height: 50px;
        position: absolute;
        top: -25px;
        right: 0;
        left: 0;
        margin: auto;
        width: 50px;
        z-index: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .booking-hotel-form .book-form_expand-btn:after {
        border-color: #2e3a59 transparent transparent #2e3a59;
        border-style: solid;
        border-width: 2px;
        content: "";
        display: block;
        height: 10px;
        position: absolute;
        transform: rotate(45deg);
        width: 10px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        transition: .3s;
    }


    .booking-hotel-form.active .book-form_expand-btn:after {
        transform: rotate(225deg);
    }

    .hotel_container.container {
        padding: 30px 15px 0;
    }

    .hotel_content {
        max-width: 100%;
    }

    .hotel_actions {
        display: none;
    }

    .hotel_actions-mob {
        display: flex;
        border-top: 1px solid #e1e9f4;
        border-bottom: 1px solid #e1e9f4;
        gap: 30px;
        justify-content: space-evenly;
        padding: 10px 0;
        position: relative;
        z-index: 1;
    }

    .hotel_actions-mob button {
        background-image: linear-gradient(180deg, #ffefe5, #fadac7);
        box-shadow: inset 0 .5px 1px #fff, inset 0 -.5px 1px #f2b187;
        color: #ff6500;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0;
        padding: 14px 20px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hotel_actions-mob button svg {
        width: 16px;
        height: 16px;
    }

    .similar_item .item_content .description {
        max-height: 22px;
    }

    .hotel_form {
        bottom: 0;
        left: 0;
        position: fixed;
        right: 0;
        top: auto;
        width: 100%;
        z-index: 10;
    }

    .booking-hotel-form {
        width: 100%;
        margin-top: 0;
        box-shadow: 0 -10px 20px #a5aabc33;
        border-radius: 21px 21px 0 0;
        position: relative;
    }

    .booking-hotel-form .booking-hotel-inner {
        display: none;
    }

    .booking-hotel-form.active .booking-hotel-inner {
        display: grid;
    }

    .book-form_price-btn .meta {
        display: flex;
    }

    .book-form_price-btn .icon-btn {
        display: none;
    }

    .book-form_price-btn {
        flex-direction: row;
    }

    .book-form_price-btn .price {
        margin-left: auto;
    }

    .book-form_action {
        width: fit-content;
    }

    .mob-tickets {
        display: block;
    }

    .request_form {
        display: none;
    }

    .booking-form {
        width: 100%;
    }

    .search-banner {
        display: block;
    }

    .hotel_main {
        padding: 0;
    }

    .hotel_main .hotel_container {
        border: none;
    }

    .excursions_content_section {
        padding: 80px 0 26px;
    }

    .singleHotel_content_section {
        padding: 80px 0 0;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}

@media screen and (max-width: 992px) {
    /* ================ Burger Menu Start ================ */
    .burger {
        display: flex;
    }

    .side-menu .lang-switcher {
        display: block;
        margin-left: auto;
    }

    /* ================ Burger Menu End ================ */
    /* ================ Main Banner Start ================ */
    header {
        padding: 21px 0;
    }

    .header_content .header_logo {
        width: 111px;
    }

    .header_content .header_menu,
    .lang-switcher {
        display: none;
    }

    .main_banner .main_banner-content {
        margin: 0;
    }

    .main_banner .main_banner-content .subtitle {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .main_banner .main_banner-content .title {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .main_banner .tours-filter,
    .filter-images {
        display: none;
    }

    .tours-result-mob {
        display: flex;
    }

    /* ================ Main Banner End ================ */
    /* ================ Deals Section Start ================ */
    .deals_btn-prev, .deals_btn-next {
        position: unset;
        margin: unset;
    }

    /* ================ Deals Section End ================ */
    /* ================ Directions Content Section Start ================ */
    .directions_content_section {
        padding: 80px 0 26px;
    }

    .directions_content {
        flex-direction: column;
    }

    .directions_content .img {
        display: none;
    }

    .directions_content .description {
        max-width: 100%;
    }

    .directions_content .description .main-img {
        display: block;
        margin: 0 auto 26px;
        max-width: 575px;
    }

    .photo_grid {
        grid-template-columns: 1fr;
    }

    .photo_right {
        display: none;
    }

    .photo_item--large .photo_more-btn {
        display: block;
    }

    /* ================ Directions Content Section End ================ */
    /* ================ Search Hotel Section Start ================ */
    .search_hotel_section {
        padding: 86px 0 26px;
    }

    .search_hotel_section .tours-filter {
        display: none;
    }

    .search_hotel_section .tours-result-mob {
        margin: 0 auto 30px;
    }

    .hotel-filter {
        max-width: 100%;
    }

    .filter-content {
        flex-direction: column;
    }

    .result-item .content .options {
        flex-direction: row;
    }

    .result-item .content .options .options-item {
        flex: 1;
        min-height: unset;
    }

    /* скрываем всё кроме заголовка */
    .hotel-filter > *:not(.filter-title) {
        display: none;
    }

    /* когда открыт */
    .hotel-filter.is-open > *:not(.filter-title) {
        display: block;
    }

    /* заголовок кликабельный */
    .filter-title {
        cursor: pointer;
        position: relative;
        padding-right: 30px;
    }

    /* стрелка */
    .filter-title::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 6px;
        background: url('/assets/img/calendar-months-arr.svg') no-repeat center / contain;
        transition: .3s;
    }

    .hotel-filter.is-open .filter-title::after {
        transform: translateY(-50%) rotate(-180deg);
    }

    .result-item .content .header .title {
        font-size: 28px;
    }

    .singleHotel_content {
        flex-direction: column-reverse;
    }

    .request_form {
        width: 100%;
        max-width: 100%;
    }

    .booking-form,
    .singleHotel_content .singleHotel_description {
        width: 100%;
    }

    /*------- Single Hotel Section -------*/
    .related-hotels .related-list {
        gap: 20px;
    }

    .related-hotels .related-list .item {
        max-width: calc(50% - 10px);
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
    /* ================ About Page Section Start ================ */
    .about_page_section {
        padding: 80px 0 26px;
    }

    .about_page_section:after {
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 400px;
        height: 50%;
        background-position-x: 35%;
    }

    .about_page_section .about_content {
        display: flex;
        flex-direction: column-reverse;
    }

    .about_page_section .about_content img {
        max-width: 575px;
    }

    .about_counter_section {
        padding: 0 0 26px;
    }

    .stats {
        grid-template-columns:repeat(2, 1fr);
    }

    /* ================ About Page Section End ================ */
    /* ================ Footer Start ================ */
    footer .footer_top {
        padding: 60px 0;
    }

    footer .footer_top .footer_content .footer_content-item .footer_logo {
        width: 111px;
    }

    footer .footer_top .footer_content .footer_content-item .footer_menu li p,
    footer .footer_top .footer_content .footer_content-item .footer_social p {
        font-size: 20px;
        margin-bottom: 12px;
    }

    footer .footer_top .footer_content .footer_content-item .footer_menu li a {
        font-size: 16px;
    }


    /* ================ Footer End ================ */
}

@media screen and (max-width: 767px) {
    .js-tab-btn {
        font-size: 14px;
        padding: 8px 14px
    }

    /* ================ Modal Start ================ */
    .modal {
        padding: 45px 12px 16px;
    }

    .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
        margin-right: -3px;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }

    .request-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .request-label {
        font-size: 12px;
    }

    .request-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .request-field:last-of-type {
        margin-bottom: 50px;
    }

    .request-textarea {
        min-height: 80px;
    }

    .request-form .main-btn {
        font-size: 14px;
        padding: 12px 30px
    }

    .request-form .main-btn svg {
        width: 14px;
        height: 14px;
    }

    /* ================ Modal End ================ */
    .main_subtitle {
        font-size: 14px;
    }

    .main_title {
        font-size: 20px;
    }

    .main_description {
        font-size: 16px;
    }

    .main_description ul {
        font-size: 16px;
        line-height: 32px;
    }

    /* ================ Main Banner Start ================ */
    .main_banner.secondary_banner {
        margin-bottom: 0;
    }

    .main_banner.secondary_banner .container {
        padding: 114px 0;
    }

    .tours-filter {
        position: absolute;
        width: calc(100% - 30px);
        padding: 16px 12px;
        flex-direction: column;
        left: 0;
        right: 0;
        margin: auto;
    }

    .filter-item {
        max-width: 100%;
    }

    .filter-item .filter-item_label {
        top: -6px;
        left: 8px;
        font-size: 12px;
    }

    .tours-filter .main-btn {
        width: 100%;
        padding: 12px;
    }

    .filter-current {
        padding: 11px 12px;
        font-size: 14px;
    }

    /* ================ Main Banner End ================ */
    /* ================ Directions Section Start ================ */
    .directions_slide .img {
        height: 277px;
    }

    .directions_slide .title {
        font-size: 20px;
    }

    /* ================ Directions Section End ================ */
    /* ================ Directions Content Section Start ================ */
    .photo_item.photo_item--large {
        min-height: 350px;
    }

    .excursions_description .directions {
        padding: 40px 10px;
    }

    .excursions_description .directions ul {
        grid-template-columns: repeat(1, 1fr);
    }

    /* ================ Directions Content Section End ================ */
    /* ================ Excursions Section Start ================ */
    .excursions_section {
        padding: 25px 0;
    }

    .excursions_tab-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .excursions_slide,
    .excursions_slide .img,
    .excursions_slide .img img {
        border-radius: 10px;
    }

    .excursions_slide .img {
        height: 277px;
    }

    .excursions_slide .content {
        padding: 8px;
    }

    .excursions_slide .content .title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .excursions_slide .content .time {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .excursions_slide .content .price {
        font-size: 16px;
    }

    .excursions_slide .content:after {
        right: 8px;
        bottom: 8px;
        width: 16px;
        height: 16px;
    }

    .excursions_btn {
        width: 32px;
        height: 32px;
    }

    /* ================ Excursions Section End ================ */
    /* ================ Deals Section Start ================ */
    .deals_section {
        padding: 25px 0;
    }

    .deals_swiper.swiper {
        padding: 16px 15px 35px;
    }

    .deals_btn {
        width: 32px;
        height: 32px;
    }

    .deals_slide .img {
        height: 277px;
    }

    /* ================ Deals Section End ================ */
    /* ================ Proof Section Start ================ */
    .proof_section {
        padding: 25px 0;
    }

    .proof-block .main-img {
        height: 335px;
    }

    .proof-block .proof-info > p {
        display: none;
    }

    .proof-block .proof-info .proof-clients {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .proof-block .proof-info .proof-clients img {
        width: 90px;
    }

    .proof-block .proof-info .proof-clients p {
        font-size: 14px;
    }

    /* ================ Proof Section End ================ */
    /* ================ Chains Section End ================ */
    .chains_section {
        padding: 25px 0;
    }

    .chains_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
        margin-top: 24px;
    }

    .chains_item .content .title {
        font-size: 20px;
    }

    .chains_item .content .main-btn {
        padding: 9px 51px;
    }

    .chains_section .main-btn {
        margin: 24px auto 0;
    }

    .chains_container {
        display: block;
        padding: 0;
    }

    .chains_swiper.swiper {
        padding: 32px 15px 40px;
    }

    .chains_pagination {
        margin: 0 auto;
        text-align: center;
    }

    .chains_pagination .swiper-pagination-bullet {
        width: 13px;
        height: 9px;
        border-radius: 60px;
        background: #FDDED6;
        opacity: 1;
        transition: .3s;
    }

    .chains_pagination .swiper-pagination-bullet-active {
        background: #F35C3A;
        width: 20px;
        height: 11px;
        transition: .3s;
    }

    .chains_grid {
        display: none;
    }

    /* ================ Chains Section End ================ */
    /* ================ Chains Content Section Start ================ */
    .chains_item .img {
        height: 277px;
    }

    /* ================ Chains Content Section End ================ */
    /* ================ Search Hotel Section Start ================ */
    .search_hotel_section .tours-filter {
        margin: 50px 0 24px;
    }

    .filter-title {
        font-size: 18px;
    }

    .hotel-filter {
        border-radius: 8px;
        padding: 16px;
    }

    .hotel-filter-label {
        top: -6px;
        left: 8px;
        font-size: 12px;
    }

    .hotel-filter-current,
    .hotel-price-fields input {
        padding: 11px 12px;
        font-size: 14px;
    }

    .hotel-filter .main-btn {
        padding: 12px;
    }

    .result-item {
        flex-direction: column;
        padding: 14px;
    }

    .result-item .img,
    .result-item .content {
        padding: 0;
    }

    .result-item .img {
        width: 100%;
        height: 252px;
        margin-bottom: 10px;
    }

    .result-item .content .share_btn {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
        margin: 0;
        font-size: 0;
    }

    .result-item .content .header {
        gap: 6px;
        margin-bottom: 16px;
    }

    .result-item .content .header .title {
        font-size: 20px;
    }

    .result-item .content .details ul li {
        font-size: 12px;
    }

    .result-item .carrier .item .price {
        font-size: 14px;
    }

    .singleHotel_content_section .photo_grid {
        margin-bottom: 0;
    }

    .photo_grid {
        margin-bottom: 32px;
    }

    .hotel_description .list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 10px;
        margin-bottom: 16px;
    }

    .hotel_rooms-gallery .photo-grid {
        grid-template-columns: 1fr;
    }

    .hotel_rooms-gallery .photo-grid__item--small {
        display: none;
    }

    .hotel_rooms-gallery .photo-grid__item.photo-grid__item--big .photo_more-btn {
        display: block;
    }

    .singleHotel_content_section .excursions_header .main_subtitle {
        font-size: 14px;
    }

    .hotel_content .title {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .hotel_description .description {
        font-size: 14px;
        color: var(--title-color);
        margin-bottom: 16px;
    }

    .location {
        margin-bottom: 16px;
    }

    .location .location_hotel-type {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hotel_rooms-accordion-header .info p {
        font-size: 14px;
    }

    .hotel_rooms-accordion-header .info ul {
        font-size: 12px;
    }

    .hotel_rooms-accordion-item.is-active .hotel_rooms-accordion-content {
        padding: 32px 14px;
    }

    .hotel_rooms-accordion-content .list {
        grid-template-columns: repeat(1, 1fr);
    }

    .hotel_concept .title {
        margin-bottom: 24px;
    }

    .hotel_concept_lists {
        grid-template-columns: repeat(1, 1fr);
    }

    .concept_tab_content {
        flex-direction: column;
    }

    .concept_tab_content img {
        width: 100%;
        height: 445px;
        object-fit: cover;
    }

    .concept_tab_content .header {
        padding: 32px 16px;
    }

    .concept_tab_content .header .title {
        font-size: 20px;
    }

    .concept_tab_content .header svg {
        height: 38px;
        width: 38px;
    }

    .concept_tab_content .header .details .item .title,
    .concept_tab_content .header .details .item p {
        font-size: 14px;
    }

    .concept_tab_content .advantages-list {
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
    }

    .hotel_attention {
        margin-bottom: 32px;
    }

    .booking-form {
        padding: 16px 12px;
    }

    .booking-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .booking-select {
        margin-bottom: 24px;
    }

    .booking-label {
        font-size: 12px;
        left: 8px;
    }

    .booking-current::after {
        width: 18px;
        height: 18px;
    }

    .booking-form .main-btn {
        padding: 12px 30px;
    }

    .agency_block .title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .agency_block .text:not(:last-of-type) {
        margin-bottom: 16px;
    }

    .hotel-details-list .details-list .item span:nth-child(1),
    .hotel-details-list .details-list .item span:nth-child(2) {
        font-size: 16px;
    }

    .total-price {
        margin-top: 0;
        padding: 11px 16px;
    }

    .total-price .title,
    .total-price .price {
        font-size: 14px;
    }

    .total-price .price img {
        width: 16px;
        height: 16px;
    }

    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .single-hotel {
        gap: 0;
    }

    .excursions_content_section .top-control,
    .singleHotel_content_section .excursions_header {
        margin: 0;
    }

    .hotel_content .breadcrumbs + .title {
        text-transform: none;
        margin-bottom: 4px;
    }

    .related-hotels .container {
        padding: 0;
    }

    .similar_item {
        flex-direction: column;
    }

    .similar_item .item_slider .similar-swiper {
        border-radius: 20px 20px 0 0;
        height: 220px;
        width: 100%;
    }

    .similar_item .item_content {
        padding: 8px 15px 18px;
        width: 100%;
    }

    .similar_item .item_content .location-name .location {
        font-size: 12px;
    }

    .similar_item .item_content .location-name h3 {
        font-size: 16px;
    }

    .similar_item .item_content .rating-stars img {
        width: 22px;
        height: 22px;
    }

    .similar_item .item_content .description {
        display: none;
    }

    .similar_item .meta {
        margin-bottom: 0;
        gap: 5px;
    }

    .book-form_price-btn .meta {
        display: none;
    }

    .book-form_price-btn .price {
        margin-left: unset;
    }

    .book-form_price-btn {
        justify-content: space-between;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
    /* ================ About Page Section Start ================ */
    .stats {
        grid-template-columns:repeat(1, 1fr);
    }

    .stats .counter {
        font-size: 30px;
    }

    .stats p {
        font-size: 14px;
    }

    /* ================ About Page Section End ================ */
    /* ================ Footer Start ================ */
    footer .footer_top .footer_content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    footer .footer_top .footer_content .footer_content-item:first-of-type {
        margin: 0 auto;
    }

    footer .footer_top .footer_content .footer_content-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .footer_top .footer_content .footer_content-item:last-of-type {
        margin-top: 32px;
    }

    footer .footer_top .footer_content .footer_content-item .footer_logo {
        width: 192px;
    }

    footer .footer_top .footer_content .footer_content-item .footer_menu {
        text-align: center;
    }

    footer .footer_top .footer_content .footer_content-item .footer_social ul {
        justify-content: center;
    }

    footer .footer_bottom {
        padding: 12px 0 24px;
    }

    footer .footer_bottom .footer_copyright {
        font-size: 12px;
    }

    /* ================ Footer End ================ */
}

@media screen and (max-width: 575px) {
    /* ================ Single Hotel Section Start ================ */
    /*------- Single Hotel Section -------*/
    .related-hotels .related-list .item {
        max-width: 100%;
    }

    /*------- Single Hotel Section -------*/
    /* ================ Single Hotel Section End ================ */
}