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.2;
  -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 12rem;
  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: 6.4rem;
  margin-bottom: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  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: white;
  position: relative;
  width: 88rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 1.2rem;
}
.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: 15vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: white;
    border-radius: 0;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 10;
}
.modal__title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1;
  position: relative;
  margin-bottom: 2.4rem;
  color: #141211;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__title {
    font-size: 4.8rem;
  }
}
.modal__text {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    font-size: 2.8rem;
  }
}

.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;
  margin-bottom: 1.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: 1px solid #AEAEAE;
  padding: 1.2rem;
  height: 6rem;
  font-size: 2rem;
  line-height: 1;
  color: #7b7b7b;
  border-radius: 0.8rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  -webkit-box-shadow: inset 0 0 0 50px white;
  -webkit-text-fill-color: #7b7b7b;
}
.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: 1.2rem;
  background: #141211;
  color: white;
}
.form__agreement {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}
.form__checkbox {
  width: 2rem;
  flex-shrink: 0;
}
.form__checkbox svg {
  width: 100%;
}

.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;
}

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

.btn-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;
}
.btn-play svg {
  width: 2.4rem;
  flex-shrink: 0;
}
.btn-play svg path {
  stroke: currentColor;
}

@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;
  }
}
.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.1s, transform 0.6s ease-out 0.1s;
}
.js-animate.animate--delay-2 {
  transition: all 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
.js-animate.animate--delay-3 {
  transition: all 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}
.js-animate.animate--delay-4 {
  transition: all 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}
.js-animate.animate--delay-5 {
  transition: all 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
}
.js-animate.animate--delay-6 {
  transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}
.js-animate.animate--delay-7 {
  transition: all 0.6s ease-out 0.7s, transform 0.6s ease-out 0.7s;
}
.js-animate.animate--delay-8 {
  transition: all 0.6s ease-out 0.8s, transform 0.6s ease-out 0.8s;
}
.js-animate.animate--delay-9 {
  transition: all 0.6s ease-out 0.9s, transform 0.6s ease-out 0.9s;
}
.js-animate.animate--delay-10 {
  transition: all 0.6s ease-out 1s, transform 0.6s ease-out 1s;
}
.js-animate.animate--delay-11 {
  transition: all 0.6s ease-out 1.1s, transform 0.6s ease-out 1.1s;
}
.js-animate.animate--delay-12 {
  transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
}
.js-animate.animate--delay-13 {
  transition: all 0.6s ease-out 1.3s, transform 0.6s ease-out 1.3s;
}
.js-animate.animate--delay-14 {
  transition: all 0.6s ease-out 1.4s, transform 0.6s ease-out 1.4s;
}
.js-animate.animate--delay-15 {
  transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
}
.js-animate.animate--delay-16 {
  transition: all 0.6s ease-out 1.6s, transform 0.6s ease-out 1.6s;
}
.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 {
  display: block;
  width: 100%;
  background: #141211;
}

.bg-arrow-light {
  display: block;
  width: 100%;
  background: #f8f8f8;
}

.js-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.js-video video {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.js-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.js-video__play svg {
  width: 1.2rem;
}
.js-video__play .play {
  display: none;
}
.js-video__play.off {
  opacity: 1;
}
.js-video__play.off .pause {
  display: none;
}
.js-video__play.off .play {
  display: block;
}

.header {
  background: #141211;
  color: white;
}
.header__block {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.header__info {
  padding: 10rem 0 10rem 12rem;
}
.header__title {
  margin-bottom: 4rem;
  display: flex;
  gap: 1.2rem;
}
.header__title img {
  width: 7rem;
  flex-shrink: 0;
}
.header__label {
  padding: 2rem 4rem;
  border-radius: 10rem;
  font-size: 2.4rem;
  text-transform: uppercase;
  border: 1px solid #7E7E7E;
}
.header__slogan {
  margin-bottom: 2.4rem;
  text-align: left;
  font-size: 10.5rem;
}
.header__text {
  margin-bottom: 2.4rem;
}
.header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  list-style: none;
  margin: 0 0 8rem;
}
.header__tags li {
  padding: 1.2rem 2.4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10rem;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
.header__btn {
  width: 61rem;
  position: relative;
}
.header__btn .btn {
  width: 100%;
}
.header__result {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.4rem;
}
.header__arrow {
  position: absolute;
  width: 5rem;
  right: -7rem;
  top: 0.5rem;
}
.header__video {
  width: 90rem;
  flex-shrink: 0;
}

.program {
  background: #141211;
  color: white;
}
.program__block {
  display: flex;
  align-items: start;
  gap: 4rem;
}
.program__left {
  position: sticky;
  top: 10rem;
  width: 82rem;
  flex-shrink: 0;
  border-radius: 2rem;
  border: 1px solid #3A3835;
  background: #1C1B1A;
  padding: 5.6rem;
}
.program__item {
  border-radius: 2rem;
  border: 1px solid #3A3835;
  background: #1C1B1A;
  padding: 4rem;
  margin-bottom: 1.2rem;
}
.program__item:last-child {
  margin-bottom: 0;
}
.program__info {
  font-size: 2rem;
  margin-bottom: 2.4rem;
  opacity: 0.5;
}
.program__heading {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
  font-size: 5.4rem;
  text-align: left;
}
.program__text {
  margin-bottom: 3.2rem;
}
.program__btn {
  width: 100%;
}
.program__title {
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
}
.program__img {
  width: 100%;
  margin-bottom: 2.4rem;
}

.working__block {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.working__info {
  padding-left: 12rem;
}
.working__list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem;
}
.working__list li {
  margin-bottom: 0.8rem;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid #CECECE;
  background: #E9E9E9;
  font-size: 2rem;
  color: #646464;
}
.working__title {
  font-weight: bold;
  color: black;
  margin-bottom: 1.2rem;
}
.working__btn {
  background: #141211;
  color: white;
  width: 100%;
}
.working__gallery {
  width: 94.5rem;
  flex-shrink: 0;
  min-height: 100vh;
  overflow: hidden;
}
.working__gallery .slick-list {
  cursor: auto;
}
.working__slide {
  position: relative;
}
.working__slide:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26rem;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 100%);
}
.working__slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 26rem;
  background: linear-gradient(180deg, #F8F8F8 0%, rgba(248, 248, 248, 0) 100%);
}
.working__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);
  color: #f8f8f8;
  backdrop-filter: blur(10px);
  font-size: 1.7rem;
  line-height: normal;
}
.working__message.message2 {
  top: 13rem;
}
.working__message.message3 {
  top: 24rem;
  left: 7rem;
}
.working__message.message4 {
  top: 11rem;
}
.working__message.message5 {
  top: 9rem;
}
.working__message b {
  font-weight: bold;
  line-height: 1.33;
}
.working__message svg {
  width: 3.7rem;
  flex-shrink: 0;
}
.working__message time {
  align-self: start;
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: nowrap;
  margin-left: auto;
}
.working__video {
  width: 100%;
  min-height: 100vh;
  vertical-align: top;
  object-fit: cover;
}

