@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: 16px;
  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.2;
}

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

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

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

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

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@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: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --container-width: 1320px;
  --container-padding-x: 16px;
  --section-margin-big: 80px;
  --section-margin: 40px;
}
@media (width <= 767.98px) {
  :root {
    --section-margin: 24px;
  }
}
:root {
  --font-family-base: "Montserrat", sans-serif;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-bg: #EFF0F2;
  --color-border: #C2C8CD;
  --color-border-light: #E2E6EE;
  --color-gray: #484D51;
  --color-gray-dark: #1D1E1E;
  --color-accent: #DA251D;
  --transition-duration: 0.2s;
  --border-radius: 12px;
  --color-text-dark: #1D1E1E;
  --color-title: #3E4245;
  --block-margin: 40px;
}
@media (width <= 1440.98px) {
  :root {
    --container-padding-x: 16px;
    --block-margin: 32px;
  }
}
@media (width <= 1023.98px) {
  :root {
    --block-margin: 24px;
  }
}

.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;
  bottom: 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 <= 767.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
}
body.scroll-lock {
  overflow: hidden;
}

blockquote {
  margin: 40px 0;
  padding: 20px;
  border-radius: 12px;
  background-color: #F7F8F9;
}
blockquote h3 {
  color: var(--color-accent);
}

main {
  margin-block: 40px;
}

h1, .h1 {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.09;
  color: var(--color-title);
}
h1:before, .h1:before {
  content: "/ ";
  color: var(--color-accent);
}
@media (width <= 767.98px) {
  h1, .h1 {
    margin-bottom: 20px;
  }
}

h2, .h2 {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.09;
  color: var(--color-title);
}
@media (width <= 767.98px) {
  h2, .h2 {
    margin-bottom: 20px;
  }
}
h2:before, .h2:before {
  content: "/ ";
  color: var(--color-accent);
}

h3, .h3 {
  margin-block: 40px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
h3:first-child, .h3:first-child {
  margin-top: 0;
}

h4, .h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.sep {
  margin-block: var(--section-margin);
  width: calc(100% - 4 * var(--container-padding-x));
  height: 1px;
  background-color: #e2e6ee;
}

.wp-block-list:not(:last-child) {
  margin-bottom: 16px;
}
.wp-block-list li {
  position: relative;
  padding-left: 52px;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.wp-block-list li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent) url("../images/check.svg");
  background-repeat: no-repeat;
  background-size: auto 30%;
  background-position: 50% 50%;
}
.wp-block-list li:not(:last-child) {
  margin-bottom: 16px;
}

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

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: none;
  border-color: var(--color-accent);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: 16px;
  height: 40px;
  min-width: 190px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-accent);
  border: 0;
  border-radius: 40px;
  transition: var(--transition-duration);
}
.button:hover, .button.active {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
}
.button--light {
  background-color: rgba(218, 37, 29, 0.15);
  color: #DA251D;
}
.button--icon {
  padding: 0;
  min-width: auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.button--invert {
  background-color: var(--color-text-dark);
}
.button--fullwidth {
  width: 100%;
}

.price {
  display: flex;
  align-items: flex-end;
  column-gap: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}
.price ins {
  text-decoration: none;
}
.price del {
  color: #C2C8CD;
}
.price .uom {
  margin-bottom: 0.2em;
  font-size: 0.6em;
  color: var(--color-gray);
}

.breadcrumbs {
  margin-block: 40px;
  display: flex;
  align-items: center;
}
@media (width <= 767.98px) {
  .breadcrumbs {
    margin-block: 24px;
  }
}
.breadcrumbs span {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
}
.breadcrumbs span.breadcrumb_last {
  color: var(--color-accent);
}
.breadcrumbs span a {
  text-decoration: none;
}

.tabs {
  position: relative;
}
.tabs.dropped .tabs__list {
  display: flex;
}
.tabs.dropped .tabs__mobile svg {
  rotate: 180deg;
}
.tabs__mobile button {
  text-align: left;
  padding: 12px;
  border: none;
  border-radius: 8px;
  color: var(--color-accent);
  background-color: rgba(218, 37, 29, 0.15);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}
.tabs__mobile svg {
  flex-shrink: 0;
  color: var(--color-accent);
}
@media (width > 767.98px) {
  .tabs__mobile {
    display: none;
  }
}
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
}
@media (width <= 767.98px) {
  .tabs__list {
    display: none;
    position: absolute;
    margin-top: 4px;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    row-gap: 4px;
  }
}
.tabs__button {
  padding: 12px 20px;
  border: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: #C2C8CD;
  background-color: var(--color-white);
  text-align: left;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}
@media (width <= 767.98px) {
  .tabs__button {
    width: 100%;
    padding: 12px;
    border: 1px solid;
    border-radius: 8px;
  }
}
.tabs__button:hover {
  color: var(--color-accent);
}
.tabs__button.active {
  color: var(--color-accent);
  background-color: rgba(218, 37, 29, 0.15);
}
@media (width <= 767.98px) {
  .tabs__button.active {
    background-color: var(--color-white);
  }
}
.tabs__item {
  display: none;
  padding-block: 24px;
}
.tabs__item.active {
  display: block;
}

