@font-face {
    font-family: 'Essonnes Display';
    src: url('./assets/fonts/EssonnesDisplay-Regular.eot');
    src: local('./assets/fonts/Essonnes Text'), local('EssonnesText-Regular'),
    url('./assets/fonts/EssonnesDisplay-Regular.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/EssonnesDisplay-Regular.woff2') format('woff2'),
    url('./assets/fonts/EssonnesDisplay-Regular.woff') format('woff'),
    url('./assets/fonts/EssonnesDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agenda One';
    src: url('./assets/fonts/AgendaOne-Light.eot');
    src: url('./assets/fonts/AgendaOne-Light.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/AgendaOne-Light.woff2') format('woff2'),
    url('./assets/fonts/AgendaOne-Light.woff') format('woff'),
    url('./assets/fonts/AgendaOne-Light.ttf') format('truetype'),
    url('./assets/fonts/AgendaOne-Light.svg#AgendaOne-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agenda One';
    src: url('./assets/fonts/AgendaOne-Medium.eot');
    src: url('./assets/fonts/AgendaOne-Medium.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/AgendaOne-Medium.woff2') format('woff2'),
    url('./assets/fonts/AgendaOne-Medium.woff') format('woff'),
    url('./assets/fonts/AgendaOne-Medium.ttf') format('truetype'),
    url('./assets/fonts/AgendaOne-Medium.svg#AgendaOne-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agenda One';
    src: url('./assets/fonts/AgendaOne-Regular.eot');
    src: url('./assets/fonts/AgendaOne-Regular.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/AgendaOne-Regular.woff2') format('woff2'),
    url('./assets/fonts/AgendaOne-Regular.woff') format('woff'),
    url('./assets/fonts/AgendaOne-Regular.ttf') format('truetype'),
    url('./assets/fonts/AgendaOne-Regular.svg#AgendaOne-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* style.css */
:root {
    --border-secondary-button: linear-gradient(87deg, #999 -3.47%, #333 155.08%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #040404;
    color: #fff;
    font-family: 'Agenda One', sans-serif;
    font-weight: 400;
    line-height: 1.15;
    overflow-x: hidden;
}

img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}


section {
    overflow: hidden;
}

.section-btn {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: .84px;
    color: #ffffff;
    padding: 18px 10px;
    width: max-content;
    margin: 0 auto;
    border-bottom: 1px solid #FFFFFF;
    transition: color .25s ease-in, border-bottom-color .25s ease-in;
}

.section-btn svg {
    stroke: #FFFFFF;
    transition: stroke .25s ease-in;
}

.section-btn:hover {
    color: #d82134;
    border-bottom-color: #d82134;
}

.section-btn:hover svg {
    stroke: #d82134;
}
/* HEADER */
.header {
    position: relative;
    width: 100%;
    padding-block: 20px 60px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 20;
}

.header--transparent {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
    border: none;
    z-index: 3;
}

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

.logo {
    position: relative;
    width: 100%;
    max-width: 290px;
    z-index: 10;
}

.nav {
    display: flex;
    flex-flow: column;
    gap: 24px;
    padding-left: 27px;
    border-left: 1px solid rgba(153, 153, 153, .24);
}

.nav__list {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

.nav li {
    list-style-type: none;
}

.nav a {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.36px;
    text-transform: capitalize;
    transition: color .35s ease, text-shadow .35s ease;
}

.nav a:hover {
    color: #d31735;
    text-shadow:
            0 0 10px rgba(211, 23, 53,.35),
            0 0 25px rgba(211, 23, 53,.15);
}
/* BURGER */
.burger {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
    margin-right: 72px;
    z-index: 10;
}

.burger:focus-within {
    outline: none;
}

.burger__icon {
    display: inline-flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 14px 10px;
    width: 48px;
    height: 48px;
}

.burger__line,
.burger__icon::after {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: .3s;
}

.burger__icon::before {
    width: 18px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: .25s ease-in;
}

.burger__icon::before,
.burger__icon::after {
    content: '';
}

.burger.active .burger__icon::before {
    transform: rotate(45deg) translate(6px, 6px);
    width: 100%;
}

.burger.active .burger__line {
    opacity: 0;
}

.burger.active .burger__icon::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

.burger__text {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .72px;
    text-transform: uppercase;
}
/* BURGER END */
/* MENU START */
.menu {
    position: absolute;
    inset: -21px 0 0 0;
    display: flex;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 203px 144px 53px 144px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition:
            opacity .25s ease,
            visible .25s ease,
            height .25s ease;
    background: url('./assets/images/header/background.png') no-repeat center/cover, #000;
}

.menu.active {
    height: 100vh;
    opacity: 1;
    visibility: visible;
}

.menu__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 35px;
    padding-top: 16px;
    border-top: 1px solid #fff;
}

.menu-divider {
    display: flex;
    margin-inline: 11px;
}

.menu__link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #FFF;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.44px;
    transition: transform .35s ease, color .35s ease;
}

.menu__link:hover {
    color: #d31735;
    text-shadow:
            0 0 10px rgba(211, 23, 53,.35),
            0 0 25px rgba(211, 23, 53,.15);
}

.menu__links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu__link:nth-child(3) span::after {
    display: none;
}

.menu__link:nth-child(4) span::after {
    width: calc(100% + 34px);
}

.menu__link span {
    position: relative;
}

.menu__link span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.menu__link svg {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.menu__socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu__social svg {
    fill: #fff;
    transition: fill .25s ease-in;
}

.menu__social:hover svg {
    fill: #D82134;
}
/* MENU END */
/* HERO START */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100vh;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
}

.hero::before {
    top: 0;
    height: 461px;
    background: url('./assets/images/hero/top-shadow.png') no-repeat center/cover;
}

.hero::after {
    bottom: 0;
    height: 241px;
    background: url('./assets/images/hero/bottom-shadow.png') no-repeat center/cover;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) bottom right / 50% 50% no-repeat,
                linear-gradient(to bottom left, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) bottom left / 50% 50% no-repeat,
                linear-gradient(to top left, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) top left / 50% 50% no-repeat,
                linear-gradient(to top right, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) top right / 50% 50% no-repeat,
                linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: -2;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -51px;
    width: 747px;
    height: 465px;
    border-radius: 747px;
    background: rgba(0, 0, 0, 0.20);
    filter: blur(137.8000030517578px);
    z-index: -1;
}

.hero__title {
    display: flex;
    flex-flow: column;
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 80px;
    letter-spacing: 4.767px;
    text-transform: uppercase;
    max-width: 850px;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
/* HERO END */
/* BTN START */
.btn-red {
    position: relative;
    display: inline-flex;
    padding: 20px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: .84px;
    border-radius: 3px;
    border: 1px solid #D82134;
    background: linear-gradient(145deg, #D82134 20.57%, #72111B 79.53%);
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            filter .25s ease,
            border-color .25s ease;
    overflow: hidden;
}

.btn-red::before {
    content: '';
    position: absolute;
    top: -130%;
    left: -60%;
    width: 45%;
    height: 320%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.38),
            transparent
    );
    transform: rotate(24deg);
    transition: left .7s ease;
}

.btn-red::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
            circle at center,
            rgba(255, 70, 90, 0.35) 0%,
            transparent 70%
    );
    opacity: 0;
    transition: opacity .3s ease;
}

.btn-red:hover {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.08);
    border-color: #ff4b5f;
    box-shadow:
            0 14px 30px rgba(216, 33, 52, 0.45),
            0 0 24px rgba(216, 33, 52, 0.35);
}

.btn-red:hover::before {
    left: 140%;
}

.btn-red:hover::after {
    opacity: 1;
}

.btn-red:active {
    transform: translateY(1px) scale(.985);
    box-shadow: 0 5px 12px rgba(216, 33, 52, .28);
}

.btn-border {
    position: relative;
    display: flex;
    padding: 24px 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .72px;
    border-radius: 3px;
    border: 1px solid transparent;
    border-image: var(--border-secondary-button);
    border-image-slice: 1;
    overflow: hidden;
    cursor: pointer;
    transition:
            transform .3s ease,
            box-shadow .3s ease,
            /*border-color .3s ease,*/
            background .3s ease,
            color .3s ease;
}

.btn-border--header {
    position: relative;
    padding: 12px 24px;
    z-index: 10;
}

.btn-border::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -70%;
    width: 45%;
    height: 320%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
    );
    transform: rotate(25deg);
    transition: left .75s ease;
}

.btn-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
            circle at center,
            rgba(255,255,255,.18) 0%,
            transparent 72%
    );
    opacity: 0;
    transition: opacity .35s ease;
}

.btn-border:hover {
    transform: translateY(-4px);
    border-color: #FFF;
    background: rgba(255,255,255,.09);
    box-shadow:
            0 10px 24px rgba(255,255,255,.12),
            0 0 18px rgba(255,255,255,.08);
}

.btn-border:hover::before {
    left: 140%;
}

.btn-border:hover::after {
    opacity: 1;
}

.btn-border:active {
    transform: translateY(1px) scale(.98);
    box-shadow: 0 4px 10px rgba(255,255,255,.08);
}
/* BTN END */
/* LINE START */
.line {
    width: 100%;
    margin-top: -47px;
    margin-bottom: 150px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.line__track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.line__list {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    list-style-type: none;
    padding-inline: 30px;
}

.line__li {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
    font-family: "Essonnes Display";
    font-size: 24px;
    letter-spacing: .72px;
}

.line__li::after {
    content: '';
    width: 1px;
    height: 43px;
    background: #fff;
    opacity: .2;
    margin-left: 24px;
}

.line__li svg {
    flex: 0 0 auto;
    width: 28px;
    height: 38px;
    aspect-ratio: 28/38;
}
/* LINE END */
/* HEADING START */
.heading {
    margin-bottom: 30px;
}

.heading__subtitle {
    position: relative;
    display: inline-flex;
    color: #D82134;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .72px;
    padding-left: 36px;
    margin-bottom: 45px;
}

.heading__subtitle--double {
    padding-right: 36px;
}

.heading__subtitle--double::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: 28px;
}

.heading__subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 28px;
    background: #D82134;
}

.heading__title {
    display: flex;
    flex-flow: column;
    color: #FFF;
    font-family: "Essonnes Display";
    font-weight: 400;
    font-size: 113px;
    letter-spacing: 6.774px;
    margin-bottom: 45px;
}

