@font-face {
  font-family: "Inria Serif";
  src: url("./fonts/InriaSerif-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("./fonts/InriaSerif-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Herr Von Muellerhoff";
  src: url("./fonts/HerrVonMuellerhoff-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inika";
  src: url("./fonts/Inika.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("./fonts/InriaSerif-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("./fonts/InriaSerif-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate(0%, 0%) scale(1.5, 1.5);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1, 1);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate(0%, 0%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.typing.animated b::before {
  animation: max-height 0.4s cubic-bezier(0.61, 1, 0.88, 1) 1 normal both;
  color: #2c2c2c;
}

.typing.animated b::after {
  animation: max-width 0.7s cubic-bezier(0.61, 1, 0.88, 1) 1 normal both;
  color: #191919;
}

@keyframes max-width {
  from {
    max-width: 0;
  }
  to {
    max-width: 100%;
  }
}
@keyframes max-height {
  from {
    max-height: 0;
  }
  to {
    max-height: 100%;
  }
}
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2c1111;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(255, 77, 88, 0.65);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 77, 88, 0.95);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Inria Serif", sans-serif;
  color: #fff;
  background: #120000;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.08em;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1252px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 700;
  font-size: 80px;
  line-height: 96px;
  font-style: italic;
  letter-spacing: 0;
}
h1.sm {
  font-weight: 700;
  font-size: 64px;
  line-height: 77px;
}

h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  font-style: italic;
  letter-spacing: 0;
}
h2.big {
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
}
h2.sm {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
}

h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
}
h3.ex {
  font-family: "Herr Von Muellerhoff", sans-serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 97px;
  letter-spacing: 0.08em;
  color: #c71614;
}

h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.05em;
}
h4.sm {
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
}

h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
h5.big {
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
}

h6 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
h6.sm {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}

