/*New CSS FOR CAUCASIA*/
#cookie_policy {
    font-size: 12px;
    position: fixed;
    bottom: 0;
    right: 0;
    min-height: 120px;
    width: 320px;
    background-color: #dedfde;
    padding: 1em;
    z-index: 10000;
}

.global-wrapper {
    max-width: 2560px;
    margin: 0 auto;
    width: 100%;
    overflow-x: clip;
    overflow-clip-margin: 0;
    font-family: Unbounded, sans-serif;
}

.caucasia-content {
    background-color: #FFFFFF;
    position: relative;
    z-index: 0;
}


.main-col {
    padding: 24px 60px 0;
    position: relative;
    z-index: 1;
}

.agent-main-col {
    padding: 24px 60px 0;
    position: relative;
    z-index: 2;
    background-color: #F5F5F5;
}

@media all and (max-width: 1200px) {
    .main-col,
    .agent-main-col {
        padding: 24px 30px 0;
    }
}

@media all and (max-width: 992px) {
    .main-col,
    .agent-main-col {
        padding: 24px 30px 0;
    }
}

@media all and (max-width: 768px) {
    .main-col,
    .agent-main-col {
        padding: 20px 15px 0;
    }
}

@media all and (max-width: 576px) {
    .main-col,
    .agent-main-col {
        padding: 16px 15px 0;
    }
}

@media all and (max-width: 480px) {
    .main-col,
    .agent-main-col {
        padding: 12px 15px 0;
    }
}

.main-gradient::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.8) 30%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.location-col {
    padding: 24px 60px 0;
    position: relative;
}


.spa-container {
    position: relative;
    margin-top: -50px;
    min-height: 127vh;
    padding: 24px 60px 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.spa-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.30)),
    url('/static/images/spa-background.svg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.spa-container > * {
    position: relative;
    z-index: 1;
}


.select-list {
    position: relative;
    left: 16px;
    width: 64px;
    margin: 0;
    z-index: 1001;
    background-color: #fff;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    cursor: pointer;
}

.language-selector .selected {
    position: relative;
    padding: 4px 26px 4px 10px;
    width: 64px;
    height: auto;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector .selected:hover {
    background-color: #2E6F40;
    border-radius: 4px;
}

#agent .header-navbar .language-selector .selected:hover {
    border-radius: 4px;
    background-color: #F44320
}

#agent .header-navbar {
    background-color: #F44320
}

.language-selector .selected:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    width: 10px;
    margin-top: -8px;
    height: 18px;
    background: url("../images/icons/icon_arrow_link_gray.svg") 50% 50% no-repeat;
    background-size: 10px;
    transform: rotate(90deg);
    filter: brightness(0) invert(1);
}

.language-selector.active .selected:after {
    transform: rotate(-90deg);
}