.heading__title mark {
    color: #d82134;
    background: transparent;
}

.heading__text {
    color: #FFF;
    font-size: 28px;
    max-width: 520px;
}
/* HEADING END */
/* TONIGHT START */
.tonight {
    position: relative;
    padding-block: 70px 135px;
    margin-bottom: 135px;
    background: url('./assets/images/tonight/section-bg.jpg') no-repeat center/cover;
}

.tonight::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 100%;
    min-width: 1728px;
    height: 241px;
    transform: translateX(-50%);
    background: url('./assets/images/tonight/shadow-top.png') no-repeat center/cover;
    z-index: 0;
}

.tonight__wrap {
    display: grid;
    grid-template: 'title schedule' auto
                    'mark schedule' auto
                    'actions schedule' auto
                    / minmax(415px, 1fr) minmax(50%, 845px);
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.tonight__wrap .heading {
    position: relative;
    grid-area: title;
    margin: 0;
}

.tonight__wrap .heading::before {
    content: '';
    position: absolute;
    top: 37px;
    left: -64px;
    width: 671px;
    height: 652px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    filter: blur(138px);
    z-index: -1;
}

.tonight .heading__subtitle::after {
    background: #D82134;
}

.tonight .heading__subtitle--double::after {
    opacity: 0;
}

.tonight__mark {
    grid-area: mark;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.tonight__mark img {
    width: 37px;
}

.tonight__mark span {
    color: #FFF;
    font-size: 28px;
}

.tonight__actions {
    grid-area: actions;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 30px;
}

.tonight__more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 28px;
    letter-spacing: .84px;
    transition: color .25s ease-in;
}

.tonight__more:hover {
    color: #D82134;
}

.tonight__more svg {
    width: 18px;
    height: 10px;
    stroke: #fff;
    transition: stroke .25s ease-in;
}

.tonight__more:hover svg {
    stroke: #D82134;
}
/* TONIGHT END */
/* SCHEDULE START */
.schedule {
    grid-area: schedule;
    position: relative;
    display: flex;
    flex-flow: column;
    gap: 18px;
    list-style-type: none;
    padding-left: 80px;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 1px;
    height: 640px;
    background: #D82134;
}

.schedule-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform .25s ease-in;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -76px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(183deg, #D82134 31.58%, #72111B 97.37%);
    box-shadow: 0 1px 1.8px 0 rgba(255, 255, 255, 0.12) inset;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(170,0,40,.18);
}

.schedule-card__time {
    color: #FFF;
    font-size: 28px;
    padding: 24px 20px 24px 24px;
    border-right: 1px solid rgba(216, 33, 52, 0.40);
}

.schedule-card__content {
    max-width: 340px;
}

.schedule-card__content h3 {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 28px;
    letter-spacing: .84px;
    margin-bottom: 12px;
}

.schedule-card__content p {
    color: #FFF;
    font-size: 20px;
}

.schedule-card picture {
    display: flex;
    width: 270px;
    height: 143px;
    border-radius: 0 6px 6px 0;
    overflow: hidden;
}
/* SCHEDULE END */
/* ABOUT START */
.about {
    padding-block: 80px;
    background: url('./assets/images/about/section-bg.png') no-repeat center/cover;
    margin-bottom: 250px;
}

.about .heading__title {
    flex-flow: row;
    justify-content: center;
    gap: 17px;
    margin-bottom: 24px;
}

.about .heading__text {
    max-width: 100%;
    text-align: center;
}

.about__grid {
    display: grid;
    grid-template-rows: 75px 151px 87px 75px 336px;
    grid-template-columns: repeat(6, minmax(199px, 234px));
    gap: 12px;
}

.about__card {
    height: 336px;
    border-radius: 6px;
    background: url('./assets/images/about/card-bg.png') no-repeat center/cover, rgba(0, 0, 0, .2);
    box-shadow:
            0 0 14.933px 0 rgba(255, 255, 255, .08),
            0 2.133px 14.933px 0 rgba(255, 255, 255, .08) inset;
    overflow: hidden;
}

.about__card--1 {
    grid-area: 2 / 1 / span 1;
}

.about__card--2 {
    grid-area: 3 / 2 / span 1;
}

.about__card--3 {
    grid-area: 2 / 3 / span 1;
}

.about__card--4 {
    grid-area: 5 / 3 / span 1;
}

.about__card--5 {
    grid-area: 1 / 4 / span 1;
}

.about__card--6 {
    grid-area: 4 / 4 / span 1;
}

.about__card--7 {
    grid-area: 2 / 5 / span 1;
}

.about__card--8 {
    grid-area: 3 / 6 / span 1;
}

.about__wrapper {
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: space-between;
    padding: 42px 15px 38px;
}

.about__icon {
    width: 46px;
    margin: 0 auto;
    margin-bottom: 18px;
}

.about__picture {
    width: 100%;
    height: 100%;
}

.about__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__count {
    display: flex;
    flex-flow: column;
    color: #fff;
    text-align: center;
    font-family: "Agenda One";
    font-size: 96px;
    line-height: 76px;
    font-style: normal;
    font-weight: 400;
}

.about__count span {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about__title {
    color: #FFF;
    text-align: center;
    font-family: "Agenda One";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* ABOUT END */
/* WHY START */
.why-section {
    padding-block: 115px;
    background: url('./assets/images/why/section-bg.png') no-repeat center/cover;
    margin-bottom: 150px;
}

.why-section .heading {
    text-align: center;
    margin-bottom: 60px;
}

.why-section .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.why-section .heading__subtitle::after {
    background: #D82134;
}

.why-section .heading__title {
    flex-flow: row;
    justify-content: center;
    gap: 28px;
    margin-bottom: 36px;
}

.why-section .heading__text {
    max-width: 100%;
}
/* WHY END */
/* FEATURE START */
.features {
    position: relative;
    overflow-x: auto;
}

.features__wrap {
    position: relative;
    display: flex;
    gap: 12px;
    width: 1440px;
}

.features__item {
    position: relative;
    display: flex;
    height: 660px;
    width: calc(20% - 10px);
    transition: width .5s ease-in;
    cursor: pointer;
}

.features__item::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 220px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 85.91%);
    z-index: 2;
}

.features__item:hover,
.features__item.active {
    width: 364px;
    border: 2px solid;
    border-image-source: radial-gradient(92.88% 50% at 50% 50%, #EC2237 0%, #3E0C11 100%);
    border-image-slice: 1;
    box-shadow: 0 0 23px 0 rgba(255, 255, 255, .1), 0 0 24px 0 rgba(216, 33, 52, .16);
}

.features__item:hover figure::before,
.features__item.active figure::before {
    opacity: 0;
}

.features__item figure {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.features__item figure::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .3) 100%);
    transition: opacity .5s ease-in;
    z-index: 1;
}

.features__content {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 16px;
    margin-top: auto;
    width: 100%;
    z-index: 3;
}

.features__content h3 {
    display: flex;
    flex-flow: column;
    color: #FFF;
    text-align: center;
    font-family: "Essonnes Display";
    font-size: 28px;
    letter-spacing: .84px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.features__content span {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .54px;
}
/* FEATURE END */
/* PACKAGES START */
.packages-section {
    padding-block: 300px 85px;
    background: url('./assets/images/packages/section-bg.png') no-repeat center/cover;
}

.packages-section__wrap {
    position: relative;
    z-index: 1;
}

.packages-section .heading {
    text-align: center;
    margin-bottom: 55px;
}

.packages-section .heading__subtitle::before,
.packages-section .heading__subtitle::after {
    background: #fff;
}

.packages-section .heading__title {
    margin-bottom: 35px;
}

.packages-section .heading__subtitle {
    color: #ffffff;
    margin-bottom: 35px;
}

.packages-section .heading__text {
    max-width: 660px;
    margin: 0 auto;
}

.packages {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 30px;
}

.packages__slider {
    mask:
            radial-gradient(ellipse 60% 35px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 15px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    -webkit-mask:
            radial-gradient(ellipse 60% 38px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 15px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    mask-composite: intersect;
}

.package-card {
    position: relative;
    display: flex;
    max-width: 460px;
    border-radius: 3px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .25);
    transition: transform .25s ease-in;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(170,0,40,.2);
}

.package-card img {
    height: 515px;
    object-fit: cover;
}

.package-card__body {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 374px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    border-radius: 3px;
    transform: translateX(-50%);
    backdrop-filter: blur(6px);
    background: #F0F0F00D;
}

.package-card__link-title:hover h3 {
    color: #d82134;
}

.package-card__body h3 {
    color: #FBFBFB;
    text-shadow: 0 0 5px rgba(0, 0, 0, .12);
    font-family: "Essonnes Display";
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: color .25s ease-in;
}

.package-card__body span {
    color: #FFF;
    text-align: center;
    font-family: "Essonnes Display";
    font-size: 26px;
    margin-bottom: 15px;
}

.package-card__link {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 220px;
    padding: 9px 15px 10px;
    border: none;
    color: #FFF;
    font-size: 20px;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    justify-content: center;
    border-radius: 3px;
    background: radial-gradient(63.64% 517.66% at 50% 50%, #D82134 0%, #570D15 100%);
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            filter .25s ease;
    overflow: hidden;
    cursor: pointer;
}

.package-card__link::before {
    content: '';
    position: absolute;
    top: -120%;
    left: -70%;
    width: 60%;
    height: 300%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
    );
    transform: rotate(25deg);
    transition: left .6s ease;
}

.package-card__link:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(216, 33, 52, .45), 0 0 18px rgba(216, 33, 52, .35);
}

.package-card__link:hover::before {
    left: 120%;
}

.package-card__link:active {
    transform: translateY(1px) scale(.99);
    box-shadow: 0 4px 10px rgba(216, 33, 52, .25);
}
/* PACKAGES END */
/* SLIDER START */
.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    gap: 30px;
}

.swiper-slide {
    flex-shrink: 0;
}

.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    grid-area: 2 / 2 / 3;
    margin-bottom: 24px;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
    position: static;
    display: inline-flex;
    align-items: center;
    margin: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 16px;
    stroke: #fff;
    fill: none;
    transition: stroke .25s ease-in;
}