p.ex {
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
}
p.lg {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0;
}
p.big {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.main {
  overflow: hidden;
}

.anchor {
  position: relative;
  top: -160px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Inria Serif", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.08em;
  padding: 20px 22px;
  border-radius: 10px;
}
.button.primary {
  background: #bc0006;
  color: #fff;
  border-radius: 18px;
  font-style: italic;
  padding: 18px;
  font-weight: 400;
}
.button.primary:hover {
  opacity: 1;
  background: #120000;
}
.button.secondary {
  background: #fff;
  color: #a80000;
}
.button.secondary:hover {
  opacity: 1;
  background: #380611;
  color: #fff;
}
.button.gray {
  padding: 18px;
  color: #fff;
  background: #424242;
  border-radius: 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}
.button.gray:hover {
  opacity: 1;
  background: #000;
}
.button.uniq {
  padding: 17px;
  color: #000;
  background: #c3c3c3;
  border-radius: 18px;
  border: 1px solid #848484;
  font-weight: 400;
  font-style: italic;
}
.button.uniq:hover {
  opacity: 1;
  background: #848484;
  color: #fff;
}
.button.light {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  color: #bc0006;
  font-style: italic;
}
.button.light:hover {
  opacity: 1;
  background: #bc0006;
  color: #fff;
}

.bannerVideo {
  width: 100%;
  padding-bottom: 57.3%;
  position: relative;
  background: #000;
}
.bannerVideo img,
.bannerVideo video,
.bannerVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.map {
  width: 100%;
  height: 346px;
  display: flex;
  position: relative;
}
.map img,
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.map iframe {
  z-index: 2;
}

@media (max-width: 1380px) {
  h1 {
    font-size: 70px;
    line-height: 120%;
  }
  h1.sm {
    font-size: 60px;
    line-height: 120%;
  }
  h2 {
    font-size: 55px;
    line-height: 120%;
  }
  .anchor {
    top: -147.97px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }
  h1 {
    font-size: 65px;
  }
  h1.sm {
    font-size: 55px;
  }
  h2 {
    font-size: 50px;
  }
  h2.big {
    font-size: 55px;
  }
  h2.sm {
    font-size: 44px;
    line-height: 120%;
  }
  h3 {
    font-size: 35px;
    line-height: 120%;
  }
  h3.ex {
    font-size: 60px;
    line-height: 120%;
  }
  h4 {
    font-size: 32px;
    line-height: 120%;
  }
  h4.sm {
    font-size: 28px;
    line-height: 120%;
  }
  h5.big {
    font-size: 26px;
    line-height: 120%;
  }
  p.ex {
    font-size: 26px;
    line-height: 120%;
  }
  p.lg {
    font-size: 22px;
    line-height: 120%;
  }
  p.big {
    font-size: 18px;
    line-height: 120%;
  }
  .button {
    font-size: 18px;
    line-height: 120%;
    padding: 18px 20px;
  }
  .button.light {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }
  .anchor {
    top: -133.39px;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 60px;
  }
  h1.sm {
    font-size: 50px;
  }
  h2 {
    font-size: 45px;
  }
  h2.big {
    font-size: 50px;
  }
  h2.sm {
    font-size: 40px;
  }
  h3 {
    font-size: 30px;
  }
  h3.ex {
    font-size: 55px;
  }
  h4 {
    font-size: 28px;
  }
  h4.sm {
    font-size: 24px;
  }
  h5 {
    font-size: 22px;
    line-height: 120%;
  }
  h5.big {
    font-size: 24px;
  }
  p.ex {
    font-size: 22px;
  }
  p.lg {
    font-size: 20px;
  }
  p.big {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }
  h1 {
    font-size: 50px;
  }
  h1.sm {
    font-size: 45px;
  }
  h2 {
    font-size: 40px;
  }
  h2.big {
    font-size: 45px;
  }
  h2.sm {
    font-size: 35px;
  }
  h3.ex {
    font-size: 50px;
  }
  h5 {
    font-size: 20px;
  }
  h5.big {
    font-size: 22px;
  }
  p.ex {
    font-size: 20px;
  }
  p.lg {
    font-size: 18px;
  }
  p.big {
    font-size: 14px;
  }
  .button {
    font-size: 16px;
    line-height: 120%;
    padding: 16px 20px;
  }
  .button.primary {
    padding: 16px 20px;
    border-radius: 14px;
  }
  .button.gray {
    padding: 16px 20px;
    border-radius: 14px;
  }
  .button.uniq {
    padding: 15px 20px;
    border-radius: 14px;
  }
  .button.light {
    font-size: 18px;
    line-height: 22px;
    padding: 16px 20px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 40px;
  }
  h1.sm {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h2.big {
    font-size: 35px;
  }
  h2.sm {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
  h3.ex {
    font-size: 45px;
  }
  h4 {
    font-size: 24px;
  }
  h5.big {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
    line-height: 120%;
  }
  h6.sm {
    font-size: 14px;
    line-height: 120%;
  }
  .button {
    padding: 14px 18px;
  }
  .button.primary {
    padding: 14px 18px;
    border-radius: 10px;
  }
  .button.gray {
    padding: 14px 18px;
    border-radius: 10px;
  }
  .button.uniq {
    padding: 13px 18px;
    border-radius: 10px;
  }
  .button.light {
    font-size: 16px;
    line-height: 20px;
    padding: 14px 18px;
    border-radius: 14px;
  }
  body {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.05em;
  }
  .anchor {
    top: -102.88px;
  }
  .calendly-badge-widget {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    max-width: calc(100vw - 24px);
  }
  .calendly-badge-content {
    text-align: center;
    background: #bc2125 !important;
    background: #0069ff !important;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(0, 0, 0, 0.24);
  transition: 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}
.header .auto__container {
  padding: 0 30px;
  max-width: 1440px;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation-name: sticky;
  animation-duration: 0.4s;
  background: #120000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1294117647);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header__inner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 343px;
}
.header__inner-logo img {
  width: 100%;
}
.header__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 24px 6px 24px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  align-self: center;
  -webkit-user-select: text;
  user-select: text;
}
.header__info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.header__info-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
}
.header__info-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 18px 6px 0;
  color: #fff;
  align-self: center;
}
.header__social-link {
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  font-size: 20px;
  line-height: 1;
  color: inherit;
  transition: 0.3s ease;
  text-decoration: none;
}
.header__social-link:hover {
  color: #ff2c2a;
}
.header__social-link i,
.header__social-link .header__social-ring {
  grid-area: 1/1;
}
.header__social-ring {
  width: 100%;
  height: 100%;
  transform: rotate(33deg);
}
.header__social-ring text {
  fill: currentColor;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Inria Serif", sans-serif;
}
.header__notice {
  background: rgba(188, 0, 6, 0.55);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
}
.header__notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

@media (max-width: 1380px) {
  .header__inner-logo {
    width: 310px;
  }
  .header__inner-logo img {
    transform: translateX(-8%);
  }
}
@media (max-width: 1314px) {
  .header__info {
    font-size: 12px;
    line-height: 16px;
    margin: 0 16px 4px 16px;
  }
  .header__info-icon {
    width: 12px;
    height: 12px;
  }
  .header__social {
    margin: 0 12px 4px 0;
  }
  .header__social-link {
    width: 66px;
    height: 66px;
    font-size: 18px;
  }
  .header__social-ring text {
    font-size: 12px;
    letter-spacing: 1.6px;
  }
}
@media (max-width: 1024px) {
  .header.active {
    background: #120000;
  }
  .header__inner {
    align-items: center;
  }
  .header__inner-logo {
    width: 270px;
  }
  .header__info {
    display: none;
  }
  .header__social {
    display: none;
  }
  .header__notice p {
    font-size: 13px;
  }
}
@media (max-width: 750px) {
  .header .auto__container {
    padding: 0 20px;
  }
}
@media (max-width: 540px) {
  .header__inner-logo {
    width: 200px;
  }
  .header__notice {
    padding: 8px 12px;
  }
  .header__notice p {
    font-size: 12px;
    line-height: 1.3;
  }
}
@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav {
  padding-bottom: 30px;
}
.nav__inner {
  display: flex;
  align-items: center;
}
.nav__inner-link {
  padding: 5px 16px 16px;
  position: relative;
  white-space: nowrap;
}
.nav__inner li {
  margin-right: 12px;
  display: flex;
  flex-direction: column;
}
.nav__inner li:last-child {
  margin: 0;
}
.nav__inner a {
  font-family: "Inria Serif", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  cursor: pointer;
}
.nav__inner a:hover {
  opacity: 0.8;
  color: #ff2c2a;
}
.nav__inner .button.primary {
  font-size: 18px;
  line-height: 22px;
  white-space: nowrap;
}
.nav__inner .button.primary:hover {
  color: #fff;
}
.nav__inner .nav__cta-button.button.primary:hover {
  opacity: 1;
  background: #5e0707;
}
.nav__inner .nav__cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__inner .nav__mobile-info,
.nav__inner .nav__mobile-social {
  display: none;
}

@media (max-width: 1314px) {
  .nav__inner a {
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
  }
  .nav__inner .button.primary {
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
  }
  .nav__inner li {
    margin-right: 8px;
  }
}
.drop {
  position: relative;
}
.drop:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}
.drop > a {
  position: relative;
}
.drop > a::before {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transition: 0.3s ease;
}
.dropMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 222px;
  padding-top: 30px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.dropMenu__inner {
  width: 100%;
  background: #252525;
  border-radius: 12px;
  padding: 24px 30px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.dropMenu__inner::before {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 18px solid #252525;
  content: "";
  pointer-events: none;
}
.dropMenu a {
  margin-bottom: 30px;
  text-align: center;
}
.dropMenu a:last-child {
  margin: 0;
}
.dropMenu a:hover {
  opacity: 1;
  color: #bc0006;
}

.burger {
  display: none;
}

@media (max-width: 1024px) {
  body.active {
    overflow: hidden;
  }
  .nav {
    position: fixed;
    top: 98.39px;
    height: calc(100% - 98.39px);
    left: 0;
    width: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    padding: 0;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    flex-direction: column;
    position: absolute;
    justify-content: unset;
    align-items: center;
    box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    z-index: 1;
    padding: 40px 10px 20px 10px;
    height: 100%;
    overflow-y: auto;
    background: #120000;
  }
  .nav__inner-link {
    padding: 10px 20px;
  }
  .nav__inner li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .nav__inner .nav__cta {
    width: 100%;
  }
  .nav .nav__inner .nav__mobile-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 10px;
    padding: 18px 20px 0;
  }
  .nav .nav__inner .nav__mobile-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #fff;
  }
  .nav .nav__inner .nav__mobile-info-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }
  .nav .nav__inner .nav__mobile-info-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .nav .nav__inner .nav__mobile-social {
    display: flex;
    padding: 6px 20px 0;
    margin-bottom: 40px;
  }
  .nav .nav__inner .nav__mobile-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
  }
  .burger {
    display: block;
    cursor: pointer;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 15%;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 15%;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .drop > a::before {
    bottom: unset;
    top: 50%;
    right: 5px;
    left: unset;
    transform: translateY(-60%) rotate(135deg);
    display: none;
  }
  .dropMenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    width: 100%;
    padding: 0;
  }
  .dropMenu__inner {
    background: transparent;
    padding: 16px 40px;
  }
  .dropMenu__inner::before {
    display: none;
  }
  .dropMenu__inner a {
    text-align: start;
    margin-bottom: 24px;
  }
}
@media (max-width: 540px) {
  .nav {
    top: 72.88px;
    height: calc(100% - 72.88px);
  }
  .burger {
    width: 24px;
    height: 24px;
  }
  .burger::after {
    height: 2px;
  }
  .burger::before {
    height: 2px;
  }
  .burger span {
    height: 2px;
  }
}
.learn {
  padding: 110px 0 100px;
  background: #f5f5f5;
  color: #000;
}
.learn.uniq {
  padding: 120px 0 124px;
}
.learn.uniq .learnContent {
  width: calc(46% - 15px);
  max-width: 511px;
}
.learn.uniq .learnContent h3 {
  margin-bottom: 18px;
}
.learn.uniq .learnContent p {
  margin-bottom: 17px;
}
.learn.uniq .learnBanner {
  right: unset;
  left: 0;
  width: calc(54% - 15px);
  max-width: 618px;
}
.learn.uniq .learnPlace {
  order: -1;
  width: calc(54% - 15px);
  max-width: 618px;
}
.learn.findUsWide .learn__inner {
  display: block;
}
.learn.findUsWide .learnContent {
  width: 100%;
  max-width: unset;
}
.learn.findUsWide .learnPlace {
  display: none;
}
.learn.findUsWide .learnVenueMaps {
  max-width: unset;
}
.learn__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.learnContent {
  width: calc(52% - 20px);
  max-width: 590px;
}
.learnContent__list {
  width: 100%;
  max-width: 512px;
  display: flex;
}
.learnContent__list--map {
  position: relative;
}
.learnContent__list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}
.learnContent__list img {
  width: 100%;
  display: block;
}
.learnContent__list--map img {
  visibility: hidden;
}
.learnContent__list--map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.learnContent .learnListItem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}
.learnContent .learnListItem__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #ff2c2a;
  margin-top: 2px;
}
.learnContent .learnListItem__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.learnContent h3 {
  font-style: italic;
  margin-bottom: 40px;
}
.learnContent p {
  margin-bottom: 35px;
  max-width: 516px;
}
.learnContent p:last-child {
  margin: 0;
}
.learnBanner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(48% - 20px);
  max-width: 535px;
}
.learnBanner__inner {
  width: 100%;
  padding-bottom: 56.6%;
  position: relative;
  background: #120000;
}
.learnBanner__inner img,
.learnBanner__inner video,
.learnBanner__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.learnPlace {
  width: calc(48% - 15px);
  max-width: 535px;
}
.learnPlace__inner {
  width: 100%;
  padding-bottom: 56.6%;
}

