@font-face {
  font-family: "FoglihtenNo06";
  src:
    local("FoglihtenNo06"),
    url("../fonts/FoglihtenNo06_076.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  width: 100%;
  z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}
.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 {
  backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-cube-shadow,
  .swiper-slide {
    transform-style: preserve-3d;
  }
}
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-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 {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: #00000026;
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, #00000080, #0000);
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, #00000080, #0000);
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, #00000080, #0000);
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, #00000080, #0000);
  }
}
.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid #0000;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}
.swiper-watch-progress .swiper-slide-visible,
.swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
}
.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 {
    height: var(--swiper-virtual-size);
    width: 1px;
  }
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}
.swiper-button-lock {
  display: none;
}
.swiper-button-next,
.swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal {
  .swiper-button-next,
  .swiper-button-prev,
  ~ .swiper-button-next,
  ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next,
  & ~ .swiper-button-prev,
  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev,
  & ~ .swiper-button-next,
  .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next,
  & ~ .swiper-button-prev,
  .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-next,
  .swiper-button-prev,
  ~ .swiper-button-next,
  ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled,
  .swiper-pagination-disabled > & {
    display: none !important;
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active,
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  button& {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        transform 0.2s,
        top 0.2s;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        transform 0.2s,
        left 0.2s;
    }
  }
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    transform 0.2s,
    right 0.2s;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, #00000040);
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .swiper-horizontal > &,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, #0000001a);
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled,
  .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal,
  .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical,
  .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}