.field__control[type=text] {
  padding-inline: 16px;
  width: 100%;
  height: 36px;
  border: 1px solid #C2C8CD;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 300;
}
.field__control:focus {
  border-color: var(--color-text-dark);
}
.field textarea {
  padding: 10px 16px;
  width: 100%;
  height: 90px;
  border: 1px solid #C2C8CD;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 300;
  resize: none;
}

.agreement {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.agreement__control {
  flex-shrink: 0;
  position: relative;
  appearance: none;
  width: 48px;
  height: 24px;
  background-color: #C2C8CD;
  border-radius: 24px;
  border: none;
  cursor: pointer;
}
.agreement__control:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 1px 2px 0 rgba(148, 161, 172, 0.5);
  transition-duration: var(--transition-duration);
}
.agreement__control:checked {
  background-color: var(--color-black);
}
.agreement__control:checked:before {
  left: calc(100% - 26px);
}
.agreement__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.17;
  color: var(--color-white);
}
.agreement__label a {
  color: var(--color-black);
  text-decoration: none;
}

.form__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form__item--double {
  display: flex;
  column-gap: 12px;
}
.form__item--double .form__field {
  width: 50%;
}
.form__agreement {
  margin-top: 12px;
}
.form__submit {
  margin-top: 24px;
}

.callback-form {
  margin-block: 80px;
}
.callback-form__row {
  display: flex;
  column-gap: 80px;
  padding: 32px;
  background-color: var(--color-accent);
  border-radius: 12px;
}
@media (width <= 767.98px) {
  .callback-form__row {
    padding: 24px;
    row-gap: 24px;
    flex-direction: column;
  }
}
.callback-form__block {
  flex: 1;
}
.callback-form__title {
  font-size: 22px;
  line-height: 1.27;
  font-weight: 700;
  color: var(--color-white);
}
.callback-form__content {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.29;
  font-weight: 400;
  color: var(--color-white);
}
.callback-form__form {
  width: 40%;
}
@media (width <= 1440.98px) {
  .callback-form__form {
    width: 50%;
  }
}
@media (width <= 767.98px) {
  .callback-form__form {
    width: 100%;
  }
}

.catalog__content {
  margin-bottom: 40px;
}
.catalog__inner {
  display: flex;
  column-gap: 32px;
}
.catalog__filters {
  width: 300px;
}
.catalog__products {
  flex: 1;
}

.products__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 24px;
}
.products__count {
  font-size: 22px;
  font-weight: 700;
}
.products__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
}
.products__item {
  width: calc(33.3333333333% - 11px);
}

.products-item {
  position: relative;
}
.products-item__picture {
  margin-bottom: 24px;
  border-radius: 12px;
  height: 200px;
  overflow: hidden;
}
@media (width <= 767.98px) {
  .products-item__picture {
    margin-bottom: 16px;
  }
}
.products-item__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-item__tags {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.products-item__tags span {
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  border-radius: 10px;
}
.products-item__tags span.promo {
  background-color: #DA251D;
}
.products-item__tags span.new {
  background-color: #FF981B;
}
.products-item__tags span.popular {
  background-color: #0467BF;
}
.products-item__category {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
}
.products-item__category a {
  text-decoration: none;
}
.products-item__title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-dark);
}
.products-item__title a {
  text-decoration: none;
}
@media (width <= 767.98px) {
  .products-item__title {
    font-size: 14px;
    line-height: 1.42;
  }
}
.products-item__price {
  column-gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-dark);
}
.products-item__price .uom {
  font-weight: 300;
}
.products-item__cart {
  margin-top: 24px;
}
@media (width <= 767.98px) {
  .products-item__cart {
    margin-top: 16px;
  }
}
.products-item__button {
  min-width: auto;
  border-radius: 10px;
}
@media (width <= 767.98px) {
  .products-item__button {
    width: 100%;
  }
}

