@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: TTDrugs;
  font-display: swap;
  src: url("../fonts/TTDrugs-Light.woff2") format("woff2"), url("../fonts/TTDrugs-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: TTDrugs;
  font-display: swap;
  src: url("../fonts/TTDrugs-Regular.woff2") format("woff2"), url("../fonts/TTDrugs-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: TTDrugs;
  font-display: swap;
  src: url("../fonts/TTDrugs-Bold.woff2") format("woff2"), url("../fonts/TTDrugs-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

:root {
  --light: #DED5C9;
  --white: #FFFFFF;
  --black: #000000;
  --dark: #232323;
  --grey: #3D3D3D;
  --primary: #8DA07F;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font: 400 24px/1.4 Inter;
  color: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

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

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  background-color: var(--light, #DED5C9);
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}

input,
textarea,
select {
  width: 100%;
  padding: 24px;
  border: 0;
  color: var(--white, #FFFFFF);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  font: 400 1em/1 Inter;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: var(--white, #FFFFFF);
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: var(--white, #FFFFFF);
}

textarea {
  resize: none;
  height: 90px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--white, #FFFFFF);
  background: url(../img/down.svg) rgba(0, 0, 0, 0.5) no-repeat top 55% right 24px;
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 24px;
  border-radius: 8px;
  border: none;
  background-color: transparent;
  overflow: hidden;
  transition: color 0.3s ease-out;
}

.button svg {
  position: relative;
  z-index: 1;
}

.button path {
  transition: stroke 0.3s ease-out;
}

.button span {
  position: relative;
  z-index: 1;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 100%;
  background-color: white;
  transition: width 0.3s ease-out, background-color 0.3s ease-out;
}

.button:hover {
  cursor: pointer;
  color: var(--black, #000000);
}

.button:hover::before {
  width: 100%;
}

.button:hover path {
  stroke: var(--black, #000000);
}

.button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.button-primary {
  color: var(--white, #FFFFFF);
  background-color: var(--primary, #8DA07F);
}

.button-dark {
  color: var(--white, #FFFFFF);
  background-color: var(--black, #000000);
}

.button-light {
  border: 1px solid var(--white, #FFFFFF);
  color: var(--white, #FFFFFF);
}

h1 {
  font: 400 96px/1 TTDrugs;
}

h2 {
  font: 400 48px/1 TTDrugs;
}

h3 {
  font: 400 36px/1 TTDrugs;
}

h4 {
  font: 400 24px/1 TTDrugs;
}

h5 {
  font: 400 20px/1 TTDrugs;
}

h6 {
  font: 400 18px/1 TTDrugs;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: all 0.2s ease-in-out;
}

.header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

.header__logo {
  position: relative;
  padding: 0 32px;
  padding-bottom: 18px;
  border-radius: 0 0 20px 20px;
  background-color: var(--light, #DED5C9);
  z-index: 1;
}

.header__logo img {
  width: 290px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
}

.header__nav.open {
  left: 0;
}

.header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__menu li {
  width: 100%;
}

.header__menu li:first-child a {
  border-top: 1px solid #D0C4B4;
}

.header__menu a {
  display: block;
  width: 100%;
  padding: 24px;
  border-bottom: 1px solid #D0C4B4;
  text-align: center;
}

.header__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
}

.header__box span {
  color: var(--primary, #8DA07F);
  font-size: 18px;
  font-family: TTDrugs;
}

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

.header__socials a {
  display: block;
  width: 48px;
  height: 48px;
  padding: 3px;
  border: 1px solid rgba(90, 90, 90, 0.1);
  border-radius: 8px;
}

.header__socials a svg {
  width: 100%;
  height: 100%;
}

.header__close {
  position: absolute;
  top: 18px;
  right: 16px;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: var(--primary, #8DA07F);
  cursor: pointer;
}

.header__burger {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: var(--primary, #8DA07F);
  cursor: pointer;
}

.header__burger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 2px;
  width: 19px;
  pointer-events: none;
  background-color: var(--light, #DED5C9);
}

.header__burger span:nth-child(1) {
  top: 18px;
}

.header__burger span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.header__burger span:nth-child(3) {
  bottom: 18px;
}

.footer {
  padding-bottom: 20px;
  margin-bottom: 140px;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 8px;
  color: var(--dark, #232323);
  background-color: var(--white, #FFFFFF);
  font-size: 18px;
  line-height: 1;
}

.footer__container a {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  transition: width 0.3s ease-out;
}

.footer__container a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--dark, #232323);
  transition: width 0.3s ease-out;
}

.footer__container a:hover::before {
  width: 100%;
}

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

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-pad {
  padding: 60px 0;
}

.section-pad-top {
  padding-top: 60px;
}

.section-pad-bottom {
  padding-bottom: 60px;
}

.section-hidden {
  overflow: hidden;
}

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

.green {
  color: var(--primary, #8DA07F);
}

.widget {
  position: fixed;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.widget__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 10px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.widget__item svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: exclusion;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 9;
  background-color: rgba(77, 76, 74, 0.3);
  -webkit-backdrop-filter: blur(40);
          backdrop-filter: blur(40);
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 567px;
  width: calc(100% - 32px);
  padding: 32px;
  border-radius: 8px;
  background-color: rgb(77, 76, 74);
}

.modal__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--white, #FFFFFF);
}

.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background-color: rgba(246, 246, 246, 0.5);
}

.modal__close svg {
  width: 32px;
  min-width: 32px;
  height: 32px;
  pointer-events: none;
}

.modal__close:hover {
  cursor: pointer;
}

.modal__caption {
  max-width: 470px;
  margin-bottom: 60px;
  font-family: BebasNeue;
  font-size: 32px;
}

.modal__form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal__form button {
  width: 100%;
}

.hero {
  position: relative;
  padding: 20px;
  padding-bottom: 0;
}

.hero__video {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 8px;
  overflow: hidden;
}

.hero__video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.3) 2.73%, rgba(0, 0, 0, 0) 89.23%);
}

.hero__video video {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 20px);
  padding: 60px 16px;
  color: var(--white, #FFFFFF);
  text-align: center;
  z-index: 1;
}

.hero__title {
  max-width: 865px;
  margin-bottom: 18px;
}

.hero__desc {
  max-width: 400px;
  margin-bottom: 24px;
  font-family: TTDrugs;
  line-height: 1;
}

.hero__button {
  border-radius: 200px;
}

.hero__button_1 {
  padding: 16px 24px;
  color: var(--black, #000000);
  background-color: var(--white, #FFFFFF);
}

.hero__button_2 {
  padding: 16px;
  font-size: 18px;
}

.hero__wrap {
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 200px;
  background-color: rgba(245, 244, 232, 0.5);
  z-index: 3;
}

.hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 48px;
  padding: 8px 12px;
  border-radius: 16px;
  background-color: #8C9F7F;
}

.hero__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  white-space: nowrap;
}

.hero__menu a {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  transition: width 0.3s ease-out;
}

.hero__menu a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--black, #000000);
  transition: width 0.3s ease-out;
}

.hero__menu a:hover::before {
  width: 100%;
}

.stock {
  position: relative;
}

.stock::before,
.stock::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
}

.stock::before {
  left: 15%;
  width: 200px;
  height: 220px;
  background: url(../img/back-1.png) center/contain no-repeat;
}

.stock::after {
  right: -60px;
  width: 340px;
  height: 320px;
  background: url(../img/back-1.png) center/contain no-repeat;
}

.stock__title {
  max-width: 410px;
  margin: 0 auto;
  margin-bottom: 18px;
}

.stock__desc {
  max-width: 785px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.stock__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  border-radius: 8px;
  color: var(--white, #FFFFFF);
  font-family: TTDrugs;
  overflow: hidden;
}

.stock__card img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.stock__caption {
  padding: 16px;
  font-size: 28px;
  background-color: rgba(0, 0, 0, 0.2);
}

.stock__text {
  margin-top: auto;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.2);
}

.hall {
  position: relative;
}

.hall::before,
.hall::after {
  content: "";
  position: absolute;
  top: 0;
  width: 280px;
  height: 300px;
  z-index: -1;
}

.hall::before {
  left: 15%;
  background: url(../img/back-4.png) center/contain no-repeat;
}

.hall::after {
  top: -3%;
  right: 15%;
  background: url(../img/back-5.png) center/contain no-repeat;
}

.hall__title {
  max-width: 430px;
  margin: 0 auto;
  margin-bottom: 12px;
}

.hall__desc {
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.hall__wrap {
  position: relative;
  height: 90vh;
  color: var(--white, #FFFFFF);
  overflow: hidden;
}

.hall__slider {
  height: 100%;
}

.hall__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 60px;
  border-radius: 12px;
  overflow: hidden;
}

.hall__slide img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

.hall__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: -1;
}

.hall__slide .hall__caption {
  font-size: 48px;
}

.hall__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hall__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 670px;
}

.hall__txt span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 20px;
}

.hall__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hall__list li {
  padding: 16px;
  border-radius: 20px;
  background-color: rgba(37, 37, 37, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  font-size: 18px;
  font-family: TTDrugs;
  font-weight: 500;
  line-height: 1;
}

.hall__thumb {
  position: absolute;
  bottom: 40px;
  width: 100%;
  height: 200px;
}

.hall__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  padding: 20px 10px;
  border-radius: 12px;
  opacity: 0.4;
  overflow: hidden;
}

.hall__card img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

.hall__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hall__card .hall__caption {
  font-size: 22px;
}

.hall__card.swiper-slide-thumb-active {
  opacity: 1;
}

.hall__person {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: rgba(37, 37, 37, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  font-size: 18px;
  font-weight: 500;
  font-family: TTDrugs;
  line-height: 1;
}

.hall__arrows {
  position: absolute;
  bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  z-index: 1;
}

.hall-arrow {
  width: 68px;
  height: 68px;
}

.hall-arrow.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hall-arrow svg {
  width: 48px;
  min-width: 48px;
  height: 48px;
  pointer-events: none;
}

.hall-arrow:hover {
  cursor: pointer;
}

.menu {
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  top: 5%;
  width: 220px;
  height: 240px;
  z-index: -1;
}

.menu::before {
  top: 8%;
  left: 15%;
  background: url(../img/back-7.png) center/contain no-repeat;
}

.menu::after {
  right: 15%;
  background: url(../img/back-8.png) center/contain no-repeat;
}

.menu__title {
  max-width: 385px;
  margin: 0 auto;
  margin-bottom: 12px;
}

.menu__desc {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.menu__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.menu__img {
  height: 345px;
  border-radius: 8px;
  overflow: hidden;
}

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

.menu__img:first-child,
.menu__img:last-child {
  grid-column: span 2;
}

.menu__button {
  width: 100%;
}

.about {
  position: relative;
}

.about__container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  padding: 40px;
}

.about__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

.about__video video {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__logo {
  width: 290px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.about__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about__wrap {
  position: relative;
  height: 370px;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.about__txt {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  font-family: TTDrugs;
  opacity: 0.5;
  font-size: 36px;
  color: var(--white, #FFFFFF);
  transition: opacity 0.3s, transform 0.3s;
  will-change: transform;
}

.about__txt.active {
  opacity: 1;
}

.club__container {
  display: grid;
  grid-template-columns: calc(60% - 20px) 40%;
  gap: 20px;
}

.club__col {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 16px;
  background-color: #E4DED1;
  font-family: TTDrugs;
}

.club__subtitle {
  margin-bottom: 18px;
}

.club__title {
  margin-bottom: 24px;
}

.club__desc {
  max-width: 720px;
  margin: 0 auto;
}

.club__box {
  max-width: 580px;
  margin: auto;
}

.club__info {
  margin-bottom: 24px;
}

.club__button {
  margin: 0 auto;
}

.club__img {
  position: relative;
  height: 90vh;
  border-radius: 16px;
  background-color: var(--primary, #8DA07F);
}

.club__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 440px;
  height: 420px;
  background: url(../img/back-9.png) center/contain no-repeat;
}

.club__img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  z-index: 1;
}

.reviews {
  position: relative;
}

.reviews::before,
.reviews::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
}

.reviews::before {
  left: 0;
  width: 200px;
  height: 310px;
  background: url(../img/back-10.png) center/contain no-repeat;
}

.reviews::after {
  right: 0;
  width: 180px;
  height: 270px;
  background: url(../img/back-11.png) center/contain no-repeat;
}

.reviews__title {
  max-width: 385px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.reviews__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  color: var(--grey, #3D3D3D);
  background-color: #DADADA;
}

.reviews__author {
  font-size: 18px;
  text-align: end;
}

.reviews .swiper {
  overflow: visible;
}

.contacts {
  margin-bottom: 8px;
}

.contacts__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  color: var(--white, #FFFFFF);
}

.contacts__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

.contacts__video video {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}

.contacts__title {
  margin-bottom: 60px;
}

.contacts__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.contacts__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}

.contacts__card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 500;
}

.contacts__card a {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  font-size: 28px;
  font-family: TTDrugs;
}

.contacts__card a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--white, #FFFFFF);
  transition: width 0.3s ease-out;
}

.contacts__card a:hover::before {
  width: 100%;
}

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

.contacts__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}

.contacts__socials a svg {
  width: 22px;
  min-width: 22px;
  height: 22px;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.contacts__socials a:hover svg {
  transform: scale(1.2);
}

.page-error__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 46px;
  min-height: calc(100vh - 78px);
  padding: 60px 0;
}

.page-error__title {
  display: flex;
  align-items: center;
  gap: 60px;
  color: rgb(55, 55, 55);
  font-family: TTDrugs;
  font-size: 400px;
  line-height: 300px;
}

.page-error__title img {
  width: 238px;
  height: 374px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 200px;
}

.page-error__txt {
  color: rgba(0, 0, 0, 0.5);
  font-family: TTDrugs;
  font-size: 24px;
  line-height: 1;
}

.page-error__button {
  min-width: 150px;
  font-size: 16px;
}

.pulse {
  position: relative;
  animation: pulse 1.5s linear infinite;
}


@media (max-width: 1440px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 64px;
  }

  .stock .swiper {
    overflow: visible;
  }
}

@media (max-width: 1400px) {
  .menu__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .about__txt {
    font-size: 24px;
  }

  .contacts__container {
    padding: 40px;
  }

  .contacts__title {
    margin-bottom: 40px;
  }

  .contacts__card span {
    font-size: 18px;
  }

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

@media (max-width: 980px) {
  html {
    font-size: 20px;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .header__nav {
    position: absolute;
    top: 0;
    left: -100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 320px;
    padding-bottom: 40px;
    padding-top: 100px;
    background-color: rgb(222, 213, 201);
    transition: left 0.3s ease-out;
  }

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

  .header__burger {
    display: block;
  }

  .modal__caption {
    margin-bottom: 48px;
    font-size: 22px;
  }

  .hero__container {
    min-height: calc(80vh - 16px);
  }

  .hero__button_2 {
    flex-grow: 1;
    font-size: 16px;
  }

  .hero__wrap {
    gap: 16px;
    width: calc(100% - 64px);
    padding: 8px 16px;
  }

  .hero__nav {
    display: none;
  }

  .hero {
    padding: 16px;
    padding-bottom: 0;
  }

  .stock {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .stock::before {
    left: 0;
    width: 74px;
    height: 80px;
  }

  .stock::after {
    right: 0;
    width: 94px;
    height: 100px;
  }

  .hall {
    overflow: hidden;
  }

  .hall::before {
    content: none;
  }
  
  .hall::after {
    right: 0;
    top: 0;
    height: 94px;
    width: 88px;
  }

  .hall__wrap {
    height: auto;
    overflow: visible;
  }

  .hall__slider {
    height: 600px;
    margin-bottom: 12px;
  }

  .hall__slide .hall__caption {
    font-size: 32px;
  }

  .hall__slide {
    padding: 40px;
  }

  .hall__info {
    height: 100%;
  }

  .hall__txt {
    font-size: 18px;
  }

  .hall__txt span {
    font-size: 18px;
  }

  .hall__list li {
    padding: 12px;
    font-size: 16px;
  }

  .hall__thumb .swiper {
    overflow: visible;
  }

  .hall__thumb {
    position: relative;
    bottom: unset;
  }

  .hall__card .hall__caption {
    font-size: 18px;
  }

  .hall__person {
    font-size: 16px;
  }

  .hall__arrows {
    display: none;
  }

  .menu::before {
    left: 0;
    width: 78px;
    height: 84px;
  }

  .menu::after {
    right: 0;
    width: 100px;
    height: 108px;
  }

  .menu__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .menu__img:first-child,
  .menu__img:last-child {
    grid-column: unset;
  }

  .menu__img {
    height: 210px;
  }

  .menu {
    padding-top: 0;
  }

  .about__txt {
    font-size: 20px;
  }

  .about {
    padding-top: 0;
  }

  .club__container {
    grid-template-columns: 100%;
  }

  .club__col {
    padding: 24px;
  }

  .club__img {
    height: 490px;
  }

  .club__img::before {
    width: 244px;
    height: 235px;
  }

  .reviews::before {
    left: 0;
    width: 64px;
    height: 90px;
  }

  .reviews::after {
    right: 0;
    width: 64px;
    height: 90px;
  }

  .contacts__container {
    padding: 30px;
  }

  .contacts__title {
    margin-bottom: 30px;
  }

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

  .contacts__card a {
    font-size: 20px;
  }

  .contacts__card {
    padding: 20px;
  }

  .widget {
    display: none;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 18px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  .header__logo img {
    width: 200px;
    height: 42px;
  }

  .header__logo {
    padding: 0 24px;
    padding-bottom: 12px;
  }

  .footer {
    padding-bottom: 20px;
    margin-bottom: 90px;
  }

  .modal__container {
    padding: 26px;
    padding-top: 46px;
  }

  .modal__caption {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .hero__wrap {
    bottom: 20px;
    gap: 8px;
  }

  .stock {
    padding-bottom: 0;
  }

  .stock__title {
    margin-bottom: 12px;
  }

  .stock__desc {
    margin-bottom: 32px;
  }

  .hall {
    overflow: hidden;
  }

  .hall__desc {
    margin-bottom: 32px;
  }

  .hall__slide .hall__caption {
    font-size: 24px;
  }

  .hall__slide {
    padding: 24px;
    border-radius: 8px;
  }

  .hall__txt {
    margin-top: auto;
    font-size: 16px;
  }

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

  .hall__list li {
    padding: 8px;
    font-size: 14px;
  }

  .hall__thumb {
    height: 150px;
  }

  .hall__card .hall__caption {
    font-size: 16px;
  }

  .hall__card {
    padding: 16px;
    border-radius: 8px;
  }

  .hall__person {
    padding: 8px;
    font-size: 14px;
  }

  .menu__desc {
    margin-bottom: 32px;
  }

  .menu__gallery {
    gap: 8px;
  }

  .menu__img {
    height: 135px;
  }

  .about__txt {
    font-size: 18px;
  }

  .club__col {
    padding: 24px 16px;
    border-radius: 8px;
  }

  .club__subtitle {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .club__title {
    margin-bottom: 12px;
  }

  .club__desc {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .club__info {
    font-size: 20px;
  }

  .club__button {
    width: 100%;
  }

  .reviews__title {
    margin-bottom: 32px;
  }

  .reviews__card {
    gap: 20px;
    padding: 16px;
  }

  .reviews__author {
    font-size: 14px;
  }

  .contacts__container {
    padding: 24px 16px;
  }

  .contacts__title {
    margin-bottom: 24px;
  }

  .contacts__cards {
    grid-template-columns: 100%;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
  }

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

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

  .contacts__card {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .header__nav {
    width: 100%;
  }

  .footer__container {
    justify-content: center;
    padding: 16px;
    font-size: 14px;
    text-align: center;
  }

  .contacts__socials {
    justify-content: space-between;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 #FFFFFF;
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}