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

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

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):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]) {
  margin-left: 0;
  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;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

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

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

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

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #ffffff;
  --color-black: #000000;
  --color-gray: #1e1e1d;
  --color-yellow: #ffbc00;
  --color-yellow-light: #ffdf84;
  --font-family-base: "Rubik", sans-serif;
  --gradient: linear-gradient(90deg, #ffdf84 0%, #ffbc00 100%);
  --gradient-reversed: linear-gradient(270deg, #ffdf84 0%, #ffbc00 100%);
  --border: 2px solid var(--color-black);
  --border-radius-button: 0.5rem;
  --border-radius: 0.75rem;
  --border-radius-big: 1.5rem;
  --container-width: 64rem;
  --container-padding-x: 1rem;
  --section-margin-y: 2rem;
  --margin-bottom: 2rem;
  --container-paddding: 4rem;
  --transition-duration: 0.2s;
}
@media (width <= 500px) {
  :root {
    --section-margin-y: 0.625rem;
  }
}

.container {
  max-width: var(--container-width);
  margin-inline: auto;
}

.section {
  border-radius: var(--border-radius-big);
  margin-bottom: var(--section-margin-y);
  background-color: var(--color-gray);
  background: var(--color-gray) url(../images/bg_effect.svg) no-repeat center bottom;
  padding: 4rem;
}
@media (width <= 1000px) {
  .section {
    padding: 2rem;
  }
}
@media (width <= 500px) {
  .section {
    padding: 1rem;
    background: var(--color-gray) url(../images/bg_effect_small.svg) no-repeat center bottom;
  }
}

.yellow {
  color: var(--color-yellow);
}

.yellow-bold {
  color: var(--color-yellow);
  font-weight: 700;
}

.yellow-regular {
  color: var(--color-yellow);
  font-weight: 400;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  background-color: var(--color-black);
  color: var(--color-light);
  padding-inline: 1rem;
  padding-block: 1.5rem;
  line-height: 1.375rem;
  font-size: clamp(0.75rem, 0.6931818182rem + 0.2840909091vw, 0.875rem);
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

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

details > summary::marker {
  display: none;
  content: "";
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.125rem 2rem;
  background-color: var(--color-gray);
  border-radius: var(--border-radius);
  margin-bottom: var(--margin-bottom);
}
.header__title {
  font-size: clamp(1.25rem, 0.9090909091rem + 1.7045454545vw, 2rem);
  font-style: italic;
  line-height: 20px;
}

.button {
  width: 100%;
  max-width: 13.875rem;
  font-size: clamp(0.875rem, 0.8181818182rem + 0.2840909091vw, 1rem);
  line-height: 2rem;
  border: var(--border);
  background: var(--gradient);
  border-radius: var(--border-radius-button);
  color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  font-weight: 500;
}
@media (width <= 500px) {
  .button {
    width: 16rem;
    height: 2rem;
  }
}
@media (any-hover: hover) {
  .button:hover {
    background: var(--gradient-reversed);
  }
}
@media (any-hover: none) {
  .button:active {
    background: var(--gradient-reversed);
  }
}

.accordeon[open] .accordeon__header {
  display: none;
}
.accordeon__header {
  cursor: pointer;
}
@media (any-hover: hover) {
  .accordeon__header:hover {
    color: var(--color-yellow-light);
  }
}
@media (any-hover: none) {
  .accordeon__header:active {
    color: var(--color-yellow-light);
  }
}
@media (width <= 500px) {
  .accordeon__header {
    align-items: flex-start;
  }
}
.accordeon__body {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.accordeon__body-close-button {
  max-width: 3.375rem;
  border: none;
  background: transparent;
  color: var(--color-light);
  font-size: clamp(0.75rem, 0.6931818182rem + 0.2840909091vw, 0.875rem);
  padding: 0;
  cursor: pointer;
}
@media (any-hover: hover) {
  .accordeon__body-close-button:hover {
    color: var(--color-yellow-light);
  }
}
@media (any-hover: none) {
  .accordeon__body-close-button:active {
    color: var(--color-yellow-light);
  }
}
@media (width <= 1000px) {
  .accordeon__body-close-button {
    max-width: 100%;
  }
}
@media (width <= 500px) {
  .accordeon__body-close-button {
    max-width: 3.375rem;
  }
}

.section-content {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.section-content__inner {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media (width <= 1000px) {
  .section-content__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
  }
}
@media (width <= 500px) {
  .section-content__inner {
    align-items: normal;
  }
}
.section-content__banner-container {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (width <= 1000px) {
  .section-content__banner-container {
    order: 1;
  }
}
@media (width <= 500px) {
  .section-content__banner-image {
    width: 6.25rem;
  }
}
.section-content__description {
  display: flex;
  flex-direction: column;
  row-gap: 1.3125rem;
}
@media (width <= 1000px) {
  .section-content__description {
    display: contents;
  }
}
.section-content__description-title {
  font-size: clamp(0.9375rem, 0.7954545455rem + 0.7102272727vw, 1.25rem);
}
@media (width <= 1000px) {
  .section-content__description-title {
    order: 0;
  }
}
@media (width <= 500px) {
  .section-content__description-title {
    display: flex;
    justify-content: center;
  }
}
@media (width <= 1000px) {
  .section-content__description-subtitle {
    order: 2;
    text-align: center;
  }
}
@media (width <= 500px) {
  .section-content__description-subtitle {
    text-align: left;
  }
}
@media (width <= 1000px) {
  .section-content__description-accordeon {
    order: 3;
    text-align: center;
  }
}
@media (width <= 500px) {
  .section-content__description-accordeon {
    text-align: left;
  }
}
.section-content__slider {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.section-content__slider-item {
  width: 22.1875rem;
  height: 12.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.section-content__slider-item img {
  transition: transform 0.5s ease;
}
@media (width <= 720px) {
  .section-content__slider-item {
    width: 18.75rem;
    height: auto;
  }
}
@media (width <= 500px) {
  .section-content__slider-item {
    width: 11.125rem;
  }
}
@media (any-hover: hover) {
  .section-content__slider-item:hover img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  .section-content__slider-item:active img {
    transform: scale(1.05);
  }
}
.section-content__slider-container {
  display: flex;
}

.slider {
  width: -moz-max-content;
  width: max-content;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider, .slider * {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.slider img {
  -webkit-user-drag: none;
  user-drag: none;
}

.footer {
  margin-bottom: 4rem;
  max-width: 64rem;
  margin-inline: auto;
}
@media (width <= 700px) {
  .footer {
    margin-bottom: 2rem;
  }
}
.footer__title {
  font-size: clamp(1.25rem, 0.9090909091rem + 1.7045454545vw, 2rem);
}
.footer__container {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 2rem;
  flex-direction: column;
}
.footer__nav {
  width: 100%;
}
.footer__nav-list {
  width: 100%;
  display: flex;
  -moz-column-gap: 2.9375rem;
       column-gap: 2.9375rem;
  justify-content: space-between;
  align-items: center;
  padding-inline: 4rem;
  text-align: center;
  font-size: 0.75rem;
}
@media (width <= 700px) {
  .footer__nav-list {
    flex-direction: column;
    row-gap: 1.5rem;
    padding-block: 1rem;
  }
}
.footer__nav-link {
  width: 100%;
  max-width: 8.875rem;
  display: flex;
  justify-content: center;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    color: var(--color-yellow-light);
  }
}
@media (any-hover: none) {
  .footer__nav-link:active {
    color: var(--color-yellow-light);
  }
}/*# sourceMappingURL=main.css.map */