.burger__button {
  padding: 0;
  min-width: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.burger__button.active .burger__button-lines {
  display: none;
}
.burger__button.active .burger__button-cross {
  display: block;
}
.burger__button-cross {
  display: none;
}

.custom-logo {
  width: 94px;
  height: 88px;
}
@media (width <= 767.98px) {
  .custom-logo {
    width: 64px;
    height: 60px;
  }
}

.menu-list {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
@media (width <= 1023.98px) {
  .menu-list {
    column-gap: 12px;
  }
}
.menu-item > a {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}
@media (width <= 1023.98px) {
  .menu-item > a {
    font-size: 13px;
  }
}
@media (width <= 767.98px) {
  .menu-item > a {
    font-size: 14px;
  }
}
.menu-item > a:hover {
  color: var(--color-accent);
}

.address {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.address--header .address__item {
  grid-template-areas: "address-phone address-time address-geo address-social";
  grid-template-columns: 30% 25% 30% 15%;
}
.address--slide {
  row-gap: 48px;
}
.address--slide .address__item {
  position: relative;
  grid-template-areas: "address-geo address-geo address-social" "address-phone address-phone address-phone" "address-time address-time address-time";
  gap: 18px 12px;
}
.address--slide .address__item:not(:first-child):after {
  content: "";
  position: absolute;
  top: -24px;
  width: 100%;
  height: 1px;
  background-color: #E2E6EE;
}
.address--slide .address__social {
  justify-content: flex-end;
}
.address--footer {
  row-gap: 40px;
}
.address--footer .address__item {
  position: relative;
  grid-template-areas: "address-geo address-geo address-geo address-social" "address-phone address-phone address-time address-time";
  gap: 20px 12px;
}
@media (width <= 767.98px) {
  .address--footer .address__item {
    grid-template-areas: "address-geo address-geo address-social" "address-phone address-phone address-phone" "address-time address-time address-time";
  }
}
.address--footer .address__time {
  justify-content: end;
}
@media (width <= 767.98px) {
  .address--footer .address__time {
    justify-content: start;
  }
}
.address--footer .address__social {
  justify-content: end;
}
.address__item {
  display: grid;
  grid-template-areas: "address-phone address-time address-geo address-geo address-geo address-social";
  column-gap: 12px;
}
.address__col {
  display: flex;
  column-gap: 12px;
}
.address__phone {
  grid-area: address-phone;
}
.address__time {
  grid-area: address-time;
}
.address__geo {
  grid-area: address-geo;
}
.address__social {
  grid-area: address-social;
}
.address__icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
.address__content {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.address__content p {
  margin: 0;
  font-size: 14px;
}
.address__content p:first-child {
  font-weight: 600;
}
.address__content p:last-child {
  font-size: 12px;
  font-weight: 300;
}
.address__content p:last-child a {
  color: var(--color-accent);
  text-decoration: none;
}

.social {
  display: flex;
  align-items: flex-start;
  column-gap: 4px;
}
.social__item {
  color: var(--color-accent);
  border-radius: 50%;
}

.search {
  display: flex;
  column-gap: 8px;
}
.search__input {
  display: inline-flex;
  align-items: center;
  padding-inline: 16px;
  max-width: 200px;
  width: 100%;
  height: 36px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid #C2C8CD;
  border-radius: 10px;
}
@media (width <= 767.98px) {
  .search__input {
    max-width: 100%;
  }
}
.search__button {
  flex-shrink: 0;
}

.main-advantages {
  margin-block: var(--section-margin);
}
.main-advantages__list {
  display: flex;
  column-gap: 12px;
}
@media (width <= 1023.98px) {
  .main-advantages__list {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
@media (width <= 767.98px) {
  .main-advantages__list {
    flex-direction: column;
    row-gap: 6px;
  }
}
.main-advantages__item {
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: 25%;
  min-height: 80px;
  padding: 18px 20px;
  border-radius: 12px;
  background-color: var(--color-bg);
}
@media (width <= 1023.98px) {
  .main-advantages__item {
    width: calc(50% - 6px);
    column-gap: 12px;
    min-height: 68px;
    padding: 14px 16px;
  }
}
@media (width <= 767.98px) {
  .main-advantages__item {
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
  }
}
.main-advantages__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
@media (width <= 767.98px) {
  .main-advantages__icon {
    width: 32px;
    height: 32px;
  }
}
.main-advantages__content {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
  color: var(--color-black);
}
@media (width <= 767.98px) {
  .main-advantages__content {
    font-size: 12px;
    line-height: 1.1;
  }
}

.main-grid {
  margin-block: var(--section-margin);
}
.main-grid__row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  grid-template-rows: 300px auto;
  gap: 40px 28px;
}
@media (width <= 1023.98px) {
  .main-grid__row {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: var(--section-margin) 24px;
  }
}
@media (width <= 767.98px) {
  .main-grid__row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }
}
.main-grid__creators {
  grid-row-end: span 2;
  padding: 28px 40px;
  border-radius: 12px;
}
.main-grid__creators-wrapper {
  height: 100%;
  overflow: hidden;
}
@media (width <= 767.98px) {
  .main-grid__creators {
    margin-inline: calc(-1 * var(--container-padding-x));
    order: 2;
  }
}
@media (width <= 767.98px) {
  .main-grid__catalog {
    order: 1;
  }
}
.main-grid__carousel {
  padding-bottom: var(--section-margin);
  border-bottom: 1px solid #e2e6ee;
}
@media (width <= 767.98px) {
  .main-grid__carousel {
    order: 0;
  }
}

.creators {
  position: relative;
  height: 100%;
}
@media (width <= 767.98px) {
  .creators {
    height: auto;
  }
}
.creators > .carousel__controls {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}
@media (width <= 767.98px) {
  .creators > .carousel__controls {
    display: none;
  }
}
.creators__list {
  row-gap: 8px;
}
.creators__item {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.creators__link img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.catalog-light__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 10px;
}
@media (width <= 1440.98px) {
  .catalog-light__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width <= 1023.98px) {
  .catalog-light__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 767.98px) {
  .catalog-light__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 480.98px) {
  .catalog-light__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catalog-light__link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 12px;
  border: 1px solid #C2C8CD;
  border-radius: 12px;
  background-color: #EFF0F2;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
  text-align: center;
}
.catalog-light__link:hover {
  color: var(--color-white);
  background-color: var(--color-accent);
  border-color: var(--color-text);
}

.carousel {
  position: relative;
}
.carousel__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  min-height: 300px;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  overflow: hidden;
}
@media (width <= 767.98px) {
  .carousel__item {
    align-content: flex-end;
    padding: 16px 16px 76px;
    min-height: 450px;
  }
}
.carousel__item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.carousel__title {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.27;
  color: var(--color-white);
  z-index: 1;
}
.carousel__content {
  position: relative;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.14;
  color: var(--color-white);
  z-index: 1;
}
.carousel__more {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex: 1;
  margin-top: 20px;
  z-index: 1;
}

.carousel__controls {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
}
@media (width <= 767.98px) {
  .carousel__controls {
    margin-top: 8px;
  }
}
.carousel__controls--inset {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 1;
}
@media (width <= 767.98px) {
  .carousel__controls--inset {
    right: 16px;
    bottom: 20px;
    width: calc(100% - 32px);
  }
}
.carousel__controls--inset .carousel__dot {
  background-color: var(--color-white);
}
.carousel__controls--inset .carousel__dot.active {
  background-color: var(--color-white);
}
.carousel__controls--inset .carousel__arrow {
  color: #2c2d2f;
  border: 0;
}
.carousel__dots {
  display: flex;
  column-gap: 12px;
}
@media (width <= 767.98px) {
  .carousel__dots {
    column-gap: 8px;
  }
}
.carousel__dot {
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #484D51;
  opacity: 0.2;
}
@media (width <= 767.98px) {
  .carousel__dot {
    width: 8px;
    height: 8px;
  }
}
.carousel__dot.active {
  background-color: var(--color-accent);
  opacity: 1;
}
.carousel__arrows {
  display: flex;
  column-gap: 12px;
}
@media (width <= 767.98px) {
  .carousel__arrows {
    column-gap: 8px;
  }
}
.carousel__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  border: 1px solid;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--color-white);
}
@media (width <= 767.98px) {
  .carousel__arrow {
    width: 32px;
    height: 32px;
  }
  .carousel__arrow svg {
    width: 8px;
    height: 12px;
  }
}
.carousel__arrow svg {
  fill: var(--color-white);
}

.main-about {
  margin-block: var(--section-margin);
}
.main-about--invert .main-about__carousel {
  order: -1;
}
@media (width <= 767.98px) {
  .main-about--invert .main-about__carousel {
    order: 1;
  }
}
.main-about__inner {
  display: flex;
  column-gap: 40px;
}
@media (width <= 767.98px) {
  .main-about__inner {
    flex-direction: column;
    row-gap: 20px;
  }
}
.main-about__block {
  flex: 1;
}
.main-about__carousel {
  flex-shrink: 0;
  width: 38%;
}
@media (width <= 767.98px) {
  .main-about__carousel {
    width: 100%;
  }
}
.main-about__bold {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}
@media (width <= 767.98px) {
  .main-about__bold {
    margin-bottom: 16px;
  }
}
.main-about__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.29;
}
.main-about__more {
  margin-top: 24px;
}
@media (width <= 767.98px) {
  .main-about__link {
    min-width: 100%;
  }
}
.main-about__carousel-item {
  min-height: 300px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 12px;
}

