@charset "UTF-8";
:root {
  /* ----------- Константы ----------- */
  font-size: 4px;
  letter-spacing: -0.03rem;
  font-family: "Inter", serif;
}

/* ----------- Цвета ----------- */
/* ----------- Стили шрифтов ----------- */
@font-face {
  font-family: "Kumbh Sans";
  src: url("../fonts/KumbhSans-Regular.eot");
  src: local("Kumbh Sans Regular"), local("KumbhSans-Regular"), url("../fonts/KumbhSans-Regular.woff2") format("woff2"), url("../fonts/KumbhSans-Regular.woff") format("woff"), url("../fonts/KumbhSans-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.eot");
  src: local("Inter Regular"), local("Inter-Regular"), url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter Medium";
  src: url("../fonts/Inter-Medium.eot");
  src: local("Inter Medium"), local("Inter-Medium"), url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff"), url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* Заголовки, на макете шрифты Kumbh */
/* Жирные цифры */
/* Мелкие заголовки, на макете шрифт Inter Medium */
/* на макете шрифт Inter Regular */
/* ----------- Размеры отступов, паддингов ----------- */
/* ----------- Ограничения ширин, шаблоны для @media ----------- */
/* ----------- Кнопки и ссылки ----------- */
/* разные настройки размеров кнопок */
/* разные цвета и стили кнопок */
/* ----------- Контейнеры-карточки ----------- */
body {
  background-color: #141414;
}

.section_top {
  background-color: #1a1a1a;
  border-bottom: 0.25rem #262626 solid;
  padding: 20rem 0;
}

.section_top_content {
  max-width: 344rem;
  padding: 0 12rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50rem;
}
@media (max-width: 1024px) {
  .section_top_content {
    max-width: none;
    padding: 0 8rem;
  }
}
@media (max-width: 480px) {
  .section_top_content {
    padding: 0 4rem;
  }
}

.top_badge {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 1rem;
  /* служебный миксин, его использовать не надо */
  font-family: "Inter", serif;
  font-weight: 500;
  line-height: 150%;
  font-size: 4rem;
  background-color: #333333;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.top_title {
  /* служебный миксин, его использовать не надо */
  font-family: "Kumbh Sans", serif;
  font-weight: 500;
  font-size: 11rem;
  line-height: 130%;
  color: #ffffff;
}

.text_top_button {
  box-sizing: border-box;
  height: 12rem;
  padding: 3.5rem 5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-radius: 2rem;
  /* служебный миксин, его использовать не надо */
  font-family: "Inter", serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 3.5rem;
  white-space: nowrap;
  background-color: #141414;
  color: #98989a;
  border: 0.25rem #262626 solid;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.text_top_button .icon {
  width: 5rem;
  height: 5rem;
}
.text_top_button svg {
  color: #ffd11a;
}
.text_top_button:hover {
  background-color: #262626;
  color: #cccccc;
  border: 0.25rem #404040 solid;
}
.text_top_button:hover svg {
  color: #ffe066;
}
.text_top_button:active {
  background-color: #1a1a1a;
  color: #b3b3b3;
  border: 0.25rem #333333 solid;
}
.text_top_button:active svg {
  color: #ffd633;
}

/* -------- планшет --------*/
@media (max-width: 1024px) {
  .section_top {
    padding: 10rem 0;
  }
  .section_top_content {
    flex-direction: column;
    gap: 5rem;
  }
}
/* -------- телефон --------*/
@media (max-width: 480px) {
  .section_top {
    padding: 10rem 0;
  }
  .top_badge {
    /* служебный миксин, его использовать не надо */
    font-family: "Inter", serif;
    font-weight: 500;
    line-height: 150%;
    font-size: 3.5rem;
  }
  .top_title {
    /* служебный миксин, его использовать не надо */
    font-family: "Kumbh Sans", serif;
    font-weight: 500;
    font-size: 7rem;
    line-height: 130%;
  }
  .text_top_button {
    width: 100%;
  }
}/*# sourceMappingURL=section_top.css.map */