:root {
    --main-bg: #201D19;
    --accent-red: #CD1616;
    --accent-brown: #835111;
    --white-bg: #FFFBF4;
    --neutral-color: #e4d2b9;
    --neutral-rgba: 228 210 185;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--neutral-color);
}

body {
    font-family: "Cinzel", serif;
    font-size: 16px;
    color: #fff;
    background-color: var(--main-bg);
    padding: 0;
    margin: 0
}

.container {
    width: 1365px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.container-lg {
    width: 1650px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.header {
    width: 100%;
    background-color: rgb(32 29 25 / .5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: absolute;
    top: 0;
    z-index: 50;
    padding: 0 65px 0 65px;
}

@media screen and (max-width:992px) {
    .header {
        padding: 0 15px 0 15px;
    }
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    padding: 10px 0;
}

/*--------------------- burger -------------------*/

.burger {
    width: 28px;
    height: auto;
    border: none;
    background-color: transparent;
    padding: 6px 0 0 0;
    display: none;
}

@media screen and (max-width:992px) {
    .burger {
        display: block;
    }
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 0 0 6px 0;
}

.burger span:nth-child(1) {
    width: 40%;
}

.burger span:nth-child(2) {
    width: 100%;
}

.burger span:nth-child(3) {
    width: 70%;
}

/*--------------------- logo -------------------*/

.header__logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--neutral-color);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 0;
}

@media screen and (max-width: 992px) {
    .header__logo {
        display: none;
    }
}

.header__logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

/*--------------------- logo /------------------*/

.header-options {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 0 0 0 auto;
}

@media screen and (max-width:992px) {
    .header-options {
        column-gap: 10px;
        padding: 0 0;
    }
}

/*--------------------- social-mobile ------------------*/

.social-mobile {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.social-mobile__link {
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.social-mobile__link.btn_wa {
    border: 2px solid #25D366;
}

.social-mobile__link.btn_wa svg {
    width: 20px;
    fill: #25D366;
}

.social-mobile__link.btn_tg {
    border: 2px solid #5CB8F6;
}

.social-mobile__link.btn_tg svg {
    width: 20px;
    fill: #5CB8F6;
}

.social-mobile__link.btn_ph {
    border: 2px solid #cb2845;
}

.social-mobile__link.btn_ph svg {
    width: 20px;
    fill: #cb2845;
}

.social-mobile__link.btn_ln {
    border: 2px solid #06C755;
}

.social-mobile__link.btn_ln svg {
    width: 24px;
}

/*---------------------- language -------------------*/

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 10px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

@media screen and (max-width:992px) {
    .language-block {
        width: 65px;
        min-width: 65px;
    }
}

.language-block-head {
    text-transform: capitalize;
    color: #FFFBF4;
    font-size: clamp(18px, 2vw, 24px);
    display: flex;
    align-items: center;
    position: relative;
}

.language-block-head span {
    margin-right: 5px;
}

.language-block-head::after {
    content: "";
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 28%;
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
}

.language-block-list {
    list-style: none;
    width: 75px;
    background-color: var(--white-bg);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    margin: 0 0;
    display: none;
}

@media screen and (max-width:992px) {
    .language-block-list {
        width: 65px;
    }
}

.language-block-list.active {
    display: block;
}

.language-block-list li {
    padding: 5px 15px;
}

.language-block-list li:hover {
    background-color: var(--neutral-color);
}

.language-block-list li a {
    display: block;
    color: #201D19;
    text-align: left;
}

@media screen and (max-width:992px) {
    .language-block-list {
        right: auto;
        left: 0;
    }
}

.header__bottom {
    border-top: 1px solid rgb(255 251 244 / .2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

@media screen and (max-width:992px) {
    .header__bottom {
        border-top: none;
        padding: 0 0;
    }
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    position: relative;
}

@media screen and (max-width:992px) {
    .navigation {
        width: 100%;
        background-color: var(--white-bg);
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 30px 20px;
        display: none;
    }

    .navigation.active {
        display: flex;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}

.main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto;
}

@media screen and (max-width:992px) {
    .main-menu {
        width: 100%;
        flex-direction: column;
    }
}

.main-menu-item {
    padding: 22px 12px;
}

@media screen and (max-width:992px) {
    .main-menu-item {
        width: 100%;
        padding: 5px 0;
    }
}

.main-menu-link {
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: color .3s ease;
}

.main-menu-link:hover {
    color: var(--neutral-color);
}

@media screen and (max-width:992px) {
    .main-menu-link {
        color: #9D6518;
    }
}

.mega-menu {
    list-style: none;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background-color: var(--white-bg);
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 12px;
    margin: 0;
    display: none;
}

.main-menu-item:hover>.mega-menu {
    display: flex;
}

@media screen and (min-width:992px) {
    .mega-menu {
        max-height: 85vh;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #9D6518 #f1f1f1;
    }

    .mega-menu::-webkit-scrollbar {
        width: 8px;
    }

    .mega-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .mega-menu::-webkit-scrollbar-thumb {
        background-color: #9D6518;
        border-radius: 10px;
    }

    .mega-menu::-webkit-scrollbar-thumb:hover {
        background-color: rgb(157 101 24 / .5);
    }
}

@media screen and (max-width:992px) {
    .mega-menu {
        position: static;
        display: flex;
    }
}

.mega-menu li {
    width: 33.33%;
    padding: 5px 15px;
}

@media screen and (max-width:992px) {
    .mega-menu li {
        width: 100%;
        padding: 5px 0;
    }
}

.mega-menu li a {
    font-size: 16px;
    color: #201D19;
    font-weight: 700;
    transition: color .3s ease;
}

.mega-menu li a:hover {
    color: var(--accent-brown);
}

/*------------------------ hero ---------------------*/

.hero {
    width: 100%;
    height: 100vh;
    background-image: url(/images/hero-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 9.8% 15px 0 15px;
}

.hero__title {
    text-transform: capitalize;
    font-weight: 400;
    font-size: clamp(40px, 2vw, 64px);
    color: rgb(255 255 255 / .8);
    text-align: center;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
    .hero__title {
        margin: 0 0 4px 0;
    }
}

.hero__subtitle {
    display: block;
    text-transform: capitalize;
    font-family: "Lora", serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 32px);
    color: rgb(255 255 255 / .5);
    text-align: center;
    margin: 0 0 48px 0;
}

@media screen and (max-width: 768px) {
    .hero__subtitle {
        margin: 0 0 30px 0;
    }
}

.hero__button {
    display: inline-block;
    font-family: "Lora", serif;
    text-transform: capitalize;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    color: #fff;
    background-color: var(--accent-brown);
    cursor: pointer;
    padding: 14px 119px;
    transition: background-color .3s ease;
}

@media screen and (max-width: 768px) {
    .hero__button {
        padding: 14px 60px;
    }
}

.hero__button:hover {
    background-color: #835515;
}

/*------------------------- section ------------------------*/

.section {
    padding: 60px 0 95px 0;
}

@media screen and (max-width: 768px) {
    .section {
        padding: 40px 0 30px 0;
    }
}

.section__title {
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(28px, 2vw, 40px);
    color: var(--neutral-color);
    text-align: center;
    margin: 0 0 75px 0;
}

@media screen and (max-width: 768px) {
    .section__title {
        margin: 0 0 38px 0;
    }
}

/*--------------------- search-block ---------------------*/

.search-block {
    padding: 100px 0 27px 0;
}

.search-block .section__title {
    margin: 0px 0 30px 0;
}

.search-block__inner {
    padding: 0 140px;
}

@media screen and (max-width: 1350px) {
    .search-block__inner {
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px) {
    .search-block__inner {
        padding: 0 15px;
    }
}

.search-block__form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 35px;
}

@media screen and (max-width: 1350px) {
    .search-block__form {
        column-gap: 15px;
    }
}

.custom-select {
    width: 30%;
    position: relative;
}

@media screen and (max-width: 992px) {
    .custom-select {
        width: 100%;
        margin: 0 0 10px 0;
    }
}

.custom-select__label {
    display: inline-block;
    font-family: "Lora", serif;
    font-size: clamp(14px, 2vw, 16px);
    color: #D7D7D7;
    margin: 0 0 10px 0;
}

.select-trigger {
    width: 100%;
    font-family: "Lora", serif;
    font-size: clamp(18px, 2vw, 20px);
    color: #D7D7D7;
    border: 1px solid #74706C;
    background-color: var(--main-bg);
    cursor: pointer;
    text-align: left;
    position: relative;
    padding: 17px 44px 17px 16px;
}

@media screen and (max-width: 992px) {
    .select-trigger {
        padding: 13px 44px 13px 16px;
    }
}

.select-trigger::after {
    content: "";
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 8px;
    width: 8px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(225deg);
    pointer-events: none;
}

.options {
    list-style: none;
    max-height: 250px;
    background-color: var(--white-bg);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #9D6518 #f1f1f1;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
    padding: 6px 7px 6px 0;
    margin: 0 0;
}

.options::-webkit-scrollbar {
    width: 5px;
}

.options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 7px;
}

.options::-webkit-scrollbar-thumb {
    background-color: #9D6518;
    border-radius: 7px;
}

.options::-webkit-scrollbar-thumb:hover {
    background-color: rgb(157 101 24 / .5);
}

.custom-select.open .options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.options li {
    color: #201D19;
    padding: 10px 16px;
    cursor: pointer;
}

.options li:hover,
.options li.active {
    background-color: var(--neutral-color);
}

.search-block__submit {
    font-family: "Lora", serif;
    font-size: 20px;
    color: #FFFBF4;
    border: none;
    background-color: var(--accent-red);
    cursor: pointer;
    padding: 15px 120px;
    margin: 70px 0 0 0;
    transition: background-color .3s ease;
}

@media screen and (max-width: 992px) {
    .search-block__submit {
        width: 100%;
        margin: 20px 0 0 0
    }
}

.search-block__submit:hover {
    background-color: #971111;
}

/*--------------------- search-block /--------------------*/

/*---------------------- swiper-grid ---------------------*/

.js-mobile-swiper .swiper-wrapper {
    display: flex;
}

@media (min-width: 576px) {
    .js-mobile-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .js-mobile-swiper .swiper-slide {
        width: auto !important;
    }

    .js-mobile-swiper .swiper-pagination {
        display: none;
    }
}

@media (min-width: 768px) {
    .js-mobile-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 22px;
    }
}

@media (min-width: 768px) {
    .js-mobile-swiper.four-slide .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

.js-mobile-swiper .swiper-pagination {
    margin-top: 10px;
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
}

.js-mobile-swiper .swiper-pagination-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--neutral-color);
    background-color: transparent;
    position: relative;
}

.js-mobile-swiper .swiper-pagination-bullet::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.js-mobile-swiper .swiper-pagination-bullet-active {
    background-color: var(--neutral-color);
}

@media (min-width: 576px) {
    .js-mobile-swiper .swiper-pagination {
        display: none;
    }
}

/*---------------------- swiper-grid /--------------------*/

/*---------------------- card --------------------*/

.card {
    min-width: 0;
}

.card__image {
    position: relative;
}

.card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card__label-wrap {
    position: absolute;
    top: 0;
    right: 0;
    padding: 9px 10px;
}

.card__label {
    display: block;
    width: 93px;
    text-transform: capitalize;
    font-size: 12px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 4px 10px;
    margin: 0 0 4px 0;
}

.card__label-available {
    color: #FFFBF4;
    background-color: var(--accent-brown);
}

.card__label-new {
    color: #201D19;
    background-color: var(--neutral-color);
}

.card__label-vip {
    color: #7A4E10;
    background-color: #F2CC05;
}

.media-counts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    background-color: rgb(var(--neutral-rgba) / .5);
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 7px 24px;
}

.media-counts__item {
    display: flex;
    column-gap: 10px;
}

.media-counts__item svg {
    width: 20px;
    fill: #777;
}

.media-counts__value {
    color: #201D19;
}

.video-play {
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background-color: rgb(255 255 255 / .3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 3s ease, box-shadow .3s ease, transform .3s ease;
}

.video-play:hover {
    background-color: rgb(255 255 255 / .7);
    box-shadow: 0 4px 12px rgb(0 0 0 / .25);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-play::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 14px solid #201D19;
}

.card__info {
    width: 100%;
    padding: 12px 10px 10px 10px;
}

.card__info-title {
    display: block;
    margin: 0 0;
}

.card__info-title a {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 32px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card__info-geo {
    display: block;
    font-family: "Lora", serif;
    font-size: clamp(18px, 2vw, 20px);
    color: var(--neutral-color);
    line-height: 1.1;
    text-align: center;
    margin: 0 0 10px 0;
}

.card__info-params {
    display: block;
    text-transform: capitalize;
    font-size: clamp(14px, 2vw, 16px);
    color: #fff;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*---------------------- card /--------------------*/

/*------------------- slider-reviews -----------------*/

.slider-reviews .swiper-wrapper {
    display: flex;
}

.review-card {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 100px 0 0 0;
}

.review-card-content {
    width: 100%;
    background-color: var(--white-bg);
    border-radius: 10px;
    position: relative;
    cursor: grab;
    padding: 97px 15px 20px 15px;
}

.review-card-content::before {
    content: "";
    display: block;
    width: 30%;
    height: 30px;
    border-radius: 10px;
    background-color: var(--white-bg);
    position: absolute;
    top: -10px;
    left: 0;
}

.review-card-content::after {
    content: "";
    display: block;
    width: 30%;
    height: 30px;
    border-radius: 10px;
    background-color: var(--white-bg);
    position: absolute;
    top: -10px;
    right: 0;
}

.review-card-avatar {
    width: 40%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 10px solid var(--main-bg);
    background-color: var(--main-bg);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 10;
}

.review-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card-title {
    display: block;
    font-size: 32px;
    color: var(--accent-brown);
    text-align: center;
    margin: 0 0 18px 0;
}

.review-card-text {
    font-family: "Lora", serif;
    font-size: 16px;
    color: #000;
    line-height: 1.38;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0px 0 31px 0;
}

.review-card-author {
    display: block;
    font-size: 20px;
    color: var(--accent-brown);
    text-align: center;
    margin: 0 0 0 0;
}

.review-card-date {
    display: block;
    font-size: 16px;
    color: #201D19;
    text-align: center;
    margin: 0 0 0 0;
}

.slider-reviews .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    padding: 10px 0;
    margin-top: 30px;
}

.slider-reviews .swiper-pagination-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--neutral-color);
    background-color: transparent;
    position: relative;
}

.slider-reviews .swiper-pagination-bullet::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-reviews .swiper-pagination-bullet-active {
    background-color: var(--neutral-color);
}

/*------------------- slider-reviews /----------------*/

/*------------------------- blog ---------------------*/

.blog {
    padding: 60px 15px 40px 15px;
}

.slider-blog {
    padding: 0 0 80px 0;
}

.blog-card {
    padding: 0 70px 30px 0;
}

.blog-card__image {
    position: relative;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__info {
    width: 94%;
    max-width: 455px;
    background-color: var(--main-bg);
    position: absolute;
    left: 27%;
    bottom: -26px;
    padding: 10px 10px;
}

.blog-card__bg {
    width: 100%;
    background-color: var(--white-bg);
    padding: 18px 10%;
}

.blog-card__title {
    display: block;
    text-transform: capitalize;
    font-weight: 700;
    font-size: clamp(12px, 2vw, 16px);
    color: var(--accent-brown);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.swiper-button-next.blog-next {
    border: none;
    background-color: transparent;
    position: absolute;
    right: 85px;
    bottom: 0;
    padding: 5px 5px;
}

/*------------------- slider-blog /-----------------*/

/*---------------------- about --------------------*/

.about {
    padding: 60px 0 40px 0;
}

.about .section__title {
    margin: 0 0 40px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 55px;
}

@media screen and (max-width: 992px) {
    .about-grid {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.about-grid__item {
    padding: 15px 15px;
}

@media screen and (max-width: 768px) {
    .about-grid__item {
        padding: 0 15px;
    }
}

.about-grid__text {
    font-family: "Lora", serif;
    text-transform: capitalize;
    font-size: 16px;
    color: #FFFBF4;
    line-height: 1.38;
    margin: 0 0 15px 0;
}

/*---------------------- about /-------------------*/

/*---------------------- gallery -------------------*/

.gallery {
    padding: 60px 0 110px 0;
}

.gallery__item {
    background-color: #201D19;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity .3s ease;
}

.gallery__item:hover img {
    opacity: .6;
}

.gallery__item-footer {
    width: 100%;
    background-color: rgb(32 29 25 / .5);
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 18px 10px;
}

.gallery__item-title {
    width: 100%;
    font-family: "Lora", serif;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.gallery__item-title svg {
    width: 20px;
    fill: #fff;
}

/*---------------------- gallery /-------------------*/

/*---------------------- section-join -------------------*/

.section-join {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/images/join-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 82px 15px;
}

@media screen and (max-width: 768px) {
    .section-join {
        padding: 35px 15px;
    }
}

.section-join__inner {
    width: 628px;
    max-width: 100%;
    height: auto;
    background-color: rgb(32 29 25 / .4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 23px 20px;
}

@media screen and (max-width: 768px) {
    .section-join__inner {
        background-color: transparent;
    }
}

.section-join__title {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    font-size: clamp(24px, 2vw, 32px);
    color: var(--neutral-color);
    text-align: center;
    margin: 0 0 28px 0;
}

@media screen and (max-width: 768px) {
    .section-join__title {
        line-height: 1.05;
        margin: 0 0 18px 0;
    }
}

.section-join__description {
    font-family: "Lora", serif;
    text-transform: capitalize;
    font-size: clamp(14px, 2vw, 20px);
    color: #FFFBF4;
    text-align: center;
    line-height: 1.1;
    margin: 0 0 48px 0;
}

@media screen and (max-width: 768px) {
    .section-join__description {
        line-height: 1.6;
        margin: 0 0 32px 0;
    }
}

.section-join__button {
    font-family: "Lora", serif;
    font-size: 20px;
    color: var(--accent-brown);
    text-align: center;
    border: none;
    background-color: var(--neutral-color);
    cursor: pointer;
    padding: 11px 70px;
    transition: background-color .3s ease;
}

.section-join__button:hover {
    background-color: #d9b37f;
}

/*---------------------- section-join /-------------------*/

/*---------------------- single-hero --------------------*/

.single-hero {
    width: 100%;
    background-image: url(/images/page-hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 21.5% 15px 0 15px;
    margin: 0 0 126px 0;
}

.single-hero::before {
    content: "";
    background-color: rgb(0 0 0 / .3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}

@media screen and (max-width: 992px) {
    .single-hero {
        height: 75vh;
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width: 768px) {
    .single-hero {
        background-image: url(/images/page-hero-mobile-bg.jpg);
    }
}

.single-hero__inner {
    position: relative;
    z-index: 10;
}

.single-hero__title {
    text-transform: capitalize;
    font-weight: 400;
    font-size: clamp(40px, 2vw, 80px);
    color: #fff;
    text-align: center;
    margin: 0 0 7px 0;
}

@media screen and (max-width: 768px) {
    .single-hero__title {
        margin: 0 0 4px 0;
    }
}

.single-hero__subtitle {
    display: block;
    text-transform: capitalize;
    font-family: "Lora", serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 40px);
    color: #a29c97;
    text-align: center;
    margin: 0 0 70px 0;
}

@media screen and (max-width: 768px) {
    .single-hero__subtitle {
        margin: 0 0 30px 0;
    }
}

.hero-avatar {
    width: 334px;
    height: 334px;
    border-radius: 50%;
    border: 8px solid var(--neutral-color);
    background-color: var(--neutral-color);
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 0 -120px 0;
}

@media screen and (max-width: 992px) {
    .hero-avatar {
        display: none;
    }
}

.hero-avatar img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*---------------------- single-page -------------------*/

.breadcrumbs {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 10px;
    padding: 0 0;
    margin: 0 0 35px 0;
}

.breadcrumbs__link {
    display: inline-block;
    text-transform: capitalize;
    font-size: clamp(16px, 2vw, 24px);
    color: #fff;
    line-height: 1.2;
    position: relative;
    padding: 0 0 0 32px;
}

.breadcrumbs__link::before {
    content: "";
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 8px;
    width: 8px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
}

.mobile-view {
    display: none;
}

@media screen and (max-width: 992px) {
    .mobile-view {
        display: block;
    }
}

/*---------------------- single-grid --------------------*/

.single-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 992px) {
    .single-grid {
        grid-template-columns: 1fr;
    }
}

.single-grid__item {
    min-width: 0;
}

/*--------------------- single-slider -------------------*/

.single-slider {
    width: 795px;
    max-width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .single-slider {
        margin: 0 auto 24px auto;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-slider__thumbs {
    padding: 20px 0 0 0;
}

.single-slider__thumbs .swiper-slide {
    width: 25%;
    height: auto;
}

/*---------------------- single__info ------------------*/

.single__info {
    padding: 0 0 0 87px;
}

@media screen and (max-width: 1240px) {
    .single__info {
        padding: 0 0 0 40px;
    }
}

@media screen and (max-width: 992px) {
    .single__info {
        padding: 0 0 0 0;
    }
}

.single__info-title {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    font-size: clamp(32px, 2vw, 56px);
    color: #fff;
    margin: 0 0 7px 0;
}

@media screen and (max-width: 992px) {
    .single__info-title {
        margin: 0 0 12px 0;
    }
}

.single__info-location {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--neutral-color);
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.2;
    margin: 0 0 27px 0;
}

@media screen and (max-width: 992px) {
    .single__info-location {
        margin: 0 0 35px 0;
    }
}

.single-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 0 70px 0;
}

@media screen and (max-width: 992px) {
    .single-social {
        margin: 0 0 65px 0;
    }
}

.single-social__button {
    min-width: 224px;
    font-family: "Lora", serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    color: #fff;
    border: 1px solid var(--neutral-color);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    padding: 13px 45px;
    transition: color .3s ease;
}

@media screen and (max-width: 992px) {
    .single-social__button {
        padding: 12px 45px;
    }
}

.single-social__button img {
    width: 24px;
}

@media screen and (max-width: 992px) {
    .single-social__button img {
        width: 16px;
    }
}

.button-booking {
    min-width: 224px;
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--accent-brown);
    border: 1px solid var(--neutral-color);
    background-color: var(--neutral-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 45px;
    transition: color .3s ease;
}

@media screen and (max-width: 992px) {
    .button-booking {
        min-width: 195px;
        padding: 11px 30px;
    }
}

@media screen and (max-width: 992px) {
    .button-booking.hide-mobile {
        display: none;
    }
}

.button-booking:hover {
    color: #201d19;
}

.single-section {
    margin: 0 0 68px 0;
}

@media screen and (max-width: 992px) {
    .single-section {
        margin: 0 0 60px 0;
    }
}

.single-section__title {
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--neutral-color);
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

@media screen and (max-width: 992px) {
    .single-section__title {
        margin: 0 0 15px 0;
    }
}

.single-section__text {
    text-transform: capitalize;
    font-family: "Lora", serif;
    font-size: 16px;
    color: #FFFBF4;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .single-section__text {
        line-height: 1.38;
    }
}

.single-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 65px;
    border: 1px solid var(--neutral-color);
    padding: 18px 40px 7px 40px;
}

@media screen and (max-width: 768px) {
    .single-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.single-table__title {
    display: block;
    text-transform: capitalize;
    color: #FFFBF4;
    font-size: 20px;
    line-height: 1.2;
    position: relative;
    padding: 0 0 6px 0;
    margin: 0 0 13px 0;
}

.single-table__title::after {
    content: "";
    display: block;
    width: 57%;
    height: 1px;
    background-color: var(--neutral-color);
    position: absolute;
    left: 0;
    bottom: 0;
}

.single-table__list {
    list-style: none;
    padding: 0px 15px 0 0;
    margin: 0 0;
}

@media screen and (max-width: 768px) {
    .single-table__list {
        padding: 0 0 0 0;
    }
}

.single-table__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 10px 0;
    line-height: 1.62;
}

.single-table__list-label {
    text-transform: capitalize;
    font-family: "Lora", serif;
    font-size: 16px;
    color: #FFFBF4;
}

.single-table__list-value {
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFBF4;
}

.service-table {
    border: 1px solid var(--neutral-color);
    padding: 18px 40px 7px 40px;
}

.service-table__list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.service-table__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 10px 0;
    line-height: 1.62;
}

.service-table__item-name {
    width: 60%;
}

.service-table__item-label {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-table__item-value {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.information-list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.information-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    margin: 0px 0 15px 0;
}

.information-list__label {
    text-transform: capitalize;
    font-family: "Lora", serif;
    font-size: 16px;
    color: #FFFBF4;
}

.information-list__value {
    text-transform: capitalize;
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFBF4;
}

.single-section__title.review--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    margin: 0 0 40px 0;
}

.review-wrapper .swiper-wrapper {
    margin: 0px 0 40px 0;
}

@media (min-width: 580px) {
    .review-wrapper .swiper-wrapper {
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 0px 0 64px 0;
    }

    .review-wrapper .swiper-slide {
        width: auto;
        min-width: 0;
    }
}


.review-wrapper .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .review-wrapper .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}


.review-wrapper .review-card {
    width: 100%;
    min-width: 0;
    padding: 27% 0 0 0;
}

.review-wrapper .review-card-content {
    padding: 24% 17px 16px 17px;
}

.review-wrapper .review-card-content::before {
    width: 26%;
}

.review-wrapper .review-card-content::after {
    width: 26%;
}

.review-wrapper .review-card-avatar {
    width: 48%;
    border: 8px solid var(--main-bg);
    transform: translate(-50%, -55%);
}

.review-wrapper .review-card-title {
    font-size: 28px;
}

.review-wrapper .review-card-text {
    font-size: 14px;
    line-height: 1.4;
    margin: 0px 0 28px 0;
}

.review-wrapper .review-card-author {
    font-size: 18px;
}

.review-wrapper .review-card-date {
    font-size: 14px;
}

.review-options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .review-options {
        justify-content: flex-start;
    }
}

.write-review {
    min-width: 225px;
    text-transform: capitalize;
    font-family: "Lora", serif;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--accent-brown);
    border: 1px solid var(--neutral-color);
    background-color: var(--neutral-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 45px;
    transition: color .3s ease;
}

.write-review:hover {
    color: #201d19;
}

@media screen and (max-width: 580px) {
    .write-review {
        min-width: 195px;
        ;
        padding: 11px 35px;
    }
}

.random-block {
    padding: 118px 0 100px 0;
}

@media screen and (max-width: 768px) {
    .random-block {
        padding: 10px 0 35px 0;
    }
}

.random-block__title {
    display: block;
    text-transform: capitalize;
    font-size: clamp(24px, 2vw, 56px);
    color: #fff;
    text-align: center;
    margin: 0 0 44px 0;
}

@media screen and (max-width: 768px) {
    .random-block__title {
        text-align: left;
        margin: 0 0 30px 0;
    }
}

@media screen and (max-width: 580px) {
    .random-block__title {
        margin: 0 0 23px 0;
    }
}

@media (min-width: 580px) {
    .random-slider .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .random-slider .swiper-slide {
        width: auto;
    }
}

@media (min-width: 768px) {
    .random-slider .swiper-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*---------------------- single-page /------------------*/

/*---------------------- Footer -------------------*/

.footer__head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 35px 0 21px 0;
}

@media screen and (max-width: 768px) {
    .footer__head {
        grid-template-columns: 1fr;
    }
}

.footer__head-item {
    display: flex;
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    .footer__head-item {
        justify-content: center;
        align-items: center;
    }
}

.footer__logo img {
    width: 150px;
    max-width: 100%;
    height: auto;
}

.footer__form-wrap {
    width: 325px;
    max-width: 100%;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .footer__form-wrap {
        margin-left: 0;
    }
}

@media screen and (max-width: 580px) {
    .footer__form-wrap {
        width: 100%;
    }
}

.footer__form-title {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1.9px;
    margin: 0 0 15px 0;
}

.footer__form {
    position: relative;
}

.footer__form:hover .footer__form-submit {
    padding-left: 20px;
}

.footer__form-input {
    width: 100%;
    border: none;
    background-color: var(--white-bg);
    padding: 11px 65px 11px 20px;
}

.footer__form-input::placeholder {
    font-family: "Lora", serif;
    font-size: 14px;
    color: #000;
}

.footer__form-submit {
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    transition: padding .3s ease;
}

.footer__form-submit svg {
    width: 16px;
    fill: #000;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 40px 0 70px 0;
}

@media screen and (max-width: 992px) {
    .footer__inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 20px;
        padding: 40px 0 40px 0;
    }
}

@media screen and (max-width: 768px) {
    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer__item-title {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px 0;
}

.footer__list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.footer__list-link {
    display: block;
    font-family: "Lora", serif;
    font-size: 16px;
    color: var(--neutral-color);
    margin: 0 0 12px 0;
    transition: color .3s ease;
}

.footer__list-link:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid #474645;
    overflow: hidden;
    padding: 20px 0;
}

.copyright__text {
    font-family: "Lora", serif;
    font-size: 12px;
    color: rgb(223 209 177 / .5);
    text-align: center;
    margin: 0 0;
}

/*-------------------- fixed-social -----------------*/

.fixed-social {
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 15px;
    display: none;
}

@media screen and (max-width: 992px) {
    .fixed-social {
        display: flex;
    }
}

.fixed-social__link {
    flex: 1;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    transition: all .3s ease;
    padding: 10px 20px;
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.4);
}

.fixed-social__link.btn_wa {
    background-color: #25D366;
}

.fixed-social__link.btn_tg {
    background-color: #0088cc;
}

.fixed-social__link svg {
    width: 20px;
    fill: #fff;
}