/* Arimo */
@font-face {
  font-family: 'Arimo';
  src: url('./fonts/Arimo/Arimo-VariableFont.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arimo';
  src: url('./fonts/Arimo/Arimo-Italic-VariableFont.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

/* Inter */
@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter/Inter-VariableFont.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter/Inter-Italic-VariableFont.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Comforter  */
@font-face {
  font-family: 'Comforter';
  src: url('./fonts/Comforter/Comforter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* COLORS */
  --color-primary: #ccff00;

  --color-secondary: #1a1a1a;
  --color-tertiary: #2d2d2d;

  --color-bg: #111111;

  /* TEXT */
  --text-primary: #d8d8d8;
  --text-secondary: #b8b8b8;
  --text-muted: rgba(255, 255, 255, 0.65);

  /* TEXT SIZE */
  --text-title-desktop: 32px;
  --text-title-mobile: 26px;
  --text-primary-desktop: 20px;
  --text-primary-mobile: 18px;

  /* ACCENT */
  --accent-soft: #dce2c0;
  --accent-border: rgba(204, 255, 0, 0.15);

  /* STATE */
  --color-success: #ccff00;
  --color-danger: #f0b2b2;

  /* BUTTON */
  --button-primary-bg: #ccff00;
  --button-primary-text: #111111;

  --button-secondary-bg: #2d2d2d;
  --button-secondary-text: #f0f0f0;

  --spring-easing: linear(
    0,
    0.009 1.4%,
    0.032 2.8%,
    0.131 6%,
    0.265 9.1%,
    0.675 17.6%,
    0.88 22.8%,
    0.953 25.2%,
    1.014 27.7%,
    1.062 30.3%,
    1.094 32.9%,
    1.121 37.2%,
    1.121 42.2%,
    1.102 46.7%,
    1.019 61.2%,
    0.989 71.5%,
    0.985 81.1%,
    1
  );
}

html {
  @media (max-width: 768px) {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

htnml::-webkit-scrollbar {
  @media (max-width: 768px) {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  background-color: var(--color-bg);
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  color: var(--text-primary);
  padding-inline: 50px;

  position: fixed;
  top: 10px;
  left: 0;
  z-index: 1000;
  transform: translateY(0);
  will-change: transform;

  @media (max-width: 768px) {
    height: 90px;
    padding-inline: 15px;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  padding-inline: 15px;
  max-width: 1280px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  transition: all 0.35s var(--spring-easing);

  @media (max-width: 768px) {
    background: transparent;
    backdrop-filter: blur(0px);
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0);
    padding-inline: 0px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.header__logo__icon {
  height: 38px;
  width: auto;
  mix-blend-mode: exclusion;
  transform-origin: center;

  @media (max-width: 768px) {
    height: 50px;
    width: auto;
  }
}

.header__logo--container {
  display: flex;
  align-items: center;
}

.header__logo--img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: flex;

  @media (max-width: 1100px) {
    display: none !important;
  }
}

.header__ul {
  display: flex;
}

.header__list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header__li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-inline: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;

  &:after {
    content: '';
    width: calc(100% - 20px);
    height: 4px;
    background-color: var(--color-success);
    position: absolute;
    bottom: 8px;
    left: 10px;
    border-radius: 20px;
    transition: transform 0.35s var(--spring-easing);
    transform: translateX(calc(-100% - 20px));
  }

  &:hover {
    color: var(--color-success);

    &:after {
      transform: translateX(0);
    }
  }
}

.split__wrapper {
  position: relative;
  display: block;
  height: 32px;
  width: 120px;
  overflow: hidden;
}

.header__li:nth-child(1) {
  width: 105px;
}

.header__li:nth-child(2) {
  width: 110px;
}

.header__li:nth-child(3) {
  width: 94px;
}

.header__li:nth-child(4) {
  width: 120px;
}

.split__text {
  display: block;
  font-size: 22px;
  width: 400px;
  height: 32px;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;

  .char {
    display: inline-block;
    font-size: 22px;
  }
}

.split__text--top {
  top: 0;
  left: 0;
}

.split__text--bottom {
  top: 100%;
  left: 0;
}

.header__button {
  font-size: 22px;
  font-weight: 420;
  height: 60px;
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  color: black;
  padding-inline: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 2px greenyellow, inset 0px -5px 10px rgba(0, 0, 0, 0.2),
    inset 0px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  @media (max-width: 1100px) {
    display: none !important;
  }
}

.header__button__text--wrapper {
  width: 110px;
  height: 26px;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 3px solid var(--color-success);
  padding: 8px;

  @media (max-width: 1100px) {
    display: flex;
  }

  &.is-active {
  }
}

.header__logo__text {
  opacity: 0.85;
  font-weight: 550;
  @media (max-width: 768px) {
    display: none;
  }
}

.header__burger__menu {
  position: fixed;
  border: 2px solid var(--color-success);
  border-radius: 28px;
  right: 50px;
  top: 150px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  transform: translateY(50px) rotate(5deg);
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-property: opacity, transform;
  transition-duration: 0.1s, 0.4s;
  transition-delay: 0.1s, 0s;
  transition-timing-function: linear, var(--spring-easing);
  padding-bottom: 20px;

  @media (max-width: 768px) {
    top: 110px;
    right: 15px;
  }

  &.is-open {
    display: flex;
    backdrop-filter: blur(10px) !important;
    transition-property: opacity, transform;
    transition-duration: 0.2s, 0.4s;
    transition-delay: 0s, 0s;
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
  }
}

.header__burger__nav__title {
  font-family: Comforter;
  color: var(--color-primary);
  font-size: 42px;
  margin-bottom: 20px;
}

.header__burger__nav {
  padding: 25px 35px;
}

.header__burger__ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header__burger__li {
  font-size: 28px;
  font-weight: 350;
  line-height: 1.2;
  color: var(--text-primary);
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 3.6px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: transform 0.35s var(--spring-easing), opacity 0.3s ease;
  mix-blend-mode: exclusion;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  transform: translateY(-6.6px) rotate(-45deg);
}

.header__nav.is-open {
  display: flex;
}

/* HERO */
.hero {
  display: flex;
  justify-content: center;
  gap: 60px;
  width: 100%;
  padding: 110px 50px 0 50px;
  background-color: var(--color-bg);
  position: relative;

  @media (max-width: 768px) {
    padding: 50px 15px 0 15px;
    min-height: none;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/noise.png') repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;

  @media (max-width: 1380px) {
    min-height: 850px;
  }
}

/* LEFT */
.hero__left {
  max-width: 600px;
  padding-top: 50px;
  z-index: 1;

  @media (max-width: 1380px) {
    max-width: 100%;
    width: 50%;
  }

  @media (max-width: 1100px) {
    width: 60%;
  }

  @media (max-width: 900px) {
    width: 70%;
  }

  @media (max-width: 768px) {
    width: 100%;
    padding-top: 0px;
  }
}

.hero__right {
  flex: 1;
  position: relative;

  @media (max-width: 1380px) {
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-100%);
    z-index: 0;
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.hero__tag {
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--color-success);
  font-family: 'Comforter', cursive;
  font-weight: 400;
  font-style: normal;
  position: relative;

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;

    text-transform: uppercase;
    margin-bottom: 6vw;
  }
}

.hero__tag__description {
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  font-family: 'Comforter', cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 1;
  font-size: 12vw;
  text-shadow: none;
  width: 100%;
  z-index: 5;
  display: none;
  margin-bottom: 6vw;

  @media (max-width: 768px) {
    display: flex;
  }
}

.hero__title {
  font-size: 64px;
  margin: 20px 0 30px 0;
  line-height: 1.2;
  color: var(--text-primary);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
  transform: rotate(-1deg);

  @media (max-width: 768px) {
    font-size: 12vw;
    width: 100%;
    text-align: center;
    transform: rotate(0);
    display: none;
  }
}

.hero__title span {
  font-size: 64px;
  color: var(--color-success);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-style: italic;

  @media (max-width: 768px) {
    font-size: 12vw;
    width: 100%;
    text-align: center;
    transform: rotate(0);
  }
}

.hero__text {
  font-size: 24px;
  font-weight: 350;
  opacity: 0.8;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 60px;

  @media (max-width: 768px) {
    font-size: 22px;
    text-align: center;
  }
}

/* BUTTONS */
.hero__buttons {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-bottom: 80px;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.btn {
  font-size: 22px;
  width: 50%;
  padding: 0px 20px;
  height: 65px;
  cursor: pointer;
  font-weight: 420;
  border: none;
  border-radius: 16px;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #000;
  background: var(--color-primary);
  position: relative;
  border: 1.5px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 2px greenyellow, inset 0px -5px 10px rgba(0, 0, 0, 0.2),
    inset 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s linear(0, 0.63 18%, 0.985 38.4%, 1.08 59.2%, 1);

  @media (hover: hover) {
    &:hover {
      @media (min-width: 769px) {
        color: var(--color-primary);
        background: transparent;
        border: 1.5px solid var(--color-primary);
      }
    }
  }
}

.btn__text--wrapper {
  position: relative;

  overflow: hidden;
}

.hero--wrapper {
  width: 145px;
  height: 26px;
}

.btn__text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 22px;
  font-weight: 420;
  left: 0;
  top: 0;

  .word {
    display: inline-block;
    font-size: 22px;
    margin-right: 7px;
  }
}

.hero__image__mobile {
  width: 100%;

  display: none;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  transition: transform 0.35s var(--spring-easing);

  @media (max-width: 768px) {
    display: flex;
  }
}

.hero__image__mobile__container {
  position: relative;
  justify-content: center;
  justify-items: center;
  width: 60%;
  display: grid;
  align-items: end;
  border-radius: 0 0 100vw 100vw;
  margin-bottom: 40px;
  overflow: hidden;
  border-bottom: 2px solid #636363;

  @media (max-width: 600px) {
    width: 80%;
  }
}

.hero__background {
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  left: 0;
  z-index: 1;
  border-top: 2px solid #636363;
  border-left: 2px solid #636363;
  border-right: 2px solid #636363;
}

.hero__person {
  position: relative;

  width: 80%;
  height: auto;

  z-index: 2;

  filter: grayscale(1) drop-shadow(2px 0px 0px rgba(255, 255, 255, 0.4))
    drop-shadow(-2px 0px 0px rgba(255, 255, 255, 0.4));
}

.btn__icon--wrapper {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden;
}

.btn__icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translateY(0px);
  left: 0;
  top: 0;
}

/* КНОПКА ПРОГРАММЫ В ХЕРО */

.btn--draw {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: #c8ff00;
  position: relative;
  overflow: hidden;
  transition: all 0.1s var(--spring-easing);

  &:after {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    content: 'Программы';
    position: absolute;
    top: 0;
    left: 0;
    color: black;
    opacity: 0;
    transition: all 0.4s var(--spring-easing);
    transition-delay: 0.3s;
  }

  &:hover {
    @media (min-width: 769px) {
      border: 1.5px solid rgba(0, 0, 0, 0.6);

      &:after {
        opacity: 1;
      }

      box-shadow: 0px 0px 2px greenyellow,
        inset 0px -5px 10px rgba(0, 0, 0, 0.2),
        inset 0px 5px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.1s var(--spring-easing);
    }
  }
}

.btn__line--wrapper {
  position: absolute;
  top: -30px;
  left: -30px;

  .btn__line {
    width: 380px;
    height: auto;
  }
}

/* RIGHT */
.hero__desktop__image {
  max-width: 620px;
  position: relative;
  transition: transform 0.35s var(--spring-easing);

  filter: grayscale(1) drop-shadow(5px 0px 0px rgba(255, 255, 255, 0.4))
    drop-shadow(-5px 0px 0px rgba(255, 255, 255, 0.4));

  @media (max-width: 1380px) {
    transform: translateX(10%);
  }

  @media (max-width: 1100px) {
    transform: translateX(20%);
  }

  @media (max-width: 900px) {
    transform: translateX(30%);
  }
}

/* SPACER */

.spacer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: max-content;
  background-color: var(--accent-soft);
  position: relative;
}

.spacer::before {
  content: '';
  position: absolute;
  inset: 0;

  background: url('./images/noise.png') repeat;
  opacity: 0.6;

  pointer-events: none;
  z-index: 0;
}

/* STATS */
.hero__stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  height: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  width: calc(100% / 3);
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  height: 100%;
  padding-block: 80px;

  @media (max-width: 768px) {
    padding-block: 40px;
  }
}

.stat:first-child {
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.stat__num {
  font-size: 54px;
  font-family: 'Comforter', cursive;
  font-weight: 400;
  font-style: normal;
  color: var(--color-secondary);

  @media (max-width: 768px) {
    font-size: 9vw;
  }
}

.stat__label {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1380px) {
  .stat__label {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .stat__label {
    font-size: 15px;
  }
}

/* WHYME БЛОК */

.whyme {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 200px 50px 200px 50px;
  background-color: var(--color-bg);
  position: relative;

  @media (max-width: 768px) {
    padding: 100px 15px 100px 15px;
  }
}

.whyme::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/noise.png') repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.whyme__container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  z-index: 2;
}

.whyme__logo {
  font-size: 54px;
  margin-bottom: 70px;
  line-height: 1;
  color: var(--text-primary);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
  position: relative;
  width: 100%;
  font-style: italic;
  text-transform: uppercase;

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;

    text-transform: uppercase;
    margin-bottom: 12vw;
  }
}

.why__list {
  display: flex;

  gap: 40px;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.why__blok {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-muted);
  padding: 35px 25px 70px 25px;
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 350;
  width: 50%;
  z-index: 1;

  @media (max-width: 768px) {
    padding: 35px 25px 40px 25px;
    width: 100%;
  }
}

.why__blok--img {
  height: 100%;
  opacity: 1;
}

.why__blok--right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 255, 220, 0.1) 100%
  );
  pointer-events: none;
  z-index: 2;
  box-shadow: inset -10px 10px 50px rgba(255, 255, 255, 0.2);
}

.why__icon--container {
  background-color: #141414;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--color-success);
}

.muscle {
  background-color: var(--color-success);
  border: 1px solid #141414;
}

.why__blok--text {
  font-size: var(--text-primary-desktop);
  font-weight: 350;
  line-height: 1.4;
  padding-bottom: 25px;

  @media (max-width: 768px) {
    font-size: var(--text-primary-mobile);
  }
}

.why__blok--name {
  font-size: var(--text-title-desktop);
  font-weight: 500;
  color: var(--text-primary);

  @media (max-width: 768px) {
    font-size: var(--text-title-mobile);
  }
}

.achievements {
  display: flex;
  flex-direction: row;
  margin-top: 70px;
  gap: 20px;
  min-height: 600px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  overflow: hidden;
  margin-bottom: 100px;
  z-index: 2;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.achievements__left {
  display: flex;
  padding: 35px 25px 35px 25px;
  flex-direction: column;
  gap: 20px;
  width: 50%;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.achievements__right {
  width: 50%;
  position: relative;

  @media (max-width: 768px) {
    width: 100%;
    padding: 0;
  }
}

.achievements__name {
  font-size: var(--text-title-desktop);
  color: var(--text-primary);
  font-weight: 500;

  @media (max-width: 768px) {
    font-size: var(--text-title-mobile);
  }
}

.achievements__icon--container {
  background-color: #141414;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--color-success);
}

.achievements__img {
  position: absolute;
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(1);
}

.achievements__img.desktop {
  @media (max-width: 768px) {
    display: none;
  }
}

.achievements__img.mobile {
  display: none;
  width: 100%;
  height: 100%;
  aspect-ratio: 6/8;

  @media (max-width: 768px) {
    display: block;
    position: static !important;
  }
}

.growthpoint {
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--color-success);
  font-family: 'Comforter', cursive;
  font-weight: 400;
  font-style: normal;

  @media (max-width: 768px) {
    font-size: 12vw;
  }
}

.ctaText {
  font-size: 64px;
  letter-spacing: 2px;
  line-height: 1;
  font-weight: 350;
  font-style: normal;
  color: var(--text-muted);
  font-family: 'Comforter', cursive;
  font-weight: 400;
  font-style: normal;

  @media (max-width: 768px) {
    font-size: 12vw;
  }
}

.achievements__text {
  font-size: var(--text-primary-desktop);
  font-weight: 350;
  line-height: 1.4;
  padding-bottom: 25px;
  line-height: 1.4;
  color: var(--text-muted);

  @media (max-width: 768px) {
    font-size: var(--text-primary-mobile);
  }
}

/* About */

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 50px 0 50px;
  background-color: var(--color-bg);
  color: white;
  overflow: hidden;
  background-color: #161616;
  width: 100%;
  position: relative;

  @media (max-width: 768px) {
    padding: 100px 0px 0 0px;
  }
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/noise.png') repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.about__container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-direction: column;
  position: relativ;
}

.about__logo {
  font-size: 54px;
  margin: 20px 0 20px 0;
  line-height: 1.2;
  color: var(--text-primary);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
  transform: rotate(-1deg);

  text-transform: uppercase;

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;
    padding-inline: 15px;
    text-transform: uppercase;
  }
}