.swiper-button-prev:hover svg,
.swiper-button-next:hover svg {
    width: 16px;
    stroke: #d82134;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 7px;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0;
    background: #8B8B8B;
    transition: background .25s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: 0 0 12px rgba(216, 33, 52, .6);
}
/* SLIDER END */
/* PRICE START */
.price {
    position: relative;
    padding-block: 220px 65px;
    margin-block-end: 230px;
    background: url('./assets/images/price/section-bg.png') no-repeat center/cover;
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    background: linear-gradient(192deg, #000000 37%, rgba(0, 0, 0, 0) 84%);
    z-index: 0;
}

.price .heading {
    margin-bottom: 40px;
}

.price .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 35px;
}

.price .heading__subtitle::after {
    background: #D82134;
}

.price .heading__subtitle--double::after {
    opacity: 0;
}

.price .heading__title {
    font-size: 100px;
    margin-bottom: 24px;
}

.price .heading__text {
    max-width: 800px;
}

.price__grid {
    display: grid;
    grid-template: 'item-1 item-3' 400px
                    'item-2 item-3' 400px
                    / 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.price__item {
    position: relative;
    border-radius: 6px;
    padding: 60px;
    border: 1px solid;
    border-image-source: radial-gradient(67.73% 215.4% at 50% 50%, rgba(216, 33, 52, 0.6) 0%, rgba(53, 7, 12, 0.36) 100%);
    border-image-slice: 1;
    background: #000;
    box-shadow: 0 6px 24px 0 rgba(255, 255, 255, .06);
    z-index: 0;
    overflow: hidden;
    transition: transform .25s ease-in;
}

.price__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(170,0,40,.2);
}

.price__item--1 {
    grid-area: item-1;
}

.price__item--2 {
    grid-area: item-2;
}

.price__item--2 h3 {
    max-width: 280px;
}

.price__item--3 {
    grid-area: item-3;
}

.price__item--3 h3 {
    max-width: 380px;
}

.price__item--3 .price__img::before {
    width: 465px;
    left: -260px;
}

.price__item--3 .price__price-item {
    margin-top: 60px;
}

.price__img {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 515px;
    height: 100%;
    z-index: -1;
}

.price__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    background: linear-gradient(86deg, #000000 50%, rgba(0, 0, 0, 0) 97%);
    z-index: 0;
}

.price__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price__body {
    display: flex;
    flex-flow: column;
    gap: 18px;
    height: 100%;
}

.price__link-title {
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 50px;
    text-transform: uppercase;
}

.price__text {
    color: rgba(255, 255, 255, .8);
    font-family: "Agenda One";
    font-size: 28px;
    max-width: 280px;
}

.price__price-item {
    font-weight: 500;
    font-size: 24px;
    color: #d82134;
    margin-top: auto;
    text-transform: uppercase;
}

.price__price-item span {
    font-family: Essonnes Display;
    font-weight: 400;
    font-size: 48px;
    color: #fff;
    padding-inline: 14px;
}
/* PRICE END */
/* SIGNATURE START */
.signature {
    padding-block: 135px;
    margin-bottom: 200px;
    background: url('./assets/images/signature/section-bg.png') no-repeat center/cover;
}

.signature .heading {
    text-align: center;
    margin-bottom: 10px;
}

.signature .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.signature__wrap {
    height: 680px;
    mask:
            radial-gradient(ellipse 60% 38px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 20px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    -webkit-mask:
            radial-gradient(ellipse 60% 38px at 50% 0, transparent 0, transparent 99%, #000 100%),
            radial-gradient(ellipse 60% 20px at 50% 100%, transparent 0, transparent 99%, #000 100%);
    mask-composite: intersect;
}

.signature .heading__subtitle::after {
    background: #D82134;
}

.signature__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

.signature__video.fade-out {
    opacity: 0;
}
/* SIGNATURE END */
/* TAB START */
.tabs {
    overflow-x: auto;
    margin-bottom: 40px;
}

.tabs__wrap {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: 1400px;
}

.tab {
    color: rgba(255, 255, 255, .9);
    font-family: "Essonnes Display";
    font-size: 28px;
    padding: 7px;
    letter-spacing: .84px;
    text-transform: uppercase;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color .25s ease-in;
}

.tab:hover {
    color: #D82134;
}

.tab.active {
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.36), 0 0 12px rgba(216, 33, 52, 0.16);
    background: linear-gradient(180deg, #D82134 0%, #72111B 183.33%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* TAB END */
/* ATMOSPHERE START */
.atmosphere {
    padding-block: 105px;
    margin-block-end: 230px;
    background: url('./assets/images/atmosphere/section-bg.png') no-repeat center/cover;
}

.atmosphere::before {
    content: '';
    height: 230px;
    width: 100%;
    background: #000;
}

.atmosphere .heading {
    text-align: center;
    margin-bottom: 45px;
}

.atmosphere .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.atmosphere .heading__subtitle::after {
    background: #D82134;
}

.atmosphere .heading__title {
    margin-bottom: 36px;
}

.atmosphere .heading__text {
    max-width: 625px;
    margin: 0 auto;
}
/* ATMOSPHERE END */
/* GALLERY START */
.gallery {
    display: grid;
    grid-template: 'item-1 item-3 item-4' 400px
                    'item-2 item-3 item-5' 400px
                    / 340px 710px 340px;
    gap: 24px;
    margin-bottom: 40px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    transition:
            transform .45s cubic-bezier(.22,1,.36,1),
            box-shadow .45s ease,
            filter .45s ease;
}

.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background:
            linear-gradient(
                    145deg,
                    rgba(216,33,52,.0),
                    rgba(216,33,52,.45),
                    rgba(255,255,255,.08)
            );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(
                    circle at center,
                    rgba(216,33,52,.22) 0%,
                    rgba(216,33,52,0) 72%
            );
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery__item--1 {
    grid-area: item-1;
}

.gallery__item--2 {
    grid-area: item-2;
}

.gallery__item-video {
    grid-area: item-3;
    position: relative;
}

.gallery__item--4 {
    grid-area: item-4;
}

.gallery__item--5 {
    grid-area: item-5;
}

.gallery__item:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
            0 30px 70px rgba(216,33,52,.18),
            0 10px 30px rgba(0,0,0,.35);
}

.gallery__item:hover::before,
.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item:hover img,
.gallery__item:hover .gallery__video {
    transform: scale(1.06);
    filter:
            brightness(1.06)
            contrast(1.04)
            saturate(1.08);
}

.gallery__item img,
.gallery__video {
    transition:
            transform .7s cubic-bezier(.22,1,.36,1),
            filter .45s ease;
}

.gallery__item picture,
.gallery__item video {
    position: relative;
    overflow: hidden;
}

.gallery__item picture::after,
.gallery__item video::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    to top,
                    rgba(0,0,0,.45),
                    rgba(0,0,0,0) 45%
            );
    opacity: .65;
    transition: opacity .4s ease;
    z-index: 1;
}

.gallery__item:hover picture::after,
.gallery__item:hover video::after {
    opacity: .2;
}

.gallery .swiper-wrapper {
    gap: 0;
}

.gallery .swiper-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gallery__mark {
    position: absolute;
    top: 30px;
    right: 35px;
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    letter-spacing: 1.44px;
    border-radius: 42px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter:
            blur(24px)
            saturate(180%)
            brightness(1.1);
    box-shadow:
            inset 0 1px 1px rgba(255,255,255,0.3),
            inset 0 -12px 24px rgba(255,255,255,0.05),
            0 20px 40px rgba(0,0,0,0.18);
    z-index: 2;
    transition:
            transform .35s ease,
            background .35s ease,
            border-color .35s ease;
}

.gallery__mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    -45deg,
                    rgba(255,255,255,0.35),
                    transparent 45%
            );
}

.gallery__mark::after {
    content: "";
    position: absolute;
    inset: -30%;
    background:
            linear-gradient(
                    120deg,
                    rgba(255,0,128,0.06),
                    rgba(0,255,255,0.06),
                    rgba(255,255,0,0.06)
            );

    filter: blur(40px);
    mix-blend-mode: screen;
}

.gallery__item:hover .gallery__mark {
    transform: translateY(-3px);
    background: rgba(216,33,52,.14);
    border-color: rgba(216,33,52,.35);
    box-shadow: 0 10px 24px rgba(216,33,52,.18);
}

.gallery__video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery__btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 183px;
    height: 183px;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform .35s ease, filter .35s ease;
}

.gallery__btn-play:hover {
    transform: translateX(-50%) scale(1.12);
    filter: drop-shadow(0 0 18px rgba(216,33,52,.45));
}
/* GALLERY END */
/* REVIEW START */
.review {
    padding-block: 70px;
    margin-block-end: 200px;
    background: url('./assets/images/review/section-bg.png') no-repeat center/cover;
}

.review__wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.review .heading {
    position: relative;
    margin-bottom: 70px;
}

.review .heading::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -30px;
    width: 469px;
    height: 461px;
    border-radius: 469px;
    background: rgba(0, 0, 0, .14);
    filter: blur(160px);
    z-index: -1;
}

.review .heading__title {
    font-size: 100px;
}

.review .heading__subtitle {
    padding-right: 36px;
    margin-bottom: 30px;
}

.review .heading__subtitle::after {
    background: #D82134;
}

.review .heading__subtitle--double::after {
    opacity: 0;
}

.review__icon {
    width: 84px;
    height: 84px;
}

.review__icon svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__rating {
    display: flex;
    gap: 17px;
}