.partners__inner {
  display: flex;
  column-gap: 40px;
}
@media (width <= 767.98px) {
  .partners__inner {
    flex-direction: column;
  }
}
.partners__picture {
  width: 38%;
  flex-shrink: 0;
}
@media (width <= 767.98px) {
  .partners__picture {
    display: none;
  }
}
.partners__block {
  flex: 1;
}
.partners__block > img {
  margin-bottom: 32px;
  max-width: 100%;
  height: 88px;
  object-fit: contain;
}
@media (width <= 767.98px) {
  .partners__block > img {
    height: 68px;
  }
}
.partners__bold {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}
.partners__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.29;
}
.partners__carousel {
  margin-top: 40px;
}
@media (width <= 767.98px) {
  .partners__carousel {
    margin-top: 32px;
  }
}
.partners__item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 24px 52px;
  min-height: 150px;
  border: 1px solid #C2C8CD;
  border-radius: 12px;
}
.partners__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logos__carousel {
  margin-top: 40px;
}
@media (width <= 767.98px) {
  .logos__carousel {
    margin-top: 32px;
  }
}
.logos__item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 24px 52px;
  min-height: 150px;
  border: 1px solid #C2C8CD;
  border-radius: 12px;
}
.logos__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.articles {
  margin-block: var(--section-margin);
}
.articles__row {
  position: relative;
}
.articles__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}
@media (width <= 767.98px) {
  .articles__list {
    flex-direction: column;
    row-gap: 32px;
  }
}
.articles__item {
  width: calc(50% - 12px);
}
@media (width <= 767.98px) {
  .articles__item {
    width: 100%;
  }
}
.articles__link {
  position: absolute;
  top: 3px;
  right: var(--container-padding-x);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
}

.articles-item {
  display: flex;
  column-gap: 24px;
}
@media (width <= 1023.98px) {
  .articles-item {
    column-gap: 12px;
  }
}
@media (width <= 767.98px) {
  .articles-item {
    flex-direction: column;
    row-gap: 16px;
  }
}
.articles-item__picture {
  flex-shrink: 0;
  width: 48%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}
@media (width <= 1023.98px) {
  .articles-item__picture {
    width: 33%;
  }
}
@media (width <= 767.98px) {
  .articles-item__picture {
    width: 100%;
  }
}
.articles-item__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.articles-item__block {
  flex: 1;
}
.articles-item__title {
  margin-bottom: 10px;
}
.articles-item__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.29;
}
.articles-item__more {
  margin-top: 20px;
}
.articles-item__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
}