.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, #00000080);
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas,
  > img,
  > svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right,
  .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right,
  .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  cursor: pointer;
}
ul,
ol {
  list-style: none;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc((30 / var(--curent-size)) * 100vw);
}
button {
  cursor: pointer;
}
:root {
  --curent-size: 1920;
  --main-font: "Montserrat Alternates", sans-serif;
  --second-font: "Finlandica Headline", sans-serif;
}
.container {
  width: calc((1600 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}
.container-full {
  width: 100%;
  margin: 0 auto;
}
body {
  background: #030303;
}
header {
  padding: calc((10 / var(--curent-size)) * 100vw) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: linear-gradient(
    180deg,
    rgba(3, 3, 3, 1) 0%,
    rgba(3, 3, 3, 0.72) 50%,
    rgba(3, 3, 3, 0) 100%
  );
}
.header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: calc((160 / var(--curent-size)) * 100vw);
  height: calc((95 / var(--curent-size)) * 100vw);
}
.header-icon {
  margin-left: calc((30 / var(--curent-size)) * 100vw);
  width: calc((50 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
}
.header-menu {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin: 0 auto;
}
.header-menu li a {
  color: #fff;
  font-family: var(--main-font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
  position: relative;
  transition: 0.3s ease;
  z-index: 2;
}
.header-menu li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc((-14 / var(--curent-size)) * 100vw);
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: #a80202;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  background: linear-gradient(to right, transparent, #a80202, transparent);
  box-shadow: 0 -20px 30px 15px rgba(168, 2, 2, 0.5);
  z-index: -1;
}
.header-menu li a:hover:after {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
}
.header-menu li a:hover {
  transition: 0.3s ease;
  color: #ffffff;
}
.header-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}
.header-data > a {
  color: #fff;
  font-family: var(--main-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-weight: 600;
}
.header-data > p {
  font-family: var(--second-font);
  color: #fff;
  font-size: calc((16 / var(--curent-size)) * 100vw);
}
.header-links {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  margin-left: calc((40 / var(--curent-size)) * 100vw);
}
.header-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-links a img {
  width: calc((40 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
}
#main {
  width: 100%;
  height: calc((850 / var(--curent-size)) * 100vw);
  background-image: url(../img/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.main-wrapper {
  padding-top: calc((220 / var(--curent-size)) * 100vw);
}
.main-wrapper-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((20 / var(--curent-size)) * 100vw);
}
.main-wrapper-text h1 {
  color: #fff;
  font-family: FoglihtenNo06;
  font-weight: 400;
  font-size: calc((80 / var(--curent-size)) * 100vw);
  filter: drop-shadow(0px 0px 24px #fff);
}
.main-wrapper-text h1 span {
  color: #880607;
  filter: none;
}
.main-wrapper-text h2 {
  color: #880607;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
  order: -1;
}
.main-wrapper-text p {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  color: #fff;
}
.main-wrapper-text p span {
  color: #880607;
}
.main-wrapper-btns {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}
.main-wrapper-btns > a {
  font-family: var(--main-font);
  color: #fff;
}
.btn {
  border: calc((1 / var(--curent-size)) * 100vw) solid #880607;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  padding: calc((16 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  box-shadow: unset;
}
.accent-btn {
  background: #880607;
  box-shadow:
    0px 6px 1px -3px #490e0f,
    inset 0px -3px 3px -3px #fff,
    inset 2px 3px 1px -3px #fff,
    inset -3px 2px 10px -8px #fff;
}
.advantages-list {
  display: flex;
  align-items: center;
  width: 100%;
  list-style: none;
  justify-content: space-between;
}
.advantages-list li {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  width: fit-content;
  padding: 0 calc((20 / var(--curent-size)) * 100vw) 0
    calc((20 / var(--curent-size)) * 100vw);
  position: relative;
}
.advantages-list li:not(:last-child):before {
  content: "";
  position: absolute;
  top: 0;
  right: calc((-14 / var(--curent-size)) * 100vw);
  width: calc((1 / var(--curent-size)) * 100vw);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.advantages-list li:nth-child(odd):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.advantages-list li:nth-child(even):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.advantages-list li img {
  width: calc((100 / var(--curent-size)) * 100vw);
  filter: drop-shadow(0px 0px 8px #fd4a4a);
  height: calc((100 / var(--curent-size)) * 100vw);
}
.advantages-list li p {
  font-family: var(--second-font);
  color: #fff;
  text-transform: uppercase;
  font-size: calc((20 / var(--curent-size)) * 100vw);
}
.title {
  color: #fff;
  font-family: FoglihtenNo06;
  font-weight: 400;
  font-size: calc((60 / var(--curent-size)) * 100vw);
}
section:not(#main) {
  padding-top: calc((120 / var(--curent-size)) * 100vw);
}
#baners {
  overflow: hidden;
}
.baners-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.baner-slider-wrapper {
  width: 100%;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
.baner-slider {
  width: 100%;
  overflow: visible;
}
.baner-slider .swiper-slide {
  width: 100%;
  background: linear-gradient(
    5deg,
    #280000 16.83%,
    #610000 99.98%,
    #740101 99.99%
  );
  padding: calc((1.5 / var(--curent-size)) * 100vw);
  border-radius: calc((12 / var(--curent-size)) * 100vw);
}
.baner-slide {
  height: calc((500 / var(--curent-size)) * 100vw);
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: calc((30 / var(--curent-size)) * 100vw);
  padding: calc((30 / var(--curent-size)) * 100vw);
  background: #030303;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  position: relative;
}
.baner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  height: 100%;
}
.baner-text p {
  font-family: var(--second-font);
  color: #fff;
  text-transform: uppercase;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  opacity: 0.8;
}
.baner-text > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.baner-img {
  width: 50%;
  height: 100%;
}
.baner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.badge {
  position: absolute;
  top: calc((35 / var(--curent-size)) * 100vw);
  right: calc((35 / var(--curent-size)) * 100vw);
  z-index: 2;
  color: #fff;
  padding: calc((10 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #880607;
  border-radius: calc((8 / var(--curent-size)) * 100vw);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: #0000009c;
  font-family: var(--second-font);
  font-size: calc((18 / var(--curent-size)) * 100vw);
}
.masters-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.masters-items {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: flex-start;
  width: 100%;
}
#masters {
  overflow: hidden;
}
.master-slider {
  width: 100%;
  overflow: visible;
}
.master-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.master-img {
  overflow: hidden;
  width: 100%;
  height: calc((400 / var(--curent-size)) * 100vw);
  border-radius: calc((12 / var(--curent-size)) * 100vw)
    calc((12 / var(--curent-size)) * 100vw)
    calc((12 / var(--curent-size)) * 100vw)
    calc((12 / var(--curent-size)) * 100vw);
  position: relative;
  box-shadow: 0px -20px 60px -12px #280000;
}
.master-img > p {
  position: absolute;
  top: calc((20 / var(--curent-size)) * 100vw);
  left: calc((20 / var(--curent-size)) * 100vw);
  z-index: 2;
  border: calc((1 / var(--curent-size)) * 100vw) solid #880607;
  border-radius: calc((60 / var(--curent-size)) * 100vw);
  padding: calc((16 / var(--curent-size)) * 100vw)
    calc((40 / var(--curent-size)) * 100vw);
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  background: #880607;
  box-shadow:
    0 6px 1px -3px #490e0f,
    inset 0 -3px 3px -3px #fff,
    inset 2px 3px 1px -3px #fff,
    inset -3px 2px 10px -8px #fff;
}
.master-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(0deg, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0) 100%);
}
.master-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.master-item h3 {
  color: #fff;
  font-family: FoglihtenNo06;
  font-size: calc((40 / var(--curent-size)) * 100vw);
  font-weight: 300;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}
.master-item ul {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  margin: calc((30 / var(--curent-size)) * 100vw) 0;
  justify-content: space-between;
}
.master-item ul li {
  font-family: var(--second-font);
  font-weight: 300;
  gap: calc((20 / var(--curent-size)) * 100vw);
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  width: 25%;
  display: flex;
  justify-content: center;
  position: relative;
}
.master-item ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: calc((1 / var(--curent-size)) * 100vw);
  height: 50%;
  background: #610000;
  box-shadow: 0 0 9px 3px #740101;
}
.master-item > a {
  margin-right: auto;
}
.section-head {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}
.nav-btns {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}
.nav-btns button {
  width: calc((60 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #610000;
  border-radius: 50%;
  border: none;
  transition: 0.3s ease;
}
.nav-btns button.swiper-button-disabled {
  opacity: 0.3;
  transition: 0.3s ease;
  cursor: auto;
}
.nav-btns button svg {
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((20 / var(--curent-size)) * 100vw);
}
.btns-master {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: calc((10 / var(--curent-size)) * 100vw);
}
.btns-master a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.masters-wrapper > a {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
#programs {
  overflow: hidden;
}
.programs-slider {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  width: 100%;
  overflow: visible;
}
.program-item {
  padding: calc((30 / var(--curent-size)) * 100vw);
  background: #030303;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #61000059;
}
.program-item > img {
  width: 100%;
  height: calc((350 / var(--curent-size)) * 100vw);
  object-fit: cover;
}
.prog-price {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: calc((20 / var(--curent-size)) * 100vw);
}
.prog-price > div {
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
  padding: calc((12 / var(--curent-size)) * 100vw)
    calc((12 / var(--curent-size)) * 100vw);
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #61000059;
}
.prog-price > div svg {
  width: calc((34 / var(--curent-size)) * 100vw);
}
.prog-price > div p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
}
.program-item h5 {
  font-family: FoglihtenNo06;
  font-weight: 500;
  font-size: calc((34 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(134deg, #ffffff 0%, #880607 49.46%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}
.program-item > p {
  color: #fff;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  font-family: var(--main-font);
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  margin-top: calc((10 / var(--curent-size)) * 100vw);
  opacity: 0.8;
}
.btns-programms {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: calc((15 / var(--curent-size)) * 100vw);
  justify-content: space-between;
  gap: calc((10 / var(--curent-size)) * 100vw);
}
.btns-programms > a:first-child {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.programms-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.programms-wrapper > a {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
.programms-all-items {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.programms-all-items .program-item {
  width: calc((513 / var(--curent-size)) * 100vw);
}
.sertificate-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sertificate-content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  position: relative;
}
.sertificate-content > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
.sertificate-content > div h5 {
  font-family: FoglihtenNo06;
  font-weight: 500;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  text-align: left;
  background: linear-gradient(134deg, #ffffff 0%, #880607 49.46%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sertificate-content > div p {
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-family: var(--main-font);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
  max-width: 70%;
  width: 100%;
}
.sertificate-content > div ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
  gap: calc((10 / var(--curent-size)) * 100vw);
  position: relative;
  z-index: 1;
}
.sertificate-content > div ul li {
  color: #fff;
  padding-left: calc((30 / var(--curent-size)) * 100vw);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-family: var(--main-font);
  font-weight: 600;
  position: relative;
}
.sertificate-content > div ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((20 / var(--curent-size)) * 100vw);
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.sertificate-content > img {
  width: calc((585 / var(--curent-size)) * 100vw);
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  height: calc((225 / var(--curent-size)) * 100vw);
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
#sertificate {
  position: relative;
  width: 100%;
}
#sertificate > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.sertificate-buy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((60 / var(--curent-size)) * 100vw);
  position: relative;
  z-index: 2;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
.sertificate-buy > h4 {
  font-family: FoglihtenNo06;
  font-weight: 500;
  font-size: calc((50 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
}
.sertificate-buy ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sertificate-buy ul li {
  color: #fff;
  background: #030303;
  padding: calc((30 / var(--curent-size)) * 100vw);
  width: 33%;
  position: relative;
}
.sertificate-buy ul li div {
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-family: var(--main-font);
  width: 100%;
}
.sertificate-buy ul li:nth-child(odd):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((2 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
  z-index: 2;
}
.sertificate-buy ul li:nth-child(even):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((2 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
  z-index: 2;
}
.sertificate-buy ul li:nth-child(2):before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((-14 / var(--curent-size)) * 100vw);
  width: calc((1 / var(--curent-size)) * 100vw);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
  z-index: 2;
}
.sertificate-buy ul li:nth-child(3):before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((-14 / var(--curent-size)) * 100vw);
  width: calc((2 / var(--curent-size)) * 100vw);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
  z-index: 2;
}
.interier-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((60 / var(--curent-size)) * 100vw);
}
.interier-items {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.interier-items img {
  width: calc((513 / var(--curent-size)) * 100vw);
  height: calc((320 / var(--curent-size)) * 100vw);
  transition: all 0.3s ease;
  opacity: 1;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
}
.interier-items:hover img {
  opacity: 0.2;
}
.interier-items img:hover {
  opacity: 1;
  transform: scale(1.08);
  z-index: 1;
}
#tg {
  width: 100%;
  height: calc((800 / var(--curent-size)) * 100vw);
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
#tg .container {
  height: 100%;
}
.tg-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.tg-wrapper h5 {
  font-family: FoglihtenNo06;
  font-weight: 500;
  font-size: calc((70 / var(--curent-size)) * 100vw);
  line-height: 100%;
  text-transform: uppercase;
  text-align: left;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
      134deg,
      rgb(255, 255, 255) 0%,
      rgb(136, 6, 7) 49.46%,
      rgb(255, 255, 255) 100%
    )
    text;
}
.tg-wrapper p {
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}
.tg-wrapper a {
  margin-top: calc((50 / var(--curent-size)) * 100vw);
}
#line {
  overflow: hidden;
}
.line-wrapper {
  flex-shrink: 0;
  align-items: center;
  display: flex;
  counter-reset: item;
  justify-content: space-around;
  min-width: 100%;
  gap: calc((40 / var(--curent-size)) * 100vw);
  animation: scroll 60s linear infinite;
}
.line-wrapper:hover {
  animation-play-state: paused;
}
.line-wrapper div {
  flex-shrink: 0;
}
.line-wrapper div img {
  width: calc((80 / var(--curent-size)) * 100vw);
  height: calc((60 / var(--curent-size)) * 100vw);
}
.line-wrapper div a {
  color: #fff;
  font-family: var(--main-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-weight: 400;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}
.contacts-text {
  margin-top: calc((40 / var(--curent-size)) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.contacts-text div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((10 / var(--curent-size)) * 100vw);
}
.contacts-text div p {
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
  opacity: 0.8;
  font-weight: 300;
}
.contacts-text div a,
.contacts-text div span {
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
}
.contacts-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: calc((30 / var(--curent-size)) * 100vw);
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
.contacts-links > p {
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
}
.contacts-links div {
  display: flex;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.contacts-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-links a img {
  width: calc((40 / var(--curent-size)) * 100vw);
  height: calc((40 / var(--curent-size)) * 100vw);
}
.contacts-links a.taxi-btn {
  padding: calc((6 / var(--curent-size)) * 100vw)
    calc((20 / var(--curent-size)) * 100vw)
    calc((6 / var(--curent-size)) * 100vw)
    calc((6 / var(--curent-size)) * 100vw);
  gap: calc((20 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #740101;
  background: #740101;
}
.contacts-links a.taxi-btn p {
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((18 / var(--curent-size)) * 100vw);
  font-weight: 300;
}
#contacts .container {
  height: 100%;
}
.contacts-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contacts-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  gap: calc((90 / var(--curent-size)) * 100vw);
}
#map {
  width: 100%;
  overflow: hidden;
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  background: #1b0808;
  background-image: url(../img/load.gif);
  background-repeat: no-repeat;
  background-size: 3%;
  background-position: center center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer {
  width: 100%;
  padding: calc((30 / var(--curent-size)) * 100vw) 0
    calc((30 / var(--curent-size)) * 100vw) 0;
  margin-top: calc((130 / var(--curent-size)) * 100vw);
  position: relative;
}
footer:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc((2 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgb(136, 6, 7) 52%,
    rgba(136, 6, 7, 0) 100%
  );
  z-index: 2;
}
.footer-img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((40 / var(--curent-size)) * 100vw);
}
.footer-logo img {
  width: calc((160 / var(--curent-size)) * 100vw);
  height: calc((90 / var(--curent-size)) * 100vw);
}
.footer-under {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.footer-under p {
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((14 / var(--curent-size)) * 100vw);
  font-weight: 300;
  opacity: 0.7;
}
.footer-under a {
  font-family: var(--main-font);
  color: #fff;
  font-size: calc((14 / var(--curent-size)) * 100vw);
  font-weight: 300;
  opacity: 0.7;
  text-decoration: underline;
}
.footer-head {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}
.footer-head > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-head > div a {
  color: #fff;
  font-family: var(--main-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-weight: 600;
}
.footer-head > div p {
  font-family: var(--second-font);
  color: #fff;
  font-size: calc((16 / var(--curent-size)) * 100vw);
}
#nav-toggle {
  display: none;
}
.header-links a.phone {
  display: none;
}
.mob-br {
  display: none;
}
.burger-wrapper {
  display: none;
}
.master-items {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.master-items .master-item {
  width: calc((513 / var(--curent-size)) * 100vw);
}
.masters-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((60 / var(--curent-size)) * 100vw);
}
.single-programm-data {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((60 / var(--curent-size)) * 100vw);
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}
.single-prog-img {
  flex-shrink: 0;
  width: calc((800 / var(--curent-size)) * 100vw);
}
.single-prog-img img {
  width: 100%;
}
.single-prog-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.single-prog-text p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
}
.single-prog-text .prog-price {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
.single-programms-btns {
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}
.single-master-imgs {
  width: calc((600 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  gap: calc((20 / var(--curent-size)) * 100vw);
}
.single-master-slider {
  width: 100%;
  height: calc((600 / var(--curent-size)) * 100vw);
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  overflow: hidden;
}
.single-master-img {
  width: 100%;
  height: 100%;
}
.single-master-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-master-data {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: calc((60 / var(--curent-size)) * 100vw);
  justify-content: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.single-master-param {
  display: flex;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
  margin-top: calc((20 / var(--curent-size)) * 100vw);
}
.single-master-param li {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
}
.single-master-param li img {
  width: calc((40 / var(--curent-size)) * 100vw);
}
.single-master-param li p {
  color: #fff;
  font-size: calc((20 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
}
.single-master-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((600 / var(--curent-size)) * 100vw);
}
.single-master-content > span {
  font-size: calc((30 / var(--curent-size)) * 100vw);
  font-family: var(--main-font);
  color: #fff;
}
.single-master-content > p {
  margin-top: calc((30 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  color: #fff;
  font-size: calc((24 / var(--curent-size)) * 100vw);
}
.single-masters-btns {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin-top: auto;
}
.pogination-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  width: fit-content !important;
}
.pogination-slider span {
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((20 / var(--curent-size)) * 100vw);
  border-radius: 50%;
  background: #880607;
  transition: 0.3s ease;
}
.pogination-slider span.swiper-pagination-bullet-active {
  transition: 0.3s ease;
  box-shadow: 0 0 24px 8px #880607;
}
#map ymaps [class*="ymaps-2"][class*="-ground-pane"] {
  filter: grayscale(1);
}
#map ymaps [class*="ymaps-2"][class*="-inner-panes"] {
  background: #181818;
}
.baner-text .call-btn-baner {
  display: none;
}
.mans-party {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.mans-party ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((30 / var(--curent-size)) * 100vw);
  margin-top: calc((60 / var(--curent-size)) * 100vw);
}
.mans-party ul li {
  color: #fff;
  font-size: calc((22 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
  padding-left: calc((40 / var(--curent-size)) * 100vw);
  position: relative;
}
.mans-party ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: calc((16 / var(--curent-size)) * 100vw);
  height: calc((16 / var(--curent-size)) * 100vw);
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-size: contain;
}
#mans-party {
  margin-top: calc((50 / var(--curent-size)) * 100vw);
  position: relative;
  height: calc((800 / var(--curent-size)) * 100vw);
  background-image: url(../img/mal.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
#girls-party {
  position: relative;
  height: calc((900 / var(--curent-size)) * 100vw);
  background-image: url(../img/dev.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: calc((160 / var(--curent-size)) * 100vw) !important;
}
.malch {
  position: absolute;
  bottom: calc((20 / var(--curent-size)) * 100vw);
  right: calc((145 / var(--curent-size)) * 100vw);
  width: calc((900 / var(--curent-size)) * 100vw);
  z-index: -1;
}
.mans-party p {
  color: #fff;
  font-family: FoglihtenNo06;
  font-weight: 400;
  font-size: calc((44 / var(--curent-size)) * 100vw);
  margin-top: calc((80 / var(--curent-size)) * 100vw);
}
.mans-party div {
  display: flex;
  align-items: center;
  gap: calc((40 / var(--curent-size)) * 100vw);
  width: 100%;
  justify-content: space-between;
  margin-top: calc((180 / var(--curent-size)) * 100vw);
}
.mans-party span {
  color: #fff;
  font-family: FoglihtenNo06;
  font-weight: 400;
  font-size: calc((30 / var(--curent-size)) * 100vw);
}
.baner-page-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: calc((30 / var(--curent-size)) * 100vw)
    calc((30 / var(--curent-size)) * 100vw);
}
.baner-page-items .baner-slide {
  max-width: calc((785 / var(--curent-size)) * 100vw);
  width: 100%;
  border: calc((1 / var(--curent-size)) * 100vw) solid #610000;
}
.vocancy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.voc-baner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: calc((30 / var(--curent-size)) * 100vw);
  border-radius: calc((12 / var(--curent-size)) * 100vw);
  overflow: hidden;
  height: calc((500 / var(--curent-size)) * 100vw);
  background-image: url(../img/bans.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.vocancy-wrapper p {
  font-family: var(--second-font);
  font-size: calc((24 / var(--curent-size)) * 100vw);
  font-weight: 300;
  color: #fff;
  margin-top: calc((30 / var(--curent-size)) * 100vw);
}
.vocancy-wrapper a {
  margin-top: auto;
}
.voc-items {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: calc((40 / var(--curent-size)) * 100vw);
  flex-wrap: wrap;
}
.voc-item {
  width: calc((500 / var(--curent-size)) * 100vw);
  height: calc((240 / var(--curent-size)) * 100vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: calc((30 / var(--curent-size)) * 100vw);
}
.voc-item img {
  width: calc((90 / var(--curent-size)) * 100vw);
}
.voc-item p {
  font-size: calc((24 / var(--curent-size)) * 100vw);
  color: #fff;
  font-family: var(--second-font);
}
.voc-item span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.voc-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc((1 / var(--curent-size)) * 100vw);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.voc-item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc((1 / var(--curent-size)) * 100vw);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.voc-item span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.voc-item span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.voc-persons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: calc((60 / var(--curent-size)) * 100vw);
}
.voc-person-items {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: center;
  gap: calc((220 / var(--curent-size)) * 100vw);
}
.voc-person-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.voc-person-item img {
  width: calc((360 / var(--curent-size)) * 100vw);
}
.voc-person-item p {
  color: #fff;
  font-family: FoglihtenNo06;
  font-size: calc((30 / var(--curent-size)) * 100vw);
}
#form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.form-inputs-wrapper {
  display: flex;
  align-items: center;
  gap: calc((30 / var(--curent-size)) * 100vw);
  width: 100%;
}
.form-inputs-wrapper > div {
  width: 100%;
  position: relative;
}
.form-inputs-wrapper input {
  width: 100%;
  padding: 0 calc((30 / var(--curent-size)) * 100vw);
  height: calc((50 / var(--curent-size)) * 100vw);
  background: initial;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((20 / var(--curent-size)) * 100vw);
}
.form-inputs-wrapper > div:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc((1 / var(--curent-size)) * 100vw);
  background: linear-gradient(
    90deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.form-inputs-wrapper > div:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc((1 / var(--curent-size)) * 100vw);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(136, 6, 7, 0) 0%,
    rgba(136, 6, 7, 1) 52%,
    rgba(136, 6, 7, 0) 100%
  );
}
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: calc((10 / var(--curent-size)) * 100vw);
  margin: calc((20 / var(--curent-size)) * 100vw) 0
    calc((30 / var(--curent-size)) * 100vw) 0;
  cursor: pointer;
}
.checkbox-wrapper p {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
}
.checkbox-wrapper p a {
  color: #fff;
  font-family: var(--second-font);
  font-size: calc((16 / var(--curent-size)) * 100vw);
  text-decoration: underline;
}
.checkbox {
  width: calc((20 / var(--curent-size)) * 100vw);
  height: calc((20 / var(--curent-size)) * 100vw);
  border: calc((1 / var(--curent-size)) * 100vw) solid #fff;
  border-radius: calc((2 / var(--curent-size)) * 100vw);
  position: relative;
}
.checkbox input {
  pointer-events: none;
}
.checkbox.clicked {
  background: #fff;
}
.checkbox.clicked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.checkbox input {
  opacity: 0;
}
.voc-data-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((30 / var(--curent-size)) * 100vw);
}
.voc-data-wrapper > p {
  color: #fff;
  font-size: calc((26 / var(--curent-size)) * 100vw);
  font-family: var(--second-font);
}
.sub-title {
  color: #fff;
  font-size: calc((32 / var(--curent-size)) * 100vw);
  font-family: FoglihtenNo06;
  width: 100%;
  text-align: center;
}
.mob-img {
  display: none;
}
.glow-block {
  display: none;
}
.policy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.policy-text > h1 {
  color: #fff;
  font-family: var(--main-font);
  font-size: calc((32 / var(--curent-size)) * 100vw);
  margin-bottom: calc((30 / var(--curent-size)) * 100vw);
}
.policy-text > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.policy-text > div p,
.policy-text > div span,
.policy-text > div {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: calc((16 / var(--curent-size)) * 100vw);
  line-height: 164%;
  color: #fff;
}
#map {
  position: relative;
  min-height: 360px;
}
.map-load-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 12px 22px;
  border: 1px solid #880607;
  border-radius: 12px;
  background: #880607;
  color: #fff;
  font: inherit;
}
.map-load-status {
  position: absolute;
  left: 50%;
  top: calc(50% + 42px);
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
@media all and (max-width: 768px) {
  :root {
    --curent-size: 375;
  }
  .policy-text > h1 {
    font-size: calc((26 / var(--curent-size)) * 100vw);
  }
  .policy-text > div p,
  .policy-text > div span,
  .policy-text > div {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }
  .master-img > p {
    top: calc((10 / var(--curent-size)) * 100vw);
    left: calc((10 / var(--curent-size)) * 100vw);
    padding: calc((10 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }
  .container {
    width: calc((355 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }
  .container-full {
    width: 100%;
    margin: 0 auto;
  }
  .header-menu,
  .header-data {
    display: none;
  }
  .logo img {
    width: calc((90 / var(--curent-size)) * 100vw);
    height: calc((50 / var(--curent-size)) * 100vw);
  }
  .header-icon {
    margin-left: calc((20 / var(--curent-size)) * 100vw);
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }
  .header-links a img {
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }
  #nav-toggle {
    background: initial;
    height: calc((24 / var(--curent-size)) * 100vw);
    width: calc((38 / var(--curent-size)) * 100vw);
    cursor: pointer;
    border: none;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    cursor: pointer;
    border-radius: calc((1 / var(--curent-size)) * 100vw);
    height: calc((2 / var(--curent-size)) * 100vw);
    width: calc((35 / var(--curent-size)) * 100vw);
    background: #a52019;
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    content: "";
    border-radius: calc((20 / var(--curent-size)) * 100vw);
  }
  #nav-toggle span {
    width: calc((24 / var(--curent-size)) * 100vw);
    position: relative;
    top: 0;
    right: 0;
    border-radius: calc((20 / var(--curent-size)) * 100vw);
  }
  #nav-toggle span:before {
    top: calc((-10 / var(--curent-size)) * 100vw);
  }
  #nav-toggle span:after {
    top: calc((10 / var(--curent-size)) * 100vw);
  }
  #nav-toggle span {
    transition: all 0.2s ease-in-out;
  }
  #nav-toggle span:before,
  #nav-toggle span:after {
    transition: all 0.3s ease-in-out;
  }
  #nav-toggle.active span {
    background-color: transparent;
  }
  #nav-toggle.active span:before,
  #nav-toggle.active span:after {
    top: 0;
  }
  #nav-toggle.active span:before {
    transform: rotate(-45deg);
  }
  #nav-toggle.active span:after {
    transform: rotate(-135deg);
  }
  .header-links {
    gap: calc((12 / var(--curent-size)) * 100vw);
    margin-left: auto;
  }
  .header-links a.phone {
    display: flex;
  }
  .main-wrapper-text h1 {
    font-size: calc((40 / var(--curent-size)) * 100vw);
  }
  .main-wrapper-text h2 {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }
  .main-wrapper-text p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }
  .main-wrapper-btns {
    align-items: flex-start;
    flex-direction: column;
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-top: auto;
    width: 100%;
    margin-bottom: calc((80 / var(--curent-size)) * 100vw);
    position: relative;
    z-index: 2;
  }
  #main {
    width: 100%;
    height: calc((746 / var(--curent-size)) * 100vw);
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    overflow: hidden;
  }
  #main:before {
    content: "";
    position: absolute;
    bottom: calc((50 / var(--curent-size)) * 100vw);
    left: 0;
    width: 100%;
    height: calc((100 / var(--curent-size)) * 100vw);
    background: linear-gradient(
      180deg,
      rgba(3, 3, 3, 0) 0%,
      rgba(3, 3, 3, 0.5) 50%,
      #030303 100%
    );
  }
  #main .container {
    height: 100%;
  }
  .main-wrapper {
    padding-top: calc((80 / var(--curent-size)) * 100vw);
    height: 100%;
  }
  .main-wrapper-text {
    height: 100%;
  }
  .btn {
    border: calc((1 / var(--curent-size)) * 100vw) solid #880607;
    border-radius: calc((12 / var(--curent-size)) * 100vw);
    padding: calc((12 / var(--curent-size)) * 100vw)
      calc((40 / var(--curent-size)) * 100vw);
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--main-font);
    color: #fff;
    font-size: calc((14 / var(--curent-size)) * 100vw);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .advantages-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: calc((20 / var(--curent-size)) * 100vw) 0;
  }
  .advantages-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc((0 / var(--curent-size)) * 100vw);
    width: 50%;
    padding: 0 0 0 calc((0 / var(--curent-size)) * 100vw);
    position: relative;
  }
  .advantages-list li:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: calc((-18 / var(--curent-size)) * 100vw);
    top: unset;
    left: 0;
    width: 100%;
    height: calc((1 / var(--curent-size)) * 100vw);
    background: linear-gradient(
      90deg,
      rgba(136, 6, 7, 0) 0%,
      rgba(136, 6, 7, 1) 52%,
      rgba(136, 6, 7, 0) 100%
    );
  }
  .advantages-list li p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
    text-align: center;
  }
  .advantages-list li img {
    width: calc((80 / var(--curent-size)) * 100vw);
  }
  .advantages-list li:nth-child(odd):after {
    content: none;
  }
  .advantages-list li:nth-child(even):after {
    content: none;
  }
  .title {
    font-size: calc((21 / var(--curent-size)) * 100vw);
    text-align: center;
  }
  .title br {
    display: none;
  }
  .baner-slide {
    height: calc((500 / var(--curent-size)) * 100vw);
    width: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: calc((30 / var(--curent-size)) * 100vw);
    padding: calc((20 / var(--curent-size)) * 100vw);
    background: #030303;
    border-radius: calc((12 / var(--curent-size)) * 100vw);
    position: relative;
    overflow: hidden;
  }
  .baner-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
      180deg,
      rgba(3, 3, 3, 1) 0%,
      rgba(3, 3, 3, 0) 100%
    );
  }
  .baner-slide:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
      0deg,
      rgba(3, 3, 3, 1) 0%,
      rgba(3, 3, 3, 0) 100%
    );
    z-index: 2;
  }
  .baner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .baner-text {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .badge {
    position: static;
    padding: calc((10 / var(--curent-size)) * 100vw)
      calc((20 / var(--curent-size)) * 100vw);
    border: calc((1 / var(--curent-size)) * 100vw) solid #880607;
    border-radius: calc((8 / var(--curent-size)) * 100vw);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #0000009c;
    font-family: var(--second-font);
    font-size: calc((14 / var(--curent-size)) * 100vw);
    margin-bottom: calc((20 / var(--curent-size)) * 100vw);
  }
  .baner-text .btn {
    display: none;
  }
  .baner-text .call-btn-baner {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
  }
  .baner-text .call-btn-baner img {
    width: calc((35 / var(--curent-size)) * 100vw);
  }
  .masters-page {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }
  section:not(#main) {
    padding-top: calc((75 / var(--curent-size)) * 100vw);
  }
  .baner-text p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    opacity: 0.9;
    margin-top: auto;
  }
  .baner-slider-wrapper {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }
  .masters-wrapper {
    position: relative;
  }
  .nav-btns {
    margin-top: calc((0 / var(--curent-size)) * 100vw);
    position: absolute;
    top: calc((220 / var(--curent-size)) * 100vw);
    left: 0;
    width: 100%;
    justify-content: space-between;
    z-index: 9;
    pointer-events: none;
  }
  .nav-btns button {
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
    pointer-events: visiblePainted;
  }
  .nav-btns button svg {
    width: calc((10 / var(--curent-size)) * 100vw);
    height: calc((10 / var(--curent-size)) * 100vw);
  }
  .section-head {
    flex-direction: column;
    align-items: center;
  }
  .masters-items {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    width: calc((300 / var(--curent-size)) * 100vw);
  }
  .master-img:after {
    content: none;
  }
  .master-item h3 {
    font-size: calc((26 / var(--curent-size)) * 100vw);
    margin-top: calc((20 / var(--curent-size)) * 100vw);
  }
  .master-img {
    height: calc((280 / var(--curent-size)) * 100vw);
  }
  .master-item ul li {
    gap: calc((20 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
    width: 25%;
  }
  .master-item ul {
    margin: calc((20 / var(--curent-size)) * 100vw) 0;
  }
  .btns-master {
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }
  .masters-wrapper > a {
    width: calc((300 / var(--curent-size)) * 100vw);
    margin: calc((20 / var(--curent-size)) * 100vw) auto 0 auto;
  }
  .btns-master > a {
    font-size: calc((12 / var(--curent-size)) * 100vw);
    padding: calc((10 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw) !important;
  }
  .line-wrapper div a {
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }
  .program-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc((10 / var(--curent-size)) * 100vw);
  }
  .prog-price {
    display: flex;
    align-items: center;
    width: 100%;
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-bottom: calc((10 / var(--curent-size)) * 100vw);
  }
  .prog-price > div {
    display: flex;
    align-items: center;
    width: 100%;
    gap: calc((10 / var(--curent-size)) * 100vw);
    padding: calc((12 / var(--curent-size)) * 100vw)
      calc((12 / var(--curent-size)) * 100vw);
    border-radius: calc((12 / var(--curent-size)) * 100vw);
    border: calc((1 / var(--curent-size)) * 100vw) solid #61000059;
  }
  .program-item > p {
    font-size: calc((13 / var(--curent-size)) * 100vw);
  }
  .program-item h5 {
    font-size: calc((25 / var(--curent-size)) * 100vw);
  }
  .prog-price > div p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }
  .btns-programms {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: calc((15 / var(--curent-size)) * 100vw);
    justify-content: space-between;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }
  .programs-slider {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    width: 100%;
    overflow: visible;
  }
  .programms-wrapper > a {
    width: calc((355 / var(--curent-size)) * 100vw);
    margin: calc((10 / var(--curent-size)) * 100vw) auto 0 auto;
  }
  .sertificate-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .sertificate-content > div h5 {
    font-size: calc((22 / var(--curent-size)) * 100vw);
  }
  .sertificate-content > div p {
    font-size: calc((14 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    max-width: 100%;
  }
  .sertificate-content > div ul li {
    padding-left: calc((30 / var(--curent-size)) * 100vw);
    font-size: calc((14 / var(--curent-size)) * 100vw);
  }
  .sertificate-content > div ul li:after {
    width: calc((13 / var(--curent-size)) * 100vw);
    height: calc((13 / var(--curent-size)) * 100vw);
  }
  .sertificate-content > img {
    width: 100%;
    margin-top: calc((50 / var(--curent-size)) * 100vw);
  }
  #sertificate > img {
    position: absolute;
    top: 56%;
    left: 0;
    width: 100%;
    pointer-events: none;
  }
  .sertificate-buy > h4 {
    font-size: calc((24 / var(--curent-size)) * 100vw);
  }
  .sertificate-buy ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .sertificate-buy ul li {
    padding: calc((16 / var(--curent-size)) * 100vw);
    width: 100%;
    text-align: center;
  }
  .sertificate-buy ul li div {
    color: #fff;
    font-size: calc((15 / var(--curent-size)) * 100vw);
    font-family: var(--main-font);
    width: 100%;
  }
  .sertificate-buy ul li:nth-child(3):before {
    content: none;
  }
  .sertificate-buy ul li:nth-child(2):before {
    content: none;
  }
  .sertificate-buy ul li:nth-child(odd):after {
    content: "";
    position: absolute;
    bottom: 0;
    top: unset;
    left: 0;
    width: 100%;
    height: calc((2 / var(--curent-size)) * 100vw);
    background: linear-gradient(
      90deg,
      rgba(136, 6, 7, 0) 0%,
      rgba(136, 6, 7, 1) 52%,
      rgba(136, 6, 7, 0) 100%
    );
    z-index: 2;
  }
  .sertificate-buy {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }
  .tg-wrapper h5 {
    font-size: calc((30 / var(--curent-size)) * 100vw);
  }
  .tg-wrapper p br {
    display: none;
  }
  .tg-wrapper p {
    font-family: var(--main-font);
    color: #fff;
    font-size: calc((14 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }
  #tg {
    height: calc((500 / var(--curent-size)) * 100vw);
    background-position: 20% 88%;
  }
  .tg-wrapper {
    justify-content: flex-start;
  }
  .tg-wrapper a {
    margin-top: auto;
  }
  .interier-items {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }
  .interier-items img {
    width: calc((172 / var(--curent-size)) * 100vw);
    height: calc((140 / var(--curent-size)) * 100vw);
  }
  .interier-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }
  .contacts-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    gap: calc((40 / var(--curent-size)) * 100vw);
  }
  #map {
    height: calc((320 / var(--curent-size)) * 100vw);
  }
  .contacts-text div p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }
  .contacts-text div a,
  .contacts-text div span {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }
  .contacts-links > p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
  }
  .contacts-links div {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }
  .contacts-links {
    gap: calc((20 / var(--curent-size)) * 100vw);
    margin-top: calc((40 / var(--curent-size)) * 100vw);
  }
  .contacts-links a img {
    width: calc((30 / var(--curent-size)) * 100vw);
    height: calc((30 / var(--curent-size)) * 100vw);
  }

  #sertificate > img {
    height: calc((225 / var(--curent-size)) * 100vw);
  }
  .footer-logo img {
    width: calc((90 / var(--curent-size)) * 100vw);
    height: calc((50 / var(--curent-size)) * 100vw);
  }
  .footer-img {
    height: calc((225 / var(--curent-size)) * 100vw);
  }
  .footer-head > div a {
    font-size: calc((15 / var(--curent-size)) * 100vw);
  }
  .footer-head > div p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }
  .mob-br {
    display: block;
  }
  .footer-under {
    flex-direction: column;
    align-items: center;
    gap: calc((14 / var(--curent-size)) * 100vw);
  }
  .footer-under p {
    font-size: calc((10 / var(--curent-size)) * 100vw);
    text-align: center;
    order: 10;
  }
  .footer-wrapper {
    gap: calc((20 / var(--curent-size)) * 100vw);
  }
  footer {
    padding: calc((20 / var(--curent-size)) * 100vw) 0
      calc((15 / var(--curent-size)) * 100vw) 0;
    margin-top: calc((40 / var(--curent-size)) * 100vw);
  }
  .burger-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 99;
    background: #0303039e;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }
  .burger-wrapper.open {
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
  }
  .burger-content {
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: calc((120 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw)
      calc((30 / var(--curent-size)) * 100vw);
    transform: translateX(0%);
    transition: 0.3s ease;
    position: relative;
  }
  .burger-content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(3, 3, 3, 1) 0%,
      rgba(3, 3, 3, 0) 100%
    );
  }
  .burger-content.open {
    transform: translateX(0%);
    transition: 0.3s ease;
  }
  .burger-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .burger-menu li {
    display: flex;
    position: relative;
    width: 100%;
    counter-increment: name;
    padding-left: calc((30 / var(--curent-size)) * 100vw);
    border-bottom: calc((1 / var(--curent-size)) * 100vw) solid #ffffff3b;
  }
  .burger-menu li a {
    color: #fff;
    font-family: FoglihtenNo06;
    font-size: calc((18 / var(--curent-size)) * 100vw);
    position: relative;
    transition: 0.3s ease;
    z-index: 2;
    width: 100%;
    padding: calc((15 / var(--curent-size)) * 100vw) 0;
  }
  .burger-menu li:after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc((-5 / var(--curent-size)) * 100vw);
    transform: translate(0, -50%);
    width: calc((20 / var(--curent-size)) * 100vw);
    height: calc((20 / var(--curent-size)) * 100vw);
    background: #880607;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    border-radius: 50%;
    z-index: 1;
  }
  .burger-menu li:before {
    content: counter(name);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: calc((14 / var(--curent-size)) * 100vw);
    color: #fff;
    font-family: var(--second-font);
    z-index: 2;
  }
  .burger-content > a {
    margin-top: auto;
    position: relative;
    z-index: 1;
  }
  .burger-menu li {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }
  .burger-menu li.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .burger-content > a.btn {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    transition-delay: 0.6s;
  }
  .burger-content.open > a.btn {
    opacity: 1;
    transform: translateY(0);
  }
  .master-items .master-item {
    width: 100%;
  }
  .programms-all-items .program-item {
    width: 100%;
  }
  .single-programm-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: calc((30 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }
  .single-prog-img {
    width: 100%;
  }
  .single-prog-text .prog-price {
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }
  .single-prog-text p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }
  .single-programms-btns {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: calc((10 / var(--curent-size)) * 100vw);
    width: 100%;
  }
  .single-programms-btns a {
    width: 100%;
  }
  .single-master-data {
    flex-direction: column;
    align-items: center;
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }
  .single-master-imgs {
    width: 100%;
    display: flex;
    align-items: center;
    gap: calc((20 / var(--curent-size)) * 100vw);
  }
  .single-master-imgs {
    flex-direction: column-reverse;
    gap: calc((10 / var(--curent-size)) * 100vw);
  }
  .pogination-slider {
    flex-direction: row;
  }
  .single-master-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .single-master-param li img {
    width: calc((20 / var(--curent-size)) * 100vw);
  }
  .single-master-param li p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }
  .single-master-imgs {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }
  .single-master-slider {
    height: calc((400 / var(--curent-size)) * 100vw);
  }
  .pogination-slider span {
    width: calc((10 / var(--curent-size)) * 100vw);
    height: calc((10 / var(--curent-size)) * 100vw);
  }
  .single-master-content > span {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }
  .single-master-content > p {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }
  .single-masters-btns {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }
  .single-masters-btns a {
    width: 100%;
  }
  .program-item > img {
    width: calc((250 / var(--curent-size)) * 100vw);
    height: calc((220 / var(--curent-size)) * 100vw);
    margin: 0 auto;
  }
  .btns-programms > a {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }
  .programms-wrapper .nav-btns {
    top: calc((320 / var(--curent-size)) * 100vw);
  }
  #mans-party {
    margin-top: calc((0 / var(--curent-size)) * 100vw);
    height: calc((800 / var(--curent-size)) * 100vw);
    background-image: url(../img/mal.webp);
  }
  .mans-party ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc((10 / var(--curent-size)) * 100vw);
    margin-top: calc((80 / var(--curent-size)) * 100vw);
  }
  .mans-party ul li {
    color: #fff;
    font-size: calc((14 / var(--curent-size)) * 100vw);
    font-family: var(--second-font);
    padding-left: calc((25 / var(--curent-size)) * 100vw);
    position: relative;
  }
  .mans-party p {
    color: #fff;
    font-family: FoglihtenNo06;
    font-weight: 400;
    font-size: calc((17 / var(--curent-size)) * 100vw);
    margin-top: calc((80 / var(--curent-size)) * 100vw);
  }
  .mans-party div {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: calc((20 / var(--curent-size)) * 100vw);
    width: 100%;
    justify-content: space-between;
    margin-top: calc((100 / var(--curent-size)) * 100vw);
  }
  #mans-party {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    position: relative;
    height: calc((700 / var(--curent-size)) * 100vw);
    background-image: url(../img/mal-m.webp);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mans-party span {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }
  .voc-baner {
    padding: calc((20 / var(--curent-size)) * 100vw);
    height: calc((500 / var(--curent-size)) * 100vw);
    background-image: url(../img/bans-m.webp);
  }
  .vocancy-wrapper p {
    font-size: calc((18 / var(--curent-size)) * 100vw);
    margin-top: calc((30 / var(--curent-size)) * 100vw);
    text-align: center;
  }
  .vocancy-wrapper p br {
    display: none;
  }
  .voc-item img {
    width: calc((45 / var(--curent-size)) * 100vw);
  }
  .voc-item p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }
  .voc-item {
    width: 100%;
    height: calc((100 / var(--curent-size)) * 100vw);
  }
  .voc-items {
    gap: calc((10 / var(--curent-size)) * 100vw);
  }
  .voc-data-wrapper > p {
    font-size: calc((16 / var(--curent-size)) * 100vw);
    text-align: center;
  }
  .voc-data-wrapper > p br {
    display: none;
  }
  .voc-person-items {
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: calc((30 / var(--curent-size)) * 100vw);
  }
  .voc-person-item p {
    font-size: calc((20 / var(--curent-size)) * 100vw);
  }
  .voc-person-item img {
    width: 45%;
  }
  .form-inputs-wrapper {
    display: flex;
    align-items: center;
    gap: calc((10 / var(--curent-size)) * 100vw);
    width: 100%;
    flex-wrap: wrap;
  }
  .sub-title {
    font-size: calc((17 / var(--curent-size)) * 100vw);
  }
  .voc-persons-wrapper {
    gap: calc((30 / var(--curent-size)) * 100vw);
  }
  .checkbox {
    width: calc((16 / var(--curent-size)) * 100vw);
    height: calc((16 / var(--curent-size)) * 100vw);
    border: calc((1 / var(--curent-size)) * 100vw) solid #fff;
    border-radius: calc((2 / var(--curent-size)) * 100vw);
    position: relative;
    flex-shrink: 0;
  }
  .checkbox-wrapper p {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }
  .checkbox-wrapper p a {
    font-size: calc((12 / var(--curent-size)) * 100vw);
  }
  .form-inputs-wrapper input {
    font-size: calc((16 / var(--curent-size)) * 100vw);
  }
  #girls-party {
    position: relative;
    height: calc((800 / var(--curent-size)) * 100vw);
    background-image: url(../img/dev-m.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: calc((90 / var(--curent-size)) * 100vw) !important;
  }
  .mans-party ul.dev-ul {
    margin-top: calc((30 / var(--curent-size)) * 100vw);
  }
  .mans-party p.dev-p {
    margin-top: calc((230 / var(--curent-size)) * 100vw);
  }
  .mans-party div.dev-div {
    margin-top: calc((40 / var(--curent-size)) * 100vw);
  }
  #interier.interier {
    margin-top: calc((-60 / var(--curent-size)) * 100vw);
    position: relative;
    z-index: 1;
  }
  .mob-img {
    display: flex;
  }
  .girl-mob {
    position: absolute;
    top: calc((280 / var(--curent-size)) * 100vw);
    left: calc((0 / var(--curent-size)) * 100vw);
    width: 100%;
    z-index: -2;
  }
  .fog-up {
    position: absolute;
    top: calc((0 / var(--curent-size)) * 100vw);
    right: calc((0 / var(--curent-size)) * 100vw);
    width: 100%;
    z-index: -1;
  }
  .fog-down {
    position: absolute;
    top: calc((280 / var(--curent-size)) * 100vw);
    left: calc((0 / var(--curent-size)) * 100vw);
    width: 100%;
    z-index: -1;
  }
  .glow-block {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc((150 / var(--curent-size)) * 100vw);
    height: calc((150 / var(--curent-size)) * 100vw);
    border-radius: 50%;
    background: #a80202;
    z-index: -3;
    filter: blur(100px);
    animation: softPulse 3s ease-in-out infinite;
  }
  @keyframes softPulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.7;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.12);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.7;
    }
  }
  .bg-r {
    display: flex;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: -4;
  }
}
#tg.is-near {
  background-image: url(../img/tgbg.webp);
}
@media (max-width: 767px) {
  .burger-wrapper.open .burger-content {
    background-image: url(../img/burger-bg.webp);
  }
}