.about__logo--text {
  display: inline-block;
  font-size: 54px;
  word-break: wrap;

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;
    padding-inline: 15px;
    text-transform: uppercase;
  }
}

.about__trener {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 1400px;

  @media (max-width: 768px) {
    flex-direction: column;
    overflow: hidden;
  }
}

.about__image {
  width: 980px;
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  filter: grayscale(1) drop-shadow(4px 0px 0px rgba(255, 255, 255, 0.4))
    drop-shadow(-4px 0px 0px rgba(255, 255, 255, 0.4));

  @media (max-width: 768px) {
    width: 100%;
    min-height: 1400px;
    max-width: none;

    filter: grayscale(1) drop-shadow(2px 0px 0px rgba(255, 255, 255, 0.4))
      drop-shadow(-2px 0px 0px rgba(255, 255, 255, 0.4));
  }
}

.about__card {
  position: absolute;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;

  @media (max-width: 768px) {
  }
}

.about__card-title {
  font-size: 52px;
  letter-spacing: 2px;
  color: var(--color-success);
  font-family: 'Comforter', cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 12px;

  @media (max-width: 768px) {
    font-size: clamp(1.5rem, 12vw, 52px);
  }
}

.about__card-text {
  font-size: var(--text-primary-desktop);
  font-weight: 350;
  line-height: 1.4;
  color: var(--text-muted);

  width: 260px;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.1);
  background-repeat: repeat;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 22px;

  @media (max-width: 768px) {
    font-size: var(--text-primary-mobile);
    width: 70vw;
  }
}

