@charset "UTF-8";/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.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);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .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-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.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:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .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);
  }
}
/* Slide styles end */
@-webkit-keyframes notyf-fadeinup{0%{opacity:0;transform:translateY(25%)}to{opacity:1;transform:translateY(0)}}@keyframes notyf-fadeinup{0%{opacity:0;transform:translateY(25%)}to{opacity:1;transform:translateY(0)}}@-webkit-keyframes notyf-fadeinleft{0%{opacity:0;transform:translateX(25%)}to{opacity:1;transform:translateX(0)}}@keyframes notyf-fadeinleft{0%{opacity:0;transform:translateX(25%)}to{opacity:1;transform:translateX(0)}}@-webkit-keyframes notyf-fadeoutright{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(25%)}}@keyframes notyf-fadeoutright{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(25%)}}@-webkit-keyframes notyf-fadeoutdown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(25%)}}@keyframes notyf-fadeoutdown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(25%)}}@-webkit-keyframes ripple{0%{transform:scale(0) translateY(-45%) translateX(13%)}to{transform:scale(1) translateY(-45%) translateX(13%)}}@keyframes ripple{0%{transform:scale(0) translateY(-45%) translateX(13%)}to{transform:scale(1) translateY(-45%) translateX(13%)}}.notyf{position:fixed;top:0;left:0;height:100%;width:100%;color:#fff;z-index:9999;display:flex;flex-direction:column;align-items:flex-end;justify-content:flex-end;pointer-events:none;box-sizing:border-box;padding:20px}.notyf__icon--error,.notyf__icon--success{height:21px;width:21px;background:#fff;border-radius:50%;display:block;margin:0 auto;position:relative}.notyf__icon--error:after,.notyf__icon--error:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px;left:9px;height:12px;top:5px}.notyf__icon--error:after{transform:rotate(-45deg)}.notyf__icon--error:before{transform:rotate(45deg)}.notyf__icon--success:after,.notyf__icon--success:before{content:"";background:currentColor;display:block;position:absolute;width:3px;border-radius:3px}.notyf__icon--success:after{height:6px;transform:rotate(-45deg);top:9px;left:6px}.notyf__icon--success:before{height:11px;transform:rotate(45deg);top:5px;left:10px}.notyf__toast{display:block;overflow:hidden;pointer-events:auto;-webkit-animation:notyf-fadeinup .3s ease-in forwards;animation:notyf-fadeinup .3s ease-in forwards;box-shadow:0 3px 7px 0 rgba(0,0,0,.25);position:relative;padding:0 15px;border-radius:2px;max-width:300px;transform:translateY(25%);box-sizing:border-box;flex-shrink:0}.notyf__toast--disappear{transform:translateY(0);-webkit-animation:notyf-fadeoutdown .3s forwards;animation:notyf-fadeoutdown .3s forwards;-webkit-animation-delay:.25s;animation-delay:.25s}.notyf__toast--disappear .notyf__icon,.notyf__toast--disappear .notyf__message{-webkit-animation:notyf-fadeoutdown .3s forwards;animation:notyf-fadeoutdown .3s forwards;opacity:1;transform:translateY(0)}.notyf__toast--disappear .notyf__dismiss{-webkit-animation:notyf-fadeoutright .3s forwards;animation:notyf-fadeoutright .3s forwards;opacity:1;transform:translateX(0)}.notyf__toast--disappear .notyf__message{-webkit-animation-delay:.05s;animation-delay:.05s}.notyf__toast--upper{margin-bottom:20px}.notyf__toast--lower{margin-top:20px}.notyf__toast--dismissible .notyf__wrapper{padding-right:30px}.notyf__ripple{height:400px;width:400px;position:absolute;transform-origin:bottom right;right:0;top:0;border-radius:50%;transform:scale(0) translateY(-51%) translateX(13%);z-index:5;-webkit-animation:ripple .4s ease-out forwards;animation:ripple .4s ease-out forwards}.notyf__wrapper{display:flex;align-items:center;padding-top:17px;padding-bottom:17px;padding-right:15px;border-radius:3px;position:relative;z-index:10}.notyf__icon{width:22px;text-align:center;font-size:1.3em;opacity:0;-webkit-animation:notyf-fadeinup .3s forwards;animation:notyf-fadeinup .3s forwards;-webkit-animation-delay:.3s;animation-delay:.3s;margin-right:13px}.notyf__dismiss{position:absolute;top:0;right:0;height:100%;width:26px;margin-right:-15px;-webkit-animation:notyf-fadeinleft .3s forwards;animation:notyf-fadeinleft .3s forwards;-webkit-animation-delay:.35s;animation-delay:.35s;opacity:0}.notyf__dismiss-btn{background-color:rgba(0,0,0,.25);border:none;cursor:pointer;transition:opacity .2s ease,background-color .2s ease;outline:none;opacity:.35;height:100%;width:100%}.notyf__dismiss-btn:after,.notyf__dismiss-btn:before{content:"";background:#fff;height:12px;width:2px;border-radius:3px;position:absolute;left:calc(50% - 1px);top:calc(50% - 5px)}.notyf__dismiss-btn:after{transform:rotate(-45deg)}.notyf__dismiss-btn:before{transform:rotate(45deg)}.notyf__dismiss-btn:hover{opacity:.7;background-color:rgba(0,0,0,.15)}.notyf__dismiss-btn:active{opacity:.8}.notyf__message{vertical-align:middle;position:relative;opacity:0;-webkit-animation:notyf-fadeinup .3s forwards;animation:notyf-fadeinup .3s forwards;-webkit-animation-delay:.25s;animation-delay:.25s;line-height:1.5em}@media only screen and (max-width:480px){.notyf{padding:0}.notyf__ripple{height:600px;width:600px;-webkit-animation-duration:.5s;animation-duration:.5s}.notyf__toast{max-width:none;border-radius:0;box-shadow:0 -2px 7px 0 rgba(0,0,0,.13);width:100%}.notyf__dismiss{width:56px}}@font-face {
  font-family: "lg";
  src: url("data:font/woff2;base64,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") format("woff2"), url("../assets/lg.ttf?io9a6k") format("truetype"), url("../assets/lg.woff?io9a6k") format("woff"), url("../assets/lg.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: none;
  border: none;
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}
.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}
.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  box-shadow: none;
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}
.lg-toolbar .lg-icon:hover {
  color: #fff;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-maximize {
  font-size: 22px;
}
.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
.lg-sub-html a {
  color: inherit;
}
.lg-sub-html a:hover {
  text-decoration: underline;
}
.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
  opacity: 0;
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  -o-transform: scale3d(0.5, 0.5, 0.5);
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, 0.6);
}

