@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body { 
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
  border-radius: 0;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ol {
  padding-left: 1.3em;
}

ul {
  padding-left: 1.5em;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a {
  color: inherit;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=tel]::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

input[type=tel]::-webkit-textfield-decoration-container {
  display: none;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-clear {
  display: none;
}

::-moz-selection {
  background-color: rgba(243, 215, 244, 0.3882352941);
}

::selection {
  background-color: rgba(243, 215, 244, 0.3882352941);
}

::-moz-selection {
  background-color: rgba(243, 215, 244, 0.3882352941);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
@media (max-width: 1023px) {
  html:has(body.lock) {
    overflow: hidden;
  }
}

body {
  overflow-x: hidden;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  line-height: 1.45;
  font-size: 18px;
  background: #09090B;
  color: #FFFFFF;
  font-style: normal;
}
body.warning-lock {
  overflow: hidden;
}
@media (max-width: 1023px) {
  body {
    font-size: 16px;
  }
  body.lock {
    overflow: hidden;
  }
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: clip;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 1023px) {
  [class*=__container] {
    padding: 0 15px;
  }
}

.header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 24px 0;
}
@media (max-width: 1023px) {
  .header {
    padding: 6px 0;
  }
  .header:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    top: 0;
    background-color: #09090B;
  }
}
.header__container {
  max-width: 1550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1023px) {
  .header__container:after {
    content: "";
    width: 50px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1023px) {
  .header__burger {
    display: block;
    position: relative;
    z-index: 8;
    width: 50px;
    height: 50px;
  }
  .header__burger:after, .header__burger:before {
    content: "";
    position: absolute;
    height: 2px;
    background-color: #b6bdc5;
    border-radius: 9px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 26px;
    left: 12px;
    top: 19px;
  }
  .header__burger:after {
    top: auto;
    bottom: 19px;
    width: 13px;
  }
  .header__burger.active:after {
    bottom: 21px;
    width: 26px;
  }
  .header__burger.active:before {
    top: 21px;
  }
}
.header__logo {
  position: relative;
  z-index: 8;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 96px;
          flex: 0 0 96px;
  width: 96px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.header__logo img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.7;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .menu {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    position: fixed;
    z-index: 6;
    left: 0%;
    width: 100%;
    height: 100%;
    top: -100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #09090B;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    padding: 82px 25px 30px;
    overflow-y: auto;
  }
  .menu.open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    top: 0;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding-left: 0;
  gap: 40px;
}
@media (max-width: 1200px) {
  .menu__list {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
    gap: 0;
  }
}
.menu__item {
  position: relative;
}
@media (max-width: 1023px) {
  .menu__item {
    border-top: 1px solid rgba(182, 189, 197, 0.1215686275);
  }
  .menu__item:last-child {
    border-bottom: 1px solid rgba(182, 189, 197, 0.1215686275);
  }
}
.menu__link {
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.menu__link.with-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.menu__link.with-sublist:after {
  content: "";
  display: inline-block;
  width: 7.2px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7.2px;
          flex: 0 0 7.2px;
  height: 7.2px;
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: -2px;
}
.menu__link.active {
  color: #af2f45;
}
.menu__link.active:after {
  border-color: #af2f45;
}
@media (max-width: 1200px) {
  .menu__link {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .menu__link {
    padding: 20px 0;
    display: block;
  }
}
@media (any-hover: hover) {
  .menu__item:hover .menu__link {
    color: #af2f45;
  }
  .menu__item:hover .menu__link:after {
    border-color: #af2f45;
    margin-top: 3px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media (max-width: 1023px) {
  .menu__item.active .menu__link {
    color: #af2f45;
  }
  .menu__item.active .menu__link:after {
    border-color: #af2f45;
    margin-top: 3px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.menu__sublist {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  list-style: none;
  padding-left: 0;
  position: absolute;
  top: calc(100% + 25px);
  left: -16px;
  width: 212px;
  padding: 12px 8px;
  border-radius: 0 0 8px 8px;
  -webkit-box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.15);
  border-top: 2px solid #af2f45;
  background-color: #141d21;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.menu__sublist:before {
  content: "";
  position: absolute;
  top: -25px;
  height: 25px;
  width: 100%;
  left: 0;
}
@media (any-hover: hover) {
  .menu__item:hover .menu__sublist {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    top: calc(100% + 20px);
  }
}
@media (max-width: 1023px) {
  .menu__sublist {
    position: static;
    max-height: 0;
    padding: 0;
    border: none;
    background: none;
    width: 100%;
  }
  .menu__item.active .menu__sublist {
    display: block;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}
.menu__sublist a {
  display: block;
  font-size: 16px;
  padding: 12px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.menu__sublist a.active {
  color: #af2f45;
}
@media (max-width: 1023px) {
  .menu__sublist a {
    color: #b6bdc5;
    padding: 20px 0;
    border-bottom: 1px solid rgba(182, 189, 197, 0.1215686275);
  }
  .menu__sublist a:last-child {
    border-bottom: none;
  }
  .menu__sublist a:first-child {
    padding-top: 0;
  }
}
@media (any-hover: hover) {
  .menu__sublist a:hover {
    color: #af2f45;
  }
}
.menu__book {
  border: 1px solid #FFFFFF;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 16px;
}
@media (max-width: 1100px) {
  .menu__book {
    padding: 11px 18px;
  }
}
@media (any-hover: hover) {
  .menu__book:hover {
    background-color: #FFFFFF;
    color: #141d21;
  }
}

.contacts {
  position: relative;
  padding: 120px 0 100px;
}
@media (max-width: 1023px) {
  .contacts {
    padding: 120px 0 50px;
  }
}
@media (max-width: 767px) {
  .contacts {
    padding: 100px 0 40px;
  }
}
.contacts__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.contacts__bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(9, 9, 11, 0.3803921569)), to(#09090B));
  background: linear-gradient(-90deg, rgba(9, 9, 11, 0.3803921569) 0%, #09090B 100%);
}
.contacts__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.contacts__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .contacts__container {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contacts__overtitle {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 52px;
  font-weight: 400;
  color: #af2f45;
  line-height: 1;
  margin-bottom: -10px;
}
.contacts__title {
  letter-spacing: -3px;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 82px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .contacts__title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .contacts__title {
    font-size: 41px;
  }
}
.contacts__text {
  max-width: 620px;
  color: #C6C6C6;
}

.main {
  position: relative;
  padding: 100px 0 60px;
}
@media (max-width: 1023px) {
  .main {
    padding: 120px 0 50px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 100px 0 40px;
  }
}
.main__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.main__bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at top center, rgba(9, 9, 11, 0) 0%, #09090B 100%);
}
.main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
@media (max-width: 767px) {
  .main__bg img {
    -o-object-position: 60% center;
       object-position: 60% center;
  }
}
.main__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 1400px;
}
.main__container > * {
  max-width: 600px;
}
@media (max-width: 1023px) {
  .main__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .main__container > * {
    max-width: 550px;
  }
}
.main__overtitle {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: -10px;
}
.main__title {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 82px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .main__title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .main__title {
    font-size: 41px;
  }
}
.main__text {
  color: #C6C6C6;
}
.main__book {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #af2f45;
  border: 1px solid #af2f45;
  text-align: center;
  font-weight: 500;
  padding: 15px 45px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1023px) {
  .main__book {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (any-hover: hover) {
  .main__book:hover {
    background-color: #af2f45;
    color: #FFFFFF;
  }
}
.main__stats {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.main__stats hr {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1px;
          flex: 0 0 1px;
  width: 1px;
  background-color: #2F2D2D;
  display: block;
}
.main__stats p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main__stats p b {
  font-size: 62px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
}
.main__stats p small {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #aeaeae;
}
@media (max-width: 767px) {
  .main__stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .main__stats hr {
    display: none;
  }
  .main__stats p {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .main__stats p b {
    font-size: 52px;
  }
}

.about {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
}
.about__bg1 {
  position: absolute;
  left: 0;
  z-index: 0;
  top: 0px;
  width: 285px;
  pointer-events: none;
}
.about__bg1 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1100px) {
  .about__bg1 {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .about__bg1 {
    width: 90px;
  }
}
.about__bg2 {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 200px;
  pointer-events: none;
}
.about__bg2 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1100px) {
  .about__bg2 {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .about__bg2 {
    width: 90px;
  }
}
.about__dec1 {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 163px;
  pointer-events: none;
}
.about__dec1 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1023px) {
  .about__dec1 {
    width: 161px;
    top: 0%;
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}
@media (max-width: 767px) {
  .about__dec1 {
    width: 90px;
  }
}
.about__dec2 {
  position: absolute;
  left: 0;
  z-index: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 166px;
  pointer-events: none;
}
.about__dec2 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1023px) {
  .about__dec2 {
    width: 109px;
    top: auto;
    bottom: 0%;
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}
@media (max-width: 767px) {
  .about__dec2 {
    width: 80px;
  }
}
.about__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 1023px) {
  .about__container {
    gap: 60px;
  }
}
.about__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  row-gap: 30px;
}
.about__stats p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 13px;
  color: #C6C6C6;
  text-transform: uppercase;
}
.about__stats p b {
  color: #af2f45;
  font-size: 62px;
  font-weight: 500;
  font-family: "Montserrat Alternates", sans-serif;
}
@media (max-width: 767px) {
  .about__stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 30px;
  }
  .about__stats p {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__stats p b {
    font-size: 52px;
  }
}
.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1100px) {
  .about__wrapper {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .about__wrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    grid-template-columns: 1fr;
  }
}
.about__image {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.about__image:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  border: 3px solid #af2f45;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  top: 0;
}
@media (max-width: 1023px) {
  .about__image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.about__img {
  position: relative;
  z-index: 2;
  width: 80%;
  height: 80%;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .about__img {
    width: 80%;
    height: 90%;
  }
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .about__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
@media (min-width: 1023.1px) {
  .about__wrapper:nth-child(even) .about__content {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.about__overtitle {
  font-size: 52px;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  color: #af2f45;
  margin-bottom: -15px;
}
@media (max-width: 767px) {
  .about__overtitle {
    font-size: 42px;
  }
}
.about__name {
  text-wrap: balance;
  font-size: 46px;
  font-weight: 500;
  font-family: "Montserrat Alternates", sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .about__name {
    font-size: 35px;
  }
}
.about__text {
  color: #C6C6C6;
}
.about__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #af2f45;
  border: 1px solid #af2f45;
  text-align: center;
  font-weight: 500;
  padding: 15px 45px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1023px) {
  .about__button {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (any-hover: hover) {
  .about__button:hover {
    background-color: #af2f45;
    color: #FFFFFF;
  }
}

.gallery {
  background-color: #af2f45;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1023px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.gallery__item {
  padding: 1px;
  position: relative;
  overflow: hidden;
}
.gallery__item:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  mix-blend-mode: color;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 9, 11, 0.7098039216)), to(#661221));
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.7098039216) 0%, #661221 100%);
  -webkit-transition: -webkit-transform 0.3s ease-out 0.15s;
  transition: -webkit-transform 0.3s ease-out 0.15s;
  transition: transform 0.3s ease-out 0.15s;
  transition: transform 0.3s ease-out 0.15s, -webkit-transform 0.3s ease-out 0.15s;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.gallery__item:after {
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 9, 11, 0.7098039216)), to(#af2f45));
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.7098039216) 0%, #af2f45 100%);
  -webkit-transition: -webkit-transform 0.3s ease-out 0.35s;
  transition: -webkit-transform 0.3s ease-out 0.35s;
  transition: transform 0.3s ease-out 0.35s;
  transition: transform 0.3s ease-out 0.35s, -webkit-transform 0.3s ease-out 0.35s;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.gallery__item:hover:after, .gallery__item:hover:before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.gallery__image {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.gallery__item:hover .gallery__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gallery__text {
  padding: 30px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0;
  left: -30px;
  gap: 15px;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.gallery__item:hover .gallery__text {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  left: 0;
}
.gallery__text p {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.8px;
}

.reserve {
  position: relative;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.reserve:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#09090B), to(#09090B));
  background: linear-gradient(180deg, #09090B 0%, #09090B 100%);
  opacity: 0.75;
}
@media (min-width: 1023.1px) {
  .reserve {
    background-attachment: fixed;
  }
}
@media (max-width: 1023px) {
  .reserve {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .reserve {
    padding: 40px 0;
  }
}
.reserve__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 20px;
}
.reserve__overtitle {
  font-size: 52px;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  color: #af2f45;
  margin-bottom: -15px;
}
@media (max-width: 767px) {
  .reserve__overtitle {
    font-size: 42px;
  }
}
.reserve__title {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 82px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .reserve__title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .reserve__title {
    font-size: 41px;
  }
}
.reserve__text {
  color: #FFFFFF;
}
.reserve__button {
  margin-top: 10px;
  color: #af2f45;
  border: 1px solid #af2f45;
  text-align: center;
  font-weight: 500;
  padding: 15px 45px;
  -webkit-transition: opacity 1s ease 0s, background-color 0.3s ease 0s, color 0.3s ease, -webkit-transform 1s ease 0s !important;
  transition: opacity 1s ease 0s, background-color 0.3s ease 0s, color 0.3s ease, -webkit-transform 1s ease 0s !important;
  transition: opacity 1s ease 0s, transform 1s ease 0s, background-color 0.3s ease 0s, color 0.3s ease !important;
  transition: opacity 1s ease 0s, transform 1s ease 0s, background-color 0.3s ease 0s, color 0.3s ease, -webkit-transform 1s ease 0s !important;
  background: transparent;
}
@media (max-width: 1023px) {
  .reserve__button {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (any-hover: hover) {
  .reserve__button:hover {
    background-color: #af2f45;
    color: #FFFFFF;
  }
}

.reserve__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 20px auto 0;
  width: 100%;
}
@media (max-width: 1023px) {
  .reserve__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 25px;
    margin-top: 15px;
  }
}
.reserve__map {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 440px;
  background-color: #C6C6C6;
}
.reserve__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(62%) contrast(100%) saturate(0%) blur(0px) hue-rotate(22deg);
          filter: brightness(62%) contrast(100%) saturate(0%) blur(0px) hue-rotate(22deg);
}
@media (max-width: 1023px) {
  .reserve__map {
    min-height: 0;
    height: 400px;
  }
}
.reserve__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 35px;
  border: 1px solid #af2f45;
}
.reserve__wrapper .shisha__row {
  font-family: "Montserrat Alternates", sans-serif;
}
@media (max-width: 767px) {
  .reserve__wrapper {
    padding: 20px;
  }
  .reserve__wrapper .shisha__row p {
    font-size: 14px;
  }
}
.reserve__hours {
  text-align: left;
  font-size: 32px;
  font-weight: 500;
  font-family: "Montserrat Alternates", sans-serif;
}
@media (max-width: 767px) {
  .reserve__hours {
    font-size: 22px;
  }
}

.shisha {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 767px) {
  .shisha {
    padding: 40px 0;
  }
}
.shisha__bg1 {
  position: absolute;
  left: 0;
  z-index: 0;
  top: 9%;
  width: 21%;
  pointer-events: none;
}
.shisha__bg1 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1100px) {
  .shisha__bg1 {
    width: 19%;
    top: 5%;
  }
}
@media (max-width: 767px) {
  .shisha__bg1 {
    width: 24%;
    top: 1%;
  }
}
@media (max-width: 500px) {
  .shisha__bg1 {
    width: 30%;
  }
}
.shisha__bg2 {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 133px;
  pointer-events: none;
}
.shisha__bg2 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1100px) {
  .shisha__bg2 {
    width: 91px;
  }
}
@media (max-width: 767px) {
  .shisha__bg2 {
    width: 66px;
    top: auto;
    bottom: 0;
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}
.shisha__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .shisha__container {
    text-align: center;
  }
}
.shisha__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.shisha__overtitle {
  font-size: 52px;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  color: #af2f45;
}
@media (max-width: 1023px) {
  .shisha__overtitle {
    font-size: 42px;
  }
}
.shisha__title {
  text-wrap: balance;
  font-size: 46px;
  font-weight: 500;
  font-family: "Montserrat Alternates", sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .shisha__title {
    font-size: 35px;
  }
}
.shisha__text {
  color: #C6C6C6;
}
.shisha__body {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  border: 1px solid #af2f45;
  padding: 40px;
}
@media (max-width: 1023px) {
  .shisha__body {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .shisha__body {
    gap: 20px;
    padding: 20px;
  }
}
.shisha__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media (max-width: 767px) {
  .shisha__wrapper {
    gap: 20px;
  }
}
.shisha__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  color: #C6C6C6;
  text-align: left;
}
@media (max-width: 767px) {
  .shisha__item {
    font-size: 14px;
  }
}
.shisha__row {
  color: #FFFFFF;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 24px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.shisha__row span {
  height: 1px;
  background-color: #af2f45;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 25px;
}
.shisha__row p {
  font-weight: 600;
  font-size: 18px;
}
.shisha__row p p:last-child {
  text-align: right;
}

.reviews {
  padding: 0 0 80px 0;
  position: relative;
}
@media (max-width: 767px) {
  .reviews {
    padding: 40px 0;
  }
}
.reviews__dec1 {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 163px;
  pointer-events: none;
}
.reviews__dec1 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1023px) {
  .reviews__dec1 {
    width: 125px;
    top: 0%;
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}
@media (max-width: 767px) {
  .reviews__dec1 {
    width: 57px;
    top: auto;
    bottom: 0;
  }
}
.reviews__dec2 {
  position: absolute;
  left: 0;
  z-index: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 166px;
  pointer-events: none;
}
.reviews__dec2 img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1023px) {
  .reviews__dec2 {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .reviews__dec2 {
    width: 69px;
    top: -2%;
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}
.reviews__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 1023px) {
  .reviews__container {
    gap: 40px;
  }
}
.reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__overtitle {
  font-size: 52px;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: 1.2;
  color: #af2f45;
}
@media (max-width: 1023px) {
  .reviews__overtitle {
    font-size: 42px;
  }
}
.reviews__title {
  max-width: 560px;
  font-size: 38px;
  font-weight: 500;
  font-family: "Montserrat Alternates", sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .reviews__title {
    font-size: 30px;
    text-wrap: balance;
  }
}
.reviews__body {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
.reviews__card {
  background: -webkit-gradient(linear, left top, left bottom, from(#2D2D31), to(#09090B));
  background: linear-gradient(180deg, #2D2D31 0%, #09090B 100%);
  padding: 40px;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 20px;
  color: #C6C6C6;
  font-weight: 400;
  position: relative;
}
.reviews__card > * {
  position: relative;
  z-index: 2;
}
.reviews__card b {
  color: #af2f45;
  font-size: 18px;
  font-family: "Montserrat Alternates", sans-serif;
}
@media (max-width: 767px) {
  .reviews__card {
    font-size: 17px;
  }
}
.reviews__quotes {
  position: absolute;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
  top: 0;
  padding: 20px;
}
.reviews__quotes svg {
  fill: #af2f45;
  width: 27px;
}
.reviews__quotes svg:last-child {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.reviews__image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.reviews__flamp {
  text-align: center;
  margin-top: 30px;
}
.reviews__flamp a {
  display: inline-block;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
}
.reviews__flamp a:hover {
  background: rgba(175, 47, 69, 0.1);
  border-color: #af2f45;
  color: #af2f45;
}
@media (max-width: 767px) {
  .reviews__flamp {
    margin-top: 30px;
  }
  .reviews__flamp a {
    font-size: 16px;
    padding: 12px 30px;
  }
}

.footer {
  padding: 80px 0 30px;
}
@media (max-width: 1023px) {
  .footer {
    padding: 60px 0 30px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 30px;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 767px) {
  .footer__container {
    gap: 40px;
  }
}
.footer__logo {
  width: 96px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.footer__logo img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
@media (any-hover: hover) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.footer__item small {
  font-size: 15px;
}
.footer__item p, .footer__item a {
  word-break: break-word;
  font-size: 36px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer__item p, .footer__item a {
    font-size: 28px;
  }
}
.footer__item a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__item a:hover {
    color: #af2f45;
  }
}
.footer__address {
  font-size: 36px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  word-break: break-word;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 28px;
  }
}
.footer__phone {
  font-size: 15px !important;
}
.footer__socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__socials a {
  white-space: nowrap;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #2a2f36;
  font-size: 15px;
  color: #9097aa;
}
@media (max-width: 767px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    text-align: center;
  }
}
.footer__bottom a {
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__bottom a:hover {
    color: #af2f45;
  }
}

.warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px 0;
  z-index: 1500;
  background-color: #09090B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.warning.hide {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.warning__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.warning__logo {
  position: relative;
  z-index: 8;
  width: 120px;
  -ms-flex-item-align: center;
      align-self: center;
}
.warning__logo img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.warning__text {
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .warning__text {
    font-size: 24px;
  }
}
.warning__buttons {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  max-width: 350px;
  width: 100%;
}
.warning__button {
  color: #af2f45;
  border: 1px solid #af2f45;
  text-align: center;
  padding: 12px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.warning__button:first-child {
  background: #af2f45;
  color: #FFFFFF;
}
@media (any-hover: hover) {
  .warning__button:first-child:hover {
    border-color: #661221;
    background-color: #661221;
    color: #FFFFFF;
  }
  .warning__button:hover {
    border-color: #661221;
    color: #661221;
  }
}

.map {
  background-color: #C6C6C6;
  height: 500px;
}
.map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(62%) contrast(100%) saturate(0%) blur(0px) hue-rotate(22deg);
          filter: brightness(62%) contrast(100%) saturate(0%) blur(0px) hue-rotate(22deg);
}
@media (max-width: 1023px) {
  .map {
    height: 400px;
  }
}

.contact {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
}
.contact__container {
  display: grid;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1023px) {
  .contact__container {
    grid-template-columns: 1fr;
  }
}
.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 35px;
  border: 1px solid #af2f45;
}
@media (max-width: 767px) {
  .contact__form {
    padding: 20px;
  }
}
.contact__form button {
  background-color: #af2f45;
  color: #FFFFFF;
  padding: 13px;
  max-width: 170px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .contact__form button:hover {
    background-color: #661221;
  }
}
.contact__form .contact__title {
  margin-bottom: 10px;
}
.contact__title {
  font-size: 32px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .contact__title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 22px;
  }
}
.contact__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.contact__input span {
  font-size: 20px;
  font-weight: 400;
  color: #C6C6C6;
}
.contact__input input, .contact__input textarea {
  border-radius: 14px;
  padding: 20px;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 400;
  line-height: 1.25;
  background-color: #1c222b;
  -webkit-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
  color: #FFFFFF;
}
.contact__input input:focus, .contact__input textarea:focus {
  border-color: #454f5d;
}
.contact__input textarea {
  min-height: 200px;
  resize: vertical;
  max-height: 400px;
}
.contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.contact__items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (max-width: 500px) {
  .contact__items {
    grid-template-columns: 1fr;
  }
}
.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .contact__item:hover {
    color: #af2f45;
  }
}
@media (max-width: 500px) {
  .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.contact__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background-color: #af2f45;
}
.contact__icon img {
  max-width: 70%;
  max-height: 80%;
}

/* Branches Section */
.branches {
  padding: 80px 0;
  background: #000000;
}
@media (max-width: 1023px) {
  .branches {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .branches {
    padding: 40px 0;
  }
}
.branches__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.branches__title {
  font-size: 48px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .branches__title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.branches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1023px) {
  .branches__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .branches__grid {
    grid-template-columns: 1fr;
  }
}

/* Branch Card */
.branch-card {
  position: relative;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .branch-card {
    height: 400px;
  }
}
.branch-card:hover {
  transform: translateY(-5px);
}
.branch-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.branch-card__content {
  flex: 1;
}
.branch-card__address {
  font-size: 27px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .branch-card__address {
    font-size: 22px;
  }
}
.branch-card__description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.branch-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.branch-card__phone {
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.branch-card__phone:hover {
  color: #af2f45;
}
.branch-card__button {
  padding: 12px 24px;
  background: #af2f45;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.branch-card__button:hover {
  background: #8f2538;
  transform: scale(1.05);
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-modal.active {
  display: flex;
}
.gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
}
.gallery-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  z-index: 10000;
}
.gallery-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gallery-modal__close:hover {
  background: #af2f45;
  border-color: #af2f45;
  transform: rotate(90deg);
}
.gallery-modal__slider {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.gallerySwiper {
  width: 100%;
  height: 70vh;
}
@media (max-width: 767px) {
  .gallerySwiper {
    height: 50vh;
  }
}
.gallerySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
  color: #FFFFFF;
}
.gallerySwiper .swiper-pagination-bullet {
  background: #FFFFFF;
}
.gallerySwiper .swiper-pagination-bullet-active {
  background: #af2f45;
}