/* позиции карточек */
.about__card--one {
  top: 40px;
  left: 0px;

  .about__card-title {
    rotate: -2deg;
  }

  @media (max-width: 768px) {
    left: 15px;
  }
}

.about__card--two {
  top: 300px;
  right: 80px;

  @media (max-width: 768px) {
    top: 500px;
    right: 15px;
  }
}

.about__card--three {
  top: 1100px;
  right: 150px;

  .about__card-title {
    rotate: 2deg;

    @media (max-width: 768px) {
      rotate: 0deg;
    }
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.about__card--four {
  top: 800px;
  left: 0px;
  z-index: 1;

  .about__card-text {
    width: 320px;
  }

  .about__card-title {
    z-index: 2;
    position: relative;
  }

  @media (max-width: 768px) {
    top: 900px;
    left: 15px;
  }
}

/* CASES */

.cases {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 200px 50px 200px 50px;
  overflow: hidden;
  postion: relative;
  background-color: var(--color-bg);

  @media (max-width: 768px) {
    padding: 100px 15px 100px 15px;
  }
}

.cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/noise.png') repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.cases__container {
  position: relative;
  max-width: 1280px;
  width: 100%;
}

.cases__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 54px;
  margin: 0 0 100px 0;
  line-height: 1.2;
  color: var(--text-primary);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
  position: relative;
  font-style: italic;
  text-transform: uppercase;

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 12vw;
  }
}

