html {
  font-size: 1.5625vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.51vw;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.33;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #F8F8F8;
  width: 100%;
  color: #141211;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-out;
}

* {
  box-sizing: border-box;
}

html *,
html,
body *,
body {
  scrollbar-color: inherit !important;
  scrollbar-width: auto;
}
html *::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  box-shadow: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 10rem 0;
}

.container {
  padding: 0 19.5rem;
  width: 100%;
}

.slick-list {
  cursor: grab;
}

.no-br {
  white-space: nowrap;
}

.text--color {
  color: #F81300;
}
.text--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 2.4rem 4rem;
  min-width: 49rem;
  height: 8rem;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  line-height: 1;
  color: #141211;
  background: #F8F8F8;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.btn img {
  width: 4rem;
}
.btn svg {
  width: 7.6rem;
}
.btn:hover {
  background: #F81300;
  color: #F8F8F8;
}
.btn:hover .price-old:after {
  background: white;
}
.btn .price-old {
  position: relative;
}
.btn .price-old:after {
  position: absolute;
  content: "";
  height: 0.6rem;
  left: -5%;
  right: -5%;
  top: 50%;
  margin-top: -0.3rem;
  background: #F81300;
  border-radius: 1rem;
  transform: rotate(-10deg);
}
.btn .price-new {
  font-weight: 800;
}

.heading {
  font-size: 9.6rem;
  margin-bottom: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  font-weight: normal;
}

.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.list__item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #F81300;
  box-shadow: 0 0 5px #F81300;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}
