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

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

.section {
  background: var(--color-gray) !important;
  min-height: 46.375rem;
}
@media (width <= 700px) {
  .section {
    min-height: auto;
  }
}

.nav-not-active {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .nav-not-active:hover {
    opacity: 1;
  }
}
@media (any-hover: none) {
  .nav-not-active:active {
    opacity: 1;
  }
}

.information {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.information__nav-list {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  font-weight: 400;
}
.information__nav-link {
  font-size: 0.75rem;
}
.information__text {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.information__title {
  font-size: clamp(0.875rem, 0.7045454545rem + 0.8522727273vw, 1.25rem);
  font-weight: 700;
}
.information__list-title {
  font-size: clamp(0.75rem, 0.6931818182rem + 0.2840909091vw, 0.875rem);
  font-weight: 700;
}
.information__list {
  list-style: inside;
  margin-left: 0.625rem;
  margin-bottom: 1.5rem;
}
.information__list li {
  color: var(--color-yellow);
}/*# sourceMappingURL=pages.css.map */