.cases__logo--highlight {
  color: var(--color-success);
}

.cases__wrapper {
  width: 100%;
  margin: 0 auto;

  column-count: 3;
  column-gap: 10px;

  @media (max-width: 1380px) {
    column-count: 2;
    column-gap: 10px;
  }

  @media (max-width: 768px) {
    column-count: 1;
    column-gap: 0px;
  }
}

.case {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 5px;
  position: relative;
  transition: all 0.3s linear(0, 0.63 18%, 0.985 38.4%, 1.08 59.2%, 1);
  outline: 1px solid transparent;
  break-inside: avoid;

  &::before {
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Comforter', cursive;
    font-weight: 400;
    font-style: normal;
    left: 20px;
    top: 20px;
    display: none;
  }

  @media (max-width: 1380px) {
    gap: 5px;
  }

  &:hover {
    outline: 1.5px solid var(--color-success);

    .case__img {
      filter: grayscale(0);
    }
  }
}

.case--two,
.case--four,
.case--six {
  margin-top: 10px;
}

.case--one {
  &::before {
    @media (max-width: 768px) {
      font-size: 8vw;
      display: flex;
      content: '1';
    }
  }

  @media (max-width: 768px) {
    margin-top: 30px;
  }
}

.case--two {
  &::before {
    @media (max-width: 768px) {
      font-size: 8vw;
      display: flex;
      content: '2';
    }
  }

  @media (max-width: 1380px) {
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    margin-top: 30px;
  }
}