.list-num {
  padding: 0;
  list-style-type: none;
  margin: 0;
  counter-reset: item;
}
.list-num__item {
  margin-bottom: 2rem;
  height: 9rem;
  padding: 1.5rem 5rem 1.5rem 12.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
  font-family: "Inter", sans-serif;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #F81300;
  border-radius: 100%;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 6rem 4rem 4rem;
  background: #141211;
  position: relative;
  width: 52rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 3rem;
}
.modal__content.text-content {
  background: #F8F8F8;
  width: 132rem;
  padding: 10rem 4rem;
  font-size: 3.2rem;
  color: #141211;
}
@media screen and (max-width: 1024px) {
  .modal__content.text-content {
    font-size: 2.6rem;
  }
}
.modal__content.text-content ol {
  line-height: 1.5;
  margin: 0;
}
.modal__content.text-content::-webkit-scrollbar {
  height: 20px;
  width: 20px;
}
.modal__content.text-content::-webkit-scrollbar-track {
  background: rgba(20, 18, 17, 0.1);
  margin: 3rem;
  box-shadow: inset -15px 0 0 0 #F8F8F8;
}
.modal__content.text-content::-webkit-scrollbar-thumb {
  background: rgba(20, 18, 17, 0.2);
  box-shadow: inset -15px 0 0 0 #F8F8F8;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 25vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 10;
}
.modal__heading {
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.form {
  text-align: center;
}
.form .placeholder {
  font-size: 2.4rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 2rem;
  transition: all 0.3s ease-out;
  pointer-events: none;
  color: #fff;
}
.form-control {
  position: relative;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}
.form-control.active .placeholder {
  top: 0;
  font-size: 2rem;
}
.form .error {
  color: red;
  font-size: 2rem;
  position: absolute;
  display: none;
  top: 0;
  right: 0;
}
.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 1.5rem 0;
  height: 5rem;
  border-radius: 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  -webkit-box-shadow: inset 0 0 0 50px #141211;
  -webkit-text-fill-color: #fff;
}
.form-input.err {
  color: red;
  -webkit-text-fill-color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-input:focus {
  outline: none;
}
.form-btn {
  width: 100%;
  min-width: 100%;
  margin-top: 2rem;
  font-size: 2.4rem;
  height: 8.6rem;
}

.grecaptcha-badge {
  display: none !important;
}

.language {
  position: fixed;
  z-index: 100;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #3F3F3F;
  color: white;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 1.7rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}
.language:hover .language__arrow {
  transform: rotate(0deg);
}
.language__item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.language__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .language__item {
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #F81300 !important;
  border-width: 2px !important;
}

.compensate-for-scrollbar {
  padding-right: 0 !important;
}

img[loading=lazy] {
  background: url("../images/loader.png") center center no-repeat;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape-back {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@media screen and (min-width: 1366px) {
  .js-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 0.9s, transform 0.6s ease-out 0.9s;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 1.8s, transform 0.6s ease-out 1.8s;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 2.1s, transform 0.6s ease-out 2.1s;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 2.4s, transform 0.6s ease-out 2.4s;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 2.7s, transform 0.6s ease-out 2.7s;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 3s, transform 0.6s ease-out 3s;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 3.3s, transform 0.6s ease-out 3.3s;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 3.6s, transform 0.6s ease-out 3.6s;
  }
  .js-animate.animate--delay-13 {
    transition: all 0.6s ease-out 3.9s, transform 0.6s ease-out 3.9s;
  }
  .js-animate.animate--delay-14 {
    transition: all 0.6s ease-out 4.2s, transform 0.6s ease-out 4.2s;
  }
  .js-animate.animate--delay-15 {
    transition: all 0.6s ease-out 4.5s, transform 0.6s ease-out 4.5s;
  }
  .js-animate.animate--delay-16 {
    transition: all 0.6s ease-out 4.8s, transform 0.6s ease-out 4.8s;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.from-bottom {
    transform: translateY(200px);
  }
  .js-animate.zoom-in {
    transform: scale(0.5);
  }
  .js-animate.show-width-left {
    width: 0;
    left: 0;
    right: auto;
  }
  .js-animate.show-width-right {
    width: 0;
    right: 0;
    left: auto;
  }
  .js-animate.visible {
    opacity: 1;
  }
  .js-animate.visible.from-bottom, .js-animate.visible.from-top, .js-animate.visible.from-left, .js-animate.visible.from-right, .js-animate.visible.zoom-out, .js-animate.visible.zoom-in {
    transform: translateY(0) translateX(0) scale(1);
  }
  .js-animate.visible.show-width-right, .js-animate.visible.show-width-left {
    width: 100%;
  }
}
.bg-arrow {
  width: 100%;
  background: #141211;
}

.video {
  position: relative;
  display: block;
}
.video:hover .play {
  background: white;
  color: #141211;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: rgba(239, 239, 239, 0.2);
  backdrop-filter: blur(10px);
  padding: 2.6rem 4rem;
  display: inline-flex;
  align-items: center;
  column-gap: 2rem;
  height: 8rem;
  font-weight: bold;
  transition: all 0.3s ease-out;
  color: #F8F8F8;
  white-space: nowrap;
}
.play svg {
  width: 2.4rem;
  flex-shrink: 0;
}
.play svg path {
  stroke: currentColor;
}

.header {
  display: flex;
  align-items: center;
  background: #141211;
  color: white;
}
.header__block {
  padding: 10rem 14rem 10rem 19.5rem;
  width: 100rem;
}
.header__gallery {
  width: 94.5rem;
  flex-shrink: 0;
  min-height: 100vh;
  overflow: hidden;
}
.header__gallery .slick-list {
  cursor: auto;
}
.header__slide {
  position: relative;
}
.header__slide:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26rem;
  background: linear-gradient(360deg, #141211 0%, rgba(20, 18, 17, 0) 69%);
}
.header__message {
  position: absolute;
  top: 15rem;
  left: 24rem;
  width: 47rem;
  display: flex;
  column-gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 2rem;
  background: rgba(59, 59, 59, 0.52);
  backdrop-filter: blur(10px);
  font-size: 1.7rem;
  line-height: normal;
}
.header__message.message2 {
  top: 13rem;
}
.header__message.message3 {
  top: 24rem;
  left: 7rem;
}
.header__message.message4 {
  top: 11rem;
}
.header__message.message5 {
  top: 9rem;
}
.header__message b {
  font-weight: bold;
  line-height: 1.33;
}
.header__message svg {
  width: 3.7rem;
  flex-shrink: 0;
}
.header__message time {
  align-self: start;
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: nowrap;
  margin-left: auto;
}
.header__video {
  width: 100%;
  min-height: 100vh;
  vertical-align: top;
  object-fit: cover;
}
.header__title {
  margin-bottom: 1rem;
}
.header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  list-style: none;
  margin: 0 0 5rem;
}
.header__tags li {
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10rem;
  font-size: 2rem;
  display: flex;
  justify-content: center;
}
.header__tags li.tag1 {
  width: 21rem;
}
.header__tags li.tag2 {
  width: 17rem;
}
.header__tags li.tag3 {
  width: 21rem;
}
.header__tags li.tag4 {
  width: 18rem;
}
.header__slogan {
  margin-bottom: 2rem;
  text-align: left;
  letter-spacing: -0.1rem;
}
.header__text {
  margin-bottom: 6rem;
}
.header__btn {
  width: 100%;
}

.alex__block {
  padding: 6rem 33rem;
  display: flex;
  align-items: center;
  column-gap: 9rem;
}
.alex__img {
  width: 47.5rem;
  flex-shrink: 0;
  position: relative;
}
.alex__gif {
  position: absolute;
  top: 2.2rem;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 2.2rem;
  border-radius: 4rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alex__gif img {
  max-width: inherit;
  height: 100%;
  object-fit: cover;
}
.alex__play {
  position: absolute;
  top: 4rem;
  left: 4rem;
  right: 4rem;
  background: rgba(0, 0, 0, 0.3);
  transform: none;
}
.alex__about {
  position: absolute;
  bottom: 7rem;
  left: 4rem;
  right: 4rem;
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  color: white;
}
.alex__title {
  font-size: 6.4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  margin-bottom: 4rem;
  line-height: 1;
}
.alex__text {
  position: relative;
  opacity: 0.7;
  margin-bottom: 4rem;
}
.alex__text svg {
  width: 4rem;
  position: absolute;
  left: -5.2rem;
  top: 0;
}
.alex__btn {
  width: 100%;
  background: #141211;
  color: #F8F8F8;
}

.services {
  background: #141211;
  color: #F8F8F8;
}
.services__block {
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  margin-bottom: 3rem;
}
.services__img {
  width: 79.5rem;
  flex-shrink: 0;
}
.services__info {
  padding: 13rem;
}
.services__title {
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.services__text {
  font-size: 2rem;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 2rem;
}
.services__list {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
}
.services__list ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin: 0;
}
.services__blocks {
  display: flex;
  column-gap: 3rem;
  margin-bottom: 6rem;
}
.services__item {
  flex-basis: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services__review {
  width: 27rem;
  margin: 2rem auto 0;
}

.reviews {
  overflow-x: hidden;
}
.reviews__heading {
  text-align: left;
  font-size: 4.8rem;
  margin-bottom: 7rem;
}
.reviews__gallery {
  margin: 0 -1rem;
}
.reviews__btn {
  background: #141211;
  color: #F8F8F8;
  margin-top: 6rem;
}
.reviews__item {
  padding: 0 1rem;
}
.reviews__video {
  margin-bottom: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
.reviews__video:hover .reviews__gif {
  opacity: 1;
}
.reviews__play {
  transform: none;
  top: 2rem;
  left: auto;
  right: 2rem;
}
.reviews__img {
  width: 100%;
}
.reviews__gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.reviews__about {
  background: linear-gradient(0deg, #141414 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem 2rem;
  font-size: 2.4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  color: #F8F8F8;
  text-decoration: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.reviews__name {
  font-size: 3.6rem;
}
.reviews__gallery {
  position: relative;
  margin-bottom: 0 !important;
}
.reviews__gallery .slick-list {
  overflow: visible !important;
}
.reviews__gallery .slick-arrow {
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: -12rem;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
  opacity: 0.5;
}
.reviews__gallery .slick-arrow.arrow-right {
  right: 0;
}
.reviews__gallery .slick-arrow.arrow-left {
  right: 6rem;
}
.reviews__gallery .slick-arrow:hover {
  opacity: 1;
}

.club {
  background: #141211;
  color: #F8F8F8;
}
.club__subheading {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 8rem;
}
.club__block {
  display: flex;
  justify-content: center;
  column-gap: 3rem;
  margin-bottom: 8rem;
}
.club__item {
  text-align: center;
  flex-basis: 32rem;
}
.club__title {
  font-size: 6rem;
  margin-bottom: 1rem;
  white-space: nowrap;
}
.club__citation {
  display: flex;
  width: 50rem;
  margin-left: 50%;
  column-gap: 1rem;
  align-items: start;
  font-size: 2.2rem;
  line-height: 1;
}
.club__citation svg {
  width: 4rem;
  flex-shrink: 0;
}
.club__citation svg:last-child {
  align-self: end;
}

.tags {
  background: #141211;
  color: #F8F8F8;
}
.tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 0 6.5rem;
  margin: 0;
  list-style: none;
}
.tags__list li {
  padding: 2.4rem 9rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10rem;
  font-size: 4rem;
}

.terms {
  background: url("../images/bg.webp") center center no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #F8F8F8;
}
.terms__text {
  text-align: center;
  margin-bottom: 4rem;
}
.terms__price {
  position: relative;
}
.terms__price svg {
  position: absolute;
  width: 13rem;
  flex-shrink: 0;
  top: 50%;
  left: -2rem;
}
.terms__price .price-old {
  position: relative;
}
.terms__price .price-old:after {
  position: absolute;
  content: "";
  height: 0.4rem;
  left: -5%;
  right: -5%;
  top: 50%;
  margin-top: -0.2rem;
  background: #F81300;
  border-radius: 1rem;
  transform: rotate(-20deg);
}
.terms__price .price-new {
  font-weight: 800;
}

.members__heading {
  font-size: 4.8rem;
  margin-bottom: 6rem;
  text-align: left;
}
.members__item {
  padding: 0 1.5rem;
}
.members__gallery {
  position: relative;
  margin: 0 -1.5rem;
  margin-bottom: 0 !important;
}
.members__gallery .slick-list {
  overflow: visible !important;
}
.members__gallery .slick-arrow {
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: -15rem;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
  opacity: 0.6;
}
.members__gallery .slick-arrow.arrow-right {
  right: 0;
}
.members__gallery .slick-arrow.arrow-left {
  right: 6rem;
}
.members__gallery .slick-arrow:hover {
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .main__section-left {
    padding: 0 2rem;
  }
  .main__section-right {
    padding: 0 2rem;
  }
  .heading {
    font-size: 4.8rem;
    margin-bottom: 4rem;
  }
  .btn {
    min-width: 100%;
    height: 9rem;
    font-size: 3rem;
    padding: 2rem;
  }
  .btn svg {
    width: 9rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 1rem 1rem 10rem;
    font-size: 2.1rem;
    line-height: 1.2;
    backdrop-filter: none;
  }
  .list-num__item:before {
    font-size: 6rem;
    line-height: 7.5rem;
    height: 7rem;
    width: 7rem;
    top: 1rem;
    left: 1rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-check {
    font-size: 2.4rem;
  }
  .form-check svg {
    width: 3rem;
  }
  .form-input {
    height: 8rem;
    font-size: 2.4rem;
  }
  .form-btn {
    font-size: 2.8rem;
    height: 9rem;
  }
  .message {
    display: none;
  }
  .play {
    padding: 2.4rem;
    column-gap: 1.5rem;
    height: 9rem;
    font-weight: normal;
    font-size: 2.4rem;
  }
  .play svg {
    width: 2.8rem;
  }
  .header {
    flex-direction: column;
    padding-bottom: 2rem;
  }
  .header__block {
    padding: 2rem 2rem 2rem 2rem;
    width: 100%;
  }
  .header__gallery {
    width: 100%;
    min-height: inherit;
  }
  .header__slide {
    height: 50rem;
  }
  .header__slide:after {
    height: auto;
    top: -2px;
    bottom: -2px;
    background: linear-gradient(180deg, #141211 0%, rgba(20, 18, 17, 0) 25%, rgba(20, 18, 17, 0) 75%, #141211 100%);
  }
  .header__message {
    position: absolute;
    top: auto !important;
    bottom: 2rem;
    z-index: 2;
    left: 4rem !important;
    right: 4rem;
    width: auto;
    column-gap: 1rem;
    padding: 1.5rem;
    border-radius: 2.4rem;
    font-size: 2rem;
  }
  .header__message b {
    font-weight: bold;
    line-height: 1.33;
  }
  .header__message svg {
    width: 4.2rem;
  }
  .header__message time {
    font-size: 1.6rem;
  }
  .header__video {
    vertical-align: middle;
    min-height: inherit;
    margin-top: -5rem;
  }
  .header__title {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    text-align: center;
  }
  .header__tags {
    justify-content: center;
    margin: 0 0 1.5rem;
  }
  .header__tags li {
    padding: 1.2rem 2rem;
    font-size: 2.2rem;
    display: flex;
    justify-content: center;
    width: auto !important;
  }
  .header__slogan {
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: -0.1rem;
    font-size: 8rem;
  }
  .header__text {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .header__btn {
    width: 100%;
  }
  .alex__block {
    padding: 10rem 2rem;
    flex-direction: column;
    gap: 4rem;
  }
  .alex__img {
    width: 47.5rem;
    flex-shrink: 0;
    position: relative;
  }
  .alex__play {
    position: absolute;
    top: 4rem;
    left: 4rem;
    right: 4rem;
    background: rgba(0, 0, 0, 0.3);
    transform: none;
  }
  .alex__title {
    font-size: 4.2rem;
    font-family: "Bebas Neue Cyrillic", sans-serif;
    margin-bottom: 2.4rem;
    line-height: 1;
  }
  .alex__text {
    padding-top: 6rem;
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .alex__text svg {
    width: 5.2rem;
    left: 0;
  }
  .alex__btn {
    width: 100%;
    background: #141211;
    color: #F8F8F8;
  }
  .services__heading {
    position: relative;
    z-index: 2;
  }
  .services__block {
    display: block;
    border-radius: 0;
    background: none;
    overflow: visible;
    margin-bottom: 3rem;
  }
  .services__bg {
    width: calc(100% + 4rem);
    margin: -6rem -2rem -18rem;
    max-width: inherit;
    position: relative;
    z-index: 1;
  }
  .services__img {
    width: 24rem;
    flex-shrink: 0;
    margin: 2rem auto 0;
    display: block;
  }
  .services__info {
    padding: 2.4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border-radius: 8px;
    position: relative;
    z-index: 2;
  }
  .services__title {
    font-size: 5.6rem;
  }
  .services__text {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .services__list {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .services__list ul {
    padding-left: 3rem;
  }
  .services__blocks {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .services__item {
    flex-basis: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2.4rem;
  }
  .services__review {
    width: 24rem;
    margin: 2rem auto 0;
  }
  .reviews {
    overflow-x: hidden;
  }
  .reviews__heading {
    text-align: left;
  }
  .reviews__video img {
    width: 160%;
    max-width: inherit;
  }
  .reviews__play {
    right: auto;
    left: 2rem;
  }
  .reviews__about {
    font-size: 2.8rem;
  }
  .reviews__name {
    font-size: 4rem;
  }
  .reviews__gallery {
    position: relative;
    margin: 0 -2rem;
    width: 100vw;
  }
  .reviews__gallery .slick-list {
    overflow-x: auto !important;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .reviews__gallery .slick-arrow {
    display: none !important;
  }
  .reviews__gallery .slick-track {
    transform: none !important;
    display: inline-flex;
    width: auto !important;
  }
  .reviews__gallery .slick-slide {
    width: 54rem !important;
    scroll-snap-align: center;
    padding: 0 1rem;
    box-sizing: content-box;
  }
  .reviews__gallery .slick-slide:first-child {
    padding-left: 2rem;
  }
  .reviews__gallery .slick-slide:last-child {
    padding-right: 2rem;
  }
  .reviews__item {
    padding: 0;
  }
  .club__block {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 3rem;
    row-gap: 5rem;
    margin-bottom: 8rem;
  }
  .club__item {
    text-align: center;
    flex-basis: 20rem;
    font-size: 2.4rem;
  }
  .club__item:nth-child(2n+1) {
    flex-basis: 30rem;
  }
  .club__title {
    font-size: 4rem;
    margin-bottom: 1rem;
    white-space: nowrap;
  }
  .club__citation {
    width: 36rem;
    margin-left: 32%;
    column-gap: 1rem;
    font-size: 2.4rem;
  }
  .club__citation svg {
    width: 3rem;
    flex-shrink: 0;
  }
  .club__citation svg:last-child {
    display: none;
  }
  .tags__list {
    gap: 1rem;
    padding: 0 6rem;
  }
  .tags__list li {
    padding: 2.4rem 4rem;
    font-size: 2.4rem;
  }
  .members__heading {
    font-size: 4.8rem;
    margin-bottom: 6rem;
    text-align: left;
  }
  .members__item {
    padding: 0;
  }
  .members__gallery {
    position: relative;
    margin: 0 -2rem;
    width: 100vw;
  }
  .members__gallery .slick-list {
    overflow-x: auto !important;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .members__gallery .slick-arrow {
    display: none !important;
  }
  .members__gallery .slick-track {
    transform: none !important;
    display: inline-flex;
    width: auto !important;
  }
  .members__gallery .slick-slide {
    width: 32rem !important;
    scroll-snap-align: center;
    padding: 0 1rem;
    box-sizing: content-box;
  }
  .members__gallery .slick-slide:first-child {
    padding-left: 2rem;
  }
  .members__gallery .slick-slide:last-child {
    padding-right: 2rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  line-height: 1.1;
  background: #141211;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  row-gap: 2rem;
  align-items: end;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
.footer a:hover {
  color: #ffc9c5;
  border-color: #ffc9c5;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
.footer .container {
  padding: 0 20rem;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}
.footer__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}
.footer__phone > div {
  min-width: 19rem;
}
.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #A3A3A3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}
@media screen and (max-width: 1024px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}

/*ENDfooter*/
.thnx {
  display: flex;
  align-items: stretch;
  background: #141211;
  color: white;
}
@media screen and (max-width: 1024px) {
  .thnx {
    flex-direction: column;
  }
  .thnx__heading {
    display: flex;
    column-gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: center;
  }
  .thnx__heading .heading {
    text-align: left;
    font-size: 7rem;
    margin-bottom: 0;
  }
}
.thnx__block {
  padding: 10rem 10rem 10rem 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .thnx__block {
    padding: 4rem 2rem;
  }
}
.thnx__img {
  width: 86.8rem;
  flex-shrink: 0;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .thnx__img {
    width: 100%;
    min-height: inherit;
  }
}
.thnx__img img {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  vertical-align: top;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .thnx__img img {
    min-height: inherit;
    height: auto;
  }
}
.thnx__btn {
  width: 100%;
  column-gap: 2rem;
}
.thnx__btn svg {
  width: 3.2rem;
  fill: currentColor;
}
.thnx__check {
  width: 15.8rem;
  margin: 0 auto 3rem;
  display: block;
}
@media screen and (max-width: 1024px) {
  .thnx__check {
    width: 12rem;
    margin: 0;
    flex-shrink: 0;
  }
}
.thnx__text {
  font-size: 3.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .thnx__text {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}

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