.select-list {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 80px;
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.language-selector.active .select-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-list a {
    display: block;
    padding: 10px 16px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.select-list a:hover {
    background-color: #2E6F40;
    color: #FFFFFF;
}

/* Menu styles for small screens */
@media all and (max-width: 576px) {
    .menu {
        height: 112px;
        flex-direction: column;
    }

    .navbar-nav.menu {
        width: 100%;
        text-align: center;
    }

    .menu .nav-item {
        margin: 5px 0;
    }

    .menu .nav-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .language-selector {
        margin-top: 15px;
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }

    .language-selector-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .select-list {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-10px);
    }

    .language-selector.active .select-list {
        transform: translateX(-50%) translateY(0);
    }
}

@media all and (max-width: 992px) {
    .language-selector-wrapper {
        margin-top: 15px;
        margin-left: 0 !important;
    }

    .navbar-collapse {
        padding: 15px 0;
    }

    .menu .nav-link {
        text-align: center;
        padding: 10px 15px;
    }
}

/* Burger menu styles */
.burger {
    background: url('../images/icons/burger_passive.svg') 50% 70% no-repeat;
    background-size: cover;
    border: none;
    width: 50px;
    height: 50px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Menu link hover effects */
.menu .nav-link:hover span,
.menu .nav-link.active span {
    border-bottom: 2px solid #FFFFFF;
}

.menu .nav-link,
.menu .nav-link.active span {
    font-family: Unbounded, sans-serif;
    font-size: 13px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

/*HEADER WITH SLIDER*/

.header-index {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('/static/images/header-background.svg') no-repeat center center;
    background-size: cover;
    height: 800px;
    width: 100%;
    position: relative;
}

.nav-menu-link,
.language-selector,
.category-label,
.category-title,
.category-tours-count,
.agent-bar,
.phone-text,
.hero-section,
.marquee-item,
.view-all-btn,
.btn-check-availability,
.spa-title,
.spa-title-2,
.top-tours {
    color: #FFFFFF;
}

.section-title,
.button-tour,
.simple-hint:hover .hint-icon,
.price-tour,
.arrows-p i,
.reviews-text-date,
#cookie_policy a {
    color: #2E6F40;
}

.button-container a:hover {
    background-color: #2E6F40;
}

.price-person a:hover,
.button-container a:hover {
    color: inherit !important;
    text-decoration: none !important;
}


/*HEADER WITH SLIDER END*/

/*HEADER WITH PHOTO*/

.header-combined {
    /*    position: fixed; если нужно чтобы шапка опускалась при скролинге*/
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}


/*HEADER WITH PHOTO END*/

/* HEADER OVERLAY */
.category-overlay {
    display: flex;
    align-items: center;
    position: relative;
}

/* Надпись */
.category-label {
    font-size: 20px;
    font-weight: bold;
    padding: 5px 120px;
    z-index: 200;
    position: relative;
    width: 500px;
    flex-shrink: 0;
}


.black-bar {
    flex: 1;
    background-color: #000000;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 300;
    padding-right: 15px;
    margin-left: 120px;
    border-bottom-left-radius: 50px;
    transition: all 0.3s ease;
}

.agent-bar {
    position: absolute;
    left: 448px;
    height: 40px;
    width: 280px;
    background-color: #F44320;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 400;
    transition: all 0.3s ease;
}



#without-slider .category-label {
    z-index: 500;
    background-color: #2E6F40;
    border-top-right-radius: 50px;
}
#agent .category-label {
    border-top-left-radius: 50px;
}


.phone-text {
    font-size: 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.hero-section {
    padding: 240px;
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    text-transform: uppercase;
}


/* Бегущая строка */
.marquee {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 20px 0;
    position: relative;
    display: flex;
}

@media (max-width: 768px) {

    .marquee {
        padding: 5px;
    }
}

.marquee__inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
    will-change: transform;
}

.marquee-item {
    display: flex;
    align-items: center;
    margin: 0 2rem;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-item svg {
    margin-right: 1.6rem;
}

@keyframes marquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Бегущая строка конец*/


.view-all-btn {
    font-size: 12px;
    padding: 10px;
    border-radius: 10px;
    background-color: #2E6F40;
    transform: none;
    transition: none;
}

/* Категории туров*/

.section-title {
    font-size: 25px;
    margin-bottom: 5px;
}

.section-title-2 {
    font-weight: 900;
    color: #000;
    margin-bottom: 35px;
}

.categories-list {
    display: flex;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 584px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 323px;
    margin: 0 auto;
}

.category-tours-count {
    position: absolute;
    top: 10px;
    left: 20px;
    background-color: #2E6F40;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.9rem;
    z-index: 10;
}

.category-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.category-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    color: #fff;
    margin-top: auto;
}

.category-title {
    font-weight: 300;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.category-price {
    font-size: 15px;
}

.button-container {
    text-align: center;
}

.btn-check-availability {
    all: unset;
    display: inline-block;
    padding: 8px 16px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: inset 0 1px 3px 2px rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    transform: none;
    transition: none;
}


.arrows-p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity .3s;
}

.arrows-p:hover {
    opacity: 1;
}

.arrowPrev-p {
    left: -30px;
}