.case--three {
  &::before {
    @media (max-width: 768px) {
      font-size: 8vw;
      display: flex;
      content: '3';
    }
  }

  @media (max-width: 1380px) {
    margin-top: 10px;
    flex-direction: column-reverse;
  }

  @media (max-width: 768px) {
    margin-top: 30px;
  }
}

.case--four {
  &::before {
    @media (max-width: 768px) {
      font-size: 8vw;
      display: flex;
      content: '4';
    }
  }

  @media (max-width: 1380px) {
    margin-top: 0px;
    flex-direction: column-reverse;
  }

  @media (max-width: 768px) {
    margin-top: 30px;
  }
}

.case--five {
  @media (max-width: 1380px) {
    flex-direction: column-reverse;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.case--six {
  @media (max-width: 1380px) {
    margin-top: 10px;
    flex-direction: column-reverse;
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.case__image__container {
  height: 500px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  @media (max-width: 1380px) {
    height: 500px;
  }
}

.case__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;

  filter: grayscale(1);
  transition: all 0.3s ease;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.case__message__container {
  font-size: var(--text-primary-desktop);
  background-color: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 20px;

  @media (max-width: 1380px) {
    font-size: var(--text-primary-mobile);
  }
}

.cases__image__viewer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7) repeat 0 0;
  background-repeat: repeat;
  backdrop-filter: blur(30px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cases__image__viewer--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cases__image__viewer-img {
  display: block;
  max-width: 900px;
  max-height: auto;
  width: auto;
  height: 80vh;
  object-fit: contain;
  border-radius: 20px;
}

.cases__image__viewer--active {
  .cases__image__viewer-img {
    transform: scale(1);
  }
}

.cases__image__viewer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-lg);
  font-size: 55px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  border: none;
}

/* Блок  SERVICES */

.services {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 50px 150px 50px;
  overflow: hidden;
  background-color: var(--color-bg);
  color: white;
  overflow: hidden;
  background-color: #161616;
  width: 100%;
  position: relative;

  @media (max-width: 1380px) {
    padding: 100px 50px;
  }

  @media (max-width: 768px) {
    padding: 100px 15px;
  }
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/noise.png') repeat;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.services__container {
  position: relative;
  max-width: 1280px;
  width: 100%;
}

.services__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 70px;
  font-size: 54px;
  line-height: 1.2;
  color: var(--text-primary);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.2);

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 12vw;
  }
}