.about {
  background: url("../images/bg-about.webp") center top no-repeat #141211;
  background-size: 100% auto;
  color: white;
}
.about__block {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.about__subheading {
  font-size: 2rem;
  margin-bottom: 2.4rem;
  opacity: 0.5;
}
.about__info {
  width: 82rem;
  flex-shrink: 0;
}
.about__title {
  font-size: 4.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  margin-bottom: 13rem;
  margin-top: 3rem;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 13rem;
}
.about__list li {
  border: 1px solid #3A3835;
  background: #1C1B1A;
  padding: 3.2rem;
  margin-bottom: 0.8rem;
}
.about__list li:last-child {
  margin-bottom: 0;
}
.about__citate {
  font-style: italic;
}

.club {
  background: #141211;
  color: #f8f8f8;
}
.club__heading {
  text-align: center;
}
.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__heading {
  text-align: center;
  margin-bottom: 5.6rem;
}
.tags__text {
  font-size: 4rem;
  text-align: center;
}
.tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 0 16.5rem;
  margin: 0 0 5.6rem;
  list-style: none;
}
.tags__list li {
  padding: 2rem 9rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10rem;
  font-size: 4rem;
}

.tracy__block {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.tracy__video {
  width: 101rem;
  flex-shrink: 0;
}
.tracy__video video {
  width: 100%;
  border-radius: 12px;
}
.tracy__title {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  font-weight: 600;
}
.tracy__title svg {
  width: 2.6rem;
  flex-shrink: 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;
  position: relative;
}
.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;
}