.review__content h5 {
    color: #E7E7E7;
    font-size: 18px;
    letter-spacing: .54px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.review__grade {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: #FFF;
    font-size: 36px;
    letter-spacing: 1.08px;
}

.review__stars {
    display: flex;
    list-style-type: none;
    column-gap: 4px;
    margin-bottom: 2px;
}

.review__stars li {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.review__stars li svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__text {
    display: inline-flex;
    width: 100%;
    color: #E7E7E7;
    font-size: 18px;
    letter-spacing: .54px;
    margin-bottom: 10px;
}

.review__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D82134;
    font-size: 18px;
    letter-spacing: .54px;
    transition: color .25s ease-in;
}
.review__link svg {
    stroke: #D82134;
    transition: stroke .25s ease-in;
}

.review__link:hover {
    color: rgba(216,33,52,.35);
}

.review__link:hover svg {
    stroke: rgba(216,33,52,.35);
}
/* REVIEW END */
/* TESTIMONIALS START */
.testimonials {
    display: flex;
    gap: 24px;
    height: 908px;
    margin: 0;
    width: auto;
}

.testimonials .swiper-wrapper {
    display: flex;
    flex-flow: column;
    height: auto;
    gap: 0;
    max-width: 710px;
}

.testimonials .swiper-controls {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.testimonials .swiper-controls .swiper-button-prev,
.testimonials .swiper-controls .swiper-button-next {
    transform: rotate(90deg);
}

.testimonials .swiper-pagination-vertical.swiper-pagination-bullets {
    position: static;
    display: flex;
    flex-flow: column;
    gap: 7px;
    transform: translateY(0);
}

.testimonials .swiper-pagination-bullet {
    --swiper-pagination-bullet-vertical-gap: 0;
}

.testimonials__item {
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 46px 42px 32px 95px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(14px);
    transition:
            transform .4s cubic-bezier(.22,1,.36,1),
            box-shadow .4s ease,
            border-color .4s ease,
            background .4s ease;
}

.testimonials__item::before {
    content: '“';
    position: absolute;
    top: 28px;
    left: 28px;
    color: #D82134;
    font-family: "Essonnes Display";
    font-size: 100px;
    line-height: 80px;
    letter-spacing: 6px;
}

.testimonials__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(
                    circle at top right,
                    rgba(216,33,52,.22),
                    transparent 45%
            );
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.testimonials__item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255,255,255,.05);
    border-color: rgba(216,33,52,.35);
    box-shadow:
            0 18px 40px rgba(0,0,0,.45),
            0 0 25px rgba(216,33,52,.18),
            inset 0 1px 0 rgba(255,255,255,.05);
}

.testimonials__item:hover::after {
    opacity: 1;
}

.testimonials__text {
    color: #FFF;
    font-size: 24px;
}

.testimonials__user {
    display: grid;
    grid-template: 'picture title' auto
                    'picture text' auto
                    / 62px 1fr;
    column-gap: 12px;
}

.testimonials__icon {
    grid-area: picture;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62px;
    border-radius: 46px;
    border: 1px solid #D82134;
    background: rgba(73, 73, 73, 0.12);
    box-shadow: 0 1px 4px 0 rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(11px);
}

.testimonials__title {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 2px;
    align-self: end;
}

.testimonials__subtitle {
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
}
/* TESTIMONIALS END */
/* MAP START */
.map {
    height: 1300px;
    position: relative;
}

#map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map::before,
.map::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 400px;
}

.map::before {
    top: 0;
    background: linear-gradient(176deg, #000 0.42%, rgba(0, 0, 0, 0) 53.05%);
}

.map::after {
    bottom: 0;
    background: linear-gradient(4deg, #000 0.42%, rgba(0, 0, 0, 0) 53.05%);
}
/* MAP END */
/* LOCATION START */
.location {
    position: absolute;
    top: 50%;
    left: 160px;
    width: 680px;
    transform: translateY(-50%);
    padding: 65px 60px 35px;
    background: #000;
    z-index: 2;
}

.location .heading {
    text-align: center;
    margin-bottom: 55px;
}

.location .heading__subtitle {
    margin-inline: auto;
}

.location .heading__subtitle--double::after {
    background: #D82134;
}

.location .heading__title {
    text-align: center;
    font-size: 95px;
    line-height: 1;
    letter-spacing: 5.7px;
}

.location__address-content {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    letter-spacing: .72px;
}

.location__address-content img {
    width: 16px;
}

.location__address {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 40px;
}

.location__copy {
    position: relative;
    display: flex;
    padding-block: 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 31px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    letter-spacing: .48px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.70);
    cursor: pointer;
    overflow: hidden;
    transition:
            color .3s ease,
            transform .25s ease;
}

.location__copy::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.25);
}

.location__copy::after {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            #fff,
            transparent
    );
    transition: left .55s cubic-bezier(.65,.05,.36,1);
}

.location__copy:hover {
    color: #FFF;
    transform: translateY(-1px);
}

.location__copy:hover::after {
    left: 100%;
}

.location__copy:active {
    transform: translateY(1px) scale(.98);
}

.location__schedules {
    list-style-type: none;
    margin-bottom: 55px;
}

.location__li {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.location__li:not(:last-child) {
    margin-bottom: 24px;
}

.location__position {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    font-size: 24px;
    max-width: 350px;
}

.location__position figure {
    flex: 0 0 auto;
    display: flex;
    width: 43px;
    height: 43px;
    justify-content: center;
    align-items: center;
    border-radius: 62px;
    border: 1px solid #FFF;
    background: #000;
    box-shadow: 0 0 3px 0 rgba(255, 255, 255, .16) inset;
}

.location__position figure img {
    width: 23px;
    height: 23px;
    object-fit: cover;
}

.location__time {
    color: #D82134;
    text-align: center;
    font-size: 20px;
    width: 100%;
    max-width: 130px;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #D82134;
}

.location__actions {
    display: flex;
    flex-flow: column;
    gap: 24px;
    margin-bottom: 40px;
}

.location__actions .btn-red {
    font-size: 24px;
}

.location__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
}

.location__text img {
    width: 18px;
    height: 20px;
}
/* LOCATION END */
/* FAQ START */
.faq {
    padding-block: 250px 120px;
    margin-block-end: 200px;
    background: url('./assets/images/faq/section-bg.png') no-repeat center/cover;
}

.faq .heading {
    text-align: center;
    margin-bottom: 40px;
}

.faq .heading__title {
    font-size: 100px;
    margin-bottom: 30px;
    line-height: 1;
}

.faq .heading__subtitle {
    margin-inline: auto;
    margin-bottom: 30px;
}

.faq .heading__subtitle--double::after {
    background: #D82134;
}

.faq .heading__text {
    max-width: 100%;
}

.faq__accordions {
    display: flex;
    flex-flow: column;
    gap: 32px;
    max-width: 826px;
    margin-inline: auto;
    counter-reset: accordion;
}
/* FAQ END */
/* ACCORDION START */
.accordion {
    padding: 32px 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid transparent;
    transition:
            background .35s ease,
            border-color .35s ease,
            transform .35s ease,
            box-shadow .35s ease;
}

.accordion:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(216, 33, 52, .35);
    transform: translateY(-2px);
    box-shadow:
            0 10px 30px rgba(0,0,0,.22),
            0 0 18px rgba(216, 33, 52, .08);
}

.accordion[open] {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(216, 33, 52, .45);
}

.accordion[open] .accordion__icon {
    transform: rotate(180deg);
}

.accordion[open] .accordion__icon::before,
.accordion[open] .accordion__icon::after {
    transform: rotate(45deg);
}

.accordion__summary {
    display: flex;
    gap: 28px;
    cursor: pointer;
    list-style: none;
}

.accordion__summary::-webkit-details-marker {
    display: none;
}

.accordion__summary::before {
    content: counter(accordion);
    counter-increment: accordion;
    color: #D82134;
    text-align: center;
    font-size: 32px;
    font-weight: 550;
    padding-right: 28px;
    border-right: 1px solid rgba(153, 153, 153, .5);
    transition:
            color .3s ease,
            border-color .3s ease;
}

.accordion:hover .accordion__summary::before {
    color: #ff4b5f;
    border-color: rgba(216, 33, 52, .45);
}

.accordion__title {
    flex: 1 0 auto;
    color: #FFF;
    font-size: 28px;
    transition:
            color .3s ease,
            transform .3s ease;
}

.accordion:hover .accordion__title {
    color: #ffffff;
    transform: translateX(2px);
}

.accordion__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(216, 33, 52, .08);
    transition:
            transform .35s ease,
            background .35s ease,
            box-shadow .35s ease;
}

.accordion:hover .accordion__icon {
    background: rgba(216, 33, 52, .15);
    box-shadow: 0 0 14px rgba(216, 33, 52, .2);
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    border-radius: 5px;
    background: #D82134;
    transition:
            transform .35s ease,
            opacity .35s ease,
            background .35s ease;
}

.accordion__icon::before {
    width: 19px;
    height: 3px;
}

.accordion__icon::after {
    width: 3px;
    height: 19px;
}

.accordion__content {
    padding-top: 15px;
    padding-left: 75px;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
}

.accordion__content {
    transition: opacity .35s ease;
    opacity: 0;
}

.accordion[open] .accordion__content {
    opacity: 1;
}

.accordion__content p {
    color: rgba(255,255,255,.82);
    font-size: 20px;
    font-weight: 300;
}
/* ACCORDION END */
/* BOOKING START */
.booking {
    position: relative;
    padding-block: 330px 355px;
    margin-bottom: 60px;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 895px;
    height: 100%;
    background: linear-gradient(91deg, #000 43.02%, rgba(0, 0, 0, 0.00) 99.46%);
    transform: translateX(calc(-50% + -415px));
    z-index: 0;
}

.booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1895px;
    height: 1265px;
    background: url('./assets/images/booking/section-bg.jpg') no-repeat center/cover;
    transform: translateX(calc(-50% + 225px));
    z-index: -1;
}

.booking .heading__title {
    font-size: 109px;
    letter-spacing: 6.523px;
    line-height: 1;
    margin-bottom: 30px;
}

.booking .heading__title span:last-child {
    display: inline-flex;
    align-items: baseline;
    gap: 28px;
}

.booking .heading__title svg {
    transform: translateY(-15px);
}

.booking .heading__text {
    max-width: 660px;
}

.booking__actions {
    display: flex;
    gap: 24px;
}

.booking__list {
    display: flex;
    gap: 77px;
    margin-bottom: 60px;
    list-style-type: none;
}

.booking__li {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 16px;
    padding-block: 12px;
    color: #FFF;
    font-size: 22px;
    letter-spacing: 1.32px;
}

.booking__li:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -38px;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .2);
    transform: translateY(-50%);
}
/* BOOKING END */
/* FOOTER START */
.footer {
    position: relative;
    padding-block: 110px 24px;
    background: url('./assets/images/footer/section-bg.png') no-repeat center/cover;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 235px;
    background: linear-gradient(176deg, #000 .42%, rgba(0, 0, 0, 0) 53.05%);
}

.footer__wrap {
    display: grid;
    grid-template: 'content links' auto
                    'underline underline' auto
                    / 1fr 1fr;
    gap: 24px;
}

.footer__wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: 810px;
    padding: 60px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .03);
}