.services__wrapper {
  cursor: grab;
}

.services__wrapper:active {
  cursor: grabbing;
}

.services__track {
  display: flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
}

.services__card {
  width: 500px;
  color: var(--text-muted);
  padding: 55px 25px 55px 25px;
  background-repeat: repeat;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 600px;
  will-change: transform;
  border-radius: 20px;

  @media (max-width: 768px) {
    width: calc(100vw - 30px);
    padding: 35px 20px 60px 20px;
    min-height: max-content;
    min-height: 500px;
  }

  @media (max-width: 550px) {
    width: calc(100vw - 30px);
    padding: 35px 20px 60px 20px;
    min-height: max-content;
    min-height: 0;
  }
}

.services__badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background: var(--color-success);
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  padding: 15px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: black;

  @media (max-width: 768px) {
    font-size: 11px;
    padding: 10px;
  }
}

.services__title {
  font-size: var(--text-title-desktop);
  font-weight: 450;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;

  @media (max-width: 768px) {
    font-size: var(--text-title-mobile);
  }
}

.services__text {
  color: var(--text-muted);
  font-size: var(--text-primary-desktop);
  font-weight: 350;
  flex: 1;
  margin-bottom: 20px;

  @media (max-width: 768px) {
    font-size: var(--text-primary-mobile);
  }
}