.header {
  position: relative;
  padding-top: 24px;
  z-index: 5;
  transition: var(--transition-duration);
}
.header.active {
  background-color: var(--color-bg);
}
@media (width <= 767.98px) {
  .header {
    padding-top: 12px;
  }
}
.header__grid {
  display: grid;
  grid-template-areas: "header-logo header-menu header-menu header-menu header-callback" "header-logo header-address header-address header-search header-controls";
  grid-template-columns: 100px 3fr 1fr;
  gap: 32px 40px;
  align-items: center;
}
@media (width <= 1440.98px) {
  .header__grid {
    grid-template-areas: "header-logo header-menu header-menu header-menu header-callback" "header-logo header-search header-search header-search header-controls" "header-address header-address header-address header-address header-address";
    gap: 16px 20px;
  }
}
@media (width <= 1023.98px) {
  .header__grid {
    grid-template-areas: "header-logo header-menu header-menu header-menu header-menu" "header-logo header-search header-search header-controls header-controls" "header-address header-address header-address header-address header-address";
    gap: 16px 20px;
  }
}
@media (width <= 767.98px) {
  .header__grid {
    grid-template-areas: "header-logo header-controls" "header-search header-search";
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
}
.header__logo {
  grid-area: header-logo;
  padding-top: 12px;
  align-self: flex-start;
}
@media (width <= 767.98px) {
  .header__logo {
    padding-top: 0;
  }
}
.header__menu {
  grid-area: header-menu;
}
@media (width <= 767.98px) {
  .header__menu {
    display: none;
  }
}
.header__callback {
  grid-area: header-callback;
}
.header__callback-button {
  min-width: auto;
}
@media (width <= 1023.98px) {
  .header__callback {
    display: none;
  }
}
.header__address {
  grid-area: header-address;
}
@media (width <= 767.98px) {
  .header__address {
    display: none;
  }
}
.header__search {
  grid-area: header-search;
  justify-content: flex-end;
}
@media (width > 1440.98px) {
  .header__search {
    align-self: start;
  }
}
.header__controls {
  grid-area: header-controls;
  display: flex;
  justify-content: flex-end;
  column-gap: 8px;
}
@media (width > 1440.98px) {
  .header__controls {
    align-self: start;
  }
}
@media (width > 767.98px) {
  .header__burger {
    display: none;
  }
}

.footer {
  margin-top: var(--section-margin);
  padding-bottom: 24px;
}
.footer__grid {
  display: grid;
  grid-template-areas: "footer-logo footer-menu footer-menu footer-menu footer-actions" "footer-logo footer-menu footer-menu footer-menu footer-address";
  grid-template-columns: 100px 3fr 1fr;
  gap: 40px;
}
@media (width <= 1440.98px) {
  .footer__grid {
    grid-template-areas: "footer-logo footer-logo footer-logo footer-logo footer-actions" "footer-menu footer-menu footer-menu footer-menu footer-address";
  }
}
@media (width <= 767.98px) {
  .footer__grid {
    grid-template-areas: "footer-logo footer-actions" "footer-menu footer-menu" "footer-address footer-address";
    grid-template-columns: 1fr 1fr;
  }
}
.footer__logo {
  grid-area: footer-logo;
}
.footer__menu {
  grid-area: footer-menu;
}
.footer__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  grid-area: footer-actions;
}
@media (width <= 480.98px) {
  .footer__actions {
    justify-content: end;
  }
}
.footer__controls {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.footer__address {
  grid-area: footer-address;
}
@media (width <= 480.98px) {
  .footer__callback {
    display: none;
  }
}
.footer__callback-button {
  min-width: auto;
}
.footer__bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
}
@media (width <= 767.98px) {
  .footer__bottom {
    margin-top: 40px;
    flex-direction: column;
    row-gap: 16px;
  }
}
.footer__policy-link {
  color: var(--color-accent);
}

.footer-menu {
  display: flex;
  column-gap: 40px;
}
@media (width <= 1023.98px) {
  .footer-menu {
    flex-direction: column;
    row-gap: 40px;
  }
}
.footer-menu__title {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
}
.footer-menu__list {
  display: block;
}
.footer-menu__list--two_columns {
  column-count: 2;
  row-gap: 16px;
  column-gap: 40px;
}
@media (width <= 480.98px) {
  .footer-menu__list--two_columns {
    column-count: 1;
  }
}
.footer-menu__list > li:not(:first-child) {
  margin-top: 16px;
}
.footer-menu__list > li > a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.footer-menu__item:not(:first-child) {
  margin-top: 16px;
}
.footer-menu__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.advantages {
  margin-block: 40px;
}
@media (width <= 767.98px) {
  .advantages {
    margin-block: 32px;
  }
}
.advantages__row {
  padding: 20px;
  background-color: var(--color-bg);
  border-radius: 12px;
}
.advantages__title {
  margin-bottom: 40px;
  color: var(--color-accent);
}
@media (width <= 767.98px) {
  .advantages__title {
    margin-bottom: 24px;
  }
}
.advantages__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 64px;
}
@media (width <= 767.98px) {
  .advantages__list {
    row-gap: 24px;
  }
}
.advantages__list--nowrap {
  flex-wrap: nowrap;
}
@media (width <= 767.98px) {
  .advantages__list--nowrap {
    flex-wrap: wrap;
  }
}
.advantages__list--nowrap .advantages__item {
  width: auto;
}
.advantages__item {
  width: calc(50% - 32px);
}
@media (width <= 767.98px) {
  .advantages__item {
    width: 100%;
  }
}
.advantages__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  border-radius: 50%;
}
.advantages__item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
}
.advantages__item-content {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.29;
}

