/* ================================
   1. Box model
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ================================
   2. Reset
================================ */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

:root {
    --main-font: 'Montserrat';
    --title-font: 'Kalnia';

    --title-color: #2B4659;
    --primary-color: #E87E28;
    --text-color: #0C151E;
}

body {
    font-family: var(--main-font);
    line-height: 1;
    font-weight: 400;
    color: var(--title-color);
    background-color: #FFFEFD;
}

/* ================================
   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: 1350px;
    padding: 0 15px;
    margin: 0 auto;
}

.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_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: 500;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--title-color);
}

/* ================ Header Start ================ */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 31px 0;
}

.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;
    color: #FFFFFF;
    background-color: #0C151E80;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 11px 10px;
    width: 100%;
}

.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;
    width: 12px;
    height: 6px;
    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 li:not(:last-of-type) {
    border-bottom: 1px solid #FFFFFF80;
}

.lang-list a {
    color: #fff;
    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%;
    background: #0C151E80;
    border: 1px solid #fff;
    border-radius: 4px;
}

.lang-switcher.is-open .lang-current:after {
    transform: rotate(-180deg);
}


/* ================ Header End ================ */

/* ================ Main Banner Start ================ */
.main_banner {
    padding: 300px 0 50px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 0 0 24px 24px;
}

.main_banner .main_banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 0 0 24px 24px;
}

.main_banner .main_banner-content {
    position: relative;
    margin-bottom: 128px;
}

.main_banner .main_banner-content .subtitle {
    text-align: center;
    color: #fff;
    font-size: 35px;
    margin-bottom: 4px;
}

.main_banner .main_banner-content .title {
    font-family: var(--title-font);
    color: #fff;
    font-size: 80px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.main_banner .main_banner-content .description {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.tours-filter {
    background-color: #fff;
    box-shadow: 0 4px 16px 0 #8DD3BB26;
    border-radius: 16px;
    padding: 40px 32px 32px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.filter-item {
    position: relative;
    width: 100%;
    max-width: 346px;
}

.filter-item .filter-item_label {
    position: absolute;
    top: -6px;
    left: 12px;
    font-size: 14px;
    background: #fff;
    padding: 0px 4px;
    color: var(--text-color);
    font-weight: 300;
}

.filter-current {
    width: 100%;
    cursor: pointer;
    border: 1px solid #7F7F7F;
    background: #fff;
    padding: 19px 16px;
    border-radius: 4px;
    font-size: 16px;
    color: #0C151D80;
    text-align: left;
}

.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: 1px solid #7F7F7F;
    border-radius: 4px;
    padding: 10px 0;
}

.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;
}

.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-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;
}

.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;
}

/* ================ Main Banner End ================ */
/* ================ Directions Section Start ================ */
.directions_section {
    padding: 80px 0 40px;
    position: relative;
}