.terms {
  background: url("../images/bg.webp") center top no-repeat;
  background-size: cover;
  min-height: 100vh;
  color: #f8f8f8;
  padding: 28rem 0;
}
.terms__block {
  width: 75rem;
  margin: 0 auto;
}
.terms__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
}
.terms__heading {
  text-align: center;
}
.terms__text {
  text-align: center;
  margin-bottom: 4rem;
}

.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;
}

.footer {
  border-top: 1px solid #464646;
  padding-top: 9.5rem;
  background: #141211;
  color: white;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 10rem;
}
.footer__col {
  width: 75rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.footer__btns {
  display: flex;
  width: 100%;
  gap: 1.8rem;
}
.footer__btns a {
  width: 100%;
}
.footer__btn {
  padding: 1.2rem;
  gap: 1.2rem;
  height: 6rem;
  border: 1px solid white;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 1.6rem;
  min-width: 30rem;
}
.footer__btn:hover {
  text-decoration: none;
  background: black;
  color: white;
}
.footer__btn svg {
  width: 1.6rem;
  flex-shrink: 0;
}
.footer__social {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social li {
  flex-shrink: 0;
  display: flex;
  border-radius: 50%;
}
.footer__social li a {
  display: flex;
  line-height: 0;
}
.footer__social li a:not(.footer__btn) {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.footer__social li svg {
  width: 4rem;
  flex-shrink: 0;
}
.footer__copyright {
  padding-bottom: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #464646;
}
.footer__copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@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 {
    padding: 4rem 0;
  }
  .main__section-left {
    padding: 0 2rem;
  }
  .main__section-right {
    padding: 0 2rem;
  }
  .heading {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
  }
  .btn {
    min-width: 100%;
    height: 9rem;
    font-size: 2.8rem;
    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;
  }
  .form__agreement {
    font-size: 2.2rem;
  }
  .form__checkbox {
    width: 4rem;
  }
  .message {
    display: none;
  }
  .btn-play {
    padding: 2.4rem;
    column-gap: 1.5rem;
    height: 9rem;
    font-weight: normal;
    font-size: 2.4rem;
  }
  .btn-play svg {
    width: 2.8rem;
  }
  .header {
    background: #141211;
    color: white;
  }
  .header__block {
    flex-direction: column-reverse;
    gap: 2.4rem;
  }
  .header__info {
    padding: 0 2rem 4rem;
  }
  .header__title {
    margin-bottom: 0;
    margin-top: 2rem;
    display: flex;
    gap: 1.6rem;
  }
  .header__title img {
    width: 7rem;
    flex-shrink: 0;
  }
  .header__label {
    padding: 1.6rem 2.4rem;
  }
  .header__slogan {
    margin-bottom: 1.6rem;
    font-size: 6.4rem;
  }
  .header__text {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .header__tags {
    gap: 0.8rem;
    margin: 0 0 4.8rem;
  }
  .header__tags li {
    padding: 0.8rem 1.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10rem;
    font-size: 2.2rem;
  }
  .header__btn {
    width: 61rem;
    position: relative;
  }
  .header__btn .btn {
    width: 100%;
  }
  .header__result {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }
  .header__arrow {
    position: absolute;
    width: 6rem;
    right: 0rem;
    top: -2rem;
  }
  .header__video {
    width: 100%;
    flex-shrink: 0;
  }
  .program__block {
    flex-direction: column;
    gap: 0.8rem;
  }
  .program__left {
    position: static;
    width: 100%;
    padding: 2.4rem;
  }
  .program__item {
    padding: 2.4rem;
    margin-bottom: 0.8rem;
  }
  .program__item:last-child {
    margin-bottom: 0;
  }
  .program__info {
    font-size: 1.6rem;
  }
  .program__heading {
    margin-top: 0;
    margin-bottom: 2.4rem;
    font-size: 4rem;
  }
  .program__text {
    margin-bottom: 0;
    font-size: 2.4rem;
  }
  .program__btn {
    width: 100%;
  }
  .program__title {
    font-size: 3.2rem;
  }
  .working__block {
    flex-direction: column;
    gap: 4rem;
  }
  .working__info {
    padding: 0 2rem;
  }
  .working__list {
    margin: 0 0 2.4rem;
  }
  .working__list li {
    margin-bottom: 0.8rem;
    padding: 2.4rem;
    font-size: 2.8rem;
  }
  .working__title {
    margin-bottom: 1.6rem;
  }
  .working__gallery {
    width: 100%;
    min-height: inherit;
  }
  .working__slide {
    height: 50rem;
    overflow: hidden;
  }
  .working__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;
  }
  .working__message b {
    font-weight: bold;
    line-height: 1.33;
  }
  .working__message svg {
    width: 4.2rem;
  }
  .working__message time {
    font-size: 1.6rem;
  }
  .working__video {
    vertical-align: middle;
    min-height: inherit;
    margin-top: -5rem;
  }
  .about {
    background: #141211;
  }
  .about__block {
    flex-direction: column;
  }
  .about__img {
    margin: 0 -2rem 5rem;
    width: calc(100% + 4rem);
    max-width: inherit;
  }
  .about__subheading {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .about__info {
    width: 100%;
  }
  .about__heading {
    margin-bottom: 1.6rem;
  }
  .about__title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    margin-top: 0;
  }
  .about__list {
    margin: 0 0 3rem;
  }
  .about__list li {
    padding: 2.4rem;
    font-size: 2.8rem;
  }
  .about__citate {
    font-size: 2.8rem;
  }
  .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: 50rem;
    margin-left: 20%;
    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: 0.8rem;
    padding: 0 2rem;
    margin-bottom: 6rem;
  }
  .tags__list li {
    padding: 2.4rem 4rem;
    font-size: 2.4rem;
  }
  .tags__text {
    font-size: 2.8rem;
    padding-bottom: 6rem;
  }
  .tracy__block {
    flex-direction: column;
    gap: 1.6rem;
  }
  .tracy__video {
    width: 100%;
  }
  .tracy__video video {
    border-radius: 8px;
  }
  .tracy__title {
    gap: 1.6rem;
    margin-bottom: 4rem;
  }
  .tracy__title svg {
    width: 5rem;
    flex-shrink: 0;
  }
  .reviews {
    overflow-x: hidden;
  }
  .reviews__heading {
    text-align: center;
  }
  .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-arrow.arrow-right {
    right: auto;
    left: 50%;
  }
  .reviews__gallery .slick-arrow.arrow-left {
    right: 50%;
  }
  .reviews__gallery .slick-arrow {
    top: -10rem;
  }
  .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;
  }
  .terms {
    padding: 28rem 0;
  }
  .terms__block {
    width: 100%;
  }
  .terms__title {
    gap: 1.6rem;
  }
  .terms__heading {
    text-align: center;
    margin-bottom: 4rem;
  }
  .terms__text {
    text-align: center;
    margin-bottom: 4rem;
  }
  .members__heading {
    text-align: center;
    margin-bottom: 2.4rem;
  }
  .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 {
    padding-top: 8rem;
  }
  .footer__block {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 8rem;
  }
  .footer__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footer__title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .footer__btns {
    display: flex;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .footer__btns a {
    width: 100%;
  }
  .footer__btn {
    margin-bottom: 0;
    padding: 2.4rem;
    gap: 2rem;
    border-radius: 1.6rem;
    font-size: 2.4rem;
    min-width: 100%;
    height: 8rem;
  }
  .footer__btn:hover {
    text-decoration: none;
    background: black;
    color: white;
  }
  .footer__btn svg {
    width: 3.2rem;
    flex-shrink: 0;
  }
  .footer__social {
    gap: 2.4rem;
    flex-wrap: wrap;
  }
  .footer__social li:has(.footer__btn) {
    min-width: 100%;
  }
  .footer__social li svg {
    width: 7rem;
  }
  .footer__copyright {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .footer__copyright .container {
    gap: 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }
}

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