.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px;
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}
.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-overlay-open {
  overflow: hidden;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-zoom-from-image {
  opacity: 1;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}
.lg-outer .lg-item {
  display: none !important;
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("../assets/loading.gif") no-repeat scroll center center transparent;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}
.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}
.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity 0.2s ease-out 0.15s;
}
.lg-outer .lg-media-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.lg-outer .lg-media-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-has-iframe .lg-media-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-container {
  display: none;
}
.lg-container.lg-show {
  display: block;
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}
.lg-inline .lg-backdrop {
  z-index: 1;
}
.lg-inline .lg-outer {
  z-index: 2;
}
.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -moz-transition: -moz-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

/*# sourceMappingURL=lightgallery.css.map */.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
  text-align: center;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-left {
  text-align: left;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-right {
  text-align: right;
}
.lg-outer.lg-single-item .lg-thumb-outer {
  display: none;
}
.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb {
    padding: 10px 0;
  }
}
.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb-item {
    border-radius: 4px;
    border: 2px solid #fff;
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: rgb(169, 7, 7);
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}
.lg-outer.lg-animate-thumb .lg-thumb {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*# sourceMappingURL=lg-thumbnail.css.map */
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0ms !important;
  transition-duration: 0ms !important;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  -o-transition: -o-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
}
.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition {
  transition: none !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition {
  transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
  max-width: none !important;
  max-height: none !important;
  top: 50% !important;
  left: 50% !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x {
  transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
  top: 0 !important;
  left: 50% !important;
  max-width: none !important;
  max-height: none !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y {
  transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
  top: 50% !important;
  left: 0% !important;
  max-width: none !important;
  max-height: none !important;
}

.lg-icon.lg-zoom-in:after {
  content: "\e311";
}
.lg-actual-size .lg-icon.lg-zoom-in {
  opacity: 1;
  pointer-events: auto;
}
.lg-icon.lg-actual-size {
  font-size: 20px;
}
.lg-icon.lg-actual-size:after {
  content: "\e033";
}
.lg-icon.lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
.lg-icon.lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed .lg-icon.lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer[data-lg-slide-type=video] .lg-zoom-in,
.lg-outer[data-lg-slide-type=video] .lg-actual-size,
.lg-outer[data-lg-slide-type=video] .lg-zoom-out, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-in,
.lg-outer[data-lg-slide-type=iframe] .lg-actual-size,
.lg-outer[data-lg-slide-type=iframe] .lg-zoom-out, .lg-outer.lg-first-slide-loading .lg-zoom-in,
.lg-outer.lg-first-slide-loading .lg-actual-size,
.lg-outer.lg-first-slide-loading .lg-zoom-out {
  opacity: 0.75;
  pointer-events: none;
}

/*# sourceMappingURL=lg-zoom.css.map */
.lg-outer .lg-video-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.lg-outer .lg-video-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-has-iframe .lg-video-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.lg-outer .lg-video-object {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
}
.lg-outer .lg-video-poster {
  z-index: 1;
}
.lg-outer .lg-has-video .lg-video-object {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster,
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button {
  opacity: 0 !important;
}
.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
  opacity: 1;
}

@keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.lg-video-play-button {
  width: 18%;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  will-change: opacity, transform;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  -o-transition: -o-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
}
.lg-video-play-button:hover .lg-video-play-icon-bg,
.lg-video-play-button:hover .lg-video-play-icon {
  opacity: 1;
}

.lg-video-play-icon-bg {
  fill: none;
  stroke-width: 3%;
  stroke: #fcfcfc;
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  -o-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  fill: none;
  stroke-width: 3%;
  stroke: rgba(30, 30, 30, 0.9);
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.lg-video-play-icon {
  position: absolute;
  width: 25%;
  max-width: 120px;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  -o-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}
.lg-video-play-icon .lg-video-play-icon-inner {
  fill: #fcfcfc;
}

.lg-video-loading .lg-video-play-icon-circle {
  animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
}

.lg-video-loaded .lg-video-play-button {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

/*# sourceMappingURL=lg-video.css.map */

/* reset.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Сброс стилей списков */
ul,
ol {
  list-style: none;
}

/* Сброс ссылок */
a {
  text-decoration: none;
  color: inherit;
}

/* Сброс кнопок и инпутов */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Сброс таблиц */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Сброс изображений */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Сброс заголовков и параграфов */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

/* =========================
   Montserrat
   ========================= */
@font-face {
  font-family: "Montserrat";
  src: url("../assets/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* =========================
   Base styles
   ========================= */
body {
  font-family: "Montserrat", sans-serif;
}

:root {
  --black: #0f172a;
  --black40: rgba(15, 23, 42, 0.4);
  --white: #fff;
  --gray: #ecf0f3;
  --gold: #bd9f7c;
  --fullBlack: #000;
}

:root {
  --font-family: 'Montserrat', sans-serif;
}

:root {
  --header-height: 93px;
}
@media (max-width: 768px) {
  :root {
    --header-height: 79px;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--black);
  background-color: var(--white);
  font-size: 1rem;
  scroll-behavior: smooth;
}
body.menu-open {
  overflow: hidden;
}

.notyf__error {
  border-radius: 10px;
}

.is-invalid {
  border-bottom: 1px solid #be7070 !important;
}

.is-invalid + .form__label {
  color: #be7070 !important;
}

.form__checkbox-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Chrome, Edge, Safari */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form__checkbox-hidden.is-invalid + .form__checkbox-label {
  color: #be7070 !important;
}
.form__checkbox-hidden.is-invalid + .form__checkbox-label .form__checkbox::after {
  border-color: #be7070 !important;
}

.honeypot {
  display: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.wrapper section:nth-child(2) {
  margin-top: var(--header-height);
}

section {
  scroll-margin-top: calc(var(--header-height) + 60px);
}

[class$=__container] {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
@media (max-width: 1024px) {
  [class$=__container] {
    padding: 0 20px;
  }
}
@media (max-width: 744px) {
  [class$=__container] {
    padding: 0 15px;
  }
}

[class$=__container-wide] {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  [class$=__container-wide] {
    padding: 0 20px;
  }
}

.p-48 {
  padding-block: 48px;
}
@media (max-width: 1024px) {
  .p-48 {
    padding-block: 40px;
  }
}
@media (max-width: 768px) {
  .p-48 {
    padding-block: 32px;
  }
}
@media (max-width: 480px) {
  .p-48 {
    padding-block: 24px;
  }
}

.p-80 {
  padding-block: 80px;
}
@media (max-width: 1024px) {
  .p-80 {
    padding-block: 64px;
  }
}
@media (max-width: 768px) {
  .p-80 {
    padding-block: 48px;
  }
}
@media (max-width: 480px) {
  .p-80 {
    padding-block: 32px;
  }
}

.text-h1 {
  font-family: var(--font-family);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.96px;
}
@media (max-width: 1024px) {
  .text-h1 {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -0.48px;
  }
}
@media (max-width: 768px) {
  .text-h1 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.36px;
  }
}
@media (max-width: 480px) {
  .text-h1 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}

.text-h2 {
  font-family: var(--font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.6px;
}
@media (max-width: 1024px) {
  .text-h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.32px;
  }
}
@media (max-width: 768px) {
  .text-h2 {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0.28px;
  }
}
@media (max-width: 480px) {
  .text-h2 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.24px;
  }
}

.text-h3 {
  font-family: var(--font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 112.5% */
  letter-spacing: -0.4px;
}
@media (max-width: 1024px) {
  .text-h3 {
    font-size: 22px;
    line-height: 28px; /* 140% */
  }
}
@media (max-width: 768px) {
  .text-h3 {
    font-size: 20px;
    line-height: 26px; /* 133.333% */
  }
}

.text-h4 {
  font-family: var(--font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 116.667% */
}
@media (max-width: 1024px) {
  .text-h4 {
    font-size: 20px;
    line-height: 24px; /* 150% */
  }
}

.text-h5 {
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
}
@media (max-width: 1024px) {
  .text-h5 {
    font-size: 16px;
    line-height: 24px;
  }
}

.text-italic {
  font-family: var(--font-family);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.text-base, .btn-primary {
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.08px;
}
@media (max-width: 768px) {
  .text-base, .btn-primary {
    font-size: 14px;
    line-height: 20px;
  }
}

.text-sm {
  font-family: var(--font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.btn-primary {
  cursor: pointer;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-right: auto;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  background-color: var(--black);
  border-radius: 9999px;
}
.btn-primary:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .btn-primary {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.btn-primary:disabled {
  background-color: var(--black40);
  cursor: not-allowed;
}

.btn-sm {
  margin-right: 0;
  padding: 10px 20px;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--gold);
}

.lg-outer .lg-thumb-item {
  border-color: transparent;
}

.header {
  position: fixed;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.8s ease 0s;
  background-color: var(--white);
}
.header-scroll .header {
  top: -100%;
}
.header__container-wide {
  max-width: 1400px;
  border: 1px solid transparent;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding-block: 24px;
  width: 100%;
}
.header__block {
  display: flex;
  gap: 32px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--fullBlack);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.header__link {
  height: 100%;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.header__link:hover {
  opacity: 0.7;
}
.header__open-btn {
  display: none;
}

.hero {
  position: relative;
  color: var(--white);
}
.hero__wrapper {
  min-height: 644px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero__info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.hero__title {
  max-width: 840px;
}
.hero__text {
  max-width: 544px;
}
.hero__btn {
  margin-right: 0;
}
.hero__img img {
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.partners__block {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.partners__title {
  text-align: center;
}
.partners__slider {
  width: 100%;
}
.partners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 252px;
  height: auto;
}

.space__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.space__info {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.space__img {
  position: relative;
  min-height: 422px;
  height: 100%;
}
.space__img img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.space__tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  max-width: 100%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.space__tab {
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(189, 159, 124, 0.1);
  background: rgba(10, 10, 10, 0.3);
  min-width: 148px;
}
.space__tab-title {
  color: var(--gold);
}
.space__p {
  color: var(--white);
  opacity: 0.7;
}

.eventarten__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.eventarten__info {
  display: flex;
  gap: 16px;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 842px;
}
.eventarten__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.eventarten .item {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--gray);
  justify-content: space-between;
}
.eventarten .item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--black);
}
.eventarten .item__subtitle {
  font-family: Montserrat;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.eventarten .item__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 116.667% */
}

.location__container-wide {
  text-align: center;
}
.location__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.location__info {
  max-width: 842px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.location__img {
  width: 100%;
  height: auto;
}
.location__img img {
  width: 100%;
  height: auto;
}

.features {
  background-color: var(--gray);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 128px;
}
.features__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(30px + var(--header-height));
  height: fit-content;
}
.features__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features .item {
  padding: 24px;
  display: flex;
  gap: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  align-items: center;
}
.features .item__logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  border: 1px solid var(--gold);
  position: relative;
}
.features .item__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}

.gallery__block {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
.gallery__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: 896px;
}
.gallery__title {
  max-width: 817px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}
.gallery__item {
  height: 370px;
  cursor: pointer;
  position: relative;
}
.gallery__item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.gallery__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}
.gallery__item:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.gallery__img, .gallery__video {
  grid-column: span 4;
}
.gallery__item.grid-6 {
  height: 475px;
  grid-column: span 6;
}
.gallery__item.grid-3 {
  height: 475px;
  grid-column: span 3;
}
.gallery__video {
  position: relative;
}
.gallery__video::after {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.gallery__video::before {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23fff'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='lucide%20lucide-play-icon%20lucide-play'%3e%3cpath%20d='M5%205a2%202%200%200%201%203.008-1.728l11.997%206.998a2%202%200%200%201%20.003%203.458l-12%207A2%202%200%200%201%205%2019z'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  z-index: 2;
}
.gallery__video:hover::after {
  background-color: rgb(0, 0, 0);
  transform: translate(-50%, -50%) scale(1.1);
}
.gallery__video:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
}

.reviews__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reviews__slider {
  width: 100%;
}
@media (min-width: 1253px) {
  .reviews__slider {
    padding-left: 20px;
    width: calc(100% - (50vw - 665px));
    margin-left: calc(50vw - 665px);
  }
}
.reviews__slide {
  width: 400px;
  padding: 12px 30px;
  height: auto;
}
.reviews .item {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: space-between;
  height: 100%;
}
.reviews .item__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews .item__info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.reviews .item .item__key {
  color: #878b94;
}
.reviews .item .item__logos {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
}
.reviews .item .item__logos::after {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M16.5162%2011.5061L8.19062%203.20355C7.91785%202.93169%207.47622%202.93214%207.2039%203.20496C6.93179%203.47773%206.93249%203.91961%207.2053%204.19168L15.0353%2012L7.20502%2019.8083C6.93225%2020.0805%206.93154%2020.5221%207.20362%2020.7949C7.34013%2020.9316%207.51897%2021%207.69781%2021C7.87619%2021%208.05432%2020.9321%208.19059%2020.7963L16.5162%2012.494C16.6475%2012.3633%2016.7213%2012.1854%2016.7213%2012C16.7213%2011.8147%2016.6473%2011.637%2016.5162%2011.5061Z'%20fill='%239B8164'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.reviews .item .item__logos:hover {
  opacity: 0.7;
}
.reviews .item .item__logo {
  height: 20px;
  width: auto;
}
.reviews__navigation {
  margin-top: 74px;
  display: flex;
  gap: 28px;
  margin-right: 64px;
  justify-content: flex-end;
  align-items: center;
}
.reviews__button-next, .reviews__button-prev {
  cursor: pointer;
}
.reviews__button-next::after, .reviews__button-prev::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg%20width='30'%20height='30'%20viewBox='0%200%2030%2030'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M29.3089%2015.6106H0.69351C0.353125%2015.6106%200.078125%2015.3356%200.078125%2014.9952C0.078125%2014.6548%200.353125%2014.3798%200.69351%2014.3798H27.8224L24.0877%2010.6452C23.8474%2010.4048%2023.8474%2010.0144%2024.0877%209.77404C24.3281%209.53365%2024.7185%209.53365%2024.9589%209.77404L29.7454%2014.5606C29.9224%2014.7375%2029.9743%2015.001%2029.8781%2015.2317C29.782%2015.4606%2029.557%2015.6106%2029.3089%2015.6106Z'%20fill='%230F172A'/%3e%3cpath%20d='M24.5172%2020.4034C24.3596%2020.4034%2024.2019%2020.3438%2024.0826%2020.2227C23.8422%2019.9823%2023.8422%2019.5919%2024.0826%2019.3515L28.8749%2014.5592C29.1153%2014.3188%2029.5057%2014.3188%2029.7461%2014.5592C29.9865%2014.7996%2029.9865%2015.19%2029.7461%2015.4303L24.9538%2020.2227C24.8326%2020.3438%2024.6749%2020.4034%2024.5172%2020.4034Z'%20fill='%230F172A'/%3e%3c/svg%3e");
}
.reviews__button-prev {
  transform: rotate(180deg);
}

.register {
  background-color: var(--gray);
  margin: 12px;
  border-radius: 24px;
}
.register__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.register__left {
  margin-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: calc(30px + var(--header-height));
  height: fit-content;
}
.register__info {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.register .person {
  display: flex;
  gap: 16px;
  align-items: center;
}
.register .person__img {
  width: 154px;
  height: 154px;
  position: relative;
}
.register .person__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  object-position: center;
  object-fit: cover;
}
.register .person__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #0f172a;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.register .person__title {
  color: #0f172a;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.register .person__top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.register .person__text {
  font-weight: 400;
}
.register .person__foo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.register .person__link {
  display: flex;
  gap: 12px;
  align-items: center;
}
.register .person__link:hover .person__logo {
  transform: scale(1.1);
}
.register .person__logo {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}
.register .form {
  max-width: 600px;
  margin-left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.register .form__gender-group {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 12px;
}
.register .form__gender-label {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.register .form__gender-radio {
  margin-right: 6px;
  width: 20px;
  height: 20px;
  appearance: none;
  position: relative;
  cursor: pointer;
}
.register .form__gender-radio::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  border: 2px solid var(--black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.register .form__gender-radio::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.register .form__gender-radio:checked::before {
  opacity: 1;
}
.register .form__col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.register .form__group {
  position: relative;
}
.register .form__label {
  position: absolute;
  color: rgba(15, 23, 42, 0.4);
  font-family: Montserrat;
  top: 28px;
  left: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.3s ease;
  background-color: var(--gray);
  width: 100%;
  z-index: 5;
  cursor: text;
  white-space: nowrap;
}
.register .form__input {
  width: 100%;
  font-size: 16px;
  padding: 28px 0 14px 0;
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  cursor: text;
}
.register .form .form__input:focus ~ .form__label,
.register .form .form__input:not(:placeholder-shown) ~ .form__label {
  top: 0;
  font-size: 12px;
}
.register .form textarea.form__input {
  min-height: 125px;
  resize: vertical;
  overflow-y: hidden;
}
.register .form__checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.register .form__checkbox-group a {
  text-decoration: underline;
}
.register .form__checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  user-select: none;
  color: #0f172a;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.register .form__checkbox {
  width: 20px;
  height: 20px;
  appearance: none;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.register .form__checkbox::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.register .form__checkbox::before {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3csvg%20width='12'%20height='8'%20viewBox='0%200%2012%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.8982%200.181761C11.1377%200.422918%2011.1363%200.81256%2010.8951%201.05204L4.0786%207.82129C3.83862%208.05957%203.45132%208.05957%203.21135%207.82129L0.181761%204.81274C-0.0593962%204.57323%20-0.0607562%204.18363%200.178727%203.94246C0.41821%203.70129%200.807853%203.69994%201.04901%203.93938L3.64497%206.51735L10.0279%200.178727C10.269%20-0.0607562%2010.6587%20-0.0593962%2010.8982%200.181761Z'%20fill='%230F172A'/%3e%3c/svg%3e");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  font-size: 10px;
}
.register .form__checkbox:checked::before {
  opacity: 1;
}
.register .form__button {
  margin-top: 8px;
}

.footer {
  padding-top: 64px;
  padding-bottom: 40px;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}
.footer__head {
  display: flex;
  justify-content: space-between;
}
.footer__logo {
  width: 98px;
  height: 98px;
  position: relative;
}
.footer__logo img {
  position: absolute;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer__right {
  display: flex;
  max-width: 480px;
  gap: 80px;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__title {
  color: var(--black);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__item img {
  width: 16px;
  height: 16px;
}
.footer__item span {
  color: var(--black);
  text-align: right;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.footer__icons {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
.footer__icon {
  padding: 12px;
  width: 44px;
  height: 44px;
  border-radius: 100000px;
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.footer__icon img {
  width: 20px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
.footer__foo {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 32px;
}
.footer__copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  opacity: 0.4;
}
.footer__pages {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.footer__page {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer__page:hover {
  border-color: var(--black);
}

.widget {
  position: fixed;
  z-index: 9;
  bottom: 80px;
  right: 20px;
}
.widget__items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.widget__item {
  border-radius: 50%;
  background-color: var(--black);
  padding: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.widget__item img {
  width: 24px;
  height: 24px;
  padding: 3px;
  aspect-ratio: 1/1;
}
.widget__item:hover {
  opacity: 0.8;
}

.content .text__body {
  max-width: 880px;
}
.content .text__body h1 {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.4px;
  margin-top: 48px;
  margin-bottom: 16px;
}
.content .text__body h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.28px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.content .text__body h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.24px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.content .text__body p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.24px;
  margin-bottom: 16px;
}
.content .text__body ul {
  list-style: none;
  margin: 16px 0 16px 24px;
  padding-left: 0;
}
.content .text__body ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.content .text__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9.6px;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 50%;
}
.content .text__body ol {
  list-style: decimal;
  margin: 16px 0 16px 24px;
}
.content .text__body ol li {
  margin-bottom: 8px;
}
.content .text__body div h3:first-child {
  margin-top: 0;
}
.content .text__body div:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .content .text__body {
    max-width: 100%;
    padding: 16px;
  }
  .content .text__body h1 {
    font-size: 28.8px;
    line-height: 35.2px;
    margin-top: 32px;
  }
  .content .text__body h2 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 28.8px;
  }
  .content .text__body h3 {
    font-size: 20.8px;
    line-height: 28.8px;
    margin-top: 24px;
  }
  .content .text__body p {
    font-size: 15.2px;
    line-height: 22.4px;
  }
  .content .text__body ul,
  .content .text__body ol {
    margin-left: 19.2px;
    font-size: 15.2px;
  }
}

@media (max-width: 1024px) {
  .header__wrapper {
    gap: 16px;
  }
  .header__menu {
    gap: 12px;
  }
  .partners__slide {
    width: 122px;
  }
  .space__tabs {
    flex-direction: column;
  }
  .features__grid {
    gap: 36px;
  }
  .gallery__grid {
    gap: 12px;
  }
  .gallery__item {
    height: 300px;
  }
  .gallery__item.grid-6 {
    height: 375px;
  }
  .gallery__item.grid-3 {
    height: 375px;
  }
  .register__grid {
    gap: 10px;
  }
  .register .form__label {
    font-size: 14px;
    line-height: normal;
  }
  .register .form__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .widget {
    bottom: 20px;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .header__container-wide {
    padding-inline: 16px;
  }
  .header__wrapper {
    padding-block: 16px;
  }
  .header__logo {
    position: relative;
    z-index: 7;
  }
  .header__btns {
    position: relative;
    z-index: 7;
    display: flex;
    gap: 4px;
  }
  .header__open-btn {
    display: block;
  }
  .header__menu {
    position: absolute;
    z-index: 6;
    transition: all 0.3s ease;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding-block: 40px;
    padding-inline: 16px;
    gap: 24;
    transform: translateY(-150%);
  }
  .menu-open .header__menu {
    transform: translateY(0);
  }
  .header__open-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.24);
    background: transparent;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .header__open-btn span, .header__open-btn span::before, .header__open-btn span::after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--black);
    position: relative;
    transition: 0.3s ease;
  }
  .header__open-btn span::before {
    position: absolute;
    top: -5px;
    left: 0;
  }
  .header__open-btn span::after {
    position: absolute;
    top: 5px;
    left: 0;
  }
  .header__open-btn.active span {
    background-color: transparent;
  }
  .header__open-btn.active span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header__open-btn.active span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .hero__wrapper {
    min-height: 540px;
  }
  .partners__block {
    gap: 24px;
  }
  .partners__slide {
    width: 100px;
  }
  .space__grid {
    gap: 24px;
  }
  .eventarten__block {
    gap: 24px;
  }
  .eventarten .item {
    padding: 24px 12px;
  }
  .eventarten .item__title {
    font-size: 18px;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .features__left {
    position: static;
  }
  .features .item {
    padding: 12px 12px;
  }
  .features .item__logo {
    width: 48px;
    height: 48px;
  }
  .gallery__item {
    height: 200px;
  }
  .gallery__item.grid-6 {
    height: 225px;
  }
  .gallery__item.grid-3 {
    height: 225px;
  }
  .gallery__video::after {
    width: 48px;
    height: 48px;
  }
  .gallery__video::before {
    width: 24px;
    height: 24px;
  }
  .reviews__block {
    gap: 16px;
  }
  .reviews__slide {
    width: 360px;
  }
  .reviews__navigation {
    margin: 32px 24px 0 0;
  }
  .register__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .register__left {
    position: static;
    gap: 24px;
  }
  .register .form {
    gap: 12px;
    max-width: 100%;
  }
  .register .person__img {
    width: 100px;
    height: 100px;
  }
  .footer__foo {
    flex-direction: column;
  }
  .footer__head {
    gap: 24px;
    flex-direction: column;
  }
  .footer__right {
    gap: 24px;
    justify-content: space-between;
  }
  .widget {
    bottom: 10px;
    right: 6px;
  }
}
@media (max-width: 480px) {
  .space__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .space__img {
    min-height: 100vw;
  }
  .eventarten__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .eventarten__block {
    gap: 40px;
  }
  .location__container-wide {
    padding-inline: 0;
  }
  .location__text {
    padding-inline: 16px;
  }
  .space__grid {
    gap: 40px;
  }
  .reviews__block {
    gap: 36px;
  }
  .reviews__slide {
    width: 250px;
  }
  .register .person {
    flex-direction: column;
    align-items: flex-start;
  }
  .register .form__label {
    font-size: 12px;
  }
  .register .form__checkbox-label {
    font-size: 14px;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__block {
    gap: 40px;
  }
  .gallery__item, .gallery__item.grid-6, .gallery__item.grid-3 {
    grid-column: span 1;
    height: auto;
    aspect-ratio: 1/1;
  }
  .gallery__item:last-child, .gallery__item.grid-6:last-child, .gallery__item.grid-3:last-child {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
  .footer {
    padding-block: 20px;
  }
  .footer__head {
    gap: 40px;
  }
  .footer__logo {
    width: 80px;
    height: 80px;
  }
  .footer__icons {
    display: flex;
    gap: 8px;
  }
  .footer__wrapper {
    gap: 40px;
  }
  .footer__right {
    flex-direction: column;
    gap: 40px;
  }
  .footer__foo {
    gap: 8px;
  }
  .footer__pages {
    flex-direction: column;
    gap: 8px;
  }
  .widget {
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 16px;
  }
  .widget__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .widget__item {
    border-radius: 100000px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}