.footer__wrapper--content {
    grid-area: content;
    gap: 32px;
}

.footer__wrapper--links {
    grid-area: links;
    gap: 45px
}

.footer__logo {
    width: 365px;
}

.footer__text {
    display: flex;
    flex-flow: column;
    gap: 4px;
    color: #E7E7E7;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
}

.footer__content {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 27px;
    max-width: 430px;
}

.footer__decor {
    max-width: 224px;
}

.footer__contacts {
    display: flex;
    flex-flow: column;
    gap: 23px;
}

.footer__contacts-block {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.footer__contacts-block h5 {
    color: #D82134;
    text-align: center;
    font-size: 16px;
    letter-spacing: .48px;
    text-transform: uppercase;
}

.footer__contacts-block address,
.footer__contacts-block a {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    letter-spacing: .72px;
}

.footer__contacts-block a {
    transition: color .25s ease-in;
}

.footer__contacts-block a:hover {
    color: #D82134;
}

.footer__times {
    display: flex;
    flex-flow: column;
    gap: 16px;
    padding-inline: 60px;
}

.footer__time-line {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    color: #FFF;
    font-size: 24px;
    letter-spacing: .72px;
}

.footer__links-block {
    display: flex;
    flex-flow: column;
    gap: 20px;
    width: 100%;
}

.footer__links-block h4 {
    display: flex;
    flex-flow: column;
    color: #D82134;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.footer__links-block h4::after {
    content: '';
    width: 40px;
    height: 1px;
    margin-top: 8px;
    background: #D82134;
}

.footer__links {
    display: flex;
    flex-flow: column;
    gap: 16px;
}

.footer__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 16px;
    color: #FFF;
    font-family: "Essonnes Display";
    font-size: 28px;
    letter-spacing: .56px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: color .25s ease-in;
    cursor: pointer;
}

.footer__links a:hover {
    color: #D82134;
}

.footer__underline {
    grid-area: underline;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    gap: 24px;
    padding: 40px 60px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .03);
}

.footer__copyright {
    color: #D9D9D9;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .54px;
}

.footer__underlinks {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__underlinks a {
    display: inline-flex;
    align-items: center;
    transition: color .25s ease-in;
}

.footer__underlinks a:hover {
    color: #D82134;
}

.footer__underlinks a:not(:last-child)::after {
    content: '';
    width: 5px;
    height: 5px;
    margin-inline: 24px;
    border-radius: 50%;
    background: #D9D9D9;
}

.footer__socials {
    justify-self: end;
}

.footer__social svg {
    fill: #fff;
    transition: fill .25s ease-in;
}

.footer__social:hover svg {
    fill: #D82134;
}
/* FOOTER END */
/* BUTTON-UP START */
.button-up {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    position: fixed;
    right: 145px;
    bottom: 85px;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid #999;
    background: rgba(255, 255, 255, .05);
    box-shadow: 2px 3px 5px 0 rgba(255, 255, 255, .1) inset;
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 20;
}

.button-up:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    transform: translateY(-2px);
}

.button-up:active {
    transform: translateY(0) scale(.95);
}

.button-up.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* BUTTON-UP END */
/* PROGRAMM HERO START */
.program-hero {
    position: relative;
    overflow: hidden;
    height: 505px;
}

.program-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    object-position: center;
}

.program-hero__overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to bottom right, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) bottom right / 50% 50% no-repeat,
            linear-gradient(to bottom left, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) bottom left / 50% 50% no-repeat,
            linear-gradient(to top left, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) top left / 50% 50% no-repeat,
            linear-gradient(to top right, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 50%) top right / 50% 50% no-repeat,
            linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: -2;
}

.program-hero .container {
    height: 100%;
    display: flex;
}

.program-hero__wrap {
    width: 100%;
    margin-top: auto;
}

.heading--program-hero {
    text-align: center;
    margin-bottom: 110px;
}

.program-hero .heading__subtitle {
    margin-inline: auto;
    margin-bottom: 10px;
}

.program-hero .heading__subtitle--double::after {
    background: #D82134;
}

.program-hero .heading__title {
    margin-bottom: 15px;
}

.program-hero .heading__text {
    max-width: 100%;
}
/* PROGRAMM HERO END */
/* CHOOSE DAY START */
.choose-day {
    position: relative;
    padding-block: 52px 64px;
    margin-bottom: 112px;
    background: url('./assets/images/choose-day/section-bg.png') no-repeat center/cover, #000;
    overflow: visible;
}

.choose-day::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    height: 23px;
    background: url('assets/images/choose-day/decor.svg') no-repeat center/cover;
}

.choose-day .heading {
    text-align: center;
    margin-bottom: 27px;
}

.choose-day .heading__subtitle {
    margin-bottom: 12px;
}

.choose-day .heading__subtitle--double::after {
    background: #D82134;
}

.choose-day .heading__text {
    max-width: 100%;
    font-size: 18px;
}

.choose-day__wrap {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 807px;
    margin: 0 auto;
}

.choose-day__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.choose-day__label img {
    width: 24px;
    height: 24px;
    display: flex;
    object-fit: cover;
}

.choose-day__day {
    color: #D82134;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Essonnes Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.choose-day__tabs {
    border-radius: 6px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    background: rgba(0, 0, 0, 0.00);
    margin-bottom: 27px;
    width: 100%;
    overflow-x: auto;
}

.choose-day__tab-wrap {
    display: flex;
    width: 805px;
}

.choose-day__tab {
    position: relative;
    display: flex;
    padding: 18px 34px;
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Essonnes Display";
    border: none;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: transparent;
    transition: background .2s ease;
    cursor: pointer;
}

.choose-day__tab:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 41px;
    background: url('./assets/images/choose-day/separator.svg') no-repeat center/cover;
}

.choose-day__tab:hover,
.choose-day__tab--active {
    background: linear-gradient(180deg, #D82134 0%, #72111B 100%);
}

.choose-day__body {
    width: 100%;
    margin-bottom: 27px;
}

.choose-day__daylist {
    display: none;
}

.choose-day__daylist--active {
    display: flex;
}

.choose-day__list {
    display: flex;
    flex-flow: column;
    gap: 10px;
    width: 100%;
}

.choose-day__list li {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Essonnes Display";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 18px 24px 18px 57px;
    align-items: center;
    gap: 10px 28px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(100, 100, 100, 0.01);
    box-shadow: 0 2px 10.8px 0 rgba(255, 255, 255, 0.10) inset;
    backdrop-filter: blur(4.5px);
}

.choose-day__list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 27px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D82134;
}

.choose-day__list li span {
    color: rgba(231, 231, 231, 0.80);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.choose-day__info {
    display: flex;
    align-items: center;
    align-self: self-start;
    gap: 14px;
    color: #fff;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
}

.choose-day__info svg {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
}
/* CHOOSE DAY END */
/* READY FOR START */
.ready-for {
    padding-block: 140px;
    margin-bottom: 112px;
    background: url('./assets/images/ready-for/section-bg.png') no-repeat center/contain, #000;
}

.ready-for .heading {
    text-align: center;
    margin-bottom: 48px;
}

.ready-for .heading__subtitle {
    margin-bottom: 12px;
}

.ready-for .heading__title {
    margin-bottom: 24px;
}

.ready-for .heading__subtitle--double::after {
    background: #D82134;
}

.ready-for .heading__text {
    max-width: 100%;
    font-size: 18px;
}

.ready-for__actions {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}

.ready-for .btn-red svg {
    stroke: #fff;
    width: 24px;
    height: 24px;
}

.ready-for__link {
    color: #E7E7E7;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 24px;
    font-weight: 300;
    line-height: 99.955%;
    letter-spacing: 0.72px;
    margin: 0 auto;
    display: flex;
    width: fit-content;
    transition: color .35s ease, transform .35s ease;
}

.ready-for__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;

    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.ready-for__link:hover {
    transform: translateY(-2px);
}

.ready-for__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* READY FOR END */
/* CONTACT START */
.contact {
    padding-block: 13px 17px;
    margin-bottom: 183px;
    background: url('./assets/images/ready-for/section-bg.png') no-repeat center/contain, #000;
}

.contact__wrap {
    display: flex;
    flex-flow: column;
}

.contact .heading {
    text-align: center;
    margin-bottom: 32px;
}

.contact .heading__subtitle {
    margin-bottom: 12px;
}

.contact .heading__subtitle::after {
    background: #D82134;
}

.contact .heading__title {
    flex-flow: row;
    justify-content: center;
    gap: 28px;
    margin-bottom: 12px;
}

.contact .heading__text {
    max-width: 100%;
    text-align: center;
}

.contact__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    max-width: 807px;
    width: 100%;
    margin: 0 auto 37px;
}

.contact__grid::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    stroke-width: 1px;
    stroke: rgba(153, 153, 153, 0.00);
}

.contact__item {
    display: flex;
    padding: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
}

.contact__header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact__header h4 {
    color: #FFF;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact__body a {
    display: flex;
    color: #FFF;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact__body a:first-child {
    margin-bottom: 8px;
}

.contact__body p {
    color: rgba(255, 255, 255, 0.80);
    font-family: "Agenda One";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;
}

.contact__icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 11.163px 10.046px 10.046px 11.163px;
    justify-content: center;
    align-items: center;
    border-radius: 69.209px;
    border: 1.116px solid #FFF;
    background: #000;
    box-shadow: 0 0 3.349px 0 rgba(255, 255, 255, 0.16) inset;
}

.contact__times {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.contact__time-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 99.955%;
    letter-spacing: 0.72px;
}

.contact .btn-red {
    margin: 0 auto;
}
/* CONTACT END */
/* LOCATION SECTION START */
.location-section {
    margin-bottom: 82px;
}

.location-section__wrap-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-flow: wrap;
    position: relative;
    z-index: 2;
    gap: 32px;
    margin-bottom: -80px;
}

.location-section .heading__subtitle {
    margin-bottom: 10px;
}

.location-section .heading {
    align-items: flex-end;
    margin: 0;
}

.location-section .heading__title {
    font-size: 70px;
    margin-bottom: 0;
}

.location-section .location__address-content {
    font-size: 28px;
}

.location-section .location__address {
    align-items: flex-end;
    margin: 0;
    gap: 3px;
}

.location-section #map {
    position: relative;
    height: 732px;
}