.arrowNext-p {
    right: -30px;
}

@media (max-width: 1200px) {
    .category-card {
        width: 300px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .category-card {
        width: 280px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .arrows-p {
        display: none !important;
    }

    .category-card {
        width: 250px;
        height: 350px;
    }

    .main-сol {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .category-card {
        width: 220px;
        height: 300px;
    }
}

/* Категории туров конец*/

/* Популярные туры */

.top-tours {
    position: absolute;
    top: 10px;
    left: 20px;
    background-color: #FA4616;
    padding: 8px 30px;
    border-radius: 10px;
    font-size: 10px;
    z-index: 10;
}

#tour-card-big .top-tours {
    left: 35px;
}


.popular-tour-card {
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .popular-tour-card {
        min-height: 300px;
    }
}

/*.popular-tour-card .row {*/
/*  margin: 0;*/
/*  height: 100%;*/
/*}*/

.popular-tour-card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-info {
    display: flex;
    align-items: center;
    gap: 10px;
}


.tour-content {
    flex-grow: 1;
}

.tour-bottom-container {
    margin-top: auto;
}

#tour-card .top-row {
    margin: -25px 20px;
    padding: 8px 12px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.date-status,
.additional-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-star {
    width: 16px;
    height: 16px;
    fill: #2E6F40;
}



.days svg,
.tour-status svg {
    margin-right: 8px;
}

.tour-status {
    font-size: 14px;
}

.tour-name {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding: 8px 0 0 0;
    margin: 0;
}

.card-content .tour-name {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    padding: 8px 0 0 0;
    margin: 0;
}

.tour-name-index {
    text-align: left;
    padding: 8px 0 0 0;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
}

.tour-name a {
    color: #000000;
    text-decoration: none;
}

.col-12 .popular-tour-card .tour-included {
    font-size: 16px;
    margin-bottom: 20px;
}

.date-status {
    padding: 0;
    font-size: 0.95rem;
    color: #333;
}

#tour-card-big .tour-info {
    text-align: left;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-content {
    flex-grow: 1;
}

.tour-bottom-container {
    margin-top: auto;
}

.tour-description {
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 5;
    -moz-line-clamp: 5;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 7.5em;
    line-height: 1.5em;
}

#tour-card .tour-info {
    text-align: left;
    padding: 5px;
}

.tour-description p,
.tour-region {
    color: #aaaaaa;
}

.tour-region svg {
    fill: #aaaaaa;
}

.tour-feature-title {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.2;
    font-family: Unbounded, sans-serif;
}

.button-tour,
.price-tour {
    font-family: Unbounded, sans-serif;
    font-size: 15px;
    text-decoration: none;
}

#tour-card .price-separator,
#tour-card-big .price-separator {
    width: 100%;
    height: 1px;
    background-color: #aaaaaa;
    margin: 16px 0 8px;
}

.price-person span {
    font-size: 15px;
}

.show-tours-button {
    border: solid 1px #000000;
    padding: 6px;
    border-radius: 10px;
    display: inline-block;
}


/* Адаптивность */
@media (max-width: 768px) {
    .popular_tours .row {
        flex-direction: column;
    }

    .popular_tours .col-8,
    .popular_tours .col-4 {
        width: 100%;
    }


}

/* Популярные туры конец*/

/* СПА-туры */
/* СПА-туры конец */


/* Начало блока Частые вопросы */
.faq-title {
    font-weight: bold;
    font-family: Unbounded, sans-serif;
    font-size: 36px;

}