.directions_section:before {
    content: '';
    position: absolute;
    bottom: -143px;
    left: 0;
    width: 221px;
    height: 273px;
    background-image: url(/assets/img/directions_elem.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.directions_section:after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 163px;
    height: 165px;
    background-image: url(/assets/img/directions_elem2.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.directions_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    margin-top: 32px;
}

.directions_item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 #1122114D;
    padding: 38px 45px 38px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 424px;

    font-weight: 500;
    font-size: 26px;
    color: var(--title-color);
    cursor: pointer;

    position: relative;
}

.directions_item:after {
    margin: auto;
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 24px;
    height: 24px;
    background-image: url(/assets/img/arrow-down-circle.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.directions_item svg {
    width: 45px;
    height: 45px;
}

/* ================ Directions Section End ================ */
/* ================ Excursions Section Start ================ */
.excursions_section {
    padding: 40px 0 60px;
}

.excursions_tabs {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.excursions_tab-btn {
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
    padding: 14px 16px;
    color: #4A2E2A;
    border-radius: 4px;
    border: 1px solid transparent;
}

.excursions_tab-btn--active {
    color: #BB6653;
    border: 1px solid #BB6653;
}

.excursions_tab {
    display: none;
}

.excursions_tab--active {
    display: block;
}

/* Swiper */
.excursions_swiper {
    width: 100%;
}

.excursions_slide {
    display: flex;
    flex-direction: column;
    border: 1px solid #4A2E2A;
    border-radius: 16px;
}

.excursions_slide .img {
    border-radius: 16px;
    height: 320px;
}

.excursions_slide .img img {
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}

.excursions_slide .content {
    background-color: #FFF;
    padding: 16px;
    border-radius: 16px;
    margin-top: -38px;
    z-index: 1;
    position: relative;
}

.excursions_slide .content .title {
    font-weight: 500;
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.excursions_slide .content .time {
    font-size: 14px;
    color: var(--text-color);
    opacity: .75;
    margin-bottom: 17px;
}

.excursions_slide .content .price {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 24px;
    color: #E87E28;
}

.excursions_slide .content .price span {
    color: var(--text-color);
}

.excursions_slide .content:after {
    content: '';
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 24px;
    height: 24px;
    background-image: url(/assets/img/excursion_arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.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;
}

.excursions_btn:hover {
    opacity: .5;
}


/* ================ Excursions Section End ================ */
/* ================ Deals Section Start ================ */
.deals_section {
    padding: 60px 0 70px;
    background-image: url(/assets/img/deals_bg.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.deals_section .main_title,
.deals_section .main_subtitle {
    text-align: center;
}

.deals {
    margin-top: 32px;
    position: relative;
}

.deals_nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.deals_btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: .3s;
}

.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_slide {
    display: flex;
    align-items: center;
    border-radius: 12px;
    /*box-shadow: 3px 4px 14px 0 #00000026;*/
    border: 1px solid #4A2E2A;
}

.deals_slide .img {
    border-radius: 12px 12px 0 0;
    height: 284px;
    object-fit: cover;
    overflow: hidden;
}

.deals_slide .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.deals_slide .content {
    background: #fff;
    padding: 12px 14px;
    border-radius: 0 0 12px 12px;
}

.deals_slide .content .title {
    font-weight: 500;
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 4px;
}

.deals_slide .content .rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.deals_slide .content .rating img {
    width: 18px;
    height: 18px;
}

.deals_slide .content .list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: .75;
    margin-bottom: 17px;
}

.deals_slide .content .list li {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
}

.deals_slide .content .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-top: 1px solid #D1D1D1;
    padding-top: 14px;
}

.deals_slide .content .price img {
    width: 20px;
    height: 20px;
}

/* ================ Deals Section End ================ */
/* ================ Chains Section Start ================ */
.chains_section {
    padding: 80px 0;
}

.chains_grid {
    display: grid;
    gap: 20px;
}

/* 🖥 Desktop */
@media (min-width: 768px) {
    .chains_grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* 1 ряд — 2 элемента */
    .chains_item:nth-child(1),
    .chains_item:nth-child(2) {
        grid-column: span 3;
    }

    /* 2 ряд — 3 элемента */
    .chains_item:nth-child(3),
    .chains_item:nth-child(4),
    .chains_item:nth-child(5) {
        grid-column: span 2;
    }
}

/* 📱 Mobile */
@media (max-width: 767px) {
    .chains_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 1 ряд — 1 элемент */
    .chains_item:nth-child(1) {
        grid-column: span 2;
    }

    /* 2 ряд — 2 элемента */
    .chains_item:nth-child(2),
    .chains_item:nth-child(3) {
        grid-column: span 1;
    }

    /* 3 ряд — 1 элемент */
    .chains_item:nth-child(4),
    .chains_item:nth-child(5) {
        grid-column: span 2;
    }
}


/* ================ Chains Section End ================ */

/* ================ Footer Start ================ */
footer {
    background-color: var(--text-color);
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    bottom: -28px;
    left: -99px;
    width: 352px;
    height: 295px;
    background-image: url(/assets/img/footer_elem.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer:after {
    content: '';
    position: absolute;
    bottom: -28px;
    right: -99px;
    width: 352px;
    height: 295px;
    background-image: url(/assets/img/footer_elem.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scaleX(-1);
}

footer .footer_top {
    padding: 85px 0 40px;
}

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;
    color: #fff;
    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 {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

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 {
    padding: 24px 0;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

footer .footer_bottom .footer_copyright {
    font-weight: 300;
    font-size: 14px;
    color: #fff;
}

/* ================ Footer End ================ */

@media screen and (max-width: 1499px) {
    /* ================ Deals Section Start ================ */
    .deals {
        max-width: calc(100% - 144px);
        margin-left: auto;
        margin-right: auto;
    }

    /* ================ Deals Section End ================ */
}

@media screen and (max-width: 1024px) {
    .main_subtitle {
        font-size: 16px;
    }

    .main_title {
        font-size: 34px;
    }

    /* ================ Directions Section Start ================ */
    .directions_item {
        padding: 23px 35px 22px 16px;
        font-size: 20px;
        gap: 10px;
    }

    .directions_item:after {
        right: 16px;
        width: 20px;
        height: 20px;
    }

    .directions_item svg {
        width: 35px;
        height: 35px;
    }

    /* ================ Directions Section End ================ */
}

@media screen and (max-width: 992px) {
    /* ================ Main Banner Start ================ */
    .header_content .header_logo {
        width: 111px;
    }

    .header_content .header_menu,
    .lang-switcher {
        display: none;
    }

    .tours-filter {
        padding: 20px 16px 16px;
        gap: 16px;
    }

    /* ================ Main Banner End ================ */
    /* ================ Deals Section Start ================ */
    .deals {
        max-width: 100%;
    }

    .deals_nav {
        margin-top: 24px;
    }

    .deals_btn-prev, .deals_btn-next {
        position: unset;
        margin: unset;
    }

    /* ================ Deals Section End ================ */
    /* ================ Footer Start ================ */
    footer:before {
        left: 0;
        width: 215px;
        height: 180px;
    }

    footer:after {
        right: 0;
        width: 215px;
        height: 180px;
    }

    footer .footer_top {
        padding: 24px 0 40px;
    }

    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) {
    .main_subtitle {
        font-size: 14px;
    }

    .main_title {
        font-size: 28px;
    }

    /* ================ Main Banner Start ================ */
    .main_banner,
    .main_banner .main_banner-overlay {
        border-radius: 0 0 12px 12px;
    }

    .main_banner {
        padding: 110px 0 20px;
        margin-bottom: 215px;
    }

    .main_banner .main_banner-content {
        margin-bottom: 40px;
    }

    .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 .main_banner-content .description {
        font-size: 12px;
    }

    .tours-filter {
        position: absolute;
        width: calc(100% - 30px);
        padding: 16px 12px;
        flex-direction: column;
    }

    .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_section {
        padding: 25px 0;
    }

    .directions_section:before,
    .directions_section:after {
        display: none;
    }

    .directions_list {
        flex-direction: column;
        margin-top: 24px;
    }

    .directions_item {
        max-width: 100%;
        width: 100%;
    }

    /* ================ Directions 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: 187px;
    }

    .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_btn {
        width: 32px;
        height: 32px;
    }

    /* ================ Deals Section End ================ */
    /* ================ Footer Start ================ */
    footer:before {
        display: none;
    }

    footer:after {
        bottom: 0;
    }

    footer .footer_top .footer_content .footer_content-item:first-of-type {
        margin-bottom: 38px;
        width: 100%;
    }

    footer .footer_top .footer_content .footer_content-item:nth-child(2),
    footer .footer_top .footer_content .footer_content-item:nth-child(3) {
        width: calc(50% - 8px);
    }


    footer .footer_top .footer_content .footer_content-item:last-of-type {
        width: 100%;
        margin-top: 32px;
    }

    footer .footer_bottom {
        padding: 12px 0 24px;
    }

    footer .footer_bottom .footer_copyright {
        font-size: 12px;
    }

    /* ================ Footer End ================ */
}