@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,
  который расположен не последним среди своих соседних элементов
 */
/**
  Упрощаем работу с изображениями и видео
 */
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-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  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;
}
@font-face {
  font-family: "BalkaraFreeCondensed";
  src: url("../fonts/BalkaraFreeCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --container-width: 1216px;
  --container-padding-x: 20px;
  --font-family-base: 'Montserrat', sans-serif;
  --font-family-title: 'BalkaraFreeCondensed', sans-serif;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-dark: #1D3B4D;
  --color-base: #D9C2AE;
  --color-base-dark: #89715C;
  --color-accent: #00ABE1;
  --color-bg: #C4D9B6;
  --color-text: #131313;
  --color-text-light: #FEFEFE;
  --color-text-dark: #1D3B4D;
  --color-text-accent: #00ABE1;
  --border-radius-large: 64px;
  --border-radius-medium: 32px;
  --border-radius-small: 22px;
  --border-radius: 32px;
  --section-margin: 100px;
  --section-padding: 100px;
  --block-padding-large: 40px;
  --block-padding-medium: 24px;
  --row-gap: 30px;
  --column-gap: 30px;
  --icon-size: 48px;
}
@media (width <= 1023.98px) {
  :root {
    --section-margin: 64px;
    --section-padding: 64px;
    --border-radius-large: 32px;
    --block-padding-large: 24px;
  }
}
:root {
  --transition-duration: 0.2s;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  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: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text-light);
  background-color: var(--color-base);
}
@media (width <= 767.98px) {
  body {
    font-size: 16px;
  }
}
body.scroll-lock {
  overflow: hidden;
}

h1,
.h1 {
  font-family: var(--font-family-title);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
}
@media (width <= 767.98px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}