.services__prices {
  margin-top: auto;
  border-top: 1px solid var(--text-muted);
  padding-top: 25px;
}

.services__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services__price span {
  color: var(--text-muted);
  font-size: 24px;
}

.services__price strong {
  color: var(--color-success);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.services__nav {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 100px;
  width: 100%;

  @media (max-width: 768px) {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0px;
  }
}

.services__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: -1.5;
  background-color: var(--button-primary-bg);
  border: 1px solid rgba(0, 0, 0, 0.9);
  color: black;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  position: relative;
  transform: translatey(-20px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transform-origin: center;
  transition: transform 2s var(--spring-easing);
  box-shadow: 0px 0px 2px greenyellow, inset 0px -5px 10px rgba(0, 0, 0, 0.2),
    inset 0px 5px 10px rgba(0, 0, 0, 0.2);

  @media (max-width: 768px) {
    width: 60px;
    height: 60px;
    transform: translatey(-30px);
  }
}

.services__btn:active {
  transform: scale(0.95);
  transform-origin: center;
}

.services__btn--disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* QUESTION */

.questions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 150px 50px 200px 50px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg);
  transition: 0.4s all var(--spring-easing);

  @media (max-width: 768px) {
    padding: 100px 15px 100px 15px;
  }
}

.questions::before {
  content: '';
  position: absolute;
  inset: 0;

  background: url('./images/noise.png') repeat;
  opacity: 0.2;

  pointer-events: none;
  z-index: 0;
}

.questions__container {
  position: relative;
  max-width: 1280px;
  width: 100%;
}

.questions__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 70px;
  font-size: 54px;
  line-height: 1.2;
  color: var(--text-primary);
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 12vw;
  }
}

.questions__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.question {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  background-repeat: repeat;
}

.question__preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  cursor: pointer;

  @media (max-width: 768px) {
    padding: 20px;
  }
}

.question__title {
  line-height: 1;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  padding: 0px 25px 0px 0px;

  @media (max-width: 768px) {
    font-size: 26px;
  }
}

.question__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  position: relative;
  width: 60px;
  height: 60px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;

  span {
    font-size: 54px;
    font-weight: 450;
  }
}

.question__text {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.question__text__p {
  color: var(--text-muted);
  font-size: var(--text-primary-desktop);
  padding: 0px 30px 30px 25px;
  line-height: 1.4;

  @media (max-width: 768px) {
    font-size: var(--text-primary-mobile);
  }
}

.question__button--plus {
  left: 50%;
  top: calc(50% - 5px);
  color: var(--color-success);
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
}

.question__button--minus {
  left: 50%;
  top: calc(50% - 5px);
  color: var(--color-success);
  position: absolute;
  transform: translateY(-50%) translateX(-50%) scale(0);
}

/* contacts */
.contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 200px 50px 0px 50px;
  overflow: hidden;
  postion: relative;
  background-color: #161616;

  @media (max-width: 768px) {
    padding: 100px 15px 0px 15px;
  }
}

.contacts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/noise.png') repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.contacts__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  max-width: 1280px;
  min-height: 950px;
  height: 880px;
  width: 100%;

  @media (max-width: 768px) {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: max-content;
    min-height: 0;
  }
}

