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

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

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

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

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

button {
  white-space: nowrap;
}

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

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

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

svg *[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/FontAwesome.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NKDuy Mono";
  src: url("../fonts/NKDuyMono-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #505050;
  --color-dark-light: #55585B;
  --color-dark-alt: #1F3045;
  --color-dark-extra: #242424;
  --color-light: #FFFFFF;
  --color-accent: #C8561E;
  --color-accent-alt: #C7254E;
  --color-gray: #F2F2F2;
  --color-gray-dark: #E7E7E7;
  --border: 1px solid var(--color-light);
  --border-radius: 5px;
  --shadow: 0 5px 0 0 var(--color-dark);
  --font-family-base: "Gotham Pro", sans-serif;
  --font-family-code: 'NKDuyMono, Menlo, Monaco, "Courier New", Courier, monospace';
  --container-width: 1240px;
  --container-padding-x: 20px;
  --section-padding-y: 30px;
  --button-hight: 40px;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.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 (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  display: flex;
  flex-direction: column;
  font-size: clamp(12px, 0.9722222222vw, 14px);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.28;
  color: var(--color-dark-extra);
  background-color: var(--color-light);
}

a,
button {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit; /* цвет ссылок разный*/
  -webkit-user-drag: none; /* блокировка перетаскивания ссылок в браузерах с движком WebKit */
}

h1, h2, h3 {
  font-weight: bold;
  text-align: center;
}

h1 {
  font-size: clamp(22px, 2.0833333333vw, 30px);
}

h2 {
  font-size: clamp(18px, 1.3888888889vw, 20px);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(12px, 0.9722222222vw, 14px);
  text-transform: uppercase;
}

.subtitle {
  font-size: clamp(14px, 1.1111111111vw, 16px);
}

/* Стилизация полей кода */
code {
  display: block;
  padding: 30px;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: #242424;
  background: var(--color-gray);
  font-family: NKDuyMono, Menlo, Monaco, "Courier New", Courier, monospace;
  overflow-x: auto;
}

/* Стилизация полей Select */
select {
  background: var(--color-gray);
  padding: 5px 18px 5px 10px;
  border-radius: 5px;
  border: 1px solid #a8a8a8;
  color: var(--color-dark);
  font-weight: 500;
}
select:focus {
  outline: 0;
}

/* Индексы */
sup {
  color: var(--color-accent-alt);
  font-weight: bolder;
}

/* Таблицы */
table {
  padding: 15px;
  margin-bottom: 30px;
  justify-self: center;
  align-self: center;
  border: 2px #ccc solid;
}
table thead {
  color: var(--color-dark);
  text-align: center;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
@media (hover: hover) {
  table thead tr:hover {
    background-color: transparent;
  }
}
@media (hover: none) {
  table thead tr:active {
    background-color: transparent;
  }
}
table tr {
  padding: var(--section-padding-y);
}
@media (hover: hover) {
  table tr:hover {
    background-color: var(--color-gray);
  }
}
@media (hover: none) {
  table tr:active {
    background-color: var(--color-gray);
  }
}
table tr td {
  padding: 5px 30px;
}

.header {
  padding: 35px;
  border-bottom: 2px solid var(--color-accent);
  -webkit-box-shadow: 0px 5px 10px -8px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 10px -8px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px -8px rgba(34, 60, 80, 0.2);
  background-color: var(--color-gray-dark);
}
@media (max-width: 767px) {
  .header {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
.header__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
}
.header__brand {
  display: flex;
  column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .header__brand {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
.header__brand-logo {
  align-content: center;
  width: 240px;
}
@media (max-width: 767px) {
  .header__brand-logo {
    justify-items: center;
  }
}
.header__brand-slogan {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-self: center;
}
.header__brand-slogan h1 {
  margin: 0px;
}
.header__brand-call {
  white-space: nowrap;
  width: 240px;
  font-size: 0.75rem;
  line-height: 12px;
}
.header__brand-call a:before {
  content: "\f095";
  font-family: "FontAwesome";
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  float: left;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  display: block;
  background-color: var(--color-dark-light);
  color: var(--color-light);
  width: 30px;
  height: 30px;
  margin-right: 25px;
}
.header__brand-call a {
  font-family: "Gotham Pro";
  font-weight: bold;
  font-size: 18px;
  line-height: 19px;
  color: var(--color-dark-light);
  width: 240px;
}

.section {
  padding-block: var(--section-padding-y);
  width: 100%;
}
.section__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.errors h2 {
  font-weight: 400;
  text-transform: none;
}
.errors__bg401 {
  background-image: url("../images/error_files/401.png");
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .errors__bg401 {
    background-size: 80%;
    height: 300px;
    padding-top: 100px;
  }
}
.errors__bg403 {
  background-image: url("../images/error_files/403.png");
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding-top: 150px;
}
@media (max-width: 767px) {
  .errors__bg403 {
    background-size: 80%;
    height: 300px;
    padding-top: 100px;
  }
}
.errors__bg404 {
  background-image: url("../images/error_files/404.png");
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding-top: 150px;
}
@media (max-width: 767px) {
  .errors__bg404 {
    background-size: 80%;
    height: 300px;
    padding-top: 100px;
  }
}
.errors__btn {
  padding: 12px 20px;
  background-color: var(--color-accent);
  border-radius: 5px;
  text-align: center;
  color: #fff !important;
  margin-top: 40px;
  display: inline-block;
}

.support {
  display: flex;
  justify-content: center;
}
.support__link {
  display: flex;
  align-items: center;
  color: var(--color-accent);
  font-size: clamp(10px, 0.8333333333vw, 12px);
}
@media (hover: hover) {
  .support__link:hover {
    color: var(--color-dark);
  }
}
@media (hover: none) {
  .support__link:active {
    color: var(--color-dark);
  }
}
.support__link:before {
  content: "\f059";
  font-family: "FontAwesome";
  font-size: 18px;
  padding-right: 5px;
}

.content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: var(--section-padding-y);
}
.content a {
  color: var(--color-accent);
}
@media (hover: hover) {
  .content a:hover {
    color: var(--color-dark-alt);
  }
}
@media (hover: none) {
  .content a:active {
    color: var(--color-dark-alt);
  }
}
.content ul {
  list-style: none;
  list-style-position: outside;
  padding-inline: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.content ul ol {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-inline: 30px;
  padding-bottom: 15px;
}
.content ul ol:last-child {
  padding-bottom: 0px;
}
.content ul li {
  list-style: none;
}
.content ul li:before {
  content: "\f068";
  font-family: "FontAwesome";
  display: inline-block;
  padding-inline: 10px;
  color: darkgrey;
}
.content__main {
  display: flex;
  justify-content: start;
  align-items: start;
}
.content__body {
  display: flex;
  flex-direction: column;
  row-gap: var(--section-padding-y);
  width: 100%;
}
.content__title h1 {
  padding-right: 70px;
}
.content__description {
  padding-inline: 50px;
  display: none;
}
.content__description-block h2 {
  padding-left: 30px;
}
.content__form-title {
  text-align: center;
  text-transform: none;
  color: var(--color-dark);
}
.content form {
  justify-self: center;
  align-self: center;
  margin: 30px;
  border: 2px var(--color-accent) solid;
}
.content form label {
  font-weight: 500;
  color: var(--color-dark-extra);
  font-size: clamp(14px, 1.25vw, 18px);
}
.content .os {
  width: fit-content;
  font-weight: 400;
  color: var(--color-dark-extra);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-radius: var(--border-radius);
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
@media (max-width: 767px) {
  .content .os {
    flex-direction: column;
    row-gap: 20px;
  }
}
.content .subtitle {
  font-weight: 500;
}
.content .anchors {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.products {
  width: 100%;
}
.products__title {
  text-align: center;
}
.products__body {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .products__body {
    flex-direction: column;
    row-gap: 60px;
    padding: 30px 0 30px 0;
    justify-content: center;
  }
}
.products__block {
  color: var(--color-dark);
  width: 100%;
}
@media (max-width: 767px) {
  .products__block {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .products__block {
    row-gap: 20px;
  }
}
.products h2 {
  font-weight: 500;
}
.products__list {
  columns: 3;
  row-gap: 20px;
  column-gap: 200px;
  padding: 30px 0;
  line-height: 2.4rem;
  text-align: center;
  justify-items: center;
}
@media (max-width: 767px) {
  .products__list {
    columns: 2;
    column-gap: 10px;
  }
}
.products__link {
  display: block;
  font-weight: 500;
  color: var(--color-accent);
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
@media (hover: hover) {
  .products__link:hover {
    color: var(--color-dark);
  }
}
@media (hover: none) {
  .products__link:active {
    color: var(--color-dark);
  }
}

.footer {
  flex-shrink: 0;
  padding-inline: 20px;
  -webkit-box-shadow: 0px -5px 10px -8px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px -5px 10px -8px rgba(34, 60, 80, 0.2);
  box-shadow: 0px -5px 10px -8px rgba(34, 60, 80, 0.2);
  background-color: var(--color-gray-dark);
  border-top: 2px solid var(--color-accent);
}
.footer__body {
  padding: 20px 0 40px 0;
  display: flex;
  column-gap: 40px;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__body {
    flex-direction: column;
    row-gap: 60px;
    padding: 30px 0 30px 0;
    justify-content: center;
  }
}
.footer__block {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: var(--color-light);
  row-gap: 10px;
  width: 50%;
}
@media (max-width: 767px) {
  .footer__block {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}
.footer .end {
  align-items: end;
}
@media (max-width: 767px) {
  .footer .end {
    align-items: center;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__logo {
    justify-content: center;
  }
}
.footer__logo-copyright {
  padding-left: 15px;
}
.footer__call {
  text-align: end;
  white-space: nowrap;
  width: 240px;
  font-size: 0.75rem;
  line-height: 12px;
  color: var(--color-light) !important;
}
@media (max-width: 767px) {
  .footer__call {
    text-align: center;
  }
}
.footer__call a {
  font-family: "Gotham Pro";
  font-weight: bold;
  line-height: 19px;
  color: var(--color-dark-light);
  width: 240px;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.footer__horizontal_menu-list {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .footer__horizontal_menu-list {
    justify-content: center;
  }
}
.footer__horizontal_menu-link {
  font-size: clamp(10px, 0.9722222222vw, 14px);
}
@media (max-width: 767px) {
  .footer__horizontal_menu-link {
    text-align: center;
  }
}
.footer__horizontal_menu-link:hover {
  color: var(--color-accent);
}
.footer__link {
  font-size: clamp(10px, 0.9722222222vw, 14px);
}
@media (max-width: 767px) {
  .footer__link {
    text-align: center;
  }
}
.footer__link:hover {
  color: var(--color-accent);
}
.footer__social {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .footer__social {
    justify-content: center;
  }
}

/*# sourceMappingURL=styles.css.map */