.faq-item {
    margin-bottom: 5px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    background-color: #ffffff;
    color: black;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Unbounded, sans-serif;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/*.faq-question:hover {
    background-color: #b8b8b8;
}*/

/*Задаем размер элементу angle-down*/
.faq-question .fa-angle-down {
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-family: Unbounded, sans-serif;
    font-size: 20px;
    background-color: #FFFFFF;
    padding: 0 20px;

}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-item.active .faq-question {
    background-color: #FFFFFF;
    color: #000000;
}

.faq-answer p {
    margin: 0;
    color: #000000;
    line-height: 1.5;
}

.fa-angle-down {
    transition: transform 0.1s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .fa-angle-down {
    transform: rotate(180deg);
}

/* Конец блока Частые вопросы */

/* Всплывающее окно в списке туров */

.hint-wrapper {
    margin-left: auto;
    padding-left: 10px;
}

.simple-hint {
    position: relative;
    display: inline-block;
}

.hint-icon {
    width: 35px;
    height: 35px;
    color: #000;
    cursor: pointer;
    transition: color 0.2s;
}


.hint-text {
    display: none;
    position: absolute;
    bottom: 100%;
    transform: translateX(-70%);
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.3;
    white-space: normal;
    width: 300px;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    z-index: 100;
}

.simple-hint:hover .hint-text {
    display: block;
}

/* Всплывающее окно в списке туров конец */

/*Стили блока отзывов*/
.send-review-btn {

    display: flex;
    width: 100%;
    height: 60px;

    background-color: #2E6F40;
    color: white;
    border: none;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
    justify-content: center;
}

/*Скрывает радио-кнопки(точки)*/
[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Общий стиль звезды */
.mark {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/static/images/Star-26.svg"); /* серая */
    background-color: #FFFFFF;
    cursor: pointer;
    background-size: contain;

}

/* Подсветка: при наведении или после выбора */
.mark.hovered,
.mark.selected {
    background-image: url("/static/images/Star-25.svg"); /* зелёная */
}


/*Медиазапросы*/
@media screen and (max-width: 1199.98px) {
    .text-right {
        text-align: left !important;
    }
}

@media screen and (max-width: 991.98px) {

    .media-class-stars {
        text-align: right !important;
    }
}

@media screen and (max-width: 767px) {

    .delete-padding {
        padding: 0 !important;
    }

    .change-padding {
        padding: 18px 3px !important;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .media-class-stars {
        text-align: left !important;
    }

}

@media screen and (max-width: 575px) {
    .media-show-more-btn {
        margin: auto;

    }

    .send-review-btn {
        font-size: 14px;
    }
}

/*Конц стилей формы отзывов*/

/*Стили шаблона review-text*/
.show-more-btn {
    font-family: Unbounded, sans-serif;
    display: flex;

    background-color: #2E6F40;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 18px 60px;

    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    justify-content: center;

}

.reviews-text-name {
    font-family: Unbounded, sans-serif;
    font-size: 20px;
}

.reviews-text-date {
    font-family: Unbounded, sans-serif;
    font-size: 14px;
}

.reviews-text {
    font-family: Unbounded, sans-serif;
    font-size: 16px;
}

.reviews-underline {
    border: 0;
    border-top: solid 1px #DEDEDE;
    margin-top: 40px;
    padding-bottom: 30px;
}

/*медиазапросы*/

@media screen and (max-width: 1200px) {
    .media-class-reviews-text {
        padding-top: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .media-class-reviews-date {
        padding-top: 3px;
    }
}

@media screen and (max-width: 1200px) {
    .media-class-reviews-stars {
        padding: 10px;
        justify-content: left !important;
    }
}

/*Конец блок отзывов*/


/* СТРЕЛКИ СВАЙПЕРА */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: inset 0 1px 3px 2px rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold
}

@media (max-width: 1500px) {
    .section-title,
    .category-title {
        font-size: 16px;
    }

    .section-title-2 {
        font-size: 28px;
    }

    .view-all-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    .section-title,
    .category-title {
        font-size: 14px;
    }

    .section-title-2 {
        font-size: 24px;
    }

    .view-all-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .btn-check-availability,
    .category-price {
        font-size: 9px;
    }

    .section-header-text {
        width: 100%;
    }

    .view-all-btn {
        width: auto;
        text-align: left;
        align-self: flex-start;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 15px;
    }

    .section-title-2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .view-all-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1192px) {
    .media-stars-right {
        margin-left: auto;
    }
}