.stages {
  margin-block: 40px;
}
.stages__list {
  padding-top: 24px;
  border-top: 1px solid #E2E6EE;
  display: flex;
  column-gap: 64px;
}
@media (width <= 767.98px) {
  .stages__list {
    padding-top: 0;
    padding-left: 24px;
    flex-direction: column;
    row-gap: 32px;
    border-top-width: 0;
    border-left: 1px solid #E2E6EE;
  }
}
.stages__item {
  position: relative;
  max-width: calc(25% - 32px);
  font-size: 14px;
  line-height: 1.29;
}
@media (width <= 767.98px) {
  .stages__item {
    max-width: 100%;
  }
}
.stages__item:before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-accent);
}
@media (width <= 767.98px) {
  .stages__item:before {
    top: 0;
    left: -34px;
  }
}

.team {
  margin-block: 40px;
}
.team__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media (width <= 1023.98px) {
  .team__list {
    margin-top: 32px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 767.98px) {
  .team__list {
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 480.98px) {
  .team__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.team-item__picture {
  position: relative;
  border-radius: 12px;
  background-color: var(--color-bg);
  height: 180px;
  display: flex;
  justify-content: flex-end;
  padding-right: 16px;
  overflow: hidden;
}
.team-item__picture:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  height: 56px;
  background-image: url("../images/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.team-item__picture:after {
  content: "";
  position: absolute;
  top: 48px;
  right: 32px;
  width: calc(100% - 32px);
  height: 250px;
  background-image: url("../images/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.team-item__picture img {
  height: 100%;
  z-index: 1;
}
.team-item__name {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.125;
  font-weight: 600;
}
.team-item__job {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.29;
}

.quote {
  margin-block: 40px;
}
.quote__row {
  padding: 32px;
  background-color: var(--color-accent);
  border-radius: 12px;
}
@media (width <= 767.98px) {
  .quote__row {
    padding: 24px;
  }
}
.quote__content {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
  text-align: center;
}

.contacts__list {
  display: flex;
  column-gap: 120px;
}
@media (width <= 1440.98px) {
  .contacts__list {
    column-gap: 64px;
  }
}
@media (width <= 1023.98px) {
  .contacts__list {
    column-gap: 40px;
  }
}
@media (width <= 767.98px) {
  .contacts__list {
    flex-direction: column;
    row-gap: 40px;
  }
}
.contacts__item {
  width: 50%;
}
@media (width <= 767.98px) {
  .contacts__item {
    width: 100%;
  }
}
.contacts__title {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent);
}
.contacts__address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
}
.contacts__address-content {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.contacts__address-link {
  text-align: right;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
}
@media (width <= 767.98px) {
  .contacts__address-link {
    display: none;
  }
}
.contacts__metro {
  margin-top: 12px;
  display: flex;
  column-gap: 8px;
}
.contacts__metro-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
.contacts__map {
  margin-top: 32px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}
.contacts__details {
  margin-top: 20px;
  display: flex;
  column-gap: 24px;
}
@media (width <= 480.98px) {
  .contacts__details {
    flex-direction: column;
    row-gap: 24px;
  }
}
.contacts__details-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (width <= 480.98px) {
  .contacts__details-item {
    width: 100%;
  }
}
@media (width <= 480.98px) {
  .contacts__details-item:last-child {
    order: -1;
  }
}
.contacts__phone {
  display: flex;
  column-gap: 12px;
}
.contacts__phone-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
.contacts__phone-title {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 300;
}
.contacts__phone-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.contacts__phone a {
  font-weight: 600;
  text-decoration: none;
}
.contacts__mail {
  display: flex;
  column-gap: 12px;
}
.contacts__mail-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
.contacts__mail-title {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 300;
}
.contacts__mail-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.contacts__mail a {
  font-weight: 600;
  text-decoration: none;
}
.contacts__social {
  margin-top: 16px;
  column-gap: 12px;
}
.contacts__social .social__item svg {
  width: 32px;
  height: 32px;
}
.contacts__time {
  display: flex;
  column-gap: 12px;
}
.contacts__time-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
.contacts__time-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.contacts__time-title {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 300;
}
.contacts__time-content {
  font-weight: 600;
}

.page__bold {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
@media (width <= 767.98px) {
  .page__bold {
    margin-bottom: 16px;
  }
}
.page__content {
  font-size: 14px;
  line-height: 1.29;
}
.page__inner {
  margin-top: 40px;
}
@media (width <= 767.98px) {
  .page__inner {
    margin-top: 32px;
  }
}

.services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}
@media (width <= 1440.98px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 767.98px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 480.98px) {
  .services__list {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
.services-item__picture {
  display: block;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.services-item__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-item__title {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
@media (width <= 767.98px) {
  .services-item__title {
    margin-top: 16px;
  }
}
.services-item__more {
  margin-top: 20px;
}
@media (width <= 767.98px) {
  .services-item__more {
    margin-top: 16px;
  }
}
.services-item__link {
  color: var(--color-accent);
}

.rent th {
  padding: 12px 16px;
  text-align: left;
  font-size: 16px;
}
.rent td {
  padding: 12px 16px;
  border-bottom: 1px solid #C2C8CD;
  text-align: left;
}

.slide-block {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100dvh;
  padding-block: 140px 32px;
  background-color: var(--color-bg);
  transition: var(--transition-duration);
  z-index: 1;
  overflow-y: scroll;
}
.slide-block.active {
  left: 0;
}
.slide-block__row {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.slide-block__menu .menu-list {
  flex-direction: column;
  row-gap: 24px;
}
@media (width > 767.98px) {
  .slide-block {
    display: none;
  }
}

.calculator__inner {
  padding: 16px 16px 20px;
  background-color: var(--color-bg);
  border-radius: 12px;
}
.calculator__title {
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.33;
}
.calculator__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.calculator__control {
  width: 100%;
}
.calculator__submit {
  margin-top: 12px;
}
.calculator__final {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.calculator__final-item {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: #484D51;
}
.calculator__final-item span {
  display: inline-flex;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.common-input {
  max-width: 400px;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #C2C8CD;
  border-radius: 10px;
  outline: none;
}

.docs__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.docs__item {
  display: flex;
  column-gap: 12px;
  font-size: 14px;
  line-height: 1.29;
  color: var(--color-accent);
}
@media (width <= 767.98px) {
  .docs__item {
    column-gap: 8px;
    font-size: 12px;
  }
}
.docs__link {
  text-decoration: underline !important;
}
.docs__link:hover {
  text-decoration: none !important;
}

.product {
  margin-block: 40px;
}
@media (width <= 767.98px) {
  .product {
    margin-block: 24px;
  }
}
.product__row {
  display: flex;
  column-gap: 32px;
}
@media (width <= 1440.98px) {
  .product__row {
    flex-direction: column;
    row-gap: 40px;
  }
}
@media (width <= 767.98px) {
  .product__row {
    flex-direction: column;
  }
}
.product__inner {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 250px;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  column-gap: 32px;
  grid-template-areas: "carousel head calculator" "carousel order calculator" "carousel details calculator";
}
@media (width <= 1440.98px) {
  .product__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "carousel head " "carousel order" "carousel details" "calculator details";
  }
}
@media (width <= 1023.98px) {
  .product__inner {
    grid-template-columns: 40% auto;
  }
}
@media (width <= 767.98px) {
  .product__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "head" "carousel" "order" "details" "calculator";
  }
}
.product__carousel {
  grid-area: carousel;
}
@media (width <= 767.98px) {
  .product__carousel {
    margin-top: 16px;
  }
}
.product__carousel-item {
  border: 1px solid #C2C8CD;
  border-radius: 12px;
  overflow: hidden;
}
.product__carousel-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (width <= 767.98px) {
  .product__carousel-item img {
    height: 240px;
  }
}
.product__characteristics {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
@media (width <= 767.98px) {
  .product__characteristics {
    margin-top: 8px;
    gap: 8px;
  }
}
.product__characteristics-item {
  height: 48px;
}
.product__characteristics-item img {
  height: 100%;
}
@media (width <= 767.98px) {
  .product__characteristics-item {
    height: 24px;
  }
}
.product__head {
  grid-area: head;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (width <= 767.98px) {
  .product__head {
    row-gap: 16px;
  }
}
.product__head-block {
  display: flex;
  column-gap: 32px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
}
.product__sku {
  flex-shrink: 0;
  color: #484D51;
}
.product__balance {
  color: var(--color-accent);
}
.product__title {
  margin-bottom: 0;
}
@media (width <= 767.98px) {
  .product__title {
    order: -1;
  }
}
.product__title:before {
  display: none;
}
.product__order {
  grid-area: order;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 16px;
}
@media (width <= 767.98px) {
  .product__order {
    margin-top: 22px;
    flex-direction: row;
    column-gap: 8px;
    justify-content: space-between;
    align-items: center;
  }
}
.product__price {
  display: flex;
  column-gap: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-accent);
}
.product__price ins {
  order: -1;
  text-decoration: none;
}
.product__price del {
  color: #C2C8CD;
}
.product__button {
  column-gap: 8px;
  min-width: auto;
  border-radius: 10px;
}
@media (width <= 767.98px) {
  .product__button {
    height: 36px;
  }
}
.product__details {
  grid-area: details;
  margin-top: 44px;
}
@media (width <= 767.98px) {
  .product__details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E6EE;
    border-bottom: 1px solid #E2E6EE;
  }
}
.product__tabs .tabs__head {
  border-bottom: 1px solid #E2E6EE;
}
@media (width <= 767.98px) {
  .product__tabs .tabs__head {
    border-bottom-width: 0;
  }
}
.product__properties-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.product__properties-item {
  display: flex;
  column-gap: 16px;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.29;
}
@media (width <= 767.98px) {
  .product__properties-item {
    column-gap: 12px;
    font-size: 12px;
    line-height: 1;
  }
}
.product__properties-name {
  flex-basis: 50%;
}
.product__properties-value {
  text-align: right;
  flex-basis: 50%;
  font-weight: 600;
}
.product__content {
  font-size: 14px;
  line-height: 1.29;
}
@media (width <= 767.98px) {
  .product__content {
    font-size: 12px;
  }
}
.product__calculator {
  grid-area: calculator;
}
@media (width <= 1440.98px) {
  .product__calculator {
    margin-top: 24px;
  }
}

.related {
  margin-block: 80px 40px;
}
.related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
}
@media (width <= 767.98px) {
  .related__list {
    gap: 24px 12px;
  }
}
.related__item {
  width: calc(25% - 12px);
}
@media (width <= 767.98px) {
  .related__item {
    width: calc(50% - 6px);
  }
}

.cart__row {
  display: flex;
  column-gap: 64px;
  align-items: flex-start;
}
.cart__table {
  flex: 1;
}
.cart__summary {
  width: 33%;
}

.cart-table {
  width: 100%;
}
.cart-table__header th {
  padding: 0 16px 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
}
.cart-table__header th:first-child {
  padding-left: 0;
}
.cart-table__header-product {
  width: 60%;
}
.cart-table__header-total {
  width: 30%;
}
.cart-table__header-remove {
  width: 10%;
}
.cart-table__item {
  border-bottom: 1px solid var(--color-border-light);
}
.cart-table__item td {
  vertical-align: top;
  padding: 24px 16px 20px;
}
.cart-table__item td:first-child {
  padding-left: 0;
}

.cart-item__product {
  display: flex;
  column-gap: 20px;
}
.cart-item__image {
  width: 100px;
  height: 67px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.cart-item__title {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-text-dark);
}
.cart-item__controls {
  margin-top: 10px;
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.cart-item__price {
  font-size: 16px;
  column-gap: 8px;
}
.cart-item__quantity {
  display: flex;
  width: 96px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.cart-item__quantity-button {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  width: 28px;
  flex-shrink: 0;
  border: 0;
  background-color: var(--color-white);
  color: var(--color-accent);
}
.cart-item__quantity-button:disabled {
  color: var(--color-border);
  cursor: default;
}
.cart-item__quantity-input {
  padding: 0 8px;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
  width: 40px;
  border: 0;
  padding: 0;
  background-color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.cart-item__quantity-input::-webkit-outer-spin-button, .cart-item__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-item__total {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-text-dark);
}
.cart-item__remove {
  color: var(--color-border);
}

.cart-summary {
  padding: 32px;
  border-radius: var(--border-radius);
  background-color: var(--color-bg);
}
.cart-summary__products {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.cart-summary__product {
  position: relative;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  column-gap: 20px;
}
.cart-summary__product-image {
  width: 100px;
  height: 67px;
  border-radius: var(--border-radius);
}
.cart-summary__product-title {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.cart-summary__product-price {
  margin-top: 12px;
  column-gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.cart-summary__product-quantity {
  position: absolute;
  top: -8px;
  left: 84px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 50%;
}
.cart-summary__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.cart-summary__item {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
}
.cart-summary__item-label {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.cart-summary__item-value {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.cart-summary__coupon {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-light);
}
.cart-summary__total {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-light);
}
.cart-summary__total-row {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
}
.cart-summary__total-label {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.cart-summary__total-value {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.cart-summary__submit {
  margin-top: 32px;
}

.coupon__inner {
  display: flex;
  column-gap: 6px;
}
.coupon__button {
  max-width: 150px;
  min-width: auto;
}
.coupon .coupon-error-notice {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.25;
}

.checkout__row {
  display: flex;
  column-gap: 64px;
  align-items: flex-start;
}
.checkout__form {
  flex: 1;
}
.checkout__summary {
  width: 33%;
}

.widget {
  padding: 20px 16px;
  border-radius: var(--border-radius);
  background-color: var(--color-bg);
  font-size: 12px;
  line-height: 1.17;
}
.widget.widget_wpc_sorting_widget {
  padding: 0;
  background-color: transparent;
}
.widget .select2-container--default .select2-results > .select2-results__options {
  max-height: auto;
}
.widget .wpc-filters-main-wrap li.wpc-term-item {
  margin-bottom: 0;
}
.widget .wpc-filters-main-wrap ul.wpc-filters-ul-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.widget .wpc-term-image-wrapper {
  display: none;
}
.widget .wpc-filters-main-wrap li.wpc-term-item input[type=checkbox], .widget .wpc-filters-main-wrap li.wpc-term-item input[type=radio] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
}
.widget .wpc-filters-main-wrap input[type=checkbox]:checked {
  background-color: var(--color-accent) !important;
}
.widget .wpc-filters-main-wrap li.wpc-term-item input[type=checkbox]:hover, .widget .wpc-filters-main-wrap li.wpc-term-item input[type=radio]:hover {
  background-color: var(--color-border);
}
.widget .wpc-filters-main-wrap input[type=radio]:checked:after, .widget .wpc-filters-main-wrap input[type=checkbox]:checked:after {
  opacity: 1;
}
.widget .wpc-filters-main-wrap input[type=checkbox]:after {
  content: "";
  opacity: 0;
  display: block;
  left: 8px;
  top: 4px;
  position: absolute;
  width: 4px;
  height: 9px;
  border: 2px solid var(--color-white);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  box-sizing: content-box;
}
.widget .wpc-term-count {
  display: none;
}

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