.learnVenueMaps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 980px;
}
.learnVenueMaps__item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}
.learnVenueMaps__item h6 {
  margin-bottom: 8px;
  font-weight: 700;
  font-style: italic;
}
.learnVenueMaps__item p {
  margin-bottom: 12px;
  max-width: unset;
  font-size: 14px;
  line-height: 1.35;
}
.learnVenueMaps__item iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 10px;
  display: block;
}

@media (max-width: 1380px) {
  .learn {
    padding: 90px 0;
  }
  .learn.uniq {
    padding: 100px 0;
  }
}
@media (max-width: 1180px) {
  .learn {
    padding: 70px 0;
  }
  .learn.uniq {
    padding: 80px 0;
  }
  .learnContent h3 {
    margin-bottom: 24px;
  }
  .learnContent p {
    margin-bottom: 24px;
  }
}
@media (max-width: 930px) {
  .learn {
    padding: 60px 0;
  }
  .learn.uniq {
    padding: 60px 0;
  }
  .learn.uniq .learnContent {
    width: 100%;
    max-width: unset;
  }
  .learn.uniq .learnBanner {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .learn__inner {
    flex-direction: column;
  }
  .learnContent {
    width: 100%;
    max-width: unset;
  }
  .learnContent__list {
    max-width: unset;
  }
  .learnContent__list--grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .learnBanner {
    position: static;
    transform: translate(0);
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .learnPlace {
    display: none;
  }
  .learnVenueMaps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .learn {
    padding: 40px 0;
  }
  .learn.uniq {
    padding: 40px 0;
  }
  .learn.uniq .learnContent h3 {
    margin-bottom: 16px;
  }
  .learn.uniq .learnContent p {
    margin-bottom: 20px;
  }
  .learnContent h3 {
    margin-bottom: 16px;
  }
  .learnContent p {
    margin-bottom: 20px;
  }
  .learnBanner {
    margin-bottom: 16px;
  }
  .learnVenueMaps {
    gap: 16px;
  }
  .learnVenueMaps__item {
    padding: 12px;
  }
  .learnVenueMaps__item iframe {
    height: 240px;
  }
}
.features {
  padding: 60px 0;
  background: #e4e4e4;
  color: #000;
}
.features.sm {
  padding: 80px 0;
}
.features.sm .featuresItem {
  max-width: 345px;
}
.features__inner {
  display: flex;
  justify-content: space-between;
}
.featuresItem {
  width: calc(33.3% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.featuresItem__icon {
  width: 152px;
  height: 152px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.featuresItem__icon.big img {
  width: 113%;
}
.featuresItem__icon.mid img {
  width: 80%;
}
.featuresItem__icon.sm img {
  width: 73%;
  margin-bottom: -2%;
}
.featuresItem__icon img {
  width: 100%;
  object-fit: contain;
}
.featuresItem h4 {
  margin-bottom: 26px;
  font-style: italic;
}

@media (max-width: 1180px) {
  .features.sm {
    padding: 60px 0;
  }
  .featuresItem__icon {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 930px) {
  .features__inner {
    flex-direction: column;
  }
  .featuresItem {
    width: 100%;
    max-width: unset !important;
    margin-bottom: 30px;
  }
  .featuresItem:last-child {
    margin: 0;
  }
  .featuresItem__icon.sm {
    height: 150px;
  }
}
@media (max-width: 540px) {
  .features {
    padding: 40px 0;
  }
  .features.sm {
    padding: 60px 0 40px;
  }
  .featuresItem {
    margin-bottom: 20px;
  }
  .featuresItem h4 {
    margin-bottom: 16px;
  }
}
.facility {
  position: relative;
}
.facility.sm .facilityItem {
  padding-bottom: 66.6%;
  min-height: unset;
}
.facility.sm .swiper-buttons button {
  width: 58px;
  height: 98px;
}
.facility.sm .swiper-button-prev {
  left: 14px;
}
.facility.sm .swiper-button-next {
  right: 14px;
}
.facility__inner {
  position: relative;
  padding: 40px 0;
}
.facility__inner.last {
  padding: 0;
}
.facility__inner-title {
  text-align: center;
  margin-bottom: 36px;
}
.facility__slider {
  position: relative;
}
.facility__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 32px;
  z-index: 2;
  pointer-events: none;
}
.facility__overlay p {
  font-style: italic;
  text-align: end;
  letter-spacing: 0;
}
.facilityItem {
  width: 100%;
  padding-bottom: 41%;
  min-height: 400px;
  position: relative;
}
.facilityItem img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.facilityMain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 66px 0;
  z-index: 2;
}
.facilityMain h3 {
  font-style: italic;
}
.facility .swiper-button-prev {
  left: 35px;
}
.facility .swiper-button-prev:hover img {
  transform: translateX(-6px);
}
.facility .swiper-button-next {
  right: 35px;
}
.facility .swiper-button-next:hover img {
  transform: translateX(6px);
}
.facility .swiper-buttons button {
  width: 66px;
  height: 112px;
  display: flex;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
  margin: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.facility .swiper-buttons button::after {
  display: none;
}
.facility .swiper-buttons button img {
  width: 100%;
  transition: 0.3s ease;
}
.facility .swiper-pagination {
  display: none;
}

@media (max-width: 1380px) {
  .facility .swiper-button-prev {
    left: 20px;
  }
  .facility .swiper-button-next {
    right: 20px;
  }
  .facility .swiper-buttons button {
    width: 56px;
    height: 100px;
  }
}
@media (max-width: 1180px) {
  .facilityMain {
    padding: 40px 0;
  }
  .facility .swiper-buttons button {
    width: 44px;
    height: 80px;
  }
}
@media (max-width: 930px) {
  .facility__overlay {
    padding: 14px 24px;
  }
  .facility .swiper-buttons button {
    width: 44px;
    height: 80px;
  }
}
@media (max-width: 540px) {
  .facility.sm .swiper-pagination {
    bottom: 20px !important;
  }
  .facility.sm .facilityItem {
    min-height: 300px;
  }
  .facility__inner-title {
    margin-bottom: 24px;
  }
  .facility__inner-title h2 {
    font-size: 24px;
  }
  .facilityMain {
    padding: 20px 0;
  }
  .facilityMain__inner {
    text-align: center;
  }
  .facilityItem {
    min-height: 350px;
  }
  .facility__overlay {
    padding: 10px 20px;
    text-align: center;
    justify-content: center;
  }
  .facility__overlay p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .facility .swiper-buttons {
    display: none;
  }
  .facility .swiper-pagination {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 50px !important;
    width: 100%;
    margin: 0 !important;
  }
  .facility .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    background: #fff;
    opacity: 0.5;
  }
  .facility .swiper-pagination-bullet-active {
    opacity: 1;
  }
}
.reviews {
  padding: 80px 0 40px;
}
.reviews.mid {
  padding: 40px 0 110px;
}
.reviews.sm .reviewsItem__image {
  width: 245px;
}
.reviews.sm .reviewsItem__content {
  padding: 40px 50px;
}
.reviews__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.reviews__inner-title h4 {
  font-weight: 400;
  font-style: italic;
}
.reviews__carousel {
  margin-bottom: 26px;
  border-radius: 18px;
  overflow: hidden;
}
.reviewsItem {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
}
.reviewsItem__image {
  width: 300px;
  display: flex;
  position: relative;
}
.reviewsItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.reviewsItem__image h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.reviewsItem__content {
  flex: 1;
  padding: 24px 46px 24px 40px;
  color: #000;
  background: #fff;
}
.reviewsItem__content span {
  font-family: "Inika", sans-serif;
  font-weight: 400;
  font-size: 128px;
  line-height: 167px;
  color: #910006;
  height: 50px;
  display: flex;
  align-items: center;
}
.reviewsItem__content span b {
  font-weight: 400;
  transform: translateY(12%);
}

.reviewsCarousel__item {
  width: 100%;
  padding-bottom: 48%;
  position: relative;
}
.reviewsCarousel__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (max-width: 1180px) {
  .reviews {
    padding: 60px 0 30px;
  }
  .reviews.mid {
    padding: 40px 0 80px;
  }
  .reviewsItem__image {
    width: 280px;
  }
  .reviewsItem__content {
    padding: 24px 30px;
  }
}
@media (max-width: 930px) {
  .reviews.mid {
    padding: 30px 0 60px;
  }
  .reviews.sm .reviewsItem__content {
    padding: 24px;
  }
  .reviewsItem__image {
    width: 280px;
  }
  .reviewsItem__content {
    padding: 24px;
  }
  .reviewsItem p {
    font-size: 14px;
    line-height: 120%;
  }
}
@media (max-width: 750px) {
  .reviewsItem {
    flex-direction: column;
  }
  .reviewsItem__image {
    width: 100% !important;
    padding-bottom: 110%;
    position: relative;
  }
  .reviewsItem__image img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .reviewsItem__image h4 {
    padding: 24px;
  }
  .reviewsItem__content {
    width: 100%;
    padding: 30px !important;
  }
}
@media (max-width: 540px) {
  .reviews {
    padding: 40px 0 20px;
  }
  .reviews.mid {
    padding: 10px 0 40px;
  }
  .reviews__inner-title {
    margin-bottom: 24px;
  }
  .reviewsItem__image {
    padding-bottom: 130%;
  }
  .reviewsItem__image h4 {
    padding: 20px;
  }
  .reviewsItem__content {
    width: 100%;
    padding: 24px 20px !important;
  }
  .reviewsItem__content span {
    font-size: 110px;
    height: 40px;
  }
}
.instructors {
  padding: 40px 0 46px;
}
.instructors__inner-title {
  margin-bottom: 44px;
  text-align: center;
}
.instructors__inner-title h3 {
  font-style: italic;
  font-weight: 700;
}
.instructors__inner-row {
  display: flex;
  justify-content: space-between;
}
.instructorsItem {
  width: calc(25% - 20px);
  max-width: 226px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.instructorsItem__image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.instructorsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.instructorsItem__content {
  padding: 4px 4px 8px;
  text-align: center;
}
.instructorsItem h6 {
  font-weight: 700;
  font-style: italic;
  margin-bottom: 4px;
  color: #bc0006;
}
.instructorsItem p {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #380611;
}

@media (max-width: 1180px) {
  .instructors {
    padding: 30px 0;
  }
}
@media (max-width: 930px) {
  .instructors__inner-title {
    margin-bottom: 30px;
  }
  .instructorsItem {
    width: calc(25% - 15px);
    border-radius: 14px;
  }
}
@media (max-width: 750px) {
  .instructors__inner-row {
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  .instructorsItem {
    width: calc(50% - 30px);
    max-width: unset;
    margin: 15px;
  }
  .instructorsItem__content {
    padding: 10px;
  }
}
@media (max-width: 540px) {
  .instructors {
    padding: 20px 0;
  }
  .instructors__inner-title {
    margin-bottom: 20px;
  }
  .instructors__inner-row {
    margin: 0 -8px;
  }
  .instructorsItem {
    width: calc(50% - 16px);
    margin: 8px;
  }
  .instructorsItem__content {
    padding: 6px 8px 8px;
  }
  .instructorsItem p {
    font-size: 14px;
    line-height: 100%;
  }
}
.news {
  padding: 46px 0 80px;
}
.news__inner-title {
  text-align: center;
  margin-bottom: 60px;
}
.news__inner-title h3 {
  font-weight: 400;
  font-style: italic;
}
.news__inner-row {
  display: flex;
  justify-content: space-between;
}
.newsItem {
  width: calc(33.3% - 15px);
  max-width: 358px;
  background: #d9d9d9;
  border-radius: 18px;
  padding: 28px 24px;
  color: #000;
  display: block;
}
.newsItem:hover {
  opacity: 1;
  background: #fff;
}
.newsItem:hover img {
  transform: scale(1.1);
}
.newsItem__image {
  width: 100%;
  padding-bottom: 64%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
}
.newsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: 0.4s ease;
}
.newsItem__info {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsItem__info p {
  color: #380611;
}

@media (max-width: 1180px) {
  .news {
    padding: 30px 0 60px;
  }
  .news__inner-title {
    margin-bottom: 40px;
  }
  .newsItem {
    padding: 24px 20px;
  }
}
@media (max-width: 930px) {
  .news__inner-row {
    flex-direction: column;
  }
  .newsItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
    padding: 30px;
  }
  .newsItem:last-child {
    margin: 0;
  }
  .newsItem__image {
    margin-bottom: 20px;
  }
  .newsItem__info {
    margin-bottom: 24px;
  }
}
@media (max-width: 540px) {
  .news {
    padding: 20px 0 40px;
  }
  .news__inner-title {
    margin-bottom: 24px;
  }
  .newsItem {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
  }
  .newsItem__image {
    margin-bottom: 10px;
  }
  .newsItem__info {
    margin-bottom: 15px;
  }
}
.footer {
  background: #380611;
  color: #fff;
  padding: 20px 0 80px;
  letter-spacing: 0.07em;
}
.footer__inner-logo {
  width: 343px;
  display: flex;
  margin-bottom: 12px;
}
.footer__inner-logo img {
  width: 100%;
  transform: translateX(-8%);
}
.footer__inner-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__inner-main {
  width: calc(52% - 20px);
  max-width: 570px;
  margin-bottom: 24px;
}
.footer__inner-main .footer__opening-hours {
  margin-top: 12px;
}
.footer__inner-main ul {
  padding-left: 16px;
}
.footer__inner-main ul li {
  list-style: disc;
  line-height: 120%;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.footer__inner-main ul li .opening-hours__day {
  min-width: 92px;
}
.footer__inner-main ul li .opening-hours__time {
  text-align: left;
}
.footer__inner-main ul li::marker {
  font-size: 60%;
  font-weight: 400;
}
.footer__inner-links {
  display: flex;
  justify-content: space-between;
  width: calc(48% - 20px);
  max-width: 530px;
  padding-right: 40px;
}
.footer__inner-col {
  width: calc(50% - 10px);
  max-width: 235px;
}
.footer__inner-col:last-child a {
  text-decoration: underline;
}
.footer__inner-col:last-child a.footer__venue-link {
  text-decoration: none;
}
.footer__inner-col:last-child a.footer__venue-link:hover {
  text-decoration: underline;
}
.footer__inner-col h5 {
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 400;
}
.footer__inner-col ul {
  padding-left: 16px;
}
.footer__inner-col ul li {
  list-style: disc;
  line-height: 120%;
}
.footer__inner-col ul li::marker {
  font-size: 60%;
  font-weight: 400;
}
.footer__inner-col p a {
  word-break: break-all;
}
.footer__inner-col a:hover {
  opacity: 1;
  color: #d9d9d9;
}
.footer__inner-info h5 {
  margin-bottom: 14px;
  font-style: italic;
  font-weight: 400;
}
.footer__inner-info p {
  margin-bottom: 24px;
  max-width: 284px;
}
.footer__inner-info .button {
  padding: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.08em;
  min-width: 190px;
  color: #BC0006;
}
.footer__inner-info .button:hover {
  background: #120000;
  color: #fff;
}

@media (max-width: 1180px) {
  .footer {
    padding: 20px 0 60px;
  }
  .footer__inner-logo {
    width: 310px;
  }
  .footer__inner-main {
    width: calc(48% - 20px);
  }
  .footer__inner-links {
    width: calc(52% - 20px);
    padding: 0;
  }
  .footer__inner-info .button {
    padding: 16px;
  }
}
@media (max-width: 930px) {
  .footer {
    padding: 20px 0 40px;
  }
  .footer__inner-logo {
    width: 270px;
  }
  .footer__inner-row {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .footer__inner-main {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .footer__inner-links {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 540px) {
  .footer__inner-logo {
    width: 200px;
  }
  .footer__inner-main {
    margin-bottom: 30px;
  }
  .footer__inner-col {
    width: calc(42% - 6px);
  }
  .footer__inner-col:last-child {
    width: calc(58% - 6px);
  }
  .footer__inner-col ul {
    padding-left: 14px;
  }
  .footer__inner-info p {
    margin-bottom: 18px;
  }
  .footer__inner-info .button {
    padding: 14px;
    min-width: 180px;
  }
  .footer__inner h5 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.hero {
  position: relative;
}
.hero.dark .hero__bg::before {
  background: rgba(0, 0, 0, 0.1);
}
.hero.dark .hero__inner {
  min-height: 756px;
}
.hero.dark .hero__inner-title {
  max-width: 603px;
}
.hero.sm .hero__inner {
  min-height: 602px;
  padding: 210px 0 190px;
}
.hero.sm .hero__inner h1 {
  margin-bottom: 10px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.hero__bg img,
.hero__bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__bg video {
  z-index: 1;
}
.hero__bg video::-webkit-media-controls {
  display: none;
}
.hero__inner {
  padding: 200px 0 220px;
  min-height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.hero__inner-title {
  margin-bottom: 60px;
  max-width: 760px;
}
.hero__inner-title:last-child {
  margin: 0;
}
.hero__inner-title h1 {
  margin-bottom: 20px;
}
.hero__inner-title h2 {
  margin-bottom: 40px;
}
.hero__inner-title h3 {
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 1380px) {
  .hero.sm .hero__inner {
    padding: 160px 0;
  }
  .hero__inner {
    padding: 160px 0;
  }
}
@media (max-width: 1180px) {
  .hero.sm .hero__inner {
    padding: 140px 0;
  }
  .hero__inner {
    padding: 140px 0;
  }
  .hero__inner-title {
    margin-bottom: 40px;
  }
  .hero__inner-title h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 930px) {
  .hero.sm .hero__inner {
    padding: 120px 0;
  }
  .hero__inner {
    padding: 120px 0;
  }
}
@media (max-width: 540px) {
  .hero.dark .hero__bg::before {
    background: rgba(0, 0, 0, 0.2);
  }
  .hero.dark .hero__inner {
    min-height: 100vh;
  }
  .hero.sm .hero__inner {
    padding: 100px 0;
    min-height: 100vh;
  }
  .hero.sm .hero__inner h1 {
    font-size: 36px;
  }
  .hero__bg::before {
    background: rgba(0, 0, 0, 0.6);
  }
  .hero__inner {
    padding: 100px 0;
  }
  .hero__inner-title {
    margin-bottom: 30px;
  }
  .hero__inner-title h1 {
    margin-bottom: 10px;
  }
  .hero__inner-title h2 {
    margin-bottom: 20px;
  }
}
.book {
  padding: 50px 0 85px;
}
.book.last {
  padding: 60px 0 40px;
}
.book__inner-title {
  text-align: center;
  margin-bottom: 66px;
}
.book__inner-title h2 {
  font-weight: 400;
}
.book__inner-title h2 b {
  font-weight: 700;
}
.book__inner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.book__inner h2 {
  margin-bottom: 8px;
}
.bookItem {
  width: calc(33.33% - 16px);
  max-width: unset;
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: #000;
}
.bookItem__image {
  width: 100%;
  padding-bottom: 66.6%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
}
.bookItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.bookItem__title {
  margin-bottom: 24px;
}
.bookItem__buttons {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.bookItem__buttons:last-child {
  margin: auto 0 0 0;
}
.bookItem__buttons .button {
  width: 100%;
  margin-bottom: 24px;
}
.bookItem__buttons .button:last-child {
  margin: 0;
}
.bookItem__address {
  background: #c3c3c3;
  border-radius: 18px;
  padding: 24px 20px;
  color: #380611;
}
.bookItem__address a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.bookItem h5 {
  margin-bottom: 15px;
}
.bookItem h6 {
  margin-bottom: 20px;
}
.bookItem h6:last-child {
  margin: 0;
}
.bookItem__desktopSpacer {
  display: block;
}
.bookItem--privateWide {
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  grid-template-areas: "image title" "image buttons";
  column-gap: 24px;
  row-gap: 12px;
  align-items: start;
}
.bookItem--privateWide .bookItem__image {
  grid-area: image;
  margin-bottom: 0;
  align-self: start;
}
.bookItem--privateWide .bookItem__title {
  grid-area: title;
  margin-bottom: 0;
}
.bookItem--privateWide .bookItem__buttons {
  grid-area: buttons;
  margin-bottom: 0;
}
.bookItem--privateWide .bookItem__buttons:last-child {
  margin: 0;
}

@media (max-width: 1180px) {
  .book {
    padding: 40px 0 70px;
  }
  .book.last {
    padding: 40px 0 30px;
  }
  .book__inner-title {
    margin-bottom: 50px;
  }
  .book__inner h2 {
    margin-bottom: 16px;
  }
  .bookItem {
    width: calc(33.33% - 16px);
    padding: 20px;
  }
  .bookItem__address {
    padding: 16px;
  }
}
@media (max-width: 930px) {
  .book {
    padding: 40px 0 50px;
  }
  .book__inner-row {
    flex-direction: column;
  }
  .bookItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
    padding: 30px;
  }
  .bookItem:last-child {
    margin: 0;
  }
  .bookItem__image {
    margin-bottom: 24px;
  }
  .bookItem__address {
    padding: 24px 20px;
  }
  .bookItem__desktopSpacer {
    display: none;
  }
  .bookItem--privateWide {
    display: flex;
  }
  .bookItem--privateWide .bookItem__image {
    margin-bottom: 24px;
  }
  .bookItem--privateWide .bookItem__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 540px) {
  .book {
    padding: 40px 0;
  }
  .book__inner-title {
    margin-bottom: 30px;
  }
  .bookItem {
    padding: 20px;
  }
  .bookItem__image {
    margin-bottom: 16px;
  }
  .bookItem__address {
    padding: 20px;
  }
  .bookItem__title {
    margin-bottom: 20px;
  }
  .bookItem__buttons {
    margin-bottom: 20px;
  }
  .bookItem__buttons .button {
    margin-bottom: 16px;
  }
}
.cuban {
  padding: 90px 0;
}
.cuban.rev {
  padding: 50px 0 140px;
}
.cuban.rev .cubanBanner {
  right: unset;
  left: 0;
}
.cuban.rev .cubanPlace {
  order: -1;
}
.cuban.sm {
  padding: 90px 0 50px;
}
.cuban.sm .cubanContent {
  width: calc(48% - 15px);
  max-width: 508px;
}
.cuban.sm .cubanContent h3 {
  margin-bottom: 20px;
}
.cuban.sm .cubanBanner {
  width: calc(52% - 15px);
  max-width: 578px;
}
.cuban.sm .cubanBanner__inner {
  padding-bottom: 68%;
}
.cuban.sm .cubanPlace {
  width: calc(52% - 15px);
  max-width: 578px;
}
.cuban.sm .cubanPlace__inner {
  padding-bottom: 68%;
}
.cuban__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.cubanContent {
  width: calc(52% - 15px);
  max-width: 588px;
}
.cubanContent h3 {
  margin-bottom: 28px;
  font-style: italic;
}
.cubanContent p {
  margin-bottom: 32px;
}
.cubanContent p:last-child {
  margin: 0;
}
.cubanBanner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(48% - 15px);
  max-width: 487px;
}
.cubanBanner__inner {
  width: 100%;
  padding-bottom: 110%;
  position: relative;
}
.cubanBanner__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.cubanPlace {
  width: calc(48% - 15px);
  max-width: 487px;
}
.cubanPlace__inner {
  width: 100%;
  padding-bottom: 110%;
}

@media (max-width: 1380px) {
  .cuban.rev {
    padding: 50px 0 120px;
  }
  .cuban.sm {
    padding: 90px 0 50px;
  }
}
@media (max-width: 1180px) {
  .cuban {
    padding: 70px 0;
  }
  .cuban.rev {
    padding: 50px 0 100px;
  }
  .cuban.sm {
    padding: 80px 0 40px;
  }
  .cubanContent h3 {
    margin-bottom: 20px;
  }
  .cubanContent p {
    margin-bottom: 20px;
  }
}
@media (max-width: 930px) {
  .cuban {
    padding: 60px 0;
  }
  .cuban.rev {
    padding: 40px 0 80px;
  }
  .cuban.sm {
    padding: 60px 0 30px;
  }
  .cuban__inner {
    flex-direction: column;
  }
  .cubanContent {
    width: 100% !important;
    max-width: unset !important;
  }
  .cubanContent h3 {
    margin-bottom: 30px !important;
  }
  .cubanContent p {
    margin-bottom: 30px;
  }
  .cubanBanner {
    width: 100% !important;
    max-width: unset !important;
    position: static;
    transform: translate(0);
    margin-bottom: 30px;
  }
  .cubanBanner__inner {
    padding-bottom: 70%;
  }
  .cubanPlace {
    display: none;
  }
}
@media (max-width: 750px) {
  .cuban.rev {
    padding: 30px 0 60px;
  }
  .cuban.sm {
    padding: 60px 0 30px;
  }
}
@media (max-width: 540px) {
  .cuban {
    padding: 40px 0;
  }
  .cuban.rev {
    padding: 30px 0 40px;
  }
  .cuban.sm {
    padding: 50px 0 30px;
  }
  .cubanContent h3 {
    margin-bottom: 20px;
  }
  .cubanBanner {
    margin-bottom: 20px;
  }
  .cubanBanner__inner {
    padding-bottom: 110%;
  }
}
.career {
  padding: 120px 0;
}
.career.big {
  padding: 100px 0 50px;
}
.career__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.careerContent {
  width: calc(47% - 15px);
  max-width: 480px;
}
.careerContent__title {
  border-bottom: 1px solid #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.careerContent__title h3 {
  font-weight: 700;
  font-style: italic;
}
.careerContent__title p {
  color: #a80000;
}
.careerContent__text {
  margin-bottom: 24px;
}
.careerContent__text p {
  line-height: 120%;
  margin-bottom: 20px;
}
.careerContent__text p:last-child {
  margin: 0;
}
.careerContent__name span {
  margin-right: 22px;
}
.careerContent__name span:last-child {
  margin: 0;
}
.careerBanner {
  width: calc(53% - 15px);
  max-width: 628px;
}
.careerBanner__inner {
  width: 100%;
  margin-bottom: 36px;
  padding-bottom: 98%;
  position: relative;
}
.careerBanner__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.careerBanner__name {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 30px 35px;
  text-align: end;
}
.careerBanner__name h2 {
  margin-bottom: 8px;
}
.careerBanner__name h4 {
  font-style: italic;
  font-weight: 400;
}
.careerBanner__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.careerBanner__foot p {
  font-style: italic;
}
.careerBanner__foot hr {
  flex: 1;
  height: 1px;
  background: #fff;
  margin: 0 22px;
}

@media (max-width: 1380px) {
  .career {
    padding: 100px 0;
  }
}
@media (max-width: 1180px) {
  .career {
    padding: 80px 0;
  }
  .career.big {
    padding: 80px 0 40px;
  }
  .careerBanner__name {
    padding: 20px;
  }
}
@media (max-width: 930px) {
  .career {
    padding: 60px 0;
  }
  .career.big {
    padding: 60px 0 30px;
  }
  .career__inner {
    flex-direction: column;
  }
  .careerContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .careerBanner {
    width: 100%;
    max-width: unset;
  }
  .careerBanner__name {
    padding: 30px;
  }
  .careerBanner__name h2 {
    margin-bottom: 12px;
  }
}
@media (max-width: 540px) {
  .career {
    padding: 40px 0;
  }
  .career.big {
    padding: 40px 0 30px;
  }
  .careerContent__title {
    margin-bottom: 20px;
  }
  .careerContent__text p {
    margin-bottom: 14px;
  }
  .careerContent__name span {
    margin-right: 12px;
  }
  .careerBanner__name {
    padding: 20px;
  }
  .careerBanner__name h2 {
    margin-bottom: 8px;
  }
  .careerBanner__inner {
    margin-bottom: 24px;
  }
}
.community {
  padding: 96px 0 75px;
}
.communityBanner {
  width: 100%;
  padding-bottom: 50%;
  position: relative;
  margin-bottom: 28px;
}
.communityBanner__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 38px;
}
.communityBanner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.community__inner-row {
  display: flex;
  justify-content: space-between;
}
.communityItem {
  width: calc(33.3% - 12px);
  max-width: 373px;
}
.communityItem__image {
  width: 100%;
  padding-bottom: 66.6%;
  position: relative;
  margin-bottom: 26px;
}
.communityItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.communityItem p a {
  color: #ff0000;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .community {
    padding: 80px 0;
  }
}
@media (max-width: 930px) {
  .community {
    padding: 60px 0;
  }
  .communityBanner {
    min-height: 300px;
  }
  .communityBanner__title {
    padding: 20px;
  }
  .community__inner-row {
    flex-direction: column;
  }
  .communityItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .communityItem:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .community {
    padding: 50px 0;
  }
  .communityBanner {
    margin-bottom: 24px;
    min-height: 250px;
  }
  .communityBanner__title {
    padding: 12px;
  }
  .communityBanner h2 {
    font-size: 28px;
  }
  .communityItem {
    margin-bottom: 30px;
  }
  .communityItem__image {
    margin-bottom: 14px;
  }
}
.teams {
  padding: 50px 0 20px;
}
.teams__inner-title {
  margin-bottom: 10px;
  text-align: center;
}
.teams__inner-title h3 {
  font-weight: 700;
  font-style: italic;
}
.teams__inner-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.teamsItem {
  width: calc(33.3% - 40px);
  margin: 40px 20px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d9d9;
  color: #000;
}
.teamsItem__image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.teamsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.teamsItem__name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  color: #fff;
  font-style: italic;
}
.teamsItem__name h5 {
  white-space: nowrap;
}
.teamsItem__name p {
  padding-left: 10px;
  border-left: 1px solid #fff;
  margin-left: 10px;
  line-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.teamsItem__content {
  padding: 12px 24px 24px;
}

@media (max-width: 1380px) {
  .teamsItem {
    margin: 30px 20px;
  }
}
@media (max-width: 1180px) {
  .teams__inner-row {
    margin: 0 -12px;
  }
  .teamsItem {
    margin: 20px 12px;
    width: calc(33.3% - 24px);
  }
  .teamsItem__name h5 {
    font-size: 20px;
  }
  .teamsItem__name p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 930px) {
  .teamsItem {
    width: calc(50% - 24px);
  }
  .teamsItem__content {
    padding: 20px 24px 24px;
  }
}
@media (max-width: 650px) {
  .teams {
    padding: 40px 0;
  }
  .teams__inner-title {
    margin-bottom: 24px;
  }
  .teams__inner-row {
    flex-direction: column;
    margin: 0;
  }
  .teamsItem {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .teamsItem:last-child {
    margin: 0;
  }
  .teamsItem__name h5 {
    font-size: 22px;
  }
  .teamsItem__name p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 540px) {
  .teams {
    padding: 30px 0;
  }
  .teamsItem {
    margin-bottom: 24px;
  }
  .teamsItem__content {
    padding: 12px 20px 24px;
  }
}
.collabs {
  padding: 40px 0 150px;
}
.collabs__inner-title {
  margin-bottom: 54px;
  text-align: center;
}
.collabs__inner-title h3 {
  font-weight: 700;
  font-style: italic;
}
.collabsItem {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 70px;
}
.collabsItem:last-child {
  margin: 0;
}
.collabsItem__image {
  width: 370px;
  position: relative;
  display: flex;
}
.collabsItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.collabsItem__image h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(0, 0, 0, 0.49);
}
.collabsItem__content {
  flex: 1;
  background: #fff;
  color: #000;
  padding: 36px;
  min-width: 335px;
}
.collabsItem__title {
  margin-bottom: 16px;
}
.collabsItem__title h5 {
  font-weight: 700;
  font-style: italic;
  color: #bc0006;
}
.collabsItem__row {
  display: flex;
  justify-content: space-between;
}
.collabsItem__text {
  flex: 1;
}
.collabsItem__text p span {
  color: #ff0000;
}
.collabsItem__text a {
  color: #bc0006;
  text-decoration: underline;
}
.collabsItem__info {
  width: 190px;
  margin-left: 24px;
  padding-left: 24px;
  padding-bottom: 60px;
  border-left: 1px solid #acacac;
  position: relative;
}
.collabsItem__info h6 {
  font-weight: 700;
  font-style: italic;
  color: #bc0006;
  margin-bottom: 12px;
}
.collabsItem__info ul {
  padding-left: 22px;
}
.collabsItem__info ul li {
  margin-bottom: 11px;
  list-style: disc;
  line-height: 120%;
}
.collabsItem__info ul li:last-child {
  margin: 0;
}
.collabsItem__info ul li::marker {
  font-size: 70%;
  font-weight: 400;
}
.collabsItem__logo {
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 50px;
  display: flex;
}
.collabsItem__logo img {
  width: 100%;
}

@media (max-width: 1380px) {
  .collabs {
    padding: 40px 0 120px;
  }
}
@media (max-width: 1180px) {
  .collabs {
    padding: 40px 0 100px;
  }
  .collabs__inner-title {
    margin-bottom: 40px;
  }
  .collabsItem {
    margin-bottom: 50px;
  }
  .collabsItem__image {
    width: 300px;
  }
  .collabsItem__content {
    padding: 24px;
  }
  .collabsItem__title {
    margin-bottom: 12px;
  }
  .collabsItem__logo {
    bottom: 0;
  }
  .collabsItem__info {
    margin-left: 20px;
    padding-left: 20px;
    width: 170px;
    font-size: 14px;
    line-height: 120%;
  }
  .collabsItem__text p {
    font-size: 14px;
    line-height: 120%;
  }
}
@media (max-width: 930px) {
  .collabs {
    padding: 30px 0 80px;
  }
  .collabs__inner-title {
    margin-bottom: 30px;
  }
  .collabsItem {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .collabsItem__image {
    width: 100%;
    padding-bottom: 70%;
    position: relative;
  }
  .collabsItem__image img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .collabsItem__content {
    padding: 30px;
  }
  .collabsItem__logo {
    bottom: -12px;
  }
}
@media (max-width: 750px) {
  .collabsItem__content {
    padding: 24px;
  }
}
@media (max-width: 650px) {
  .collabsItem__row {
    flex-direction: column;
  }
  .collabsItem__text {
    margin-bottom: 20px;
  }
  .collabsItem__text:last-child {
    margin: 0;
  }
  .collabsItem__info {
    width: 100%;
    padding: 20px 60px 0 0;
    border: unset;
    margin: 0;
    border-top: 1px solid #acacac;
  }
  .collabsItem__logo {
    bottom: 0;
  }
}
@media (max-width: 540px) {
  .collabs {
    padding: 30px 0 50px;
  }
  .collabs__inner-title {
    margin-bottom: 24px;
  }
  .collabsItem {
    margin-bottom: 24px;
  }
  .collabsItem__image {
    padding-bottom: 90%;
  }
  .collabsItem__image h4 {
    font-size: 28px;
    padding: 10px 20px;
  }
  .collabsItem__content {
    padding: 20px 20px 24px;
  }
}
.careerContent__title p {
  color: #ea0e0e;
}

.private {
  padding: 0 0 60px;
}
.private.last {
  padding-bottom: 0;
  padding-top: 0;
}
.private__inner-text {
  margin-bottom: 50px;
}
.private__inner-row {
  display: flex;
  justify-content: space-between;
}
.privateBanner {
  width: 100%;
  position: relative;
  padding: 42px 50px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 110px;
  margin-bottom: 30px;
}
.privateBanner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
}
.privateBanner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.privateBanner__top {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.privateBanner__top h4 {
  font-style: italic;
  font-weight: 400;
}
.privateBanner__row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.privateBanner__title {
  flex: 1;
}
.privateBanner__button {
  padding-top: 16px;
  width: 226px;
  margin-left: 20px;
}
.privateBanner h2 {
  margin-bottom: 10px;
}
.privateBanner h5 {
  font-style: italic;
  font-weight: 400;
}
.privateBanner h5 b {
  font-weight: 700;
}
.privateBanner .button {
  width: 100%;
}
.privateItem {
  width: calc(50% - 15px);
  max-width: 567px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 38px 24px;
  color: #000;
}
.privateItem__image {
  width: 100%;
  padding-bottom: 65%;
  position: relative;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
}
.privateItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.privateItem__image h5 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 18px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1380px) {
  .private {
    padding: 100px 0 50px;
  }
}
@media (max-width: 1180px) {
  .private {
    padding: 80px 0 40px;
  }
  .private__inner-text {
    margin-bottom: 40px;
  }
  .privateBanner {
    padding: 30px;
  }
  .privateItem {
    padding: 24px;
  }
}
@media (max-width: 930px) {
  .private {
    padding: 60px 0 30px;
  }
  .private.last {
    padding: 40px 0;
  }
  .private__inner-text {
    margin-bottom: 30px;
  }
  .private__inner-row {
    flex-direction: column;
  }
  .privateBanner {
    padding: 24px;
    min-height: 440px;
  }
  .privateBanner__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .privateBanner__title {
    margin-bottom: 24px;
  }
  .privateBanner__button {
    width: 100%;
    max-width: 226px;
    margin: 0;
    padding: 0;
  }
  .privateItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
    padding: 30px;
  }
  .privateItem:last-child {
    margin: 0;
  }
  .privateItem__image {
    margin-bottom: 24px;
  }
}
@media (max-width: 540px) {
  .private {
    padding: 40px 0 20px;
  }
  .private.last {
    padding: 20px 0 40px;
  }
  .private__inner-text {
    margin-bottom: 24px;
  }
  .privateBanner {
    min-height: 400px;
    margin-bottom: 24px;
    padding: 20px;
  }
  .privateBanner__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: 0.2;
  }
  .privateBanner__bg img {
    object-position: 58%;
  }
  .privateBanner__button {
    max-width: unset;
  }
  .privateBanner h2 {
    font-size: 30px;
  }
  .privateItem {
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 14px;
  }
  .privateItem__image {
    margin-bottom: 16px;
    border-radius: 14px;
  }
  .privateItem__image h5 {
    padding: 14px;
    background: rgba(0, 0, 0, 0.4);
  }
}
.calendar {
  padding: 70px 0 100px;
  background: #000;
  color: #fff;
}
.calendar__header {
  text-align: center;
  margin-bottom: 40px;
}
.calendar__header h2 {
  margin-bottom: 12px;
}
.calendar__widgets {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calendar__widget {
  min-width: 320px;
  height: 630px;
  opacity: 0;
  transform: translateY(18px);
  animation: calendarWidgetFadeIn 0.6s ease forwards;
}

@keyframes calendarWidgetFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 930px) {
  .calendar {
    padding: 60px 0 80px;
  }
  .calendar__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 540px) {
  .calendar {
    padding: 40px 0 60px;
  }
  .calendar__header {
    margin-bottom: 24px;
  }
}
.galleryPage {
  background: #000;
  color: #fff;
  padding: 150px 0 80px;
}
.galleryPage__heading {
  text-align: center;
  margin-bottom: 48px;
}
.galleryPage__heading h1 {
  margin-bottom: 12px;
}

.galleryGroup {
  margin-bottom: 52px;
}
.galleryGroup:last-child {
  margin-bottom: 0;
}
.galleryGroup h3 {
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 700;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 12px;
}
.galleryGrid__item {
  border: 0;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.galleryGrid__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.galleryGrid__item--tall {
  grid-row: span 2;
}
.galleryGrid__item--wide {
  grid-column: span 2;
}
.galleryGrid__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.galleryGrid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galleryModal {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.galleryModal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.galleryModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.galleryModal__dialog {
  position: relative;
  z-index: 2;
  width: min(96vw, 1200px);
  height: min(90vh, 820px);
  margin: 5vh auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galleryModal__dialog img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}
.galleryModal__close {
  position: absolute;
  top: -16px;
  right: -2px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: background 0.2s ease;
}
.galleryModal__close:hover {
  background: #be2026;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 930px) {
  .galleryPage {
    padding: 130px 0 70px;
  }
  .galleryPage__heading {
    margin-bottom: 34px;
  }
  .galleryGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }
}
@media (max-width: 750px) {
  .galleryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }
  .galleryGrid__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 540px) {
  .galleryPage {
    padding: 110px 0 56px;
  }
  .galleryPage__heading {
    margin-bottom: 24px;
  }
  .galleryPage__heading p {
    font-size: 18px;
    line-height: 1.35;
  }
  .galleryGroup {
    margin-bottom: 34px;
  }
  .galleryGroup h3 {
    margin-bottom: 12px;
  }
  .galleryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 110px;
  }
  .galleryGrid__item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .galleryGrid__item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .galleryGrid__item--tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .galleryGrid__item:hover {
    transform: none;
    box-shadow: none;
  }
  .galleryGrid__item img {
    min-height: 100%;
  }
  .galleryModal__dialog {
    width: min(96vw, 700px);
    height: min(82vh, 560px);
    margin-top: 8vh;
  }
  .galleryModal__close {
    top: -10px;
    right: -2px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}
/**
 * Swiper 8.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 15, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