h2,
.h2 {
  font-family: var(--font-family-title);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
@media (width <= 767.98px) {
  h2,
  .h2 {
    font-size: 38px;
  }
}

h3,
.h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
@media (width <= 767.98px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
@media (width <= 1023.98px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-family: var(--font-family-title);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
h5.wp-block-heading,
.h5.wp-block-heading {
  margin-block: 1em;
}
h5.wp-block-heading:first-child,
.h5.wp-block-heading:first-child {
  margin-top: 0;
}
@media (width <= 1023.98px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

.burger {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 0;
  line-height: 1;
  color: var(--color-text);
}

.border-gradient {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(#D19563, #6B4C33);
  border-radius: var(--border-radius);
}
.border-gradient:before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: var(--color-dark);
  border-radius: inherit;
}
.border-gradient * {
  position: relative;
}

.notice {
  padding: 32px 64px;
}
.notice__content {
  display: flex;
  align-items: flex-start;
  font-size: 24px;
}
.notice__content img {
  width: 44px;
  height: 44px;
  margin-right: 16px;
}

.section {
  position: relative;
  padding-block: 120px 120px;
}
@media (width <= 767.98px) {
  .section {
    padding-block: 64px 128px;
  }
}
.section--bg-base {
  margin-top: -100px;
  background-image: url(../images/texture-base.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 767.98px) {
  .section--bg-base {
    margin-top: -64px;
  }
}
.section--bg-base .section__title {
  color: var(--color-text-dark);
}
.section--bg-dark {
  margin-top: -100px;
  background-image: url(../images/texture-dark.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 767.98px) {
  .section--bg-dark {
    margin-top: -64px;
  }
}
.section__title {
  margin-bottom: 32px;
  text-align: center;
}

.common-input {
  padding: 16px 20px;
  width: 100%;
  font-size: 16px;
  border: 2px solid var(--color-accent);
  border-radius: 30px;
  outline: 0;
}
@media (width <= 1023.98px) {
  .common-input {
    padding: 12px 24px;
  }
}
.common-input.wpcf7-not-valid {
  border-color: #DC3232;
}

.common-accept {
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.6;
}

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

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-inline: 36px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #1d3b4d;
  border: none;
  border-radius: 30px;
}
@media (width <= 767.98px) {
  .button {
    height: 46px;
  }
}
@media (width <= 480.98px) {
  .button {
    width: 100%;
  }
}
.button {
  position: relative;
  background-size: 100%;
  background-image: linear-gradient(#d9c2ae, #89715c);
  z-index: 1;
}
.button:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(#bea895, #705d4d);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-duration);
}
.button:hover:not(:disabled):before, .button.active:not(:disabled):before {
  opacity: 1;
}
.button--accent {
  color: var(--color-white);
  position: relative;
  background-size: 100%;
  background-image: linear-gradient(#00abe1, #005d7b);
  z-index: 1;
}
.button--accent:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(#008cb8, #003e51);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-duration);
}
.button--accent:hover:not(:disabled):before, .button--accent.active:not(:disabled):before {
  opacity: 1;
}
.button--with-icon {
  padding-inline: 24px;
  column-gap: 12px;
}
.button--with-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.button--small {
  height: 48px;
  padding-inline: 24px;
  font-size: 14px;
}
@media (width <= 767.98px) {
  .button--small {
    height: 44px;
    padding-inline: 20px;
  }
}

.burger__button {
  margin: 0;
  padding: 0;
  width: 34px;
  height: 34px;
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--color-text-light);
}

.carousel {
  position: relative;
}
.carousel__arrows {
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -24px;
  width: calc(100% + 48px);
  display: flex;
  justify-content: space-between;
}
@media (width <= 767.98px) {
  .carousel__arrows {
    left: -20px;
    margin-top: -20px;
    width: calc(100% + 40px);
  }
}
.carousel__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  outline: none;
  border: none;
  color: var(--color-text-dark);
}
@media (width <= 767.98px) {
  .carousel__arrow {
    width: 40px;
    height: 40px;
  }
}
.carousel__arrow {
  position: relative;
  background-size: 100%;
  background-image: linear-gradient(#d9c2ae, #89715c);
  z-index: 1;
}
.carousel__arrow:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(#bea895, #705d4d);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-duration);
}
.carousel__arrow:hover:not(:disabled):before, .carousel__arrow.active:not(:disabled):before {
  opacity: 1;
}
.carousel__arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.carousel__arrow--prev {
  rotate: 180deg;
  position: relative;
  background-size: 100%;
  background-image: linear-gradient(#89715c, #d9c2ae);
  z-index: 1;
}
.carousel__arrow--prev:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(#705d4d, #bea895);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-duration);
}
.carousel__arrow--prev:hover:not(:disabled):before, .carousel__arrow--prev.active:not(:disabled):before {
  opacity: 1;
}
.carousel__arrow img {
  width: 50%;
  height: 50%;
}

.header {
  padding-block: 32px;
}
.header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.header--overlay .header__menu {
  color: var(--color-text-light);
}
.header--overlay .header__menu .sub-menu {
  background-color: var(--color-dark);
}
.header--overlay .header__menu .menu-item-has-children {
  padding-right: 20px;
}
.header--overlay .header__menu .menu-item-has-children:after {
  background-image: url("../images/dropdown.svg");
}
.header--overlay .logo__link-base {
  display: block;
}
.header--overlay .logo__link-dark {
  display: none;
}
@media (width <= 1023.98px) {
  .header {
    padding-block: 16px;
  }
}
@media (width <= 767.98px) {
  .header {
    padding-block: 8px;
  }
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  flex-shrink: 0;
}
.header__menu {
  color: var(--color-text-dark);
}
@media (width <= 767.98px) {
  .header__menu {
    display: none;
  }
}
@media (width > 767.98px) {
  .header__burger {
    display: none;
  }
}

.main-hero {
  display: flex;
  align-items: center;
  min-height: 800px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media (width <= 767.98px) {
  .main-hero {
    padding-block: 128px;
    min-height: auto;
  }
}
.main-hero__row {
  display: grid;
  grid-template-areas: "hero-title hero-picture" "hero-content hero-picture" "hero-more hero-picture";
  grid-template-columns: minmax(0, 1fr) 40%;
  grid-auto-rows: 0fr;
  align-items: center;
  column-gap: 32px;
}
@media (width <= 767.98px) {
  .main-hero__row {
    grid-template-areas: "hero-title" "hero-content" "hero-picture" "hero-more";
    grid-template-columns: 1fr;
  }
}
.main-hero__title {
  grid-area: hero-title;
}
.main-hero__content {
  grid-area: hero-content;
  margin-top: 40px;
  font-size: 22px;
}
@media (width <= 767.98px) {
  .main-hero__content {
    margin-top: 24px;
    font-size: 20px;
  }
}
.main-hero__picture {
  grid-area: hero-picture;
}
@media (width <= 767.98px) {
  .main-hero__picture {
    margin-block: 24px -48px;
  }
}
.main-hero__more {
  grid-area: hero-more;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.logo__link {
  width: 148px;
  height: 66px;
}
@media (width <= 1023.98px) {
  .logo__link {
    width: 120px;
    height: 54px;
  }
}
@media (width <= 767.98px) {
  .logo__link {
    width: 105px;
    height: 47px;
  }
}
.logo__link-base {
  display: none;
}

.menu-list {
  display: flex;
  padding-inline: 32px;
  align-items: center;
  column-gap: 64px;
}
@media (width <= 1023.98px) {
  .menu-list {
    padding-inline: 12px 0;
    column-gap: 24px;
  }
}
.menu a {
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
  white-space: nowrap;
  transition: var(--transition-duration);
}
@media (width <= 1023.98px) {
  .menu a {
    font-size: 14px;
  }
}
.menu a:hover {
  color: var(--color-text-accent);
}
.menu a:has(+ .sub-menu) {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.menu-list > .menu-item {
  position: relative;
  padding-block: 4px;
}
.menu-list > .menu-item:first-child:before {
  display: none;
}
.menu-list > .menu-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -32px;
  width: 1px;
  height: 100%;
  border-right: 1px solid;
}
@media (width <= 1023.98px) {
  .menu-list > .menu-item:before {
    display: none;
  }
}
.menu-list > .menu-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.menu-list > .menu-item:hover > .menu-item a {
  color: var(--color-text-accent);
}
.menu-list > .menu-item:has(.sub-menu:hover) > .menu-item a {
  color: var(--color-text-accent);
}

.menu-item-has-children {
  padding-right: 20px;
}
.menu-item-has-children:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 6px;
  margin-top: -3px;
  background-image: url("../images/dropdown-dark.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.sub-menu {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  translate: -50% 0;
  border-radius: 24px;
  border: 1px solid;
  background-color: var(--color-base);
  transition: var(--transition-duration);
}
@media (width <= 1023.98px) {
  .sub-menu {
    padding: 16px 20px;
    row-gap: 8px;
    border-radius: 20px;
  }
}
.sub-menu {
  opacity: 0;
  visibility: hidden;
}

.main-services__list {
  display: flex;
  gap: 24px;
}
@media (width <= 767.98px) {
  .main-services__list {
    flex-direction: column;
  }
}
.main-services__item {
  position: relative;
  width: 50%;
}
@media (width <= 767.98px) {
  .main-services__item {
    width: 100%;
  }
}

.product-card__inner {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.product-card__picture {
  margin-bottom: 18px;
  height: 204px;
  border-radius: 20px;
  overflow: hidden;
}
.product-card__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__content {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
}
.product-card__rate {
  margin-top: 12px;
}
.product-card__price {
  margin-top: 12px;
  display: flex;
  align-items: flex-end;
  column-gap: 12px;
  font-size: 24px;
}
.product-card__price del {
  font-size: 18px;
}
.product-card__price ins {
  text-decoration: none;
}
.product-card__more {
  margin-top: 12px;
  flex: 1;
  align-content: flex-end;
}
.product-card__link {
  width: 100%;
}
.product-card__note {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
}

.main-geo__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
}
@media (width <= 1023.98px) {
  .main-geo__inner {
    flex-wrap: wrap;
  }
}
@media (width <= 767.98px) {
  .main-geo__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
.main-geo__content {
  font-size: 20px;
  flex-basis: 0;
  flex-grow: 1;
}
@media (width <= 767.98px) {
  .main-geo__content {
    font-size: 18px;
  }
}
.main-geo__list {
  display: flex;
  align-items: center;
  gap: 12px 16px;
}
@media (width <= 767.98px) {
  .main-geo__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main-geo__link {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 500;
}
@media (width <= 767.98px) {
  .main-geo__link {
    width: 100%;
    font-size: 16px;
  }
}

.main-about__row {
  display: grid;
  grid-template-areas: "about-title about-picture" "about-content about-picture" "about-more about-picture";
  grid-template-columns: minmax(0, 1fr) 40%;
  grid-auto-rows: 0fr;
  align-items: center;
  column-gap: 32px;
}
@media (width <= 767.98px) {
  .main-about__row {
    grid-template-columns: 1fr;
    grid-template-areas: "about-title" "about-content" "about-picture" "about-more";
  }
}
.main-about__title {
  grid-area: about-title;
  text-align: left;
}
.main-about__picture {
  grid-area: about-picture;
}
@media (width <= 767.98px) {
  .main-about__picture {
    margin-top: 24px;
  }
}
.main-about__content {
  grid-area: about-content;
  font-size: 22px;
}
.main-about__more {
  grid-area: about-more;
  margin-top: 52px;
}
@media (width <= 767.98px) {
  .main-about__more {
    margin-top: 24px;
  }
}

@media (width <= 767.98px) {
  .main-callback {
    background-image: url("../images/texture-base.png");
  }
}
.main-callback__inner {
  padding: 84px 64px;
  background-image: url("../images/callback.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 767.98px) {
  .main-callback__inner {
    padding: 0;
    background-image: none;
  }
}
.main-callback__title {
  font-size: 44px;
  color: var(--color-text-dark);
}
@media (width <= 767.98px) {
  .main-callback__title {
    font-size: 38px;
  }
}
.main-callback__content {
  margin-top: 20px;
  max-width: 800px;
  font-size: 22px;
  color: var(--color-text-dark);
}
@media (width <= 767.98px) {
  .main-callback__content {
    font-size: 18px;
  }
}
.main-callback__more {
  margin-top: 40px;
}
@media (width <= 767.98px) {
  .main-callback__more {
    margin-top: 24px;
  }
}

.slide-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  padding: 8px var(--container-padding-x);
  background-color: var(--color-dark);
  z-index: 10;
  transition: var(--transition-duration);
}
.slide-header.active {
  right: 0;
}
.slide-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slide-header__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--color-text-light);
}
.slide-header__menu {
  margin-top: 24px;
}
.slide-header__menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.hero {
  position: relative;
  padding-block: 102px;
  min-height: 600px;
  margin-bottom: calc(-1 * var(--section-margin) / 2);
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 100px;
  background-image: url(../images/top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
}
.hero__title {
  text-align: center;
}
.hero__content {
  margin-top: 40px;
  font-size: 22px;
  text-align: center;
}
@media (width <= 767.98px) {
  .hero__content {
    font-size: 20px;
  }
}

.contacts-hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 33%;
  align-items: center;
  column-gap: 32px;
}
@media (width <= 767.98px) {
  .contacts-hero__row {
    row-gap: 24px;
    grid-template-columns: 1fr;
  }
}
.contacts-hero__content {
  margin-top: 40px;
  font-size: 22px;
}
@media (width <= 767.98px) {
  .contacts-hero__content {
    margin-top: 24px;
    font-size: 20px;
  }
}
.contacts-hero__info {
  padding: 48px;
}
@media (width <= 767.98px) {
  .contacts-hero__info {
    padding: 36px;
  }
}
.contacts-hero__info-title {
  font-size: 48px;
}
@media (width <= 767.98px) {
  .contacts-hero__info-title {
    font-size: 38px;
  }
}
.contacts-hero__info-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (width <= 767.98px) {
  .contacts-hero__info-list {
    margin-top: 24px;
  }
}
.contacts-hero__info-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.contacts-hero__info-item svg {
  width: 24px;
  height: 24px;
}
.contacts-hero__info-item a {
  font-size: 22px;
}
@media (width <= 767.98px) {
  .contacts-hero__info-item a {
    font-size: 18px;
  }
}
.contacts-hero__info-content {
  margin-top: 32px;
  font-size: 20px;
}
@media (width <= 767.98px) {
  .contacts-hero__info-content {
    margin-top: 24px;
    font-size: 18px;
  }
}
.contacts-hero__socials {
  margin-top: 32px;
  display: flex;
  column-gap: 8px;
}
@media (width <= 767.98px) {
  .contacts-hero__socials {
    margin-top: 24px;
  }
}
.contacts-hero__socials-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.contacts-rent__content {
  margin-top: 30px;
  font-size: 20px;
  text-align: center;
}
@media (width <= 767.98px) {
  .contacts-rent__content {
    margin-top: 24px;
    font-size: 18px;
  }
}
.contacts-rent__list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (width <= 767.98px) {
  .contacts-rent__list {
    margin-top: 24px;
    gap: 24px;
  }
}
.contacts-rent__item {
  width: calc((100% - var(--column-gap) * 2) / 3);
  padding: 36px 30px;
}
@media (width <= 767.98px) {
  .contacts-rent__item {
    width: 100%;
  }
}
.contacts-rent__item-title {
  display: flex;
  align-items: center;
  column-gap: 8px;
  white-space: nowrap;
}
.contacts-rent__item-content {
  margin-top: 12px;
}
@media (width <= 480.98px) {
  .contacts-rent__item {
    width: 100%;
  }
}
.contacts-rent__description {
  margin-top: 30px;
  font-size: 20px;
  text-align: center;
}
@media (width <= 767.98px) {
  .contacts-rent__description {
    margin-top: 24px;
    font-size: 18px;
  }
}
.contacts-rent__more {
  margin-top: 30px;
  text-align: center;
}
@media (width <= 767.98px) {
  .contacts-rent__more {
    margin-top: 24px;
  }
}

.main-advantages__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--row-gap) var(--column-gap);
}
.main-advantages__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - var(--column-gap) * 3) / 4);
}
@media (width <= 767.98px) {
  .main-advantages__item {
    width: calc((100% - var(--column-gap) * 2) / 3);
  }
}
@media (width <= 480.98px) {
  .main-advantages__item {
    width: 100%;
  }
}
.main-advantages__item-icon {
  margin-bottom: 18px;
  width: 100px;
  height: 100px;
}
@media (width <= 767.98px) {
  .main-advantages__item-icon {
    width: 60px;
    height: 60px;
  }
}
.main-advantages__item-title {
  font-size: 22px;
  font-weight: 700;
}
.main-advantages__item-content {
  margin-top: 12px;
}

@media (width <= 767.98px) {
  .about-info {
    background-image: url("../images/texture-base.png");
  }
}
.about-info__inner {
  padding: 120px 64px;
  background-image: url("../images/about-info.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
@media (width <= 767.98px) {
  .about-info__inner {
    padding: 0;
    background-image: none;
  }
}
.about-info__title {
  color: var(--color-dark);
}
.about-info__content {
  margin-top: 20px;
  font-size: 20px;
  color: var(--color-dark);
}
@media (width <= 767.98px) {
  .about-info__content {
    font-size: 18px;
  }
}

.about-history__title {
  margin-bottom: 0;
}
.about-history__list {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 64px 32px;
  background-image: url("../images/history-line.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 50% 50%;
  padding-block: 40px;
}
@media (width <= 767.98px) {
  .about-history__list {
    row-gap: 32px;
    background-image: none;
    flex-direction: column;
  }
}
.about-history__item {
  max-width: 460px;
  align-self: flex-start;
}
@media (width <= 767.98px) {
  .about-history__item {
    max-width: 100%;
    margin: 0 !important;
  }
}
.about-history__item:nth-child(2) {
  margin-top: 52px;
  margin-right: 40px;
}
.about-history__item:nth-child(3) {
  margin-left: 64px;
}
.about-history__item:nth-child(4) {
  margin-top: 48px;
}
.about-history__item-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(#D19563, #6B4C33);
}
.about-history__item-num:before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: var(--color-dark);
  border-radius: inherit;
}
.about-history__item-num span {
  font-family: var(--font-family-title);
  font-size: 40px;
  position: relative;
  background: linear-gradient(#D19563, #6B4C33);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-history__item-title {
  margin-top: 12px;
}
.about-history__item-content {
  margin-top: 12px;
}

.about-advantages__list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--row-gap) var(--column-gap);
}
.about-advantages__item {
  padding: 36px 32px;
  width: calc((100% - var(--column-gap) * 2) / 3);
}
@media (width <= 767.98px) {
  .about-advantages__item {
    width: calc((100% - var(--column-gap)) / 2);
  }
}
@media (width <= 480.98px) {
  .about-advantages__item {
    width: 100%;
  }
}
.about-advantages__item-content {
  margin-top: 18px;
}

.about-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.about-services__item {
  width: calc((100% - 24px) / 2);
}
@media (width <= 767.98px) {
  .about-services__item {
    width: 100%;
  }
}

.about-path__inner {
  margin-top: 30px;
}
.about-path__content {
  font-size: 20px;
}
@media (width <= 767.98px) {
  .about-path__content {
    font-size: 18px;
  }
}

.about-contacts__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40%;
  gap: 32px;
}
@media (width <= 767.98px) {
  .about-contacts__inner {
    grid-template-columns: 1fr;
  }
}
.about-contacts__title {
  text-align: left;
}
.about-contacts__content {
  margin-top: 30px;
  font-size: 20px;
}
.about-contacts__subtitle {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
}
.about-contacts__rgt {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.about-contacts__contacts-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-contacts__contacts-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.about-contacts__contacts-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.about-contacts__contacts-item svg {
  width: 24px;
  height: 24px;
}
.about-contacts__contacts-item a {
  font-size: 18px;
}
.about-contacts__job-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-contacts__job-content {
  margin-top: 20px;
}
.about-contacts__job-more {
  margin-top: 30px;
}

.tabs__head {
  display: flex;
  flex-wrap: wrap;
}
.tabs__button {
  padding: 24px;
  display: flex;
  justify-content: center;
  width: 33.3333333333%;
  border: 0;
  outline: 0;
  border-bottom: 2px solid rgba(29, 59, 77, 0.2);
  color: rgba(29, 59, 77, 0.7);
  background-color: transparent;
  transition: var(--transition-duration);
}
@media (width <= 767.98px) {
  .tabs__button {
    padding: 12px;
    width: 100%;
  }
}
.tabs__button:hover {
  color: var(--color-text-dark);
}
.tabs__button.active {
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
}
.tabs__item {
  padding-top: 40px;
  display: none;
}
.tabs__item.active {
  display: block;
}

.properties__list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.properties__item {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.properties__item span:first-child {
  display: flex;
  align-items: center;
  flex: 1;
}
.properties__item span:first-child:after {
  content: "";
  margin-inline: 12px;
  flex: 1;
  border-top: 2px dashed #D19563;
}

.rate__list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.rate__item {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.rate__item span:first-child {
  display: flex;
  align-items: center;
  flex: 1;
}
.rate__item span:first-child:after {
  content: "";
  margin-inline: 12px;
  flex: 1;
  border-top: 2px dashed #D19563;
}

.product {
  color: var(--color-text-dark);
}
.product__main {
  display: grid;
  grid-template-areas: "product-carousel product-head" "product-carousel product-info";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content;
  gap: 22px 30px;
}
@media (width <= 767.98px) {
  .product__main {
    grid-template-areas: "product-head" "product-carousel" "product-info";
    grid-template-columns: 100%;
    gap: 30px;
  }
}
.product__head {
  grid-area: product-head;
}
.product__carousel {
  grid-area: product-carousel;
  min-width: 0;
}
.product__info {
  grid-area: product-info;
}
.product__title {
  margin-bottom: 0;
  text-align: left;
}
.product__sku {
  margin-top: 12px;
  opacity: 0.7;
}
.product__rate {
  margin-top: 22px;
}
.product__price {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(29, 59, 77, 0.2);
  font-size: 36px;
  font-weight: 700;
}
@media (width <= 767.98px) {
  .product__price {
    font-size: 32px;
  }
}
.product__more {
  margin-top: 22px;
}
.product__note {
  margin-top: 18px;
  font-size: 16px;
}
@media (width <= 767.98px) {
  .product__note {
    font-size: 14px;
  }
}
.product__tabs {
  margin-block: var(--section-margin);
}
.product__text {
  font-weight: 400;
}
.product__docs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.product__faq {
  margin-block: var(--section-margin);
}
.product__faq-title {
  text-align: center;
}
.product__faq-inner {
  margin-top: 30px;
}
.product__faq-content {
  font-size: 24px;
  color: var(--color-text-light);
}
@media (width <= 767.98px) {
  .product__faq-content {
    font-size: 18px;
  }
}
.product__form {
  margin-block: var(--section-margin);
}
.product__related {
  margin-block: var(--section-margin);
}

.locations {
  padding-block: var(--section-padding);
}
.locations__head {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
}
@media (width <= 1023.98px) {
  .locations__head {
    flex-wrap: wrap;
  }
}
@media (width <= 767.98px) {
  .locations__head {
    flex-direction: column;
    align-items: stretch;
  }
}
.locations__content {
  display: flex;
  align-items: center;
  flex-basis: 0;
  flex-grow: 1;
  column-gap: 16px;
  font-size: 24px;
}
@media (width <= 1023.98px) {
  .locations__content {
    font-size: 20px;
  }
}
.locations__controls {
  display: flex;
  align-items: center;
  gap: 12px 16px;
}
@media (width <= 767.98px) {
  .locations__controls {
    flex-direction: column;
    align-items: flex-start;
  }
}
.locations__button {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 500;
}
@media (width <= 767.98px) {
  .locations__button {
    width: 100%;
    font-size: 16px;
  }
}
.locations__body {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
@media (width <= 1023.98px) {
  .locations__body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 767.98px) {
  .locations__body {
    grid-template-columns: 1fr;
  }
}
.locations__maps {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}
@media (width <= 767.98px) {
  .locations__maps {
    height: 320px;
  }
}
.locations__map {
  display: none;
  position: absolute;
  inset: 0;
}
.locations__map.active {
  display: block;
}
.locations__item {
  display: none;
}
.locations__item.active {
  display: block;
}

.location-card__inner {
  padding: 30px;
}
.location-card__picture {
  margin-bottom: 20px;
  height: 204px;
  border-radius: 20px;
  overflow: hidden;
}
.location-card__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-card__title {
  font-size: 24px;
  font-weight: 700;
}
.location-card__content {
  margin-top: 12px;
}
.location-card__products {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #D19563;
}
.location-card__products-item {
  font-size: 20px;
  font-weight: 700;
}
.location-card__products-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.location-card__products-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 400;
}
.location-card__products-item svg {
  flex-shrink: 0;
}
.location-card__more {
  margin-top: 32px;
}
.location-card__link {
  width: 100%;
}

.catalog {
  margin-block: var(--section-margin);
}
.catalog__title {
  color: var(--color-text-dark);
}
.catalog__body {
  margin-top: 30px;
}
.catalog__body--filters {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
}
.catalog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (width <= 1023.98px) {
  .catalog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 767.98px) {
  .catalog__list {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (width <= 767.98px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.service-card--vertical {
  flex-direction: column;
  align-items: flex-start;
}
.service-card__picture {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.service-card__content {
  margin-top: 12px;
}
.service-card__more {
  margin-top: 30px;
}

.prices-list__list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.prices-list__item {
  display: flex;
  justify-content: space-between;
}
.prices-list__item span {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.prices-list__item span:first-child {
  flex: 1;
}
.prices-list__item span:first-child:after {
  content: "";
  margin-inline: 12px;
  flex: 1;
  height: 1px;
  border-top: 2px dashed #D19563;
}
.prices-list__content {
  margin-top: 24px;
  font-size: 16px;
}

.product-rent {
  padding-block: 64px;
  color: var(--color-text-dark);
}
.product-rent__main {
  display: flex;
  column-gap: 32px;
}
@media (width <= 767.98px) {
  .product-rent__main {
    flex-direction: column;
    row-gap: 32px;
  }
}
.product-rent__carousel {
  width: 45%;
}
@media (width <= 767.98px) {
  .product-rent__carousel {
    width: 100%;
  }
}
.product-rent__info {
  width: 55%;
}
@media (width <= 767.98px) {
  .product-rent__info {
    width: 100%;
  }
}
.product-rent__content {
  margin-top: 24px;
}
.product-rent__price {
  margin-top: 24px;
}
.product-rent__faq {
  margin-block: 100px;
}
@media (width <= 767.98px) {
  .product-rent__faq {
    margin-block: 64px;
  }
}
.product-rent__faq-title {
  text-align: center;
}
.product-rent__faq-inner {
  margin-top: 32px;
  padding: 32px;
}
.product-rent__faq-content {
  font-size: 24px;
  color: var(--color-text-light);
}
@media (width <= 767.98px) {
  .product-rent__faq-content {
    font-size: 20px;
  }
}
.product-rent__form {
  margin-block: 100px;
}
.product-rent__form-title {
  text-align: center;
}
.product-rent__form-content {
  margin-top: 32px;
  text-align: center;
}
.product-rent__form-form {
  margin-top: 32px;
}

.product-carousel__top {
  height: 460px;
}
@media (width <= 767.98px) {
  .product-carousel__top {
    height: 280px;
  }
}
.product-carousel__top-item {
  border-radius: 32px;
  overflow: hidden;
}
.product-carousel__top-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-carousel__bottom {
  margin-top: 20px;
  height: 74px;
}
@media (width <= 767.98px) {
  .product-carousel__bottom {
    height: 52px;
  }
}
.product-carousel__bottom-item {
  border-radius: 8px;
  overflow: hidden;
}
.product-carousel__bottom-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-form__title {
  text-align: center;
}
.product-form__content {
  margin-top: 30px;
  text-align: center;
  font-size: 22px;
}
.product-form__row {
  margin-top: 30px;
}
.product-form__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.product-form__field {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  width: calc((100% - 48px) / 4);
}
@media (width <= 767.98px) {
  .product-form__field {
    width: calc((100% - 16px) / 2);
  }
}
@media (width <= 480.98px) {
  .product-form__field {
    width: 100%;
  }
}
.product-form__field:last-child {
  align-self: flex-end;
}
.product-form__label {
  font-size: 16px;
}
.product-form__input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding-inline: 24px;
  background-color: transparent;
  border: 1px solid var(--color-text-dark);
  outline: none;
  color: var(--color-text-dark);
  font-size: 16px;
  border-radius: 30px;
}
@media (width <= 767.98px) {
  .product-form__input {
    height: 46px;
  }
}
.product-form__input::placeholder {
  color: var(--color-text-dark);
  opacity: 0.54;
}
.product-form__input ::-webkit-input-placeholder {
  color: var(--color-text-dark);
  opacity: 0.54;
}
.product-form__input ::-moz-placeholder {
  color: var(--color-text-dark);
  opacity: 0.54;
}
.product-form__input :-ms-input-placeholder {
  color: var(--color-text-dark);
  opacity: 0.54;
}
.product-form__agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  text-align: center;
}
.product-form__agreement label {
  font-size: 16px;
  font-weight: 400;
  color: rgba(29, 59, 77, 0.7);
}

.catalog-rent__list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}
.catalog-rent__item {
  width: calc((100% - 48px) / 3);
}
@media (width <= 480.98px) {
  .catalog-rent__item {
    width: calc((100% - 24px) / 2);
  }
}
@media (width <= 480.98px) {
  .catalog-rent__item {
    width: 100%;
  }
}

.rent-card__inner {
  padding: 32px;
}
.rent-card__picture {
  margin-bottom: 18px;
  height: 204px;
  border-radius: 20px;
  overflow: hidden;
}
.rent-card__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rent-card__content {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
}
.rent-card__prices {
  margin-top: 12px;
}
.rent-card__more {
  margin-top: 20px;
}
.rent-card__link {
  width: 100%;
}

.footer {
  position: relative;
  padding-block: 100px 64px;
  margin-top: -100px;
  background-image: url("../images/texture-base.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
  color: var(--color-text-dark);
}
@media (width <= 767.98px) {
  .footer {
    margin-top: -64px;
    padding-block: 64px;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (width <= 767.98px) {
  .footer__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer__title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width <= 767.98px) {
  .footer__title {
    font-size: 18px;
  }
}
.footer__copyright {
  font-size: 14px;
  margin-top: 32px;
}
@media (width <= 767.98px) {
  .footer__copyright {
    margin-top: 16px;
  }
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer__contacts-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer__contacts-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.footer__contacts-item svg {
  width: 24px;
  height: 24px;
}

.page-error {
  background-image: url("../images/404.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 25% 100%;
  padding-block: 32px;
}
@media (width <= 767.98px) {
  .page-error {
    padding-block: 8px;
  }
}
.page-error__row {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.page-error__logo {
  flex-shrink: 0;
  text-align: center;
}
.page-error__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-error__title {
  font-size: 32px;
  text-align: center;
}
@media (width <= 767.98px) {
  .page-error__title {
    font-size: 26px;
  }
}
.page-error__title span {
  font-size: 150px;
}
@media (width <= 767.98px) {
  .page-error__title span {
    font-size: 100px;
  }
}
.page-error__content {
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 22px;
  text-align: center;
}
@media (width <= 767.98px) {
  .page-error__content {
    margin-top: 24px;
    font-size: 20px;
  }
}
.page-error__more {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (width <= 767.98px) {
  .page-error__more {
    margin-top: 24px;
  }
}

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