@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

/* font-family: 'SF Pro Display', sans-serif; */


::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #C19B5C;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8844f;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #C19B5C transparent;
}

html,
body {
    background-color: #fff;
}

body * {
    font-family: "Playfair Display", serif;
}

a {
    text-decoration: initial;
}

input:focus {
    outline: none;
}

button {
    cursor: pointer;
    padding: 0;
    border: none;
    transition: 500ms all;
    background: transparent;
}

.button:focus {
    outline: none;
}

.page {}

.container {
    max-width: 1300px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 15px 0;
    background-color: #fff;
    transition:
        padding 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.header--scrolled {
    padding: 6px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.header__content {
    display: flex;
    justify-content: space-between;
}

.header__left {}

.logo {
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.header--scrolled .logo {
    transform: scale(0.85);
}

.logo__link {
    display: flex;
}

.logo__img {}

.header__right {
    display: flex;
    align-items: center;
}

.menu {
    margin-right: 80px;
    transform: translateY(3px);
}

.menu__ul {
    display: flex;
    gap: 48px;
}

.menu__li {
    position: relative;
}

.menu__link {
    color: #272B28;
    font-size: 20px;
    font-weight: 600;
    transition: 500ms all;
    transition: font-size 0.3s ease, color 0.3s ease;
}

.menu__li--has-sub {
    padding-bottom: 10px;
}

.header--scrolled .menu__link {
    font-size: 18px;
}

.menu__li:hover .menu__link {
    color: #C19B5C;
}

.menu__li.active .menu__link {
    color: #C19B5C;
}

.menu__li--has-sub>.menu__link::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateX(-5px);
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.menu__li--has-sub:hover>.menu__link::after {
    transform: rotate(-135deg);
}

.menu__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.menu__li--has-sub:hover .menu__sub,
.menu__li--has-sub:focus-within .menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang {
    margin-right: 45px;
    position: relative;
    transform: translateY(5px);
}

.menu__sub-li {
    list-style: none;
}

.menu__sub-link {
    display: block;
    padding: 10px 20px;

    font-size: 18px;
    font-weight: 500;
    color: #272B28;
    text-decoration: none;

    transition: background-color 0.25s ease, color 0.25s ease;
}

.menu__sub-link:hover {
    background-color: #F6F6F6;
    color: #C19B5C;
}

.lang__current {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #272B28;
}

.langCurrent__text {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.main {
    padding-bottom: 80px;
}

.lang--has-sub {
    padding-bottom: 10px;
    cursor: pointer;
}

.lang__current i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lang--has-sub:hover .lang__current i {
    transform: rotate(180deg);
}

.lang__ul {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100px;
    background: #fff;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1000;
}

.lang--has-sub:hover .lang__ul,
.lang--has-sub:focus-within .lang__ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang__li {
    list-style: none;
}

.lang__link {
    display: block;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 500;
    color: #272B28;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'SF Pro Display', sans-serif;
}

.lang__link:hover {
    background-color: #F6F6F6;
    color: #C19B5C;
}

.search {}

.search__btnWrap {}

.search__btn {
    font-size: 18px;
    color: #272B28;
    transition: 500ms all;
}

.search__btn:hover {
    color: #C19B5C;
}

.langCurrent__text,
.search__btn {
    transition: font-size 0.3s ease;
}

.header--scrolled .langCurrent__text,
.header--scrolled .search__btn {
    font-size: 16px;
}

.heroSlider {
    width: 100%;
    height: calc(100vh - 200px);
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.slide-content {

    display: flex;

    gap: 100px;
}

.slide-date {
    border-right: 5px solid #C19B5C;
    margin-right: 24px;
    padding-right: 24px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.slide-date .day {
    font-size: 48px;
    font-weight: 700;
    display: block;
    color: #C19B5C;
    font-family: 'SF Pro Display', sans-serif;
}

.slide-date .year {
    font-size: 24px;
    font-family: 'SF Pro Display', sans-serif;
    color: #C19B5C;
    font-weight: 600;
}

.slide-text h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.slide-btn {
    margin-left: auto;
    background: #d4a75a;
    color: #000;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}

.swiper-pagination-bullet-active {
    background: #d4a75a;
}

.slider__section {}

.slide__block {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 40px 0;
    gap: 40px;
    color: #fff;
    height: 100%;
    box-sizing: border-box;
    height: 100%;

}

.slideContent__left {

    display: flex;

    flex: 1;
}

.slideContent__right {

    max-width: 164px;

    width: 100%;

    display: flex;

    align-items: center;
}

.slideContent__btnWrap {
    width: 100%;
}

.btn {
    height: 56px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #C19B5C;
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'SF Pro Display', sans-serif;
    transition: 500ms all;
}

.btn:not(:disabled):hover {
    background-color: #DCB26B;
}

.btn:disabled {
    background-color: #ECECEC;
    color: #B2B3B2;
}


.heroSlider .swiper-pagination {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 8px;
    left: initial;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroSlider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1;
    margin: 0 !important;
}

.heroSlider .swiper-pagination-bullet-active {
    background: #d4a75a !important;
}

.calendar__section {
    margin-top: 80px;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.sectionHeader__titleWrap {}

.sectionHeader__title {
    color: #272B28;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
}

.sectionHeader__calendar {
    max-width: 250px;
    width: 100%;
    position: relative;
}

.calendar__week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 7px;
    margin-top: 40px;
    transition: transform .3s ease, opacity .3s ease;
    position: relative;
}

.calendar__day {
    border-right: 2px solid #ECECEC;
    border-bottom: 2px solid #ECECEC;
}

.calendarDay__dateWrap {
    background-color: #D9D9D980;
    padding: 15px;
    position: relative;
}

.calendarDayDate__label {
    color: #272B28;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.calendarDayDate__value {
    color: #272B28;
    font-size: 64px;
    font-weight: 600;
    font-family: 'SF Pro Display', sans-serif;
}

.calendarDay__content {
    padding: 25px 15px;
    background-color: #fff;
    height: 140px;
    overflow-y: scroll;
    margin-right: 4px;
}

.calendarDay__rows {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calendarDay__row {
    position: relative;
}

.calendarDay__row:not(:last-of-type)::after {
    content: "";
    clear: both;
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ad8d56;
}

.calendarDayRow__top {}

.calendarDayRowTop__label {
    color: #C19B5C;
    font-size: 14px;
    font-weight: 600;
    font-family: 'SF Pro Display', sans-serif;
}

.calendarDayRow__titleWrap {
    margin-top: 7px;
}

.calendarDayRow__title {
    color: #272B28;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.calendarDayRow__textWrap {
    margin-top: 10px;
}

.calendarDayRow__text {
    color: #272B28;
    font-size: 14px;
    font-family: 'SF Pro Display', sans-serif;
    line-height: 140%;
}

.calendar__day-last {
    opacity: 0.4;
}

.calendar__day-today .calendarDay__dateWrap {
    background-color: #C19B5C;
}

.calendar__day-today .calendarDayDate__label {
    color: #fff;
}

.calendar__day-today .calendarDayDate__value {
    color: #fff;
}

.calendarDayDate__green {
    background-color: #2C5136;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 0 18px;
    top: -18px;
    right: 10px;
}

.calendar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    padding: 12px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 100;
}

.calendar-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fc {
    width: 100%;
}

.fc-daygrid-day-number {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-daygrid-day.concert .fc-daygrid-day-number {
    background: #e6e6a8;
}

.fc-daygrid-day.private .fc-daygrid-day-number {
    background: #c69c5a;
    color: #fff;
}

.sectionHeaderCalendar__info {
    max-width: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    border: 2px solid #AD8D56;
    border-radius: 40px;
    justify-content: center;
    cursor: pointer;
}

.sectionHeaderCalendar__info i {
    color: #AD8D56;
    font-size: 25px;
}

.sectionHeaderCalendarInfo-text {
    color: #272B28;
    font-size: 16px;
    font-weight: 600;
    font-family: 'SF Pro Display', sans-serif;
}

.fc-scrollgrid thead {
    display: none;
}

.fc-toolbar-title {
    color: #272B28 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.fc .fc-button {
    padding: 0 !important;
    background: initial !important;
    border: initial !important;
    color: #272B28 !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fc .fc-button:focus {
    outline: none !important;
}

.fc .fc-button:hover {
    color: #AD8D56 !important;
}

.fc-daygrid-day-events {
    display: none !important;
}

.fc-daygrid-day {
    cursor: pointer;
}

.calendar-dropdown {
    border-radius: 8px !important;
    box-shadow: 0px 4px 29px 0px #00000040 !important;
}

.fc .fc-daygrid-day-number {
    color: #272B28 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: 'SF Pro Display', sans-serif !important;
}

.fc-theme-standard td,
.fc-theme-standard th {
    background: transparent !important;
    border: none !important;
}

.fc .fc-scrollgrid {
    border: none !important;
}

.calendar__week.slide-out {
    transform: translateX(-30px);
    opacity: 0;
}

.calendar__week.slide-in {
    transform: translateX(0);
    opacity: 1;
}

.calendarDay__content::-webkit-scrollbar {
    width: 2px;
}

.calendarDay__content::-webkit-scrollbar-track {
    background: transparent;
}

.calendarDay__content::-webkit-scrollbar-thumb {
    background-color: #d6d6d6;
    border-radius: 2px;
}

.calendarDay__content::-webkit-scrollbar-thumb:hover {
    background-color: #bcbcbc;
}

.calendarDay__content {
    scrollbar-width: thin;
    scrollbar-color: #d6d6d6 transparent;
    scrollbar-width: thin;
    scrollbar-color: #d6d6d6 transparent;
}

.calendarDay__content:empty {
    overflow: hidden;
    padding: 0;
}

.sectionHeader__btnWrap {}

.sectionHeader__btn {
    padding: 0 48px;
    box-sizing: border-box;
}

.upcoming__section {
    margin-top: 80px;
}

.upcoming__content {
    margin-top: 50px;
}

.events {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 23px;
}

.event {}

.event__imgWrap {
    position: relative;
    display: flex;
    overflow: hidden;
}

.event__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.eventImgWrap__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #272B2880;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(1.03);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.btn {}

.eventImgWrap__overlay-btn {
    transform: translateY(20px);
    opacity: 0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;

    transition-delay: 0.1s;
}

.event__content {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.event__dateWrap {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event__date {
    color: #C19B5C;
    font-size: 24px;
    font-weight: 700;
    font-family: 'SF Pro Display', sans-serif;
}

.event__year {
    font-family: 'SF Pro Display', sans-serif;
    color: #C19B5C;
    font-size: 16px;
    font-weight: 700;
}

.event__titleWrap {
    flex: 1;
}

.event__title {
    color: #272B28;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.event:hover .eventImgWrap__overlay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.event:hover .eventImgWrap__overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.event__img {
    transition: filter 0.35s ease, transform 0.35s ease;
}

.event:hover .event__img {
    filter: brightness(0.8);
    transform: scale(1.02);
}

.news__section {
    margin-top: 80px;
}

.news__content {
    margin-top: 50px;
    position: relative;
}

.news__card {}

.newsCard__imgWrap {
    position: relative;
    display: flex;
    overflow: hidden;
}

.newsCard__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.newsImgWrap__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #272B2880;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(1.03);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.newsImgWrap__overlay-btn {
    transform: translateY(20px);
    opacity: 0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;

    transition-delay: 0.1s;
}

.newsCard__content {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-direction: column;
}

.newsCard__dateWrap {}

.newsCard__date {
    font-family: 'SF Pro Display', sans-serif;
    color: #C19B5C;
    font-size: 16px;
    font-weight: 600;
}

.newsCard__titleWrap {}

.newsCard__title {
    color: #272B28;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.news__card:hover .newsImgWrap__overlay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.news__card:hover .newsImgWrap__overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.newsSlider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    border-radius: 40px;
    box-shadow: 0px 4px 29px 0px #00000040;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #272B28;
    font-size: 22px;
    cursor: pointer;
    transition: 500ms all;
}

.newsSlider__prev {
    left: -32px;
}

.newsSlider__next {
    right: -36px;
}

.newsSlider__btn:hover {
    background-color: #C19B5C;
    color: #fff;
}

.premises__section {
    margin-top: 80px;
}

.premises__content {
    margin-top: 50px;
}

.premises__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 48px;
}

.premises__card {}

.premisesCard__imgWrap {
    position: relative;
    display: flex;
    overflow: hidden;
}

.premisesCard__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.premisesImgWrap__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #272B2880;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(1.03);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.premisesImgWrap__overlay-btn {
    transform: translateY(20px);
    opacity: 0;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    transition-delay: 0.1s;
    max-width: 300px;
    width: 100%;
}

.premisesCard__content {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.premisesCard__titleWrap {}

.premisesCard__title {
    color: #272B28;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.premisesCard__title span {
    font-size: 18px;
}

.premises__card:hover .premisesImgWrap__overlay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.premises__card:hover .premisesImgWrap__overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.premises__img {
    transition: filter 0.35s ease, transform 0.35s ease;
}

.premises__card:hover .premises__img {
    filter: brightness(0.8);
    transform: scale(1.02);
}

.footer {
    background-color: #152218;
    padding-top: 55px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__top {
    display: flex;
    gap: 30px;
}

.footer__col {
    flex: 1;
}

.footer__logoWrap {}

.footer__logo {}

.footer__info {
    margin-left: 82px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footerInfo__text {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'SF Pro Display', sans-serif;
}

.footerInfo__text a {
    color: inherit;
    transition: 500ms all;
    font-family: inherit;
}

.footerInfo__text a:hover {
    color: #C19B5C;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footerMenu__link {
    color: #FFFFFF;
    font-size: 18px;
    transition: 500ms all;
}

.footerMenu__link:hover {
    color: #C19B5C;
}

.subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.subscribe__label {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'SF Pro Display', sans-serif;
}

.subscribe__inputWrap {
    height: 48px;
    width: 100%;
    background-color: #fff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 4px;
    box-sizing: border-box;
    gap: 10px;
}

.subscribe__input {
    flex: 1;
    width: 100%;
    border: initial;
    padding: 0 20px;
    color: #535353;
    font-size: 14px;
    font-family: 'SF Pro Display', sans-serif;
}

.subscribe__btn {
    height: 100%;
    background-color: #C19B5C;
    padding: 0 30px;
    border-radius: 40px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    font-family: 'SF Pro Display', sans-serif;
    transition: 500ms all;
}

.subscribe__btn:not(:disabled):hover {
    background-color: #DCB26B;
}

.subscribe__btn:disabled {
    background-color: #ECECEC;
    color: #B2B3B2;
}

.footer__socials {}

.footerSocials__labelWrap {}

.footerSocials__label {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'SF Pro Display', sans-serif;
}

.footerSocials__links {
    margin-top: 10px;
    display: flex;
    gap: 14px;
}

.footerSocials__link {
    display: flex;
    color: #fff;
    font-size: 20px;
    transition: 500ms all;
}

.footerSocials__link:hover {
    color: #C19B5C;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.footerBottom__left {}

.footerBottom__text {
    color: #fff;
    font-size: 14px;
    font-family: 'SF Pro Display', sans-serif;
}

.footerBottom__right {}

.footerBottom__links {
    display: flex;
    gap: 30px;
}

.footerBottom__link {
    font-family: 'SF Pro Display', sans-serif;
    color: #fff;
    font-size: 14px;
    transition: 500ms all;
}

.footerBottom__link:hover {
    color: #C19B5C;
}

.footer__col-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__col-right {
    display: flex;
    justify-content: flex-end;
}

.footer__rightWrap {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.slide-date,
.slide-text,
.slideContent__right {
    opacity: 0;
    transform: translateY(0);
}

.slide-date {
    transform: translateX(-60px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide-text {
    transform: translateX(60px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slideContent__right {
    transform: translateY(20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide.is-animated .slide-date {
    opacity: 1;
    transform: translateX(0);
}

.swiper-slide.is-animated .slide-text {
    opacity: 1;
    transform: translateX(0);
}

.swiper-slide.is-animated .slideContent__right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.searchOverlay {
    position: fixed;
    inset: 0;
    background: rgba(39, 43, 40, 0.85);
    backdrop-filter: blur(6px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}

.searchOverlay.active {
    opacity: 1;
    visibility: visible;
}

.searchOverlay__content {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 40px;

    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s ease;
}

.searchOverlay.active .searchOverlay__content {
    transform: translateY(0) scale(1);
}

.searchOverlay__form {
    display: flex;
    gap: 12px;
    background-color: #fff;
    border-radius: 70px;
    padding: 4px;
    height: 50px;
    overflow: hidden;
}

.searchOverlay__input {
    font-size: 20px;
    border: none;
    outline: none;
    font-family: 'SF Pro Display', sans-serif;
    height: 100%;
    padding: 0 30px;
    flex: 1;
    width: 100%;
    color: #535353;
}

.searchOverlay__btn {
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    border: none;
    background-color: #C19B5C;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.25s ease;
    height: 100%;
    padding: 0 30px;
    font-family: 'SF Pro Display', sans-serif;
}

.searchOverlay__btn:hover {
    background-color: #DCB26B;
}

.searchOverlay__close {
    position: absolute;
    top: -20px;
    right: 0;

    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.searchOverlay__close:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}

.mobileMenuBtn__wrap {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

#mobile-menu {
    display: none;
}

.menu-arrow {
    width: 14px;
    height: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    display: none;
}

.calendar__footer {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    gap: 20px;
}

.calendarFooter__elem {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendarFooter__cyrcle {
    width: 10px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.calendarFooter__cyrcle-green {
    background-color: #E8E7B0;
}

.calendarFooter__text {
    color: #272B28;
    font-size: 16px;
}

.calendarFooter__cyrcle-brown {
    background-color: #C19B5C;
}

.events__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(307px, 1fr));
    grid-gap: 23px;
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.pagination__link {
    width: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    color: #272B28;
    font-size: 20px;
    font-weight: 500;
    transition: 500ms all;
    border-radius: 50%;
    font-family: 'SF Pro Display', sans-serif;
}

a.pagination__link:hover {

    background-color: #C19B5C;

    color: #fff;
}

.pagination__link.active {
    background-color: #C19B5C;
    color: #fff;
}

.eventDetail__section {}

.eventDetail {}

.eventDetail__header {}

.eventDetailHeader {
    display: flex;
    gap: 150px;
}

.eventDetailHeader__left {
    flex: 1;
}

.eventDetailHeader__titleWrap {}

.eventDetailHeader__title {
    color: #272B28;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.eventDetailHeader__info {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.eventDetailHeaderInfo__elem {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eventDetailHeaderInfo__elem i {
    color: #AD8D56;
    font-size: 20px;
}

.eventDetailHeaderInfo__text {
    color: #272B28;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'SF Pro Display', sans-serif;
}

.eventDetailHeader__right {
    max-width: 240px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eventDetailHeader__btnWrap {
    width: 100%;
}

.eventDetailHeader__btn {}

.eventDetail__content {
    margin-top: 40px;
}

.eventSlider__block {}

.event__slider {
    position: relative;
}

.eventSlider {
    width: 100%;
    height: 700px;
    position: relative;
}

.eventSlider__btn.newsSlider__prev {
    left: 35px;
}

.eventSlider__btn.newsSlider__next {
    right: 35px;
}

.eventSlider .swiper-pagination {
    top: initial;
    bottom: 30px;
}

.eventDetail__main {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    position: relative;
}

.eventDetail__main h4 {

    color: #272B28;

    font-size: 32px;

    font-weight: 700;
}

.eventDetail__main p {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.eventDetail__main a {
    color: #C19B5C;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.eventDetail__main a:hover {
    text-decoration: none;
}

.eventDetailMain__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hide {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

.hide.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eventDetailMain__right {
    max-width: 307px;
    width: 100%;
}

.eventDetailMain__info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
    left: 0;
}

.eventDetailMainInfo__block {}

.eventDetailMainInfo__block h5 {
    color: #272B28;
    font-size: 24px;
    font-weight: 700;
}

.eventDetailMainInfo__block p {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.eventDetailMainInfo__block p b {
    font-weight: bold;
    font-family: inherit;
}

.eventDetailMainInfo__textWrap {
    margin-top: 15px;
}

.sectionHeader__title-sm {
    font-size: 48px;
}

.back__btnWrap {
    margin: 30px 0;
}

.back__btn {
    font-family: 'SF Pro Display', sans-serif;
    color: #272B28;
    font-size: 14px;
    font-weight: 600;
    transition: 500ms all;
    display: flex;
    align-items: center;
    gap: 7px;
}

.back__btn i {
    font-size: 11px;
}

.back__btn:hover {
    color: #AD8D56;
}

.boxOffice {
    background-color: #D9D9D980;
    width: 100%;
    padding: 24px 27px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.boxOffice__iconWrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxOffice__icon {}

.boxOffice__textWrap {
    text-align: center;
}

.boxOffice__text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.premises {
    margin-top: 40px;
}

.premises__textBlock-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.premises__textBlock {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premises__textBlock h5 {
    color: #272B28;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.premises__textBlock p {
    color: #272B28;
    font-size: 16px;
    line-height: 140%;
    font-family: 'SF Pro Display', sans-serif;
}

.premises__textBlock p b {
    font-weight: bold;
    color: inherit;
    font-family: inherit;
}

.premises__content2 {
    display: flex;
    gap: 48px;
    margin-top: 25px;
}

.premises__left {
    flex: 1;
    min-width: 0;
}

.table {
    border: 1px solid #D5D5D5;
}

.table__row {
    display: flex;
    border-bottom: 1px solid #d5d5d5;
}

.table__row:last-of-type {
    border-bottom: initial;
}

.table__row:nth-last-of-type(2n) {
    background-color: #f4f4f4;
}

.table__elem {
    flex: 1;
    font-family: 'SF Pro Display', sans-serif;
    color: #272B28;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-right: 1px solid #d5d5d5;
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table__elem:last-of-type {
    border-right: initial;
}

.table__elem2 {
    flex: 2;
}

.premises__right {
    max-width: 400px;
    width: 100%;
    position: relative;
}

.table__row-header .table__elem {
    justify-content: center;
    align-items: center;
    display: flex;
}

.table__row-header {
    background-color: #fff !important;
}

.table__elem span {
    color: #C19B5C;
    font-weight: 700;
    font-family: inherit;
}

.text-left {
    text-align: left;
}

.grayBlock {
    background-color: #D9D9D9;
    padding: 24px;
    box-sizing: border-box;
}

.grayForm {}

.grayForm__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grayForm__header h5 {
    color: #272B28;
    font-size: 24px;
    font-weight: 600;
}

.grayForm__header p {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.grayForm__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.grayForm__inputWrap {}

.grayForm__input {
    height: 56px;
    width: 100%;
    border-radius: 40px;
    border: initial;
    box-sizing: border-box;
    padding: 0 24px;
    color: #535353;
    font-size: 16px;
    font-family: 'SF Pro Display', sans-serif;
}

.grayForm__textarea {
    width: 100%;
    border-radius: 30px;
    border: initial;
    box-sizing: border-box;
    padding: 24px 24px;
    color: #535353;
    font-size: 16px;
    font-family: 'SF Pro Display', sans-serif;
    resize: none;
}

.grayForm__input:focus {
    outline: none;
}

.grayForm__textarea:focus {
    outline: none;
}

.grayForm__btnWrap {
    max-width: 190px;
    width: 100%;
}

.grayForm__btn {}

.red__textWrap {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.red__text {
    color: #FF383C;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'SF Pro Display', sans-serif;
}

.red__text span {
    color: #636060;
    font-size: 16px;
    font-family: inherit;
    font-weight: 400;
}

.premisesRight__content {
    position: sticky;
    top: 120px;
    left: 0;
}

.mt-0 {
    margin-top: 0 !important;
}

.detailSwiper {
    height: 500px;
    margin-bottom: 10px;
    width: 100%;
}

.detailSlider {
    width: 100%;
    overflow: hidden;
}

.detailSwiper__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.detailSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detailSwiper__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.35s ease;
}

.detailSwiper__zoom i {
    font-size: 48px;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}

.detailSwiper__link:hover .detailSwiper__zoom {
    opacity: 1;
    transform: scale(1);
}

.detailSwiper__link:hover .detailSwiper__zoom i {
    transform: translateY(0);
}

.detailSwiperThumbs {
    height: 100px;
    width: 100%;
    overflow: hidden;
}

.detailSwiperThumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.detailSwiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.detailSwiperThumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premises__info {}

.premisesInfo__header {}

.sectionHeader__title {}

.premisesInfo__content {}

.premisesInfo__priceWrap {
    margin-top: 16px;
}

.premisesInfo__price {
    color: #C19B5C;
    font-size: 20px;
    font-weight: 700;
    font-family: 'SF Pro Display', sans-serif;
}

.premisesInfo__price span {
    font-family: inherit;
    font-size: 32px;
}

.premisesInfo__list {
    margin: 16px 0 40px;
}

.premisesInfoList__row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.premisesInfoList__row:not(:last-of-type) {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E9E9E9;
}

.premisesInfoListRow__left {}

.premisesInfoListRow__text {
    font-family: 'SF Pro Display', sans-serif;
    color: #272B28;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.premisesInfoListRow__text span {
    font-family: inherit;
    font-weight: 400;
    color: #636060;
}

.premisesInfoListRow__right {}

.premisesInfoListRow__largeText {
    font-family: 'SF Pro Display', sans-serif;
    color: #C19B5C;
    font-size: 24px;
    font-weight: 700;
}

.premises__detailContent {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.premisesDetailContent__textWrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premisesDetailContent__text {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.ul__wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ul__titleWrap {}

.ul__title {
    color: #272B28;
    font-size: 32px;
    font-weight: 700;
}

.ul__content {}

.ul {
    padding-left: 20px;
}

.li {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
    position: relative;
}

.li::after {
    content: "";
    clear: both;
    position: absolute;
    top: 8px;
    left: -15px;
    width: 5px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #272B28;
}

.contacts___section {

    margin-top: 40px;
}

.contacts {
    margin-top: 40px;
}

.contacts__info {
    display: flex;
    gap: 66px;
}

.contactsInfo__left {
    flex: 1;
}

.contactsInfo {}

.contactsInfo__textWrap {}

.contactsInfo__text {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.contactsInfo__rows {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contactsInfo__row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contactsInfoRow__iconWrap {
    color: #AD8D56;
    font-size: 18px;
    transform: translateY(2px);
}

.contactsInfoRow__textWrap {}

.contactsInfoRow__text {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
}

.contactsInfoRow__text a {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    transition: 500ms all;
}

.contactsInfoRow__text a:hover {
    color: #AD8D56;
}

.contactsInfo__socials {
    margin-top: 40px;
}

.contactsInfoSocials__titleWrap {}

.contactsInfoSocials__title {
    color: #272B28;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.contactsInfoSocials__list {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.contactsInfoSocials__link {
    display: flex;
    font-size: 18px;
    color: #272B28;
    transition: 500ms all;
}

.contactsInfoSocials__link:hover {
    color: #AD8D56;
}

.contactsInfo__right {
    flex: 1;
}

#map {
    width: 100%;
    height: 500px;
}

.mapBlock {
    margin-top: 80px;
}

.workers {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.workers__block {}

.workersBlock__titleWrap {}

.workersBlock__title {
    color: #272B28;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.workersBlock__contacts {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 24px;
}

.workersBlock__contact {
    display: flex;
    gap: 12px;
}

.workersBlockContact__iconWrap {
    display: flex;
    align-items: flex-start;
}

.workersBlockContact__icon {
    max-width: 100%;
}

.workersBlockContact__content {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.workersBlockContact__title {
    color: #272B28;
    font-size: 24px;
    font-weight: 700;
}

.workersBlockContact__text {
    color: #C19B5C;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'SF Pro Display', sans-serif;
}

.workersBlockContact__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.workersBlockContactInfo__row {}

.workersBlockContactInfoRow__labelWrap {}

.workersBlockContactInfoRow__label {
    color: #B2B2B2;
    font-size: 12px;
    font-weight: 600;
    font-family: 'SF Pro Display', sans-serif;
}

.workersBlockContactInfoRow__links {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    gap: 5px;
}

.workersBlockContactInfoRow__link {
    font-family: 'SF Pro Display', sans-serif;
    color: #272B28;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    transition: 500ms all;
}

.workersBlockContactInfoRow__link:hover {
    color: #AD8D56;
}

.teams__section {

    margin-top: 40px;
}

.teams {
    margin-top: 40px;
}

.teams__newsList {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.teams__news {
    display: flex;
    gap: 24px;
}

.teamsNews__imgWrap {
    flex: 1;
    display: flex;
}

.teamsNews__img {
    max-width: 100%;
}

.teamsNews__content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teamsNews__titleWrap {}

.teamsNews__title {
    color: #272B28;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.teamsNews__textWrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.teamsNews__text {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.teamsNews__btnWrap {
    margin-top: 32px;
    max-width: 254px;
    width: 100%;
}

.teamsNews__btn {}

.teamsDetail__section {}

.teamsDetail {
    margin-top: 30px;
}

.teamsDetail__largeImgWrap {
    display: flex;
    justify-content: center;
    position: relative;
}

.teamsDetail__largeImgWrap::after {
    content: "";
    clear: both;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.teamsDetail__largeImg {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
}

.teamsDetail__main {}

.detailFullWidth {
    width: 100%;
    margin-top: 80px;
    overflow: hidden;
    padding-bottom: 30px;
    position: relative;
}

.detailFullWidth__slider {
    overflow: visible;
    position: relative;
}

.detailFullWidth__slider .swiper-slide {
    width: 70vw;
    max-width: 1100px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
}

.detailFullWidth__slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0.25;
}

.detailFullWidth__slider .swiper-slide-prev,
.detailFullWidth__slider .swiper-slide-next {
    opacity: 0.4;
}

.detailFullWidth__slider img {
    width: 100%;
    display: block;
}

.detailFullWidth__slider .swiper-slide-active {
    opacity: 1;
}

.detailFullWidth__slider .swiper-slide-prev,
.detailFullWidth__slider .swiper-slide-next {
    opacity: 0.4;
}

.detailFullWidth__nav--prev {
    left: 20px;
}

.detailFullWidth__nav--next {
    right: 20px;
}

.detailFullWidth__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.detailFullWidth__item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.detailFullWidth__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detailFullWidth__overlay i {
    color: #fff;
    font-size: 42px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.detailFullWidth__slider .swiper-slide-active:hover .detailFullWidth__overlay {
    opacity: 1;
}

.detailFullWidth__slider .swiper-slide-active:hover img {
    transform: scale(1.05);
}

.detailFullWidth__slider .swiper-slide-active:hover .detailFullWidth__overlay i {
    transform: scale(1);
}

.detailFullWidth__slider .swiper-slide:not(.swiper-slide-active) .detailFullWidth__overlay {
    display: none;
}

.detailFullWidth__pagination .swiper-pagination-bullet {
    background-color: #7e7e7e;
}

.detailFullWidth__pagination .swiper-pagination-bullet-active {
    background-color: #C19B5C;
}

.detailFullWidth__pagination {
    bottom: 0 !important;
}

.swiper-button-disabled {
    opacity: 0 !important;
}

.about__section {}

.section__header {}

.sectionHeader__titleWrap {}

.sectionHeader__title {}

.about {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.block1 {
    display: flex;
    gap: 40px;
    align-items: center;
}

.block1__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 2.2;
}

.h4 {
    color: #272B28;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.text__wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text {
    color: #272B28;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'SF Pro Display', sans-serif;
}

.block1__right {
    flex: 1;
}

.block1__imgWrap {}

.block1__img {
    max-width: 100%;
}

.block2 {
    display: flex;
    gap: 40px;
}

.block2__left {
    flex: 2.2;
    display: flex;
}

.block2__imgWrap {
    display: flex;
}

.block2__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.h5 {
    color: #272B28;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.block3 {
    display: flex;
    gap: 40px;
}

.block3__col {
    flex: 1;
}

.block4 {}

.blockquote__start {}

.blockquote__end {
    font-size: 60px;
    line-height: 0%;
    color: #C19B5C;
}

.block5 {
    display: flex;
    gap: 40px;
}

.block5__left {
    flex: 1;
}

.block5__imgWrap {
    display: flex;
}

.block5__right {
    flex: 2.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.download {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.download__link {
    color: #C19B5C;
    font-size: 20px;
    font-weight: 600;
}

.download__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.download__text {
    color: #636060;
    font-size: 16px;
    font-family: 'SF Pro Display', sans-serif;
    line-height: 140%;
}

.block6 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text b {
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    font-weight: bold;
}

.block5__textWrapCol {
    display: flex;
    gap: 40px;
}

.block7 {
    display: flex;
    gap: 40px;
}

.block7__left {
    flex: 2.2;
}

.block7__imgWrap {
    display: flex;
}

.block7__img {}

.block7__right {
    flex: 1;
}

.block7__imgWrapCol {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
    height: 100%;
}

blockquote {
    color: #272B28;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

blockquote::before {
    content: "“";
    font-size: 60px;
    color: #C19B5C;
    vertical-align: baseline;
    position: relative;
    top: 12px;
    line-height: 0;
}

blockquote::after {
    content: "”";
    font-size: 60px;
    color: #C19B5C;
    vertical-align: baseline;
    position: relative;
    bottom: -38px;
    line-height: 0;
}

.about img {
    max-width: 100%;
}

.vertical__poster {
    display: flex;
}

.eventDetail__main2 {
    margin-top: 80px;
}

.eventDetailMain__info2 {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

@media(max-width: 1500px) {
    .eventDetailHeader__title {
        font-size: 38px;
    }

    .eventDetailHeaderInfo__text {
        font-size: 16px;
    }

    .sectionHeader__title-sm {
        font-size: 38px;
    }

    .teamsNews__title {
        font-size: 38px;
    }
}


@media(max-width: 1200px) {
    .menu__link {
        font-size: 16px;
    }

    .menu__sub-link {
        font-size: 16px;
    }

    .langCurrent__text {
        font-size: 16px;
    }

    .lang__link {
        font-size: 14px;
    }

    .menu__ul {
        gap: 30px;
    }

    .menu {
        margin-right: 60px;
    }

    .logo__img {
        max-width: 130px;
    }

    .header--scrolled .menu__link {
        font-size: 14px;
    }

    .header--scrolled .menu__sub-link {
        font-size: 14px;
    }

    .header--scrolled .langCurrent__text,
    .header--scrolled .search__btn {
        font-size: 14px;
    }

    .heroSlider {
        height: 500px;
    }

    .slide-text h2 {
        font-size: 40px;
    }

    .slide-date .day {
        font-size: 40px;
    }

    .slide-date .year {
        font-size: 20px;
    }

    .slide-date {
        gap: 3px;
    }

    .sectionHeader__title {
        font-size: 50px;
    }

    .calendarDayDate__value {
        font-size: 50px;
    }

    .event__title {
        font-size: 18px;
    }

    .event__content {
        gap: 10px;
    }

    .event__date {
        font-size: 20px;
    }

    .event__year {
        font-size: 14px;
    }

    .newsCard__title {
        font-size: 18px;
    }

    .newsSlider__next {
        right: -16px;
    }

    .newsSlider__prev {
        left: -12px;
    }

    .premisesCard__title {
        font-size: 22px;
    }

    .premisesCard__title span {
        font-size: 14px;
    }

    .footerInfo__text {
        font-size: 14px;
    }

    .footerMenu__link {
        font-size: 16px;
    }

    .footer__content {
        gap: 30px;
    }

    .pagination__link {
        font-size: 16px;
    }

    .eventSlider {
        height: 500px;
    }

    .eventDetailHeader__info {
        gap: 20px;
    }

    .eventDetailHeaderInfo__text {
        font-size: 14px;
    }

    .eventDetailHeaderInfo__elem {
        gap: 5px;
    }

    .sectionHeader__title-sm {
        font-size: 38px;
    }

    .premises__content2 {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .premises__right {
        max-width: initial;
    }

    .mapBlock {
        margin-top: 50px;
    }

    .workers {
        margin-top: 50px;
        gap: 50px;
    }

    .workersBlock__contacts {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 30px;
    }

    .workersBlock__title {
        font-size: 26px;
    }

    .workersBlockContact__title {
        font-size: 20px;
    }

    .teamsNews__title {
        font-size: 28px;
    }

    .detailFullWidth {
        margin-top: 50px;
    }

    .about {
        margin-top: 30px;
        gap: 50px;
    }

    .eventDetail__main2 {
        margin-top: 50px;
    }
}


@media(max-width: 1024px) {
    .menu {
        display: none;
    }

    .heroSlider {
        height: 400px;
    }

    .mobileMenuBtn__wrap {
        display: block;
    }

    .header__left {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .mobileMenuBtn {
        width: 48px;
        aspect-ratio: 1 / 1;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        background-color: #fff;
        box-shadow: 0px 4px 29px 0px #00000026;
        color: #272B28;
        font-size: 18px;
    }

    .mobile-menu-overlay {
        display: block;
    }

    #mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #mobile-menu .menu {
        display: block;
        margin-right: 0;
        flex: 1;
    }

    #mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        background: #fff;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        padding: 20px;
        overflow-y: auto;
    }

    #mobile-menu.active {
        transform: translateX(0);
    }

    /* Overlay */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile menu layout */
    #mobile-menu .menu__ul {
        flex-direction: column;
        gap: 0;
    }

    #mobile-menu .menu__li {
        border-bottom: 1px solid #eee;
    }

    #mobile-menu .menu__link {
        padding: 14px 0;
        font-size: 18px;
        display: block;
    }

    /* SVG ARROW mobile */
    #mobile-menu .menu-arrow {
        display: block;
        margin-left: auto;
    }

    /* SUBMENU MOBILE */
    #mobile-menu .menu__sub {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        margin-left: 30px;
    }

    #mobile-menu .menu__li.open .menu__sub {
        max-height: 300px;
    }

    /* Arrow animation */
    #mobile-menu .menu__li.open .menu-arrow {
        transform: rotate(180deg);
    }

    #mobile-menu .menu__sub-link {
        padding: 12px 0;
        font-size: 16px;
    }

    .menu__li--has-sub {
        padding-bottom: 0;
    }

    .slideContent__left {
        flex-direction: column;
    }

    .slide-date {
        margin-right: 0;
        padding-right: 0;
        border-right: initial;
        flex-direction: row;
        align-items: center;
    }

    .slide-date .day {
        font-size: 20px;
    }

    .slide-text h2 {
        font-size: 32px;
    }

    .slideContent__left {
        gap: 7px;
    }

    .slide-content {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        height: 46px;
    }

    .calendar__section {
        margin-top: 50px;
    }

    .sectionHeader__title {
        font-size: 40px;
    }

    .calendar__week {
        grid-template-columns: 1fr;
    }

    .calendar__day {
        display: flex;
    }

    .calendarDay__dateWrap {
        max-width: 180px;
        width: 100%;
        min-height: 100px;
        box-sizing: border-box;
    }

    .calendarDay__content {
        height: 100px;
        box-sizing: border-box;
        flex: 1;
        margin: 10px;
        padding: 15px;
    }

    .calendar-dropdown {
        left: initial;
        right: 0;
    }

    .mobileMenuBtn {
        transition: transform 0.3s ease;
        transform-origin: left center;
    }

    .header--scrolled .mobileMenuBtn {
        transform: scale(0.85);
    }

    .upcoming__section {
        margin-top: 50px;
    }

    .upcoming__content {
        overflow-x: auto;
        padding-right: 20px;
        margin-right: -20px;
        scrollbar-width: none;
    }

    .events {
        display: flex;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }

    .event {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .upcoming__content::-webkit-scrollbar {
        display: none;
    }

    .upcoming__content {
        scrollbar-width: none;
    }

    .events::after {
        content: '';
        flex: 0 0 1px;
    }

    .upcoming__content {
        margin-top: 30px;
    }

    .calendar__week {
        margin-top: 30px;
    }

    .news__section {
        margin-top: 50px;
    }

    .news__content {
        margin-top: 30px;
    }

    .premises__section {
        margin-top: 50px;
    }

    .premises__content {
        margin-top: 30px;
    }

    .premises__cards {
        grid-gap: 20px;
    }

    .main {
        padding-bottom: 50px;
    }

    .footer__top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer__col-hide {
        display: none;
    }

    .footer__info {
        margin-left: 0;
        margin-top: 10px;
    }

    .footerSocials__links {
        justify-content: center;
    }

    .footer__col-right {
        max-width: 400px;
        width: 100%;
    }

    .footer {
        padding-top: 30px;
    }

    .mobile-menu__close {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #fff;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        color: #272B28;
        position: absolute;
        right: 0;
        top: 0;
    }

    .mobile-menu__header {
        position: relative;
    }

    .eventDetailHeader {
        flex-direction: column;
        gap: 30px;
    }

    .eventSlider {
        height: 400px;
    }

    .eventDetailHeader__right {
        margin: 0 auto;
    }

    .eventDetailHeader__title {
        font-size: 32px;
    }

    .eventDetail__main {
        flex-direction: column;
    }

    .eventDetail__main h4 {
        font-size: 24px;
    }

    .sectionHeader__title {
        font-size: 32px;
    }

    .eventDetailMain__info {
        gap: 20px;
    }

    .eventDetailMainInfo__block h5 {
        font-size: 20px;
    }

    .premises__textBlock h5 {
        font-size: 18px;
    }

    .premises__textBlock p {
        font-size: 14px;
    }

    .premises__textBlock-wrap {
        gap: 30px;
    }

    .table__elem {
        font-size: 14px;
        padding: 15px;
    }

    .red__text {
        font-size: 16px;
    }

    .red__text span {
        font-size: 14px;
    }

    .grayForm__header h5 {
        font-size: 20px;
    }

    .grayForm__header p {
        font-size: 14px;
    }

    .ul__title {
        font-size: 24px;
    }

    .premisesDetailContent__text {
        font-size: 14px;
    }

    .li {
        font-size: 14px;
    }

    .li::after {
        top: 7px;
    }

    .premises__detailContent {
        gap: 30px;
        margin-top: 30px;
    }

    .contacts__info {
        flex-direction: column;
        gap: 30px;
    }

    .contactsInfo__text {
        font-size: 14px;
    }

    .contactsInfoRow__text {
        font-size: 14px;
    }

    .contactsInfo__rows {
        margin-top: 30px;
        gap: 20px;
    }

    .contactsInfo__socials {
        margin-top: 30px;
    }

    .mapBlock {
        margin-top: 30px;
    }

    #map {
        height: 450px;
    }

    .workers {
        margin-top: 30px;
        gap: 30px;
    }

    .workersBlock__title {
        font-size: 22px;
    }

    .workersBlockContact__title {
        font-size: 18px;
    }

    .workersBlockContact__text {
        font-size: 14px;
    }

    .workersBlockContactInfoRow__link {
        font-size: 14px;
    }

    .contacts {
        margin-top: 30px;
    }

    .teamsNews__text {
        font-size: 14px;
    }

    .teamsNews__title {
        font-size: 22px;
    }

    .teamsNews__btnWrap {
        margin-top: 20px;
    }

    .teamsNews__textWrap {
        margin-top: 10px;
        gap: 10px;
    }

    .teams__newsList {
        gap: 30px;
    }

    .teams {
        margin-top: 30px;
    }

    .text {
        font-size: 14px;
    }

    .h4 {
        font-size: 26px;
    }

    .block1 {
        gap: 30px;
        flex-direction: column;
    }
    
    .block2 {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .block3 {
        gap: 20px;
    }

    blockquote {
        font-size: 22px;
    }

    blockquote::before {
        font-size: 50px;
    }

    blockquote::after {
        font-size: 50px;
        bottom: -30px;
    }

    .h5 {
        font-size: 20px;
    }

    .download__link {
        font-size: 16px;
    }

    .download__text {
        font-size: 12px;
    }

    .block5 {
        gap: 30px;
        flex-direction: column-reverse;
    }

    .block5__imgWrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .block7 {
        gap: 30px;
    }

    .block5__textWrapCol {
        gap: 30px;
    }

    .eventDetailMain__right2 {
        margin: 0 auto;
    }

    .eventDetailMain__info2 {
        flex-direction: column;
        margin-top: inherit;
        padding-top: initial;
        border: none;
    }
}


@media(max-width: 768px) {
    .header--scrolled .logo {
        transform: scale(0.85) translateX(-20px);
    }

    .lang {
        margin-right: 30px;
    }

    .slide-text h2 {
        font-size: 26px;
    }

    .slide-date .day {
        font-size: 16px;
    }

    .slide-date .year {
        font-size: 16px;
    }

    .btn {
        height: 40px;
    }

    .sectionHeader__title {
        font-size: 30px;
    }

    .sectionHeaderCalendar__info {
        height: 40px;
        border-width: 1px;
    }

    .sectionHeaderCalendar__info {
        max-width: 220px;
    }

    .sectionHeaderCalendarInfo-text {
        font-size: 14px;
    }

    .sectionHeaderCalendar__info i {
        font-size: 20px;
    }

    .sectionHeader__calendar {
        max-width: 220px;
    }

    .calendarDay__dateWrap {
        max-width: 140px;
    }

    .calendarDayDate__green {
        font-size: 14px;
        height: 30px;
        top: -15px;
        right: 5px;
    }

    .heroSlider {
        height: 350px;
    }

    .newsSlider__btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .premises__cards {
        grid-template-columns: 1fr;
    }

    .fc .fc-daygrid-day-number {
        font-size: 14px !important;
        width: 30px;
        height: 30px;
    }

    .event {
        flex: 0 0 270px;
    }

    .events__list {
        grid-template-columns: repeat(auto-fill, minmax(251px, 1fr));
    }

    .eventSlider {
        height: 350px;
    }

    .eventDetailHeader__title {
        font-size: 24px;
    }

    .eventDetail__content {
        margin-top: 30px;
    }

    .eventDetail__main {
        margin-top: 30px;
    }

    .eventDetail__main p {
        font-size: 14px;
    }

    .eventDetail__main h4 {
        font-size: 20px;
    }

    .eventDetailMain__left {
        gap: 15px;
    }

    .sectionHeader__title-sm {
        font-size: 24px;
    }

    .premisesInfo__price {
        font-size: 16px;
    }

    .premisesInfo__price span {
        font-size: 22px;
    }

    .premisesInfoListRow__largeText {
        font-size: 20px;
    }

    .detailSwiper {
        height: 400px;
    }

    .detailSwiperThumbs {
        height: 60px;
    }

    #map {
        height: 400px;
    }

    .workersBlock__contacts {
        grid-template-columns: repeat(2, 1fr);
    }

    .teams__news {
        flex-direction: column;
        gap: 20px;
    }

    .teamsNews__btnWrap {
        margin: 20px auto 0;
    }

    .detailFullWidth {
        margin-top: 30px;
    }

    .about {
        gap: 30px;
    }

    .block3 {
        flex-direction: column;
    }

    .h4 {
        font-size: 22px;
    }

    .h5 {
        font-size: 18px;
    }

    blockquote {
        font-size: 18px;
    }

    blockquote::before {
        font-size: 40px;
    }

    blockquote::after {
        font-size: 40px;
        bottom: -25px;
    }

    .block7 {
        flex-direction: column;
    }

    .block7__imgWrapCol {
        flex-direction: row;
        gap: 30px;
    }

    .block5__textWrapCol {
        flex-direction: column;
        gap: 20px;
    }
}


@media(max-width: 576px) {
    .logo__img {
        max-width: 100px;
    }

    .header__left {
        gap: 20px;
    }

    .footer__logo {
        max-width: 200px;
    }

    .lang {
        margin-right: 15px;
    }

    .search__btn {
        font-size: 15px;
    }

    .langCurrent__text {
        font-size: 14px;
    }

    .mobileMenuBtn {
        width: 38px;
        font-size: 15px;
    }

    .slide-text h2 {
        font-size: 20px;
    }

    .slide-date .day {
        font-size: 14px;
    }

    .slide-date .year {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
    }

    .heroSlider .swiper-pagination {
        right: 10px;
    }

    .section__header {
        flex-direction: column;
        gap: 15px;
    }

    .sectionHeader__title {
        font-size: 24px;
    }

    .calendar__section {
        margin-top: 30px;
    }

    .calendarDayDate__value {
        font-size: 36px;
    }

    .calendarDayDate__label {
        font-size: 12px;
    }

    .calendarDay__dateWrap {
        max-width: 80px;
    }

    .calendarDayDate__green {
        display: none;
    }

    .calendar__week {
        margin-top: 20px;
    }

    .calendarDayRowTop__label {
        font-size: 12px;
    }

    .calendarDayRow__title {
        font-size: 14px;
    }

    .calendarDayRow__textWrap {
        margin-top: 3px;
    }

    .calendarDayRow__text {
        font-size: 12px;
    }

    .calendarDay__content {
        padding: 5px;
    }

    .upcoming__section {
        margin-top: 30px;
    }

    .news__section {
        margin-top: 30px;
    }

    .premises__section {
        margin-top: 30px;
    }

    .premisesCard__title {
        font-size: 18px;
    }

    .premisesCard__title span {
        font-size: 12px;
    }

    .main {
        padding-bottom: 30px;
    }

    .footerInfo__text {
        font-size: 12px;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .searchOverlay__content {
        width: calc(100% - 20px);
        box-sizing: border-box;
        padding: 20px;
    }

    .searchOverlay__form {
        height: 40px;
    }

    .searchOverlay__input {
        font-size: 14px;
        padding: 0 15px;
    }

    .searchOverlay__btn {
        font-size: 14px;
    }

    .menu__li:hover .menu__link {
        color: inherit;
    }

    .menu__li.open .menu__link {
        color: #C19B5C;
    }

    .menu__li--has-sub:hover>.menu__link::after {
        transform: rotate(45deg) translateX(-5px);
    }

    .menu__li--has-sub.open>.menu__link::after {
        transform: rotate(-135deg);
    }

    .pagination__link {
        width: 25px;
        font-size: 12px;
    }

    .pagination {
        margin-top: 30px;
    }

    .eventDetailHeader__title {
        font-size: 20px;
    }

    .eventDetailHeaderInfo__text {
        font-size: 12px;
        line-height: 1.4;
    }

    .eventDetailHeaderInfo__elem i {
        font-size: 14px;
    }

    .eventDetailHeaderInfo__elem {
        gap: 10px;
    }

    .eventSlider__btn.newsSlider__prev {
        left: 15px;
    }

    .eventSlider__btn.newsSlider__next {
        right: 15px;
    }

    .eventSlider .swiper-pagination {
        bottom: 15px;
    }

    .table__scroll {
        overflow-x: scroll;
    }

    .table {
        width: 700px;
    }

    .grayBlock {
        padding: 15px;
    }

    .grayForm__input {
        height: 50px;
    }

    .grayForm__input {
        font-size: 14px;
    }

    .grayForm__content {
        gap: 15px;
    }

    .grayForm__btnWrap {
        margin: 0 auto;
    }

    .grayForm__textarea {
        padding: 15px;
        font-size: 14px;
    }

    .detailSwiper {
        height: 200px;
    }

    .premisesInfo__price {
        font-size: 14px;
    }

    .premisesInfo__price span {
        font-size: 18px;
    }

    .premisesInfoListRow__largeText {
        font-size: 18px;
    }

    .premisesInfo__list {
        margin: 16px 0 20px;
    }

    .ul__title {
        font-size: 18px;
    }

    .workersBlock__contacts {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    #map {
        height: 300px;
    }

    .contactsInfo__row {
        gap: 7px;
    }

    .workersBlock__title {
        font-size: 18px;
    }

    .workersBlockContact__title {
        font-size: 16px;
    }

    .workersBlock__contact:not(:last-of-type) {
        padding-bottom: 20px;
        border-bottom: 1px solid #B2B2B2;
    }

    .teamsNews__title {
        font-size: 18px;
    }

    .h4 {
        font-size: 20px;
    }

    .text__wrap {
        gap: 10px;
    }

    .block7__imgWrapCol {
        flex-direction: column;
    }
}