@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --white: #FFFFFF;
  --black: #000000;
  --orange: #FF8F00;
  --base-ff: 'Inter';
  --second-ff: 'Bebas Neue';
  --page-bg: #232323;
  --gutter-x: 20px;
  --gutter-y: 0px;
  --px: 7.5rem;
}

@media (max-width: 932px) {
  :root {
    --px: 2.5rem;
  }
}
@media (max-width: 480px) {
  :root {
    --px: 1rem;
  }
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.woff2") format("woff2"), url("../fonts/BebasNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Semi";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a, button {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

svg, path {
  -webkit-transition: fill 0.2s linear, stroke 0.2s linear;
  transition: fill 0.2s linear, stroke 0.2s linear;
}

ul[class], ol[class] {
  list-style: none;
  padding: 0;
}

ul, ol {
  margin: 0;
}

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

button {
  background: none;
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input, textarea {
  outline: none;
  -ms-touch-action: none;
      touch-action: none;
}

textarea {
  resize: none;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100svh;
}

.content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-grid {
  display: grid;
}
.d-grid > * {
  min-width: 0;
}

.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.icon svg, .icon img {
  width: 100%;
  height: 100%;
}
.icon svg, .icon path {
  stroke: inherit;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: bold;
}

.full-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.border {
  position: relative;
}
.border::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
  border: 1px solid;
  pointer-events: none;
}

.text-crop {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}

html {
  background: #151515;
}

body {
  font-family: var(--base-ff);
  background: var(--page-bg);
  color: var(--white);
  width: 1920px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
body::-webkit-scrollbar {
  display: none;
}

.container {
  width: 120rem;
  padding-left: var(--px);
  padding-right: var(--px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.title {
  font-family: var(--second-ff);
  font-weight: normal;
}

@media (max-width: 1920px) {
  html {
    font-size: calc(0.8333333333vw + 0PX);
  }
}
@media (max-width: 1720px) {
  html {
    font-size: calc(0.9302325581vw + 0PX);
  }
}
@media (max-width: 1440px) {
  html {
    font-size: calc(1.1111111111vw + 0PX);
  }
}
@media (max-width: 932px) {
  html {
    font-size: calc(1.7167381974vw + 0PX);
  }
}
@media (max-width: 480px) {
  html {
    font-size: calc(4.2666666667vw + 0PX);
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.open-menu {
  width: 48px;
  height: 48px;
  --line-width: 36px;
  --line-height: 3px;
}
.open-menu span {
  position: relative;
  width: var(--line-width);
  height: var(--line-height);
  background: var(--black);
}
.open-menu span::before, .open-menu span::after {
  content: "";
  display: block;
  width: var(--line-width);
  height: var(--line-height);
  background: var(--black);
  position: absolute;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.open-menu span::before {
  top: -8px;
}
.open-menu span::after {
  bottom: -8px;
}
.open-menu.active span {
  background: transparent;
}
.open-menu.active span::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}
.open-menu.active span::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.header {
  padding: 2.5rem 0;
}
.header__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  width: 13.5rem;
}
.logo img {
  width: 100%;
}

.menu {
  font-family: var(--second-ff);
  gap: 2.625rem;
  font-size: 1.5rem;
  line-height: 1.9375rem;
  letter-spacing: 0.01em;
}
.menu__link {
  opacity: 0.8;
}
.menu__link:hover {
  opacity: 1;
  color: var(--orange);
}

@media (max-width: 932px) {
  .header {
    padding-top: 2.75rem;
    padding-bottom: 0.75rem;
  }
  .menu {
    font-family: var(--base-ff);
    gap: 2rem;
  }
  .menu__item--m-hidden {
    display: none;
  }
}
@media (max-width: 480px) {
  .logo {
    width: 8rem;
  }
  .menu {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    gap: 1rem;
  }
}
.footer {
  background: rgba(255, 255, 255, 0.06);
  padding: 3.75rem 0;
}
.footer__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-logo {
  width: 17.5rem;
}
.footer-logo img {
  width: 100%;
}

.copyright {
  font-size: 1rem;
  line-height: 1.875rem;
}

.social {
  gap: 1rem;
}
.social__link {
  width: 4rem;
  height: 4rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  fill: var(--white);
}
.social__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 932px) {
  .footer {
    background: transparent;
    padding-top: 0;
  }
  .footer-logo {
    width: 12.5rem;
  }
}
@media (max-width: 480px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__social {
    margin-bottom: 2rem;
  }
  .footer__logo {
    margin-bottom: 2.25rem;
    width: 100%;
  }
  .footer-logo {
    width: 100%;
  }
  .social {
    gap: 1.875rem;
  }
  .social__link {
    width: 4.75rem;
    height: 4.75rem;
  }
  .copyright {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
  .copyright br {
    display: none;
  }
}
.intro-content {
  position: relative;
}
.intro-content__img {
  position: absolute;
  inset: 0;
}
.intro-content__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-content__img::before {
  content: "";
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.intro-content__img-desktop {
  height: 100%;
}
.intro-content__img-mobile {
  display: none;
  height: 100%;
}
.intro-content__info {
  position: relative;
  z-index: 3;
  inset: 0;
  padding: 5.125rem 4rem;
  min-height: 32.375rem;
}
.intro-content__title {
  font-size: 5.9375rem;
  line-height: 97%;
  margin-bottom: 1.625rem;
  text-transform: uppercase;
}
.intro-content__txt {
  max-width: 24.625rem;
  font-size: 1.5rem;
  line-height: 2.3125rem;
}

@media (max-width: 932px) {
  .intro .container {
    padding-left: 0;
    padding-right: 0;
  }
  .intro-content__info {
    padding: 3.5rem var(--px) 5.125rem;
    min-height: initial;
  }
  .intro-content__title {
    font-size: 3.0625rem;
    line-height: 100%;
    margin-bottom: 1.5rem;
    max-width: 17.125rem;
  }
  .intro-content__txt {
    font-size: 1.125rem;
    line-height: 1.375rem;
    max-width: 13.5rem;
  }
}
@media (max-width: 480px) {
  .intro-content__img::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  }
  .intro-content__img-desktop {
    display: none;
  }
  .intro-content__img-mobile {
    display: block;
  }
}
.infoSection {
  overflow: hidden;
  padding-top: 3.125rem;
  padding-bottom: 4.375rem;
  --primary: #FF8F00;
  --primary-hover: #FFB558;
  --card-bg: var(--page-bg);
}
.infoSection-bg {
  background: rgba(255, 255, 255, 0.06);
  --primary: #00E9DE;
  --primary-hover: #8FFFFA;
  --card-bg: #303030;
}
.infoSection-bg .infoSection__head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.infoSection-bg .infoSection__content {
  grid-template-columns: 1fr 42rem;
}
.infoSection-bg .infoSection__controls {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.infoSection-bg .infoSection__controls svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.infoSection-bg .infoSection__info {
  margin-left: auto;
}
.infoSection__head {
  margin-bottom: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.infoSection__head-line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.infoSection__title {
  font-size: 3.5rem;
  line-height: 4.1875rem;
  opacity: 0.9;
  color: var(--primary);
}
.infoSection__line {
  height: 0.25rem;
  background: var(--primary);
}
.infoSection__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  --swiper-pagination-bullet-horizontal-gap: 0px;
}
.infoSection__pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}
.infoSection__pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.infoSection__content {
  grid-template-columns: 42rem 1fr;
  gap: 6.75rem;
}
.infoSection__bottom {
  display: none;
}
.infoSection-slider-wrap__inner {
  width: 51.5rem;
}
.infoSection-slider {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.infoSection-slider__slide {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 53.375rem;
  height: initial;
}
.infoSection-slider__text {
  width: 48.75rem;
}
.infoSection-item__img {
  padding-bottom: 56.5%;
  position: relative;
}
.infoSection-item__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.infoSection-item__txt {
  font-size: 1.375rem;
  line-height: 1.6875rem;
  margin-top: 1.25rem;
  direction: ltr;
}
.infoSection-item__video {
  position: relative;
  padding-bottom: 56.5%;
}
.infoSection-item__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.infoSection-leftSlider {
  height: 100%;
}
.infoSection__info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 42rem;
  direction: ltr;
}
.infoSection__info-title {
  font-weight: 600;
  font-size: 2.1875rem;
  line-height: 2.625rem;
}
.infoSection__info-txt {
  font-size: 1.375rem;
  line-height: 150%;
  opacity: 0.8;
}
.infoSection__info-txt__mobile {
  display: none;
}
.infoSection__info-btn {
  width: 24.5rem;
  height: 4.5rem;
  background: var(--primary);
  color: var(--white);
  fill: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  font-family: var(--second-ff);
  font-size: 2.125rem;
  margin-top: auto;
}
.infoSection__info-btn__icon {
  width: 2.4375rem;
  height: 1.4375rem;
}
.infoSection__info-btn__icon svg {
  width: 100%;
  height: 100%;
}
.infoSection__info-btn:hover {
  background: var(--primary-hover);
}
.infoSection__controls {
  gap: 0.75rem;
}
.infoSection-btn {
  width: 4.875rem;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary);
}
.infoSection-btn:hover {
  background: var(--primary-hover);
}
.infoSection-btn svg {
  width: 2.4375rem;
  height: auto;
}
.infoSection-btn path {
  fill: var(--white);
}

@media (max-width: 1720px) {
  .infoSection-slider__slide {
    width: 57rem;
  }
  .infoSection-slider__text {
    width: 37.5rem;
  }
  .infoSection__info {
    max-width: 37.5rem;
  }
}
@media (max-width: 1440px) {
  .infoSection-bg .infoSection__content {
    grid-template-columns: 1fr 31.25rem;
  }
  .infoSection__content {
    grid-template-columns: 31.25rem 1fr;
    gap: 2.5rem;
  }
  .infoSection-slider__slide {
    width: 45.625rem;
  }
  .infoSection-slider__text {
    width: 31.25rem;
  }
  .infoSection-slider-wrap__inner {
    width: 41.25rem;
  }
  .infoSection__info {
    width: 100%;
    max-width: 31.25rem;
  }
}
@media (min-width: 933px) {
  .infoSection-slider__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .infoSection-slider__wrap .infoSection-slider-wrap {
    width: 60vw;
    margin-left: -40vw;
  }
  .infoSection-slider__wrap .infoSection-slider-wrap__inner {
    margin-left: auto;
  }
}
@media (max-width: 932px) {
  .infoSection {
    padding: 1.25rem 0;
    --card-bg: rgb(52 52 52);
  }
  .infoSection:first-child {
    padding-top: 2.5rem;
  }
  .infoSection:last-child {
    padding-bottom: 3.75rem;
  }
  .infoSection-bg {
    background: transparent;
  }
  .infoSection-bg .infoSection__content {
    grid-template-columns: 1fr 21.875rem;
  }
  .infoSection-bg .infoSection-slider-wrap__inner {
    width: 100%;
  }
  .infoSection-bg .infoSection__info {
    padding-left: 1.25rem;
  }
  .infoSection__head {
    gap: 1.125rem;
    margin-bottom: 0.625rem;
  }
  .infoSection-btn {
    width: 3rem;
    height: 3rem;
  }
  .infoSection-btn svg {
    width: 1.5rem;
  }
  .infoSection__title {
    font-size: 2.75rem;
    line-height: 3.3125rem;
  }
  .infoSection__pagination {
    gap: 0.5rem;
  }
  .infoSection__pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
  .infoSection__line {
    height: 0.125rem;
  }
  .infoSection__content-wrap {
    margin-left: calc(-1 * var(--px));
    margin-right: calc(-1 * var(--px));
    padding: 0.875rem var(--px);
    background: rgb(52, 52, 52);
  }
  .infoSection__content {
    grid-template-columns: 21.875rem 1fr;
    gap: 1.5rem;
  }
  .infoSection__bottom {
    display: block;
    margin-top: 0.625rem;
  }
  .infoSection-slider__wrap {
    height: 100%;
  }
  .infoSection-slider-wrap {
    height: 100%;
  }
  .infoSection-slider-wrap__inner {
    width: 100%;
    height: 100%;
  }
  .infoSection-slider {
    margin-left: -0.3125rem;
    margin-right: -0.3125rem;
    height: 100%;
  }
  .infoSection-slider__slide {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
    width: 32.125rem;
  }
  .infoSection-slider__text {
    width: 21.875rem;
  }
  .infoSection-bottomSlider__txt {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
  .infoSection-item__txt {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    margin-top: 0.75rem;
  }
  .infoSection__info {
    gap: 0.75rem;
  }
  .infoSection__info-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 2rem;
    padding-right: 2rem;
    height: 2.25rem;
    font-size: 1.5rem;
    gap: 0.625rem;
  }
  .infoSection__info-btn__txt span {
    display: none;
  }
  .infoSection__info-btn__icon {
    width: 1.1875rem;
    height: 0.75rem;
  }
  .infoSection__info-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .infoSection__info-txt {
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
  .infoSection__info-txt__desktop {
    display: none;
  }
  .infoSection__info-txt__mobile {
    display: block;
  }
}
@media (max-width: 480px) {
  .infoSection__head-controls {
    display: none;
  }
  .infoSection__content {
    grid-template-columns: 7.5rem 1fr;
    gap: 0.75rem;
  }
  .infoSection-bg .infoSection__content {
    grid-template-columns: 1fr 7.5rem;
    gap: 0.75rem;
  }
  .infoSection-bg .infoSection__info {
    padding-left: 0;
  }
  .infoSection-slider__inner {
    width: 12.375rem;
  }
  .infoSection-slider__slide {
    width: 13rem;
  }
  .infoSection-slider__text {
    width: 8.25rem;
  }
  .infoSection__info-btn {
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .infoSection-item__img {
    padding-bottom: 0;
    height: 9.625rem;
  }
  .infoSection-item__img img {
    position: initial;
  }
  .infoSection-item__video iframe {
    min-height: 9.625rem;
    position: initial;
  }
}