@font-face {
  font-family: "Kharkiv-Tone";
  src: url("/resources/fonts/Kharkiv-Tone.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  src: url("/resources/fonts/Inter-Regular.ttf") format("truetype");
}
/**/
.container {
  margin: 0 auto;
}
@media only screen and (min-width: 1400px) {
  .container {
    width: 1360px;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .container {
    width: 960px;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .container {
    width: 600px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .container {
    width: 440px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 479.8px) {
  .container {
    width: 320px;
  }
}

:root {
  --back-color: #111;
  --accent-color: #FB3B11;
  --accent-color-soft: #FB3B114D;
  --dark-color: #161615;
  --grey-color: #383838;
  --light-grey-color: #8B8B8B;
  --light-color: #F1F1F1;
  --silver-gradient: linear-gradient(140deg, #323232 0%, #F3F3F3 100%);
  --carbon-gradient: linear-gradient(180deg, #1C1C1C 0%, #111 50.00%);
  --text-color: var(--light-color);
  --silver-line: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 52.60%, rgba(217, 217, 217, 0.00) 99.99%);
  --accent-font: "Kharkiv-Tone", "roboto", "arial";
  --main-font: "Inter", "roboto", "arial";
  --header-height: 68px;
  --page-top-margin: 4rem;
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  :root {
    --header-height: 60px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  :root {
    --header-height: 60px;
  }
}

*,
*::before,
*::after {
  border: initial;
  box-sizing: border-box;
  color: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: rgba(156, 157, 160, 0.3411764706);
}

.test img {
  width: 100px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--accent-font);
  line-height: 120%;
  text-transform: uppercase;
}

h1 {
  font-size: 45px;
  font-weight: 400;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

@media only screen and (max-width: 999.8px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 14px;
  }
  h4 {
    font-size: 10px;
  }
  h5 {
    font-size: 10px;
  }
  h6 {
    font-size: 10px;
  }
}
.focus-title {
  max-width: 640px;
  text-align: center;
  margin: auto;
  background: var(--unnamed, linear-gradient(140deg, #323232 0%, #F3F3F3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 35px;
  font-family: var(--accent-font);
}
@media only screen and (max-width: 999.8px) {
  .focus-title {
    font-size: 20px;
    max-width: 13.5em;
  }
}

.block-note {
  color: var(--light-grey-color);
  margin-top: 1rem;
  text-align: center;
}

strong {
  font-weight: inherit;
  color: var(--accent-color);
}

.btn {
  --btn-color: transperent;
  --btn-border-color: var(--grey-color);
  border: 1px solid var(--btn-border-color);
  display: inline-block;
  font-family: var(--accent-font);
  font-size: 12px;
  letter-spacing: 0.01em;
  overflow: hidden;
  padding: 1.55em 3.1em 1.3em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 999.8px) {
  .btn {
    padding: 1.4em 3.1em 1.2em;
  }
  .btn_squared {
    padding: 1.4em;
  }
}
.btn_squared {
  padding: 1.55em;
}
.btn:not(:disabled) {
  cursor: pointer;
}
.btn_primary {
  --btn-color: var(--accent-color);
  --btn-border-color: var(--btn-color);
}
.btn_stroke {
  --btn-border-color: var(--accent-color);
}
.btn_primary::before, .btn_primary::after, .btn_stroke::before {
  content: "";
  height: calc(100% + 1px);
  left: 0;
  position: absolute;
  transition: 0.32s;
  width: 100%;
  z-index: -1;
}
.btn_stroke {
  --move: 100%;
  z-index: 0;
}
.btn_stroke::before {
  background-color: var(--btn-border-color);
  bottom: 101%;
}
.btn_stroke:hover::before {
  transform: translateY(198%);
}
.btn_primary {
  --move: -250%;
  z-index: 0;
}
.btn_primary::before, .btn_primary::after {
  background-color: var(--btn-color);
}
.btn_primary::before {
  bottom: 0;
}
.btn_primary::after {
  bottom: var(--move);
}
.btn_primary:hover::before {
  transform: translateY(var(--move));
}
.btn_primary:hover::after {
  height: 101%;
  transform: translateY(calc(var(--move) + 1px));
}

.dark-form {
  --input-compact-height: 50px;
  --focus-outline: 1px solid var(--light-grey-color);
  --input-border: 1px solid var(--grey-color);
  --input-font: var(--accent-font);
}
.dark-form * {
  max-width: 100vw;
}
.dark-form input[type=date],
.dark-form input[type=datetime],
.dark-form input[type=email],
.dark-form input[type=image],
.dark-form input[type=month],
.dark-form input[type=number],
.dark-form input[type=password],
.dark-form input[type=search],
.dark-form input[type=tel],
.dark-form input[type=text],
.dark-form input[type=time],
.dark-form input[type=url],
.dark-form input[type=week],
.dark-form .option,
.dark-form .text-radio label,
.dark-form .text-checkboxes label,
.dark-form textarea {
  background: none;
  border: var(--input-border);
  font-family: var(--input-font);
  font-size: 14px;
  padding: 1.4em 1.1em 1.2em;
}
.dark-form input[type=number] {
  text-align: center;
}
.dark-form input[type=number]::-webkit-outer-spin-button, .dark-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dark-form .number__input {
  display: flex;
  width: 100%;
}
.dark-form .number input[type=button] {
  background: none;
  border: var(--input-border);
  cursor: pointer;
  height: var(--input-compact-height);
  width: var(--input-compact-height);
  z-index: 1;
}
.dark-form .number input[type=button]:focus {
  outline: var(--focus-outline);
}
.dark-form .number input[type=button]:first-of-type {
  border-right: none;
}
.dark-form .number input[type=button]:last-of-type {
  border-left: none;
}
.dark-form .number input[type=number] {
  border: var(--input-border);
  background: none;
  flex-grow: 1;
  height: var(--input-compact-height);
}
.dark-form .number input[type=number]:focus {
  outline: var(--focus-outline);
}
.dark-form textarea {
  max-height: 45em;
  min-height: 10em;
  resize: vertical;
  transition: 0s;
}
.dark-form input[type=submit] {
  background-color: var(--accent-color);
  color: var(--text-color);
  font-family: var(--accent-font);
  font-size: 14px;
  padding: 1.46em 1.1em 1.28em;
  text-transform: uppercase;
}
.dark-form legend {
  color: var(--light-grey-color);
  font-size: 19px;
  margin-bottom: 0.75rem;
}
.dark-form > fieldset {
  margin-top: 2rem;
}
.dark-form .text-radio,
.dark-form .text-checkboxes {
  display: block;
  font-size: 19px;
}
.dark-form .text-radio input,
.dark-form .text-checkboxes input {
  display: none;
}
.dark-form .text-radio input:checked + label,
.dark-form .text-checkboxes input:checked + label {
  border-color: var(--accent-color);
}
.dark-form .text-radio_footered,
.dark-form .text-checkboxes_footered {
  padding-bottom: 1.25rem;
}
.dark-form .text-radio label,
.dark-form .text-checkboxes label {
  cursor: pointer;
  display: flex;
  font-family: var(--main-font);
  font-size: inherit;
  justify-content: center;
  position: relative;
  padding: 0.6em 0.6em 0.55em;
}
.dark-form .text-radio label:focus,
.dark-form .text-checkboxes label:focus {
  outline: var(--focus-outline);
}
.dark-form .text-radio label footer,
.dark-form .text-checkboxes label footer {
  bottom: -50%;
  font-size: 14px;
  left: 0;
  position: absolute;
  color: var(--light-grey-color);
  text-align: center;
  width: 100%;
}
.dark-form .text-radio__buttons,
.dark-form .text-checkboxes__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 0;
}
.dark-form .text-radio__buttons_compact,
.dark-form .text-checkboxes__buttons_compact {
  gap: 2rem 0;
}
.dark-form .text-radio__buttons label,
.dark-form .text-checkboxes__buttons label {
  flex-basis: 50%;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}
@media only screen and (max-width: 999.8px) {
  .dark-form .text-radio__buttons label,
  .dark-form .text-checkboxes__buttons label {
    font-size: 14px;
    padding: 1rem 0.5rem;
  }
}
.dark-form .text-radio__buttons_triple label,
.dark-form .text-checkboxes__buttons_triple label {
  flex-basis: 33.33%;
}
.dark-form .text-radio__note,
.dark-form .text-checkboxes__note {
  color: var(--light-grey-color);
  font-size: 14px;
  margin: 1rem auto 0;
  max-width: 520px;
  text-align: center;
}
.dark-form a {
  color: var(--accent-color);
  text-decoration: none;
}
.dark-form .text-select {
  font-size: 19px;
}
.dark-form .text-select__input {
  position: relative;
  position: relative;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.dark-form .text-select__input input {
  align-items: center;
  background: none;
  border: var(--input-border);
  display: flex;
  height: var(--input-compact-height);
  position: relative;
  width: 100%;
  z-index: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: inherit;
}
.dark-form .text-select__input input:focus {
  outline: var(--focus-outline);
}
.dark-form .text-select__input input:hover {
  cursor: pointer;
}
.dark-form .text-select__input:after {
  background-image: url("/resources/images/icons/chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  font-size: 25px;
  height: 16px;
  position: absolute;
  right: 20px;
  text-align: center;
  width: 16px;
  z-index: 0;
}
.dark-form .text-select .option {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 19px;
  height: var(--input-compact-height);
  margin-top: -1px;
  padding-bottom: 0.44rem;
  padding-top: 0.56rem;
}
.dark-form .text-select .option:hover {
  background-color: var(--accent-color);
  transition: 0.2s;
}
.dark-form .file-drop {
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}
.dark-form .file-drop__box {
  align-items: center;
  background: var(--unnamed, #111);
  color: var(--light-grey-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 128px;
  justify-content: center;
  padding: 2rem;
  position: relative;
  transition: 0s;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23666' stroke-width='1' stroke-dasharray='8%2c 8' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.dark-form .file-drop__box--highlight {
  background-color: var(--dark-color);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23FB3B11' stroke-width='1' stroke-dasharray='8%2c 8' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  color: var(--accent-color);
}
.dark-form .file-drop__box--highlight .file-drop__btn {
  display: none;
}
.dark-form .file-drop__input {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.dark-form .file-drop__input:focus {
  outline: none;
}
.dark-form .file-drop__btn {
  background-color: var(--grey-color);
  color: var(--light-grey-color);
  font-size: 14px;
  padding: 0.5rem 1rem;
}
.dark-form .file-drop__note {
  color: var(--light-grey-color);
  text-align: center;
  margin-top: 0.25rem;
}

.text-select__options {
  overflow: hidden;
  transition: max-height 0.3s;
}

.constructor-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 999.8px) {
  .constructor-page {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .constructor-page {
    display: block;
  }
}

.constructor {
  --input-font: inherit;
}

.product-preview h1 {
  display: none;
  margin: 2rem auto;
  max-width: 16em;
}
@media only screen and (max-width: 999.8px) {
  .product-preview h1 {
    display: block;
  }
}
@media only screen and (max-width: 999.8px) {
  .product-preview {
    display: block;
  }
}
.product-preview__box {
  position: sticky;
  top: 10px;
}
@media only screen and (max-width: 999.8px) {
  .product-preview__box {
    position: relative;
  }
}
.product-preview__picture {
  border-width: 0 1px 0;
  border-style: solid;
  border-color: var(--grey-color);
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
  min-height: 279px;
}
@media only screen and (max-width: 999.8px) {
  .product-preview__picture {
    margin-bottom: 1.5rem;
  }
}
.product-preview__picture img {
  max-width: 80%;
  max-height: 50vh;
  opacity: 0.95;
}
@media only screen and (max-width: 999.8px) {
  .product-preview__picture {
    border-width: 1px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .product-preview__picture {
    display: flex;
  }
  .product-preview__picture img {
    width: 100%;
  }
}
.product-preview__price {
  color: var(--light-grey-color);
  display: flex;
  border: 1px solid var(--grey-color);
  font-size: 19px;
}
@media only screen and (max-width: 999.8px) {
  .product-preview__price {
    font-size: 14px;
  }
}
.product-preview__price > section {
  flex-grow: 1;
  flex-basis: 50%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
@media only screen and (max-width: 999.8px) {
  .product-preview__price > section {
    padding: 0.6rem 0.4rem 0.6rem 0.8rem;
  }
}
.product-preview__price > section:nth-child(2) {
  border-left: 1px solid var(--grey-color);
}
@media only screen and (max-width: 999.8px) {
  .product-preview__total {
    background-color: var(--back-color);
    bottom: 0;
    font-size: 14px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 2;
  }
}
.product-preview__total .btn {
  width: 100%;
}
.product-preview__note {
  color: var(--light-grey-color);
  font-size: 14px;
  text-align: center;
  max-width: 400px;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
}
@media only screen and (max-width: 999.8px) {
  .product-preview__note {
    margin: 0.1rem auto;
    font-size: 10px;
  }
}
.product-preview b {
  font-weight: normal;
  color: var(--accent-color);
}

.product-form {
  padding: 2rem 0 0 2rem;
}
@media only screen and (max-width: 999.8px) {
  .product-form {
    padding: 0;
  }
  .product-form .number {
    overflow: hidden;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .product-form .decrease-numb,
  .product-form .increase-numb {
    width: 40px;
  }
  .product-form .number input {
    padding: 0;
  }
}
.product-form h1 {
  text-align: left;
  font-size: 35px;
}
@media only screen and (max-width: 999.8px) {
  .product-form h1 {
    display: none;
  }
}
.product-form .faq__block {
  margin-top: 1rem;
}

.simply-table {
  border-collapse: collapse;
  font-size: 12px;
  width: 100%;
}
.simply-table + .simply-table {
  margin-top: 1.75rem;
}
.simply-table caption {
  color: var(--text-color);
  font-size: 12px;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: var(--accent-font);
}
.simply-table th {
  text-align: inherit;
  font-weight: normal;
  color: var(--text-color);
}
.simply-table th, .simply-table td {
  text-align: center;
  padding: 0.4rem;
  border: 1px solid var(--grey-color);
}
.simply-table th:first-child, .simply-table td:first-child {
  padding-left: 0.5rem;
  text-align: left;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: var(--back-color);
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--main-font);
  overflow-x: hidden;
}

#wrapper {
  min-height: 100vh;
  padding-top: var(--header-height);
}

img {
  display: block;
}

hr {
  background-image: var(--silver-line);
  display: block;
  height: 1px;
  opacity: 0.66;
  width: 100%;
}

button {
  background: none;
}

.sended {
  text-align: center;
  margin: 0.5rem 0;
}

.not-found {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 19px;
  gap: 2.5rem;
  height: 100%;
  height: calc(100vh - var(--header-height) - 1rem);
  justify-content: center;
  margin: 0 auto;
  max-width: 520px;
  position: relative;
  text-align: center;
  width: 100%;
}
.not-found__text h1 {
  margin-bottom: 0.75rem;
  font-size: 35px;
}
.not-found:before {
  background-color: #b1b1b1;
  border-radius: 850px;
  content: "";
  display: block;
  filter: blur(220px);
  height: 20%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  width: 100%;
  z-index: -1;
}

#popups {
  background: rgba(35, 156, 255, 0.33);
  bottom: 0;
  left: 0;
  max-height: 100vh;
  max-width: 100vw;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.popup {
  background-color: var(--dark-color);
  height: 10rem;
  width: 100%;
}
@media only screen and (max-width: 999.8px) {
  .popup {
    height: initial;
  }
}
.popup, .popup > .container {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
@media only screen and (max-width: 999.8px) {
  .popup, .popup > .container {
    flex-direction: column;
  }
}
.popup .container {
  gap: 6rem;
}
@media only screen and (max-width: 999.8px) {
  .popup .container {
    gap: 0.75rem;
    padding: 0.8rem 0;
  }
}
.popup__text {
  font-size: 15px;
  max-width: 660px;
  line-height: 1.4em;
}
@media only screen and (max-width: 999.8px) {
  .popup__text {
    font-size: 12px;
    padding: 0 0.8rem;
  }
}
.popup__actions {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 999.8px) {
  .popup__actions {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 0 0.75rem;
  }
  .popup__actions .btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.header {
  --logo-top-fix: 8px;
  align-items: center;
  background-color: var(--back-color);
  border-bottom: 1px solid var(--grey-color);
  display: flex;
  font-family: var(--accent-font);
  font-size: 11px;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  letter-spacing: 0.026em;
  padding: 0 24px 0;
  position: fixed;
  text-transform: uppercase;
  top: 0;
  transition: height 0.15s;
  width: 100%;
  z-index: 10;
}
.header_compact {
  --logo-top-fix: 6px;
  height: 48px;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .header {
    font-size: 10px;
  }
}
@media only screen and (max-width: 999.8px) {
  .header {
    padding: 8px;
  }
}
.header a {
  text-decoration: none;
}
.header__logo {
  transition: padding-top 0.15s;
  padding-top: var(--logo-top-fix);
  margin-left: 18px;
}
@media only screen and (max-width: 999.8px) {
  .header__logo {
    margin-left: 12px;
  }
  .header__logo .site-logo {
    width: 71px;
  }
}
.header__nav {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media only screen and (max-width: 999.8px) {
  .header__nav {
    display: none;
  }
}
.header__nav > ul {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.header__nav > ul li {
  align-items: center;
  display: flex;
  height: 100%;
}
.header__link {
  align-items: center;
  display: flex;
  height: 100%;
  overflow: hidden;
  padding: 0.5em 1.75em 0;
  position: relative;
}
.header__link::before {
  background-color: var(--accent-color);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateY(-102%);
  transition: 0.3s;
  width: 100%;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.header__link > span {
  z-index: 1;
}
.header__link:hover::before {
  transform: translateY(calc(100% - 5px));
}
.header__actions {
  padding-top: 3px;
  color: var(--accent-color);
}
@media only screen and (max-width: 999.8px) {
  .header__actions {
    display: none;
  }
}
@media only screen and (min-width: 1000px) {
  .header__burger {
    display: none;
  }
}

#burger {
  border-radius: 6px;
  cursor: pointer;
  height: 41px;
  position: relative;
  width: 42px;
}
#burger i {
  background-color: var(--light-color);
  display: block;
  height: 1px;
  left: 12px;
  position: absolute;
  width: 18px;
}
#burger i:nth-child(1) {
  top: 15px;
}
#burger i:nth-child(2) {
  top: 21px;
}
#burger i:nth-child(3) {
  top: 27px;
}

.burger-menu {
  --border: 1px solid var(--grey-color);
  background-color: var(--back-color);
  display: flex;
  flex-direction: column;
  font-family: var(--accent-font);
  font-size: 14px;
  height: 100%;
  justify-content: space-between;
  left: -101%;
  letter-spacing: 0.05em;
  padding-top: var(--header-height);
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  transition: transform 0.55s;
  width: 100vw;
  z-index: 5;
}
.burger-menu.show {
  transform: translateX(101%);
}
.burger-menu a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}
.burger-menu .tel {
  color: var(--accent-color);
}
.burger-menu__nav {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger-menu__nav li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  border-bottom: var(--border);
}
.burger-menu__tel, .burger-menu__social {
  height: 82px;
  display: flex;
  align-items: center;
}
.burger-menu__tel a, .burger-menu__social a {
  padding-top: 0.1rem;
}
.burger-menu__tel {
  border-bottom: var(--border);
  justify-content: center;
}
.burger-menu__social {
  justify-content: space-around;
}
.burger-menu__social li {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
  justify-content: center;
}
.burger-menu__social li + li {
  border-left: var(--border);
}

#footer {
  margin-top: 10rem;
}
@media only screen and (max-width: 999.8px) {
  #footer {
    margin-top: 5rem;
  }
}

.callback {
  align-items: center;
  background: linear-gradient(90deg, #323232 0%, rgba(243, 243, 243, 0) 100%);
  background-image: linear-gradient(116deg, rgba(199, 199, 199, 0.25) 0%, rgba(199, 199, 199, 0.35) 26%, rgba(199, 199, 199, 0.25) 66%, rgba(222, 222, 222, 0.15) 78%, rgba(250, 250, 250, 0.01) 90%, rgba(255, 255, 255, 0) 100%);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 3.5rem 2.7rem 3.1rem;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .callback {
    grid-template-columns: 2fr 1fr;
  }
}
@media only screen and (max-width: 999.8px) {
  .callback {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem;
    text-align: center;
    width: 100%;
  }
}
.callback__title {
  font-size: 25px;
  font-family: var(--accent-font);
  text-transform: uppercase;
  padding-right: 9rem;
  line-height: 1.3em;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .callback__title {
    grid-column: 1;
  }
}
@media only screen and (max-width: 999.8px) {
  .callback__title {
    font-size: 14px;
    padding: initial;
    max-width: 420px;
  }
}
.callback__tel {
  font-size: 18px;
  font-family: var(--accent-font);
}
.callback__tel a {
  text-decoration: none;
}
.callback__tel a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .callback__tel {
    grid-row: 2;
    grid-column: 1;
    margin-top: 2.4rem;
  }
}
@media only screen and (max-width: 999.8px) {
  .callback__tel {
    font-size: 10px;
    margin-top: 1.25rem;
  }
}
.callback__btn {
  justify-self: end;
  white-space: nowrap;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .callback__btn {
    grid-column: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media only screen and (max-width: 999.8px) {
  .callback__btn {
    margin-top: 1.25rem;
  }
  .callback__btn, .callback__btn .btn {
    width: 100%;
  }
}

.subfooter {
  --footer-border-color: var(--grey-color);
  border-color: var(--grey-color);
  border-width: 1px 1px 0;
  border-style: solid;
  color: var(--light-grey-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 999.8px) {
  .subfooter {
    grid-template-columns: 1fr;
    border: none;
    width: 100%;
  }
}
.subfooter a {
  text-decoration: none;
  color: inherit;
}
.subfooter a:hover {
  text-decoration: underline;
}
.subfooter__promo {
  display: flex;
  flex-direction: column;
  padding: 3.8rem 2.7rem 1.2rem;
  justify-content: space-between;
  line-height: 1.5em;
  gap: 1.5rem;
}
@media only screen and (max-width: 999.8px) {
  .subfooter__promo {
    padding: 2.6rem 1rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
.subfooter__promo .site-logo {
  max-width: 170px;
}
@media only screen and (max-width: 999.8px) {
  .subfooter__promo .site-logo {
    max-width: 98px;
  }
}
.subfooter__promo small {
  font-size: 14px;
}
@media only screen and (max-width: 999.8px) {
  .subfooter__promo small {
    font-size: 12px;
  }
}
.subfooter__company {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 290px;
}
@media only screen and (max-width: 999.8px) {
  .subfooter__company {
    gap: 2.2rem;
    line-height: 1.4em;
  }
}
.subfooter__dev {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media only screen and (max-width: 999.8px) {
  .subfooter__dev {
    text-align: right;
    justify-content: flex-end;
    align-items: flex-end;
    opacity: 0.75;
    line-height: 1.32em;
  }
  .subfooter__dev img {
    opacity: 0.65;
  }
}
.subfooter__main {
  border-left: 1px solid var(--grey-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
@media only screen and (max-width: 999.8px) {
  .subfooter__main {
    border: none;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .subfooter__main {
    order: 0;
  }
}
.subfooter__nav {
  display: flex;
  font-size: 14px;
  gap: 1rem;
  justify-content: space-between;
  padding: 3.5rem 3rem 1rem 2.5rem;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .subfooter__nav {
    font-size: 12px;
    padding: 3.8rem 1rem 1rem 1rem;
  }
}
@media only screen and (max-width: 999.8px) {
  .subfooter__nav {
    font-size: 12px;
    padding: 0 3.5rem 1.55rem 1rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .subfooter__nav {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.subfooter__nav header {
  color: var(--text-color);
}
.subfooter__nav header + ul {
  margin-top: 0.75rem;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .subfooter__nav header + ul {
    margin-top: 0.4rem;
  }
}
.subfooter__nav li + li {
  margin-top: 0.75rem;
}
.subfooter__legal {
  align-items: center;
  border-top: 1px solid var(--grey-color);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 0.8rem 2.5rem;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .subfooter__legal {
    padding: 1.2rem 1rem;
  }
}
@media only screen and (max-width: 999.8px) {
  .subfooter__legal {
    padding: 2.5rem 1rem;
  }
}
.subfooter__legal a {
  text-decoration: underline;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.gallery img {
  flex-grow: 1;
  object-fit: contain;
  max-width: 317px;
  min-width: 317px;
  min-height: 422px;
  background-image: url("/resources/images/mini-logo.svg");
  background-position: center;
  background-size: 32%;
  background-repeat: no-repeat;
}

.wildberries-btn {
  background: linear-gradient(to right, #cb11ab 0, #481173 100%) no-repeat;
  border-radius: 10px;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 0.7rem auto;
  padding: 1.05rem 2rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-section {
  align-items: center;
  background-image: url("/resources/images/graphics/shirts.png"), url("/resources/images/graphics/lines.svg");
  background-position: center 190px, center calc(-11vw + (1920px - 100vw) * 0.15);
  background-size: 1440px, 140vw;
  background-repeat: no-repeat;
  height: 1134px;
  padding-top: 54px;
  text-align: center;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .hero-section {
    background-position: center 190px, center calc(-11vw + (1920px - 100vw) * 0.25);
  }
}
@media only screen and (max-width: 999.8px) {
  .hero-section {
    background-image: url("/resources/images/graphics/shirts.png");
    padding-top: 42px;
    background-size: 590px;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .hero-section {
    background-position: center 82px;
    height: 680px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .hero-section {
    background-position: center 118px;
    height: 790px;
  }
}
.hero__note {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}
.hero__title h1 {
  display: inline-block;
  max-width: 680px;
  text-align: center;
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .hero__title {
    max-width: 540px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .hero__title {
    max-width: 360px;
  }
}
.hero__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.hero__advantages {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border-image: linear-gradient(to bottom, #F3F3F3, #323232) 1;
  border-style: solid;
  border-width: 1px;
  display: grid;
  grid-gap: 3.4rem;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  margin-top: 370px;
  max-width: 1056px;
  padding: 2.2em 1.35em;
}
.hero__advantages > section {
  font-size: 19px;
  line-height: 1.55em;
}
@media only screen and (max-width: 999.8px) {
  .hero__advantages > section {
    font-size: 12px;
    line-height: 1.55em;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .hero__advantages {
    padding: 2.1em 2em 2em;
    grid-gap: 2rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .hero__advantages {
    margin-top: 150px;
    grid-gap: 0.25rem;
    padding: 1.4em 2.5em;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .hero__advantages {
    margin-top: 110px;
    grid-gap: 1.5rem 1rem;
    padding: 1.2em 4.6em;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 0px) and (max-width: 479.8px) {
  .hero__advantages {
    grid-gap: 1rem 0.8rem;
    padding: 1.2em 2em;
  }
}
.hero__footer {
  font-size: 14px;
  line-height: 1.45em;
  margin-top: 1.2rem;
  max-width: 220px;
  opacity: 0.75;
}
@media only screen and (max-width: 999.8px) {
  .hero__footer {
    font-size: 12px;
    max-width: 180px;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 999.8px) {
  .hero__desktop-actions {
    display: none;
  }
}
.hero__mobile-actions {
  grid-column-end: 5;
  grid-column-start: 1;
  padding-top: 2.4rem;
}
@media only screen and (min-width: 1000px) {
  .hero__mobile-actions {
    display: none;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .hero__mobile-actions {
    grid-column-end: 3;
    padding-top: 0;
  }
}

.products-section h2 {
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 999.8px) {
  .products-section h2 {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 999.8px) {
  .products-section .carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    width: 100%;
  }
}
.products-section .carousel-wrapper > section {
  flex-basis: 33.3333333333%;
}

.poduct {
  display: flex;
  align-items: center;
  background-color: var(--back-color);
  background-image: var(--carbon-gradient);
  border: 1px solid var(--grey-color);
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 1.4rem 1.4rem 1rem;
}
@media only screen and (max-width: 999.8px) {
  .poduct {
    padding: 1.2rem 1rem 1rem;
  }
}
.poduct__title {
  font-size: 14px;
  font-family: var(--accent-font);
  width: 100%;
  text-transform: uppercase;
}
@media only screen and (max-width: 999.8px) {
  .poduct__title {
    font-size: 16px;
  }
}
.poduct__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: url("/resources/images/graphics/silver-line.svg");
  background-position: center;
  background-repeat: no-repeat;
  margin: 0.71rem 0;
}
@media only screen and (max-width: 999.8px) {
  .poduct__title::after {
    margin: 0.64rem 0;
  }
}
.poduct__focused .poduct__title {
  color: var(--accent-color);
}
.poduct__focused .poduct__img {
  position: relative;
  padding-bottom: 1.8rem;
}
.poduct__focused .poduct__img img {
  z-index: 1;
}
.poduct__focused .poduct__img::before {
  background: rgba(251, 59, 17, 0.3);
  border-radius: 342px;
  content: "";
  display: block;
  filter: blur(50px);
  height: 90%;
  width: 90%;
  position: absolute;
  z-index: 0;
  bottom: 4%;
}
.poduct__note {
  color: var(--light-grey-color);
  line-height: 1.44em;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .poduct__note {
    line-height: 1.3em;
    margin-bottom: 0.25rem;
  }
}
@media only screen and (max-width: 999.8px) {
  .poduct__note {
    font-size: 12px;
    line-height: 1.3em;
  }
}
.poduct__img {
  align-items: flex-end;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  padding-bottom: 2.4rem;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .poduct__img img {
    width: 210px;
  }
}
@media only screen and (max-width: 999.8px) {
  .poduct__img img {
    width: 190px;
  }
}
@media only screen and (max-width: 999.8px) {
  .poduct__img {
    padding-bottom: 1.5rem;
  }
}

.tech-section {
  margin-top: 9.5rem;
}
@media only screen and (max-width: 999.8px) {
  .tech-section {
    margin-top: 6.2rem;
  }
}
.tech__list {
  --tech-gap: 4.15rem;
  background-image: url("/resources/images/graphics/circle.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 82%;
  color: var(--light-grey-color);
  display: grid;
  font-size: 19px;
  grid-gap: var(--tech-gap) 3rem;
  grid-template-columns: 1fr 1fr;
  line-height: 1.35em;
  margin-top: 8.2rem;
  padding: 0 1rem;
  text-align: center;
}
@media only screen and (max-width: 999.8px) {
  .tech__list {
    font-size: 14px;
    margin-top: 4.5rem;
    line-height: 1.4em;
    --tech-gap: 1.65rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .tech__list {
    grid-template-columns: 1fr;
  }
}
.tech__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  padding-bottom: var(--tech-gap);
}
@media only screen and (max-width: 999.8px) {
  .tech__item {
    gap: 0.95rem;
  }
}
.tech__item::after {
  background-image: var(--silver-line);
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0.66;
  position: absolute;
  width: 100%;
}
.tech__item:nth-last-child(-n+2)::after {
  display: none;
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .tech__item:nth-last-child(-n+2)::after {
    display: block;
  }
}
.tech__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
@media only screen and (max-width: 999.8px) {
  .tech__header {
    gap: 1rem;
  }
}
.tech__icon {
  height: 42px;
  width: 42px;
}
.tech__title {
  color: var(--light-color);
  font-family: var(--accent-font);
  font-size: 25px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media only screen and (max-width: 999.8px) {
  .tech__title {
    font-size: inherit;
  }
}

.man-icons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  margin: 3.6rem auto 2.5rem;
  width: 100%;
  overflow: hidden;
  padding: 0 0.25rem;
}
@media only screen and (max-width: 999.8px) {
  .man-icons {
    margin: 3.6rem auto 2rem;
    flex-wrap: wrap;
  }
}
.man-icons img {
  pointer-events: none;
  user-select: none;
}
@media only screen and (max-width: 999.8px) {
  .man-icons img {
    flex-basis: 15%;
    height: 50px;
  }
  .man-icons img:nth-child(11) {
    display: none;
  }
}
.man-icons::before, .man-icons::after {
  content: "";
  display: block;
  width: 11rem;
  position: absolute;
  top: 0;
  height: 100%;
}
.man-icons::before {
  background-image: linear-gradient(90deg, #111 7.1%, rgba(17, 17, 17, 0) 100%);
  left: -1.5rem;
}
.man-icons::after {
  background-image: linear-gradient(270deg, #111 7.1%, rgba(17, 17, 17, 0) 100%);
  right: -1.5rem;
}

.btn-line {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}

.examples-section {
  margin-top: 9.5rem;
}
@media only screen and (max-width: 999.8px) {
  .examples-section {
    margin-top: 6.5rem;
  }
}
.examples-section .focus-title {
  margin-bottom: 2rem;
}
.examples__slider {
  --img-height: 627px;
  margin-top: 4rem;
  display: flex;
  max-width: 100vw;
  overflow-x: hidden;
}
@media only screen and (max-width: 999.8px) {
  .examples__slider {
    --img-height: 490px;
    margin-top: 2.6rem;
    max-height: var(--img-height);
  }
}
.examples__slider img {
  height: var(--img-height);
}

.steps-section {
  margin-top: 9rem;
}
@media only screen and (max-width: 999.8px) {
  .steps-section {
    margin-top: 6.2rem;
  }
}
.steps-section .btn-line {
  margin: 3.65rem auto;
}
.steps__list {
  --grid-count: 3;
  background-color: var(--grey-color);
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(var(--grid-count), 1fr);
  grid-template-rows: repeat(2, 350px);
  padding: 1px;
  grid-gap: 1px;
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .steps__list {
    --grid-count: 2;
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .steps__list {
    --grid-count: 1;
  }
}
.steps__item {
  --steps-back-color: var(--dark-color);
  background-color: var(--steps-back-color);
  padding: 22px 18px;
  display: grid;
  grid-template-rows: 142px auto;
  grid-gap: 1rem;
}
.steps__head {
  background-image: url("/resources/images/graphics/triangle-pattern.svg");
  background-repeat: repeat;
}
.steps__info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  justify-content: flex-end;
  line-height: 1.4em;
  padding-right: 2rem;
}
.steps__icon {
  background-color: var(--steps-back-color);
  display: inline-block;
  margin-top: 13px;
  padding: 16px 32px 16px 0;
}
.steps__subtitle, .steps__title {
  font-family: var(--accent-font);
  text-transform: uppercase;
}
.steps__subtitle {
  font-size: 12px;
  color: var(--light-grey-color);
}
.steps__title {
  font-size: 18px;
}

.about-section {
  display: flex;
  justify-content: center;
  margin-top: 9.5rem;
  overflow-x: hidden;
  padding-bottom: 9.6rem;
  position: relative;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 999.8px) {
  .about-section .container {
    padding: 0 1rem;
  }
}
.about-section::before {
  background-image: url("/resources/images/runner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 940px;
  position: absolute;
  transform: translate(280px, 68px);
  width: 1000px;
  z-index: -1;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .about-section::before {
    transform: translate(124px, 0);
    height: 96%;
    height: 980px;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .about-section::before {
    transform: translate(140px, -60px);
    height: 534px;
    width: 700px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .about-section::before {
    transform: translate(60px, -260px);
    height: 520px;
    width: 500px;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .about-section {
    margin-top: 12rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .about-section {
    margin-top: 0;
    padding-bottom: 1rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .about-section {
    margin-top: 0;
    padding-top: 12.5rem;
    padding-bottom: 1rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .about__header img {
    max-width: 60rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .about__header img {
    max-width: 38rem;
    margin-top: 5.25rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .about__header img {
    max-width: 28rem;
  }
}
.about__title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(140deg, #F3F3F3 0%, #000 100%);
  font-family: var(--accent-font);
  font-size: 45px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-top: 3.5rem;
  max-width: 46rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .about__title {
    margin-top: 6rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .about__title {
    max-width: 320px;
  }
}
@media only screen and (max-width: 999.8px) {
  .about__title {
    font-size: 20px;
    margin-top: 1.25rem;
  }
}
.about__text {
  color: var(--light-grey-color);
  font-size: 19px;
  line-height: 1.52em;
  margin-top: 3.8rem;
  max-width: 660px;
}
.about__text > p + p {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .about__text {
    margin-top: 0.5rem;
    font-size: 14px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .about__text {
    margin-top: 1.2rem;
    font-size: 14px;
  }
}
.about__achievements {
  display: flex;
  gap: 4rem;
  margin-top: 4.2rem;
}
@media only screen and (max-width: 999.8px) {
  .about__achievements {
    margin-top: 1.7rem;
    justify-content: space-between;
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .about__achievements {
    gap: 1rem;
    padding-right: initial;
  }
  .about__achievements > section:nth-child(2) {
    margin-left: 1rem;
  }
}
.about__achievements header {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(140deg, #323232 0%, #F3F3F3 100%);
  font-size: 84px;
  font-weight: 400;
  font-family: var(--accent-font);
  letter-spacing: -0.015em;
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .about__achievements header {
    font-size: 50px;
    text-align: right;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .about__achievements header {
    text-align: right;
    font-size: 40px;
  }
}
.about__achievements footer {
  font-size: 14px;
  text-align: right;
  color: var(--light-grey-color);
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .about__achievements footer {
    text-align: right;
    max-width: 8em;
  }
}

.form-section {
  --form-border-color: var(--grey-color);
  margin-top: 8.1rem;
}
@media only screen and (max-width: 999.8px) {
  .form-section {
    margin-top: 5.5rem;
  }
}
.form__block {
  background-color: var(--back-color);
  border: 1px solid var(--form-border-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
@media only screen and (max-width: 999.8px) {
  .form__block {
    grid-template-columns: 1fr;
  }
}
.form__block:before {
  background-color: #8B8B8B;
  border-radius: 863px;
  content: "";
  display: block;
  filter: blur(250px);
  height: 55%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  width: 55%;
  z-index: -1;
}
@media only screen and (max-width: 999.8px) {
  .form__block:before {
    display: none;
    content: none;
  }
}
.form__main {
  border-right: 1px solid var(--form-border-color);
  padding: 2.7rem 2.7rem 2.4rem;
  background-color: var(--dark-color);
}
@media only screen and (max-width: 999.8px) {
  .form__main {
    padding: 1.25rem 0.5rem;
  }
}
.form__aside {
  background-image: url("/resources/images/graphics/sale-40.svg");
  background-repeat: no-repeat;
  background-size: 138%;
  background-position: center;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .form__aside {
    background-size: 200%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .form__aside {
    height: 220px;
    order: -1;
    background-size: 80%;
    background-position: center 40%;
  }
}
@media only screen and (max-width: 999.8px) {
  .form__aside {
    border-bottom: 1px solid var(--form-border-color);
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .form__aside {
    height: 220px;
    order: -1;
    background-size: 110%;
    background-position: center 40%;
  }
}
.form__header {
  text-align: center;
}
.form__header b {
  font-weight: inherit;
  color: var(--accent-color);
}
.form__title {
  font-family: var(--accent-font);
  font-size: 18px;
  line-height: 1.17em;
  text-transform: uppercase;
}
@media only screen and (max-width: 999.8px) {
  .form__title {
    font-size: 14px;
    line-height: 1.3em;
  }
}
.form__subtitle {
  font-size: 14px;
  line-height: 1.5em;
  margin: 0.6rem auto;
  max-width: 320px;
}
@media only screen and (max-width: 999.8px) {
  .form__subtitle {
    font-size: 12px;
  }
}
@media only screen and (max-width: 999.8px) {
  .form__subtitle {
    max-width: initial;
    margin: 0.5rem auto;
  }
}
.form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.2rem;
}
@media only screen and (max-width: 999.8px) {
  .form__fields {
    gap: 0.5rem;
  }
}
.form__legal {
  line-height: 1.2em;
  margin-top: 0.1rem;
  max-width: 300px;
  text-align: center;
  margin: auto;
  width: 100%;
}
.form__legal a {
  color: var(--accent-color);
}

.timer {
  border: 1px solid var(--grey-color);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.4rem 1.4rem 1rem;
  text-align: center;
}
.timer__title {
  font-family: var(--accent-font);
  font-size: 18px;
  text-transform: uppercase;
}
@media only screen and (max-width: 999.8px) {
  .timer__title {
    font-size: 14px;
  }
}
.timer__value {
  color: var(--accent-color);
  display: grid;
  font-family: arial;
  font-size: 35px;
  grid-template-columns: 2fr 1fr 2fr 1fr 2fr 1fr 2fr;
  letter-spacing: -0.01em;
  grid-gap: 0.25rem;
  max-width: 300px;
  margin: auto;
}
@media only screen and (max-width: 999.8px) {
  .timer__value {
    font-size: 25px;
  }
}
.timer__label {
  font-size: 11px;
  font-family: var(--accent-font);
  text-transform: uppercase;
  opacity: 0.9;
}

#days-label {
  grid-column: 1;
}

#hours-label {
  grid-column: 3;
}

#minutes-label {
  grid-column: 5;
}

#seconds-label {
  grid-column: 7;
}

.faq-section {
  margin-top: 9.2rem;
}
@media only screen and (max-width: 999.8px) {
  .faq-section {
    margin-top: 6.3rem;
  }
}
.faq-section .accordion__block {
  margin-top: 3.4rem;
}

.article {
  font-size: 19px;
  line-height: 1.45em;
  margin-top: var(--page-top-margin);
}
.article p + p {
  margin-top: 0.75rem;
}
@media only screen and (max-width: 999.8px) {
  .article {
    font-size: 14px;
    line-height: 1.5em;
  }
}
.article h1 {
  margin-bottom: 3rem;
}
.article h2 {
  margin-bottom: 1.5rem;
}
.article__focused {
  max-width: 900px;
  text-align: center;
}
.article__block + .article__block {
  margin-top: 2rem;
}
.article__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article__list img {
  max-height: 44px;
}
.article__footer {
  margin-top: 2rem;
}
.article + .article {
  margin-top: calc(var(--page-top-margin) * 1.75);
}

.form-page {
  margin-top: var(--page-top-margin);
  max-width: 450px;
}
.form-page__header {
  font-size: 19px;
  line-height: 1.3em;
  margin-bottom: 2rem;
  text-align: center;
}
.form-page__header h1 {
  font-size: 25px;
  line-height: 1.3em;
  margin-bottom: 0.75rem;
}
.form-page form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-page .form-note {
  margin: auto;
  max-width: 380px;
  text-align: center;
}

.products-title {
  border-color: var(--grey-color);
  border-width: 0 1px 1px;
  border-style: solid;
  padding: 1.3rem 1.3rem 1rem;
}
@media only screen and (max-width: 999.8px) {
  .products-title {
    --elements: 3;
    border-left: none;
    border-right: none;
    width: 100%;
  }
}
.products-title h1 {
  font-size: 20px;
}
.products-title + .products-grid {
  margin-top: initial;
}

.products-grid {
  --elements: 5;
  --product-gap: 1px;
  --product-color: var(--grey-color);
  background-color: var(--product-color);
  border-color: var(--product-color);
  border-style: solid;
  border-width: 0 1px 1px;
  display: grid;
  font-size: 14px;
  gap: var(--product-gap);
  grid-template-columns: repeat(var(--elements), 1fr);
  margin-top: -1px;
  overflow: hidden;
}
.products-grid_wide {
  --elements: 4;
}
.products-grid_super-wide {
  --elements: 3;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .products-grid {
    font-size: 12px;
  }
}
@media only screen and (max-width: 999.8px) {
  .products-grid {
    --elements: 3;
    border-left: none;
    border-right: none;
    width: 100%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 999.8px) {
  .products-grid {
    --elements: 3;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .products-grid {
    --elements: 2;
  }
}
.products-grid > a {
  background-color: var(--back-color);
  display: flex;
  flex-direction: column;
  font-family: var(--accent-font);
  gap: 1.75rem;
  padding: 2.5rem 2.5rem 1.5rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.25em;
}
@media only screen and (min-width: 1000px) and (max-width: 1399.8px) {
  .products-grid > a {
    padding: 3rem 0.5rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639.8px) {
  .products-grid > a {
    padding: 1.5rem;
  }
}
.products-grid > a img {
  width: 100%;
}
.products-grid > a::after {
  background-color: var(--back-color);
  bottom: calc(-100% - 1px);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  user-select: none;
  width: 100%;
}
.products-grid > a::before {
  background-color: var(--accent-color);
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  transform: translateY(10px);
  transition: transform 0.3s;
  width: 100%;
}
.products-grid > a:hover::before {
  transform: translateY(2px);
}

.accordion__block {
  margin: 0.25rem auto 0;
  max-width: 900px;
  font-size: 14px;
  padding: 0.4rem 0;
}
.accordion__section {
  position: relative;
}
.accordion__section::before, .accordion__section:last-child::after {
  background-image: var(--silver-line);
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0.66;
  position: absolute;
  width: 100%;
}
.accordion__section::before {
  top: 0;
}
.accordion__section:last-child::after {
  bottom: 0;
}
.accordion__question {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--accent-font);
  font-size: 12px;
  justify-content: space-between;
  padding: 1.5rem 1rem 1.1rem 3.3rem;
  position: relative;
  text-transform: uppercase;
  line-height: 1.35em;
}
.accordion__question::before {
  background-image: url("/resources/images//icons/plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 23px;
  left: 1.25rem;
  margin-bottom: 3px;
  position: absolute;
  width: 23px;
}
.accordion__answer {
  color: var(--light-grey-color);
  line-height: 1.4em;
  margin-top: 0.2rem;
  max-height: 0px;
  overflow: hidden;
  padding-left: 3.3rem;
  transition: 0.35s ease;
}
@media only screen and (min-width: 0px) and (max-width: 479.8px) {
  .accordion__answer {
    padding-left: 0;
    max-width: 95vw;
  }
  .accordion__answer_table {
    width: 100%;
  }
  .accordion__answer table {
    font-size: 9px;
    width: 100%;
  }
}

.accordion__section.active {
  padding-bottom: 1.4rem;
}
.accordion__section.active .accordion__answer {
  max-height: 1000px;
}

.modal {
  background-color: var(--back-color);
  border: 1px solid var(--grey-color);
  font-size: 19px;
  max-height: 90vh;
  max-width: 520px;
  padding: 2.5rem 2.1rem;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
}
@media only screen and (max-width: 999.8px) {
  .modal {
    font-size: 14px;
    padding: 1.75rem 2rem 1.25rem;
  }
}
.modal header {
  font-size: 25px;
  font-family: var(--accent-font);
  text-transform: uppercase;
  line-height: 1.25em;
  margin-bottom: 1rem;
  max-width: 320px;
  margin: 0 auto 1rem;
}
@media only screen and (max-width: 999.8px) {
  .modal header {
    font-size: 18px;
    margin: 0 auto 0.5rem;
  }
}
.modal header, .modal header + p {
  text-align: center;
}
.modal small {
  font-size: 12px;
  color: var(--light-grey-color);
  line-height: 1.4em;
  display: block;
  text-align: center;
  max-width: 320px;
  margin: 1.2rem auto 0;
}
.modal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media only screen and (max-width: 999.8px) {
  .modal form {
    margin-top: 1.25rem;
  }
}
.modal a {
  text-decoration: none;
  color: var(--accent-color);
}
.modal a:hover {
  text-decoration: underline;
}
.modal-close {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.carousel {
  max-width: 100%;
  overflow: hidden;
}
.carousel-wrapper {
  display: flex;
  transition: 0.33s;
  cursor: grab;
}
.carousel.dragging {
  cursor: grabbing;
}
.carousel.dragging .carousel-wrapper {
  transition: 0.05s;
}
.carousel img {
  user-select: none;
  max-width: 100vw;
  height: auto;
  object-fit: cover;
}

.carousel-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.carousel-navigation {
  border-bottom: 1px solid var(--grey-color);
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 0.5rem 0.75rem;
}
.carousel-navigation button {
  background-image: url("/resources/images/icons/long-arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 85%;
  border-radius: 18px;
  height: 60px;
  padding: 0;
  width: 20vw;
  max-width: 90px;
  cursor: pointer;
  opacity: 0.75;
}
.carousel-navigation button:hover {
  background-image: url("/resources/images/icons/long-arrow-active.svg");
  opacity: 0.95;
}
.carousel-navigation button.carousel-next-button:hover {
  background-position: 75% center;
}
.carousel-navigation button.carousel-prev-button {
  transform: rotate(180deg);
}

* {
  transition: 0.15s;
}