.location-section #map::before,
.location-section #map::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 257px;
    background: linear-gradient(176deg, #000 0.42%, rgba(0, 0, 0, 0.00) 53.05%);
    z-index: 1;
}

.location-section #map::before {
    top: 0;
}

.location-section #map::after {
    bottom: 0;
    transform: rotate(180deg);
}

.location-section .location__schedules {
    display: flex;
    gap: 23px;
}

.location-section .location__li {
    position: relative;
    flex-flow: column;
    display: flex;
    width: 463px;
    padding: 28px 32px;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.00);
}

.location-section .location__li:not(:last-child) {
    margin: 0;
}

.location-section .location__li::before {
    content: '';
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            0 8px 32px rgba(0,0,0,.35);
}

.location-section .location__position {
    position: relative;
    margin-bottom: 8px;
}

.location-section .location__position figure {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            0 8px 32px rgba(0,0,0,.35);
}

.location-section .location__content {
    position: relative;
    color: #FFF;
    font-family: "Agenda One";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.location-section .location__time {
    position: relative;
    font-size: 22px;
    padding: 0;
    border: none;
    width: auto;
}

.location-section .location__actions {
    flex-flow: row;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.location-section .location__actions a {
    width: 100%;
    max-width: 555px;
}

.location-section__bottom-section {
    position: relative;
    margin-top: -130px;
    z-index: 3;
}

.location-section .location__text {
    margin-bottom: 82px;
}

.location-section__info {
    display: flex;
    flex-flow: column;
    gap: 8px;
}

.location-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-section__icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.location-section__title {
    color: #E7E7E7;
    text-align: center;
    font-family: "Agenda One";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.location-section__info p {
    color: #E7E7E7;
    font-family: "Agenda One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
/* LOCATION SECTION END */
/* RESPONSIVE START */
@media (max-width: 1599px) {
    .packages .swiper {
        max-width: 1360px;
    }

    .packages .swiper-slide {
        max-width: 433px;
    }

    .gallery {
        grid-template-columns: 320px 1fr 320px;
    }

    .location {
        left: 40px;
    }
}

@media (max-width: 1399px) {
    .schedule {
        padding-left: 35px;
    }

    .schedule-card::before {
        left: -31px;
    }

    .booking .heading__title,
    .faq .heading__title,
    .review .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 95px;
    }

    .about__grid {
        grid-template-columns: repeat(4, minmax(199px, 234px));
        max-width: 970px;
        margin: 0 auto;
    }

    .about__card--1 {
        grid-area: 2 / 1 / span 1;
    }

    .about__card--2 {
        grid-area: 5 / 1 / span 1;
    }

    .about__card--3 {
        grid-area: 1 / 2 / span 1;
    }

    .about__card--4 {
        grid-area: 4 / 2 / span 1;
    }

    .about__card--5 {
        grid-area: 2 / 3 / span 1;
    }

    .about__card--6 {
        grid-area: 5 / 3 / span 1;
    }

    .about__card--7 {
        grid-area: 1 / 4 / span 1;
    }

    .about__card--8 {
        grid-area: 4 / 4 / span 1;
    }

    .package-card {
        max-width: 366px;
    }

    .packages .swiper {
        max-width: 1160px;
    }

    .package-card__body {
        width: 314px;
    }

    .price__item {
        padding: 40px;
    }

    .review__wrap {
        flex-flow: column;
        align-items: center;
    }

    .review .heading {
        text-align: center;
    }

    .review__rating {
        justify-content: center;
    }

    .review .heading__subtitle--double::after {
        opacity: 1;
    }

    .location {
        width: 530px;
        padding: 35px 30px 15px;
    }

    .location .heading__title {
        font-size: 70px;
    }
}

@media (max-width: 1199px) {
    .header {
        padding-bottom: 40px;
    }

    .logo {
        max-width: 210px;
    }

    .hero__title {
        font-size: 60px;
    }

    .line__li {
        font-size: 20px;
    }

    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 80px;
    }

    .heading__subtitle {
        font-size: 20px;
    }

    .packages .swiper {
        max-width: 984px;
    }

    .package-card {
        max-width: 308px;
    }

    .package-card img {
        height: 440px;
    }

    .package-card__body {
        width: 264px;
    }

    .package-card__body h3 {
        font-size: 20px;
        text-align: center;
    }

    .package-card__body span {
        font-size: 22px;
    }

    .price__item {
        padding: 25px;
    }

    .signature__wrap {
        height: 600px;
    }

    .gallery {
        grid-template:
            'item-3 item-3'
            'item-1 item-4' 400px
            'item-2 item-5' 400px
            / 1fr 1fr;
        gap: 18px;
    }

    .gallery__item img {
        object-position: top;
    }

    .atmosphere {
        margin-bottom: 180px;
    }

    .review {
        margin-bottom: 180px;
    }

    .footer__contacts-block address,
    .footer__contacts-block a {
        text-align: center;
    }

    .menu {
        padding: 156px 30px 40px 30px;
    }
}

@media (max-width: 1023px) {
    .hero__title {
        text-align: center;
        margin-bottom: 22px;
        max-width: 100%;
        font-size: 48px;
    }

    .hero .container {
        margin-block: auto 5px;
    }

    .hero__content::before {
        display: none;
    }

    .ready-for__actions,
    .hero__content .btn-red,
    .location__actions .btn-red,
    .tonight__actions .btn-red {
        margin: 0 auto;
        display: flex;
        font-size: 24px;
        max-width: fit-content;
        padding-block: 15px;
    }

    .line {
        margin-top: 0;
        margin-bottom: 80px;
    }

    .line__list {
        padding-block: 37px 23px;
    }

    .line__li {
        font-size: 18px;
    }

    .tonight__wrap {
        grid-template:
        'title' auto
        'mark' auto
        'schedule' auto
        'actions' auto
        / 1fr;
    }

    .price .heading,
    .tonight .heading {
        text-align: center;
    }

    .price .heading__subtitle--double::after,
    .tonight .heading__subtitle--double::after {
        opacity: 1;
    }

    .tonight .heading::before {
        left: 0;
        width: 100%;
    }

    .tonight .heading__text {
        margin: 0 auto;
    }

    .tonight__mark {
        justify-content: center;
    }

    .tonight__actions {
        align-items: center;
    }

    .heading__subtitle {
        font-size: 16px;
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .heading__subtitle--double {
        padding-right: 30px;
    }

    .heading__subtitle::before,
    .heading__subtitle--double::after {
        width: 22px;
    }

    .tonight {
        padding-bottom: 105px;
    }

    .tonight__wrap {
        gap: 26px;
    }

    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .atmosphere .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 64px;
        margin-bottom: 30px;
        letter-spacing: 3.68px;
    }

    .price .heading__text,
    .packages-section .heading__text,
    .heading__text {
        font-size: 20px;
        max-width: 380px;
    }

    .tonight__mark {
        gap: 10px;
        margin: 0;
    }

    .tonight__mark img {
        width: 26px;
    }

    .tonight__mark span {
        font-size: 20px;
    }

    .schedule-card__time {
        font-size: 22px;
        padding: 18px 16px 18px 18px;
    }

    .schedule-card__content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .schedule-card__content p {
        font-size: 16px;
    }

    .schedule-card::before {
        left: -29px;
    }

    .schedule {
        gap: 15px;
        max-width: 650px;
        width: 100%;
        margin: 0 auto 55px;
    }

    .schedule::before {
        top: 0;
        left: 0;
        height: 100%;
    }

    .schedule-card::before {
        width: 12px;
        height: 12px;
        left: -41px;
    }

    .schedule-card picture {
        height: 110px;
        min-width: 170px;
        width: 30%;
    }

    .tonight {
        margin-bottom: 100px;
    }

    .tonight__actions {
        gap: 24px;
    }

    .tonight__more {
        font-size: 22px;
    }

    .about {
        padding-block: 60px;
    }

    .about__grid {
        grid-template-columns: repeat(2, 254px);
        grid-auto-rows: 254px;
        grid-template-rows: auto;
        max-width: 520px;
        margin: 0 auto;
    }

    .about__card--1 {
        grid-area: 2 / 2 / span 1;
    }

    .about__card--2 {
        grid-area: 1 / 2 / span 1;
    }

    .about__card--3 {
        grid-area: 1 / 1 / span 1;
    }

    .about__card--4 {
        grid-area: 3 / 2 / span 1;
    }

    .about__card--5 {
        grid-area: 2 / 1 / span 1;
    }

    .about__card--6 {
        grid-area: 3 / 1 / span 1;
    }

    .about__card--7 {
        grid-area: 4 / 1 / span 1;
    }

    .about__card--8 {
        grid-area: 4 / 2 / span 1;
    }

    .about__wrapper {
        padding-block: 20px;
    }

    .about__card {
        height: 254px;
    }

    .about__count {
        font-size: 76px;
        line-height: 64px;
    }

    .about__count span {
        font-size: 32px;
    }

    .about__icon {
        max-width: 32px;
        margin-bottom: 15px;
    }

    .about__title {
        font-size: 18px;
    }

    .why-section {
        padding-block: 105px;
        margin-bottom: 105px;
    }

    .faq .heading,
    .price .heading,
    .packages-section .heading,
    .why-section .heading {
        margin-bottom: 35px;
    }

    .price .heading__subtitle,
    .why-section .heading__subtitle {
        padding-right: 30px;
        margin-bottom: 30px;
    }

    .location-section .heading__title,
    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .atmosphere .heading__title,
    .price .heading__title,
    .packages-section .heading__title,
    .why-section .heading__title {
        margin-bottom: 24px;
    }

    .why-section .heading__text {
        max-width: 380px;
        margin: 0 auto;
    }

    .features__wrap {
        width: 1160px;
    }

    .features__item {
        height: 520px;
    }

    .features__item:hover, .features__item.active {
        width: 290px;
    }

    .features__content {
        padding: 12px;
    }

    .features__content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .features__content span {
        font-size: 16px;
    }

    .packages-section .heading__subtitle {
        margin-bottom: 30px;
    }

    .packages {
        margin-bottom: 24px;
    }

    .packages__slider {
        mask: none;
    }

    .packages .swiper-wrapper {
        flex-flow: column;
        align-items: center;
        gap: 24px;
    }

    .packages .swiper-controls {
        display: none;
    }

    .package-card {
        max-width: 400px;
    }

    .package-card figure {
        width: 100%;
    }

    .package-card img {
        height: 360px;
    }

    .packages-section {
        padding-block: 155px 70px;
    }

    .section-btn {
        font-size: 22px;
        padding: 10px 8px;
    }

    .package-card__body {
        width: 314px;
        padding: 16px 14px;
    }

    .package-card__body h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .package-card__body span {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .package-card__link {
        font-size: 18px;
        max-width: 190px;
    }

    .price__grid {
        grid-template: 'item-1'
                        'item-2'
                        'item-3'
                        / 1fr;
        gap: 18px;
    }

    .price__img {
        max-width: 390px;
    }

    .price__img img {
        object-position: top;
    }

    .price__item {
        padding: 28px;
    }

    .price__link-title {
        font-size: 34px;
    }

    .price__text {
        font-size: 20px;
        max-width: 220px;
    }

    .price__price-item {
        font-size: 18px;
    }

    .price__price-item span {
        font-size: 32px;
        padding-inline: 10px;
    }

    .price__grid  {
        margin-bottom: 30px;
    }

    .price {
        margin-block-end: 140px;
        padding-top: 130px;
    }

    .price .heading__title,
    .price .heading__text {
        text-align: center;
    }

    .price .heading__text {
        margin: 0 auto;
    }

    .atmosphere {
        margin-bottom: 130px;
    }

    .review {
        margin-bottom: 130px;
    }

    .signature {
        padding-block: 90px 105px;
        margin-bottom: 130px;
    }

    .signature__wrap {
        height: 486px;
    }

    .tabs {
        margin-bottom: 32px;
    }

    .tabs__wrap {
        width: 1225px;
    }

    .tab {
        font-size: 24px;
    }

    .review .heading {
        margin-bottom: 40px;
    }

    .map {
        display: flex;
        flex-flow: column-reverse;
        gap: 32px;
        height: 100%;
    }

    .map::before,
    .map::after {
        display: none;
    }

    #map {
        position: relative;
        width: 100%;
        height: 700px;
        border-radius: 6px;
        border: 1px solid #FFF;
        background: rgba(255, 255, 255, 0.10);
    }

    .location {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
        background: transparent;
        margin: 0 auto;
    }

    .faq {
        padding-block: 200px 150px;
    }

    .booking {
        padding-block: 260px;
    }

    .booking::after {
        transform: translateX(calc(-66% + 225px));
    }

    .booking__list {
        gap: 41px;
        margin-bottom: 30px;
    }

    .booking__li:not(:last-child)::before {
        right: -20px;
    }

    .booking .heading__text {
        max-width: 450px;
    }

    .booking .heading__title span:last-child {
        gap: 16px;
    }

    .booking .heading__title svg {
        transform: translateY(-5px);
        width: 75px;
    }

    .booking__li {
        font-size: 18px;
    }

    .footer__wrapper {
        padding: 40px;
    }

    .footer__wrap {
        grid-template:
            'content' auto
            'links' auto
            'underline' auto
            / 1fr;
    }

    .footer__underline {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
    }

    .footer__underlinks {
        order: -1;
        width: 100%;
    }

    .choose-day {
        padding-block: 45px;
        margin-bottom: 80px;
    }

    .choose-day__list li {
        font-size: 20px;
    }

    .choose-day__list li span {
        font-size: 16px;
    }

    .choose-day__label img {
        width: 18px;
        height: 18px;
    }

    .choose-day__day {
        font-size: 14px;
    }

    .choose-day__info {
        font-size: 18px;
    }

    .choose-day__info svg {
        width: 28px;
        height: 28px;
    }

    .choose-day__tab {
        font-size: 20px;
    }

    .choose-day__tab-wrap {
        width: 710px;
    }

    .ready-for {
        padding-block: 95px;
        margin-bottom: 80px;
    }

    .ready-for__link {
        font-size: 20px;
    }

    .contact {
        margin-bottom: 130px;
    }

    .contact__grid {
        gap: 12px;
        font-size: 18px;
    }

    .contact__item {
        gap: 12px;
        padding: 30px;
    }

    .contact__times {
        gap: 12px;
    }

    .contact__header h4,
    .contact__time-line {
        font-size: 18px;
    }

    .contact__body a {
        font-size: 18px;
    }

    .contact__body p {
        font-size: 14px;
        margin-top: 12px;
    }

    .location-section .heading {
        text-align: center;
    }

    .location-section #map {
        height: 565px;
    }

    .location-section .heading__subtitle--double::after {
        opacity: 1;
        background: #D82134;
    }

    .location-section__bottom-section {
        margin-top: 40px;
    }

    .location-section #map::before,
    .location-section #map::after {
        height: 145px;
    }

    .location-section__wrap-top {
        justify-content: center;
        margin-bottom: 40px;
    }

    .location-section .location__address {
        align-items: center;
    }

    .location-section .location__schedules {
        flex-flow: wrap;
        justify-content: center;
    }

    .location-section {
        margin-bottom: 60px;
    }

    .location-section__title,
    .location-section__info p {
        font-size: 22px;
    }

    .menu {
        background: url('./assets/images/header/background.png') no-repeat right / 550px 400px, #000;
    }

    .menu__footer {
        flex-flow: wrap;
        gap: 40px;
    }

    .menu__links {
        flex-wrap: wrap;
        width: 100%;
    }

    .menu__link {
        font-size: 20px;
    }

    .menu-divider {
        margin: 0;
    }

    .nav a {
        font-size: 36px;
    }

    .menu__socials {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .header {
        padding-bottom: 18px;
    }

    .logo {
        max-width: 122px;
    }

    .header .btn-border--header {
        padding: 9px 12px;
        max-width: 84px;
        margin: 0;
    }

    .btn-border--header small {
        display: none;
    }

    .btn-border {
        gap: 4px;
    }

    .burger {
        margin-right: 22px;
    }

    .burger__text {
        display: none;
    }

    .btn-border {
        font-size: 14px;
    }

    .btn-border svg {
        max-width: 16px;
    }

    .hero__title {
        font-size: 34px;
        letter-spacing: 2.04px;
    }

    .contact .btn-red,
    .ready-for .btn-red,
    .booking__actions .btn-red,
    .hero__content .btn-red,
    .location__actions .btn-red,
    .tonight__actions .btn-red {
        font-size: 20px;
    }

    .line__li {
        font-size: 14px;
    }

    .line__li svg {
        width: 19px;
        height: 20px;
        aspect-ratio: 20 / 19;
    }

    .heading__subtitle {
        font-size: 11px;
        padding-left: 22px;
        margin-bottom: 18px;
    }

    .heading__subtitle--double {
        padding-right: 22px;
    }

    .heading__subtitle::before,
    .heading__subtitle--double::after {
        width: 14px;
    }

    .tonight {
        padding: 75px 0;
    }

    .tonight__wrap {
        gap: 22px;
    }

    .location-section .heading__title,
    .booking .heading__title,
    .faq .heading__title,
    .location .heading__title,
    .review .heading__title,
    .atmosphere .heading__title,
    .price .heading__title,
    .heading__title {
        font-size: 48px;
        margin-bottom: 18px;
        letter-spacing: 2.88px;
    }

    .ready-for .heading__text,
    .choose-day .heading__text,
    .faq .heading__text,
    .price .heading__text,
    .packages-section .heading__text,
    .heading__text {
        font-size: 16px;
        max-width: 290px;
    }

    .tonight__mark {
        gap: 8px;
        margin: 0;
    }

    .tonight__mark img {
         width: 17px;
    }

    .tonight__mark span {
        font-size: 14px;
    }

    .schedule-card__time {
        font-size: 16px;
        padding: 12px 9px 12px 12px;
    }

    .schedule-card__content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .schedule-card__content p {
        font-size: 12px;
    }

    .schedule {
        gap: 10px;
        padding-left: 20px;
        max-width: 450px;
        margin-bottom: 35px;
    }

    .schedule-card::before {
        width: 6px;
        height: 6px;
        left: -23px;
    }

    .schedule-card picture {
        height: 72px;
        min-width: 104px;
        width: 25%;
    }

    .tonight {
        margin-bottom: 80px;
    }

    .tonight__more {
        gap: 6px;
        font-size: 18px;
    }

    .about {
        padding-block: 60px;
        margin-bottom: 80px;
    }

    .about .heading__title {
        flex-flow: column;
        text-align: center;
        gap: 0;
        margin-bottom: 18px;
    }

    .about__grid {
        grid-template-columns: repeat(2, 169px);
        grid-auto-rows: 169px;
        max-width: 350px;
    }

    .about__wrapper {
        padding: 17px 15px 13px;
    }

    .about__card {
        height: 169px;
    }

    .about__count {
        font-size: 48px;
        line-height: 38px;
    }

    .about__count span {
        font-size: 23px;
    }

    .about__icon {
        max-width: 24px;
        margin-bottom: 12px;
    }

    .about__title {
        font-size: 14px;
    }

    .why-section {
        margin-bottom: 80px;
    }

    .faq .heading,
    .price .heading,
    .packages-section .heading,
    .why-section .heading {
        margin-bottom: 22px;
    }

    .contact .heading__title,
    .why-section .heading__title {
        display: block;
        margin: 0 auto 18px;
        max-width: 280px;
    }

    .price .heading__subtitle,
    .why-section .heading__subtitle {
        padding-right: 22px;
        margin-bottom: 18px;
    }

    .why-section .heading__text {
        max-width: 290px;
    }

    .review .heading__title,
    .price .heading__title,
    .price .heading__subtitle,
    .packages-section .heading__title,
    .packages-section .heading__subtitle {
        margin-bottom: 18px;
    }

    .features__wrap {
        width: 930px;
    }

    .features__item {
        height: 415px;
    }

    .features__item:hover, .features__item.active {
        width: 234px;
    }

    .features__content h3 {
        font-size: 20px;
    }

    .features__content span {
        font-size: 12px;
    }

    .packages-section {
        padding-block: 105px 55px;
    }

    .package-card {
        max-width: 350px;
    }

    .package-card img {
        height: 290px;
    }

    .section-btn {
        font-size: 18px;
        padding: 5px 6px;
    }

    .package-card__body {
        width: 284px;
        padding: 14px 12px;
    }

    .package-card__body h3 {
        font-size: 18px;
    }

    .package-card__body span {
        font-size: 18px;
    }

    .package-card__link {
        font-size: 16px;
        max-width: 170px;
    }

    .price__grid {
        gap: 12px;
    }

    .price__link-title {
        font-size: 24px;
    }

    .price__text {
        font-size: 14px;
        max-width: 140px;
    }

    .price__price-item {
        font-size: 12px;
    }

    .price__price-item span {
        font-size: 24px;
        padding-inline: 4px;
    }

    .price__grid  {
        margin-bottom: 24px;
    }

    .price {
        margin-block-end: 80px;
        padding-top: 65px;
    }

    .atmosphere {
        padding-block: 100px 75px;
        margin-bottom: 80px;
    }

    .signature {
        margin-bottom: 80px;
    }

    .signature__wrap {
        height: 486px;
    }

    .gallery {
        grid-template:
            'item-3 item-3' 600px
            'item-1 item-4' 188px
            'item-2 item-5' 188px / 1fr 1fr;
        gap: 12px;
    }

    .review {
        margin-bottom: 80px;
        padding-block: 45px;
    }

    .review .heading {
        margin-bottom: 26px;
    }

    .review__wrap {
        gap: 24px;
    }

    .review__rating {
        gap: 8px;
    }

    .review__icon {
        width: 64px;
        height: 64px;
    }

    .review__content h5 {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .review__grade {
        font-size: 20px;
        gap: 8px;
        letter-spacing: 0.6px;
    }

    .review__stars li {
        width: 12px;
        height: 12px;
    }

    .review__text {
        font-size: 10px;
        letter-spacing: 0.3px;
        margin-bottom: 5px;
    }

    .review__link {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .review__link svg {
        width: 12px;
        height: 12px;
    }

    .testimonials {
        height: auto;
    }

    .testimonials .swiper-controls {
        display: none;
    }

    .testimonials .swiper-wrapper {
        gap: 12px;
        height: 100%;
    }

    .testimonials__item {
        max-width: 450px;
        min-height: 130px;
        padding: 23px 20px 16px 46px;
        gap: 7px;
    }

    .testimonials__item::before {
        top: 14px;
        left: 14px;
        font-size: 50px;
        line-height: 50px;
    }

    .testimonials__text {
        font-size: 16px;
    }

    .testimonials__user {
        grid-template-columns: 30px 1fr;
    }

    .testimonials__icon {
        width: 30px;
        height: 30px;
    }

    .testimonials__title {
        font-size: 12px;
    }

    .testimonials__subtitle {
        font-size: 10px;
    }

    .map {
        gap: 16px;
        margin-bottom: 80px;
    }

    #map {
        height: 230px;
        margin: 0 20px;
        width: calc(100% - 40px);
    }

    .location {
        position: relative;
        top: 0;
        width: 100%;
        padding: 0 20px;
        transform: translateY(0);
        background: transparent;
        margin: 0 auto;
    }

    .location .heading {
        margin-bottom: 30px;
    }

    .location__address-content img {
        width: 13px;
    }

    .location__address-content {
        font-size: 22px;
    }

    .location__address {
        margin-bottom: 24px;
    }

    .location__schedules {
        padding: 20px;
        border: 1px solid #FFF;
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.00);
        margin-bottom: 24px;
    }

    .location__li {
        position: relative;
    }

    .location__li:not(:last-child) {
        margin-bottom: 32px;
    }

    .location__li:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -16px;
        display: flex;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .14);
    }

    .location__position figure {
        width: 36px;
        height: 36px;
    }

    .location__position {
        font-size: 16px;
    }

    .location__time {
        font-size: 14px;
        padding: 8px;
        max-width: 94px;
    }

    .location__actions {
        gap: 16px;
        margin-bottom: 12px;
    }

    .location__text {
        font-size: 10px;
    }

    .btn-border {
        gap: 10px;
        padding: 15px 30px;
        margin: 0 auto;
        width: 100%;
    }

    .location__actions .btn-red {
        max-width: 100%;
        width: 100%;
    }

    .faq {
        padding-block: 178px;
        margin: 0;
    }

    .faq .heading__text {
        margin: 0 auto;
    }

    .accordion {
        padding: 14px;
    }

    .accordion__summary::before {
        font-size: 18px;
        padding-right: 12px;
    }

    .accordion__summary {
        align-items: center;
        gap: 12px;
    }

    .accordion__title {
        max-width: calc(100% - 62px);
        font-size: 16px;
    }

    .accordion__content {
        padding-top: 10px;
        padding-left: 22px;
        font-size: 14px;
    }

    .accordion__icon {
        width: 18px;
        height: 18px;
    }

    .accordion__icon::before {
        width: 9px;
        height: 1px;
    }

    .accordion__icon::after {
        width: 1px;
        height: 9px;
    }

    .faq__accordions {
        max-width: 450px;
        gap: 14px;
    }

    .booking {
        padding-block: 400px 75px;
        margin-bottom: 80px;
    }

    .booking .heading {
        margin-bottom: 24px;
    }

    .booking .heading__text {
        max-width: 290px;
    }

    .booking__actions {
        flex-flow: column;
        max-width: 450px;
    }

    .booking__li {
        font-size: 14px;
        gap: 12px;
        max-width: 90px;
        text-align: center;
    }

    .booking::after {
        width: 100%;
        height: 400px;
        right: 0;
        left: 0;
        transform: translateX(0);
    }

    .booking__actions .btn-border,
    .location__actions .btn-border {
        font-size: 20px;
    }

    .booking__actions {
        gap: 16px;
    }

    .ready-for__actions,
    .booking__actions .btn-red {
        padding-block: 15px;
    }

    .footer {
        padding-block: 30px 15px;
    }

    .footer__logo {
        max-width: 236px;
    }

    .footer__content {
        gap: 20px;
    }

    .footer__contacts {
        gap: 16px;
    }

    .footer__wrapper--content {
        gap: 17px;
    }

    .footer__contacts-block {
        gap: 8px;
    }

    .footer__contacts-block h5 {
        font-size: 12px;
    }

    .footer__contacts-block address,
    .footer__contacts-block a {
        font-size: 18px;
    }

    .footer__text {
        gap: 7px;
        font-size: 14px;
    }

    .footer__wrapper {
        min-height: 410px;
        padding: 20px;
        gap: 12px;
    }

    .footer__wrap {
        gap: 16px;
    }

    .footer__times {
        gap: 12px;
        padding-inline: 0;
    }

    .footer__links {
        gap: 10px;
    }

    .footer__time-line {
        font-size: 18px;
        gap: 16px;
    }

    .footer__links-block h4 {
        font-size: 20px;
    }

    .footer__links-block h4::after {
        max-width: 23px;
    }

    .footer__links a {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .footer__links a svg {
        width: 20px;
        height: 20px;
    }

    .footer__underline {
        padding: 20px;
    }

    .button-up {
        right: 20px;
        bottom: 40px;
        width: 48px;
        height: 48px;
    }

    .footer__underlinks {
        flex-flow: wrap;
        gap: 12px;
    }

    .footer__underlinks a:not(:last-child)::after {
        display: none;
    }

    .footer__underlinks a {
        width: calc(50% - 6px);
    }

    .footer__underlinks a:nth-child(even) {
        justify-content: flex-end;
    }

    .footer__copyright {
        font-size: 16px;
    }

    .choose-day {
        margin-bottom: 50px;
    }

    .choose-day__list li {
        font-size: 16px;
        padding: 10px 12px 10px 37px;
    }

    .choose-day__list li::before {
        left: 17px;
        width: 6px;
        height: 6px;
    }

    .choose-day__list li span {
        font-size: 14px;
    }

    .choose-day__info {
        font-size: 14px;
    }

    .choose-day__info svg {
        width: 24px;
        height: 24px;
    }

    .choose-day__tab-wrap {
        width: 528px;
    }

    .choose-day__tab {
        padding: 14px 26px;
        font-size: 14px;
    }

    .ready-for {
        padding-block: 65px;
        margin-bottom: 50px;
    }

    .ready-for .heading {
        margin-bottom: 15px;
    }

    .ready-for .heading__text {
        margin: 0 auto;
    }

    .ready-for__actions {
        flex-flow: column;
        gap: 16px;
        max-width: 450px;
        margin: 0 auto 20px;
    }

    .ready-for__actions .btn-red {
        font-size: 20px;
    }

    .ready-for__actions .btn-border {
        font-size: 18px;
    }

    .ready-for__link {
        font-size: 16px;
    }

    .heading__title mark {
        margin-left: 12px;
    }

    .contact {
        background: none;
        margin-bottom: 80px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .contact__item {
        padding: 20px;
        max-width: 350px;
        margin: 0 auto;
    }

    .location-section {
        margin-bottom: 40px;
    }

    .location-section__wrap-top {
        gap: 10px;
    }

    .location-section .location__address-content {
        font-size: 22px;
        text-align: center;
        align-items: baseline;
    }

    .location__li:not(:last-child)::after {
        bottom: -13px;
    }

    .location-section .location__address-content img {
        transform: translateY(3px);
    }

    .location-section .location__li {
        padding: 20px;
    }

    .location-section .location__time {
        max-width: 100%;
        font-size: 14px;
    }

    .location-section .location__content {
        font-size: 14px;
    }

    .location-section .location__actions {
        flex-flow: column;
        gap: 14px;
        margin-bottom: 20px;
    }

    .location-section .location__text {
        margin-bottom: 25px;
        font-size: 14px;
    }

    .location-section__header {
        gap: 6px;
    }

    .location-section__title,
    .location-section__info p {
        font-size: 14px;
    }

    .menu {
        padding: 132px 15px 45px;
        background: url('./assets/images/header/background.png') no-repeat 50% 63% / 390px 300px, #000;
    }

    .nav {
        gap: 28px;
    }

    .menu-divider {
        display: none;
    }

    .menu__links {
        gap: 24px 8px;
    }

    .menu__link {
        font-size: 18px;
        gap: 4px;
    }

    .menu__link:last-child svg {
        width: 20px;
        height: 20px;
    }

    .menu__footer {
        padding-top: 32px;
        gap: 50px;
    }

    .nav a {
        font-size: 24px;
    }
}

@media (max-width: 369px) {
    .ready-for__actions,
    .booking__actions .btn-red,
    .location__actions .btn-red,
    .btn-red {
        padding-inline: 30px;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}