.contacts__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 40%;
  max-width: 450px;
  height: 100%;
  position: relative;
  z-index: 3;
  padding-bottom: 100px;

  @media (max-width: 1380px) {
    width: 50%;
  }

  @media (max-width: 1100px) {
    width: 80%;
  }

  @media (max-width: 768px) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
}

.contacts__main {
  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

.contacts__image-wrapper {
  flex: 1;
  height: 100%;
  position: relative;
  padding-top: 100px;

  @media (max-width: 1380px) {
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  @media (max-width: 768px) {
    display: none;
  }
}

.contacts__image__mobile {
  display: none;

  @media (max-width: 768px) {
    display: block;
    width: 100%;
  }
}

.contacts__image__mobile {
  width: 100%;

  display: none;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  transition: transform 0.35s var(--spring-easing);

  @media (max-width: 768px) {
    display: flex;
  }
}

.contacts__image__mobile__container {
  position: relative;
  justify-content: center;
  justify-items: center;
  width: 60%;
  display: grid;
  align-items: end;
  border-radius: 0 0 100vw 100vw;
  margin-bottom: 40px;
  overflow: hidden;
  border-bottom: 2px solid #636363;

  @media (max-width: 600px) {
    width: 80%;
  }
}

.contacts__background {
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  left: 0;
  z-index: 1;
  border-top: 2px solid #636363;
  border-left: 2px solid #636363;
  border-right: 2px solid #636363;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;

  filter: grayscale(1);
}

.contacts__person {
  position: relative;
  width: 80%;
  height: auto;
  z-index: 2;
  filter: grayscale(1) drop-shadow(1.5px 0px 0px rgba(255, 255, 255, 0.4))
    drop-shadow(-1.5px 0px 0px rgba(255, 255, 255, 0.4));
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.contacts__availability {
  font-size: 54px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
  font-style: italic;
  text-transform: uppercase;

  @media (max-width: 768px) {
    width: 100%;
    text-align: center;
    font-size: 12vw;
    color: var(--text-primary);
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.2);
    transform: rotate(-1deg);
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 8vw;
  }
}

.contacts__description {
  font-size: 24px;
  font-weight: 350;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 40px;

  @media (max-width: 768px) {
    text-align: center;
    font-style: italic;
    margin-bottom: 6vw;
    font-size: 22px;
    width: 60%;
  }
}

.contacts__link {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0px 20px;
  width: 100%;
  height: 70px;
  cursor: pointer;

  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: #c8ff00;
  position: relative;
  overflow: hidden;
  transition: all 0.1s linear(0, 0.63 18%, 0.985 38.4%, 1.08 59.2%, 1);
  text-decoration: none;
  gap: 10px;

  border-radius: 16px;
}

.contacts__link-text {
  font-size: 22px;
  font-style: italic;
  font-weight: 350;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.contacts__link-icon {
  user-select: none;
  pointer-events: none;
}

.contacts__rules {
  width: 100%;
  height: max-content;
  color: var(--text-muted);
}

.contacts__rules.desktop {
  @media (max-width: 768px) {
    display: none;
  }
}

.contacts__rules.mobile {
  display: none;

  @media (max-width: 768px) {
    display: flex;
    text-align: start end;
    padding-left: 20px;
    text-indent: -13px;
  }
}

.contacts__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;

  @media (max-width: 768px) {
    width: 100%;
    margin-bottom: 50px;
  }
}

.contacts__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) drop-shadow(5px 0px 0px rgba(255, 255, 255, 0.4))
    drop-shadow(-3.5px 0px 0px rgba(255, 255, 255, 0.4));
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;

  @media (max-width: 1380px) {
    transform: translateX(10%);
  }

  @media (max-width: 1100px) {
    transform: translateX(30%);
  }

  @media (max-width: 900px) {
    transform: translateX(45%);
  }
}

.contacts__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  width: 100%;
  min-height: 100px;
  bottom: 0;
  left: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-inline: 50px;

  @media (max-width: 768px) {
    position: static;
    padding-inline: 15px;
    height: max-content;
  }
}

.contacts__footer__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  max-width: 1280px;
  width: 100%;
  z-index: 5;
}
