@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: 24px;
  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.5;
}

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

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

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

[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@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: "Roboto";
  src: url("../fonts/Roboto.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant";
  src: url("../fonts/Cormorant.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/NunitoSans.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: "Playfair";
  src: url("../fonts/Playfair.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
}
:root {
  --color-primary: #ad9779;
  --color-secondary: #1a243f;
  --color-additional-10: #2f3850;
  --color-body: #6d6d6d;
  --color-body-bg: #fff;
  --color-body-bg-grey: #f3f4f5;
  --color-border-gray: #d8d8d8;
  --color-header-text: #bfbfbf;
  --color-heading: #10172c;
  --color-invalid: #dc3545;
  --color-valid: #198754;
  --border-light: 0.0625rem solid var(--color-primary);
  --border-gray: 0.0625rem solid var(--color-border-gray);
  --font-family-primary: "Cormorant", serif;
  --font-family-secondary: "Roboto Slab", serif;
  --font-family-text: "Montserrat", sans-sefif;
  --font-family-accent: "Roboto", sans-serif;
  --container-width: 100rem;
  --container-narrow-width: 75rem;
  --container-padding-x: 1rem;
  --input-height: 3.4375rem;
  --input-gap: 0.3125rem;
  --transition-duration: 0.2s;
  --transition-duration-slow: 0.4s;
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

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

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-text);
  letter-spacing: 0em;
  color: var(--color-body);
  background-color: var(--color-body-bg);
}

main {
  flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-heading);
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: var(--font-family-primary);
  font-weight: 600;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
}

h1,
.h1 {
  font-size: clamp(2.8125rem, 2.5735294118rem + 0.9803921569vw, 3.75rem);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: clamp(2.5rem, 2.4203431373rem + 0.3267973856vw, 2.8125rem);
  line-height: 1.3;
}

h3,
.h3 {
  font-size: clamp(2rem, 1.8725490196rem + 0.522875817vw, 2.5rem);
}

h4,
.h4 {
  font-size: clamp(1.625rem, 1.5294117647rem + 0.3921568627vw, 2rem);
}

h5,
.h5 {
  font-size: clamp(1.375rem, 1.3112745098rem + 0.2614379085vw, 1.625rem);
}

h6,
.h6 {
  font-size: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
}

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

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-primary);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-primary);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.0625rem dashed var(--color-additional-10);
  outline-offset: 0.125rem;
  transition-duration: 0s !important;
}

/* a,
button {
    &[aria-label] {
        position: relative;

        &::before {
            @include abs-center;
            @include square(rem(44));

            content: "";
        }
    }
} */
img:not(.logo__image) {
  filter: grayscale(1);
}

.column {
  width: 100%;
}
@media (width > 63.99875rem) {
  .column {
    width: 33%;
  }
}
@media (width > 63.99875rem) {
  .column--66 {
    width: 66%;
  }
}

.field {
  --fieldInputHeight: var(--input-height);
  --fieldInputGap: var(--input-gap);
  --fieldInputTextColor: var(--color-heading);
  --fieldInputBgColor: var(--color-body-bg);
  --fieldInputBorderColor: var(--color-border-gray);
  --fieldInputPlaceholderColor: var(--color-border-gray);
  --fieldInputHoverBorderColor: var(--color-primary);
  --fieldInputCheckboxColor: var(--color-secondary);
  --fieldInputSubmitBgColor: var(--color-secondary);
  --fieldInputSubmitTextColor: var(--color-body-bg);
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: var(--fieldInputGap);
  padding-block: 0.5rem;
}
.field__label {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  padding-inline-start: 1.25rem;
}
.field__checkbox {
  flex-direction: row-reverse;
  justify-content: start;
  align-items: center;
}
.field__input {
  width: 100%;
  height: var(--fieldInputHeight);
  padding-inline: 1.25rem;
  color: var(--fieldInputTextColor);
  background-color: var(--fieldInputBgColor);
  border: 1px solid var(--fieldInputBorderColor);
  transition-duration: var(--transition-duration-slow);
}
@media (any-hover: hover) {
  .field__input:hover {
    border: 1px solid var(--fieldInputHoverBorderColor);
  }
}
@media (any-hover: none) {
  .field__input:active {
    border: 1px solid var(--fieldInputHoverBorderColor);
  }
}
.field__input--select option:first-child {
  color: var(--fieldInputPlaceholderColor);
}
.field__input--textarea {
  height: 145px;
  resize: none;
}
.field__input--checkbox {
  width: auto;
  height: 1.25rem;
  flex-basis: 1.25rem;
}
.field__input--submit {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--fieldInputSubmitBgColor);
  color: var(--fieldInputSubmitTextColor);
  border-color: var(--fieldInputSubmitBgColor);
}
@media (any-hover: hover) {
  .field__input--submit:hover {
    background-color: var(--fieldInputHoverBorderColor);
    border-color: transparent;
  }
}
@media (any-hover: none) {
  .field__input--submit:active {
    background-color: var(--fieldInputHoverBorderColor);
    border-color: transparent;
  }
}
.field__input:focus {
  border-color: var(--fieldInputHoverBorderColor);
  outline: none;
}
.field__input:checked {
  accent-color: var(--fieldInputCheckboxColor);
}
.field__input::placeholder {
  color: var(--fieldInputPlaceholderColor);
}
.field--invalid {
  border: 1px solid var(--color-invalid);
}
.field--invalid-feedback {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  color: var(--color-invalid);
}

.list {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  row-gap: 0.625rem;
}
.list__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  row-gap: 0.625rem;
  font-family: var(--font-family-primary);
  /* max-width: 70%; */
}
.list__item--bullet {
  font-family: var(--font-family-text);
  max-width: 100%;
}
.list__item-description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-family: var(--font-family-text);
  font-weight: 400;
  color: var(--color-body);
}

.icon {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
}
.icon::before {
  --size: 1.125rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon--bullet::before {
  content: "✔";
}
.icon--telegram::before {
  --size: 2rem;
  width: var(--size);
  height: var(--size);
  border: 0.0625rem solid var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800px' height='800px' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23ad9779' stroke-width='2' d='M40.83,8.48c1.14,0,2,1,1.54,2.86l-5.58,26.3c-.39,1.87-1.52,2.32-3.08,1.45L20.4,29.26a.4.4,0,0,1,0-.65L35.77,14.73c.7-.62-.15-.92-1.07-.36L15.41,26.54a.46.46,0,0,1-.4.05L6.82,24C5,23.47,5,22.22,7.23,21.33L40,8.69a2.16,2.16,0,0,1,.83-.21Z'/%3E%3C/svg%3E");
}
.icon--max::before {
  --size: 2rem;
  width: var(--size);
  height: var(--size);
  border: 0.0625rem solid var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' width='36' height='36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='%23ad9779' d='m 18.365075,34.82051 c -3.334811,0 -4.884565,-0.48683 -7.578378,-2.434167 -1.7039181,2.19075 -7.0996572,3.902786 -7.3349594,0.973669 0,-2.198867 -0.4868335,-4.056948 -1.0385785,-6.085422 -0.6572252,-2.499082 -1.4037034,-5.282148 -1.4037034,-9.314752 0,-9.6311922 7.9029325,-16.8768996 17.2663673,-16.8768996 9.371547,0 16.714622,7.6027191 16.714622,16.9661516 0.03145,9.218635 -7.406815,16.722243 -16.62537,16.77142 z M 18.503011,9.4077943 c -4.560009,-0.235302 -8.113894,2.9210017 -8.9009421,7.8704787 -0.649112,4.097516 0.5030611,9.087562 1.4848431,9.347205 0.470605,0.113594 1.655233,-0.843847 2.393598,-1.582208 1.220922,0.843442 2.642675,1.350013 4.121857,1.468613 4.72492,0.227277 8.762183,-3.369821 9.079448,-8.089551 0.184692,-4.729721 -3.453226,-8.7357607 -8.178805,-9.0064227 z'/%3E%3C/svg%3E%0A");
}
.icon--vkontakte::before {
  --size: 2rem;
  width: var(--size);
  height: var(--size);
  border: 0.0625rem solid var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800px' height='800px' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23ad9779' stroke-width='2' d='M27.55,35.19V28.55c4.46.68,5.87,4.19,8.71,6.64H43.5a29.36,29.36,0,0,0-7.9-10.47c2.6-3.58,5.36-6.95,6.71-12.06H35.73c-2.58,3.91-3.94,8.49-8.18,11.51V12.66H18l2.28,2.82,0,10.05c-3.7-.43-6.2-7.2-8.91-12.87H4.5C7,20.32,12.26,37.13,27.55,35.19Z'/%3E%3C/svg%3E");
}
.icon--tel::before {
  --size: 2rem;
  width: var(--size);
  height: var(--size);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 38 38'%3E%3Cpath fill='none' stroke='%23ad9779' stroke-width='1' d='M15.22 20.64a20.37 20.37 0 0 0 7.4 4.79l3.77-3a.67.67 0 0 1 .76 0l7 4.51a2 2 0 0 1 .33 3.18l-3.28 3.24a4 4 0 0 1-3.63 1.07a35.09 35.09 0 0 1-17.15-9A33.79 33.79 0 0 1 1.15 8.6a3.78 3.78 0 0 1 1.1-3.55l3.4-3.28a2 2 0 0 1 3.12.32L13.43 9a.63.63 0 0 1 0 .75l-3.07 3.69a19.75 19.75 0 0 0 4.86 7.2' class='clr-i-solid clr-i-solid-path-1'/%3E%3Cpath fill='none' d='M0 0h36v36H0z'/%3E%3C/svg%3E");
}
.icon--tel-big::before {
  --size: 2rem;
  width: var(--size);
  height: var(--size);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Cpath fill='%23ad9779' d='M15.22 20.64a20.37 20.37 0 0 0 7.4 4.79l3.77-3a.67.67 0 0 1 .76 0l7 4.51a2 2 0 0 1 .33 3.18l-3.28 3.24a4 4 0 0 1-3.63 1.07a35.09 35.09 0 0 1-17.15-9A33.79 33.79 0 0 1 1.15 8.6a3.78 3.78 0 0 1 1.1-3.55l3.4-3.28a2 2 0 0 1 3.12.32L13.43 9a.63.63 0 0 1 0 .75l-3.07 3.69a19.75 19.75 0 0 0 4.86 7.2' class='clr-i-solid clr-i-solid-path-1'/%3E%3Cpath fill='none' d='M0 0h36v36H0z'/%3E%3C/svg%3E");
}
.icon--email::before {
  --size: 2rem;
  width: var(--size);
  height: var(--size);
  /* border: rem(1) solid var(--color-primary); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800px' height='800px' viewBox='0 0 64 64' enable-background='new 0 0 64 64' xml:space='preserve'%3E%3Cg%3E%3Crect x='1' y='13' fill='none' stroke='%23ad9779' stroke-width='2' stroke-miterlimit='10' width='62' height='37'/%3E%3Cpolyline fill='none' stroke='%23ad9779' stroke-width='2' stroke-miterlimit='10' points='1,13 32,33 63,13'/%3E%3C/g%3E%3C/svg%3E");
}
.icon--location::before {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='%23ad9779' fill-rule='evenodd'%3E%3Cg fill='%2523ad9779' fill-rule='nonzero'%3E%3Cpath d='M14,2.25 C19.3847763,2.25 23.75,6.61522369 23.75,12 C23.75,16.1196455 20.855433,20.6092677 15.1401958,25.5178507 C14.4843932,26.0810927 13.5155806,26.0810925 12.8571694,25.5155993 L12.4794181,25.1881258 C7.01712282,20.4088515 4.25,16.0278108 4.25,12 C4.25,6.61522369 8.61522369,2.25 14,2.25 Z M14,8.25 C11.9289322,8.25 10.25,9.92893219 10.25,12 C10.25,14.0710678 11.9289322,15.75 14,15.75 C16.0710678,15.75 17.75,14.0710678 17.75,12 C17.75,9.92893219 16.0710678,8.25 14,8.25 Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@keyframes scrolling-header {
  to {
    box-shadow: 0 0 0.5rem 0 var(--color-body);
  }
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.logo {
  max-width: clamp(7.6875rem, 6.0943627451rem + 6.5359477124vw, 13.9375rem);
  flex-shrink: 0;
}
.logo--small {
  max-width: clamp(5rem, 4.3149509804rem + 2.8104575163vw, 7.6875rem);
}

.header {
  position: sticky;
  z-index: 200;
  top: 0;
  animation-name: scrolling-header;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 6.25rem 12.5rem;
}
.header__info {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  font-family: var(--font-family-accent);
  color: var(--color-header-text);
  background-color: var(--color-secondary);
}
@media (width <= 47.99875rem) {
  .header__info {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    clip-path: inset(100%) !important;
    clip: rect(0 0 0 0) !important;
    overflow: hidden !important;
  }
}
.header__info-inner {
  padding-block: 1rem;
  display: flex;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .header__info-inner {
    padding-block: 0.625rem;
  }
}
@media (width <= 30.06125rem) {
  .header__info-inner {
    padding-block: 0.375rem;
  }
}
.header__info-socials {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
}
@media (width <= 47.99875rem) {
  .header__info-socials {
    column-gap: 0.3125rem;
  }
}
@media (width <= 30.06125rem) {
  .header__info-socials {
    column-gap: 0.125rem;
  }
}
.header__info-contacts {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
}
@media (width <= 47.99875rem) {
  .header__info-contacts {
    flex-direction: column;
    row-gap: 0.3125rem;
  }
}
@media (width <= 30.06125rem) {
  .header__info-contacts {
    flex-direction: column;
    row-gap: 0.125rem;
  }
}
.header__body {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-block: 1.25rem;
  font-family: var(--font-family-primary);
  font-weight: 700;
  color: var(--color-secondary);
  background-color: var(--color-body-bg);
}
@media (width <= 47.99875rem) {
  .header__body {
    padding-block: 0.625rem;
  }
}
@media (any-hover: hover) {
  .header__body a:hover {
    color: var(--color-primary);
  }
}
@media (any-hover: none) {
  .header__body a:active {
    color: var(--color-primary);
  }
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.0625rem;
}
@media (width > 47.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 47.99875rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3 rem;
    padding: 1rem;
    background-color: var(--color-body-bg);
    transition-duration: var(--transition-duration);
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
@media (width <= 47.99875rem) {
  .header__nav {
    overflow-y: auto;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}
@media (width <= 90.06125rem) {
  .header__nav-list {
    column-gap: 0.375rem;
  }
}
@media (width <= 47.99875rem) {
  .header__nav-list {
    font-size: clamp(1.375rem, 1.2156862745rem + 0.6535947712vw, 2rem);
    flex-direction: column;
    row-gap: 1rem;
  }
}
.header__nav-link {
  position: relative;
  padding: 0 0.625rem;
}
@media (width <= 90.06125rem) {
  .header__nav-link {
    padding: 0 0.3125rem;
  }
}
.header__nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.0625rem;
  background-color: var(--color-primary);
  transition-duration: var(--transition-duration-slow);
}
@media (any-hover: hover) {
  .header__nav-link:hover::after {
    width: 100%;
  }
}
@media (any-hover: none) {
  .header__nav-link:active::after {
    width: 100%;
  }
}
.header__nav-link.is-active {
  color: var(--color-primary);
  pointer-events: none;
}

.burger-button {
  width: 2.75rem;
  height: 2.75rem;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 0.5rem 0.25rem;
  color: var(--color-secondary);
  background-color: transparent;
  border: none;
}
@media (any-hover: hover) {
  .burger-button:hover {
    color: var(--color-primary);
  }
}
@media (any-hover: none) {
  .burger-button:active {
    color: var(--color-primary);
  }
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.3em 0em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.1875rem;
  background-color: currentColor;
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.burger-button__line:last-child {
  align-self: end;
  width: 60%;
}

.banner {
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, var(--color-secondary) 3%, transparent);
}
.banner__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.4;
}
.banner__description {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner__inner {
  padding-block: 7.5rem;
  color: var(--color-body-bg);
  z-index: 100;
}
.banner__title {
  padding-block: 0.625rem;
}
.banner__title-text {
  color: var(--color-body-bg);
}
.banner__subtitle {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  overflow-x: hidden;
  background-color: var(--color-body-bg-grey);
  color: var(--color-body-bg);
}

.slider {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.slider__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  gap: 0.625rem;
  z-index: 50;
}
@media (width <= 47.99875rem) {
  .slider__nav {
    right: 0.625rem;
    top: 77%;
  }
}
.slider__dots {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (width <= 47.99875rem) {
  .slider__dots {
    flex-direction: row;
  }
}
.slider__dot {
  --size: 0.75rem;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: var(--color-body-bg);
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.5s;
}
.slider__dot.is-active {
  opacity: 1;
}
.slider__counter {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  letter-spacing: 0.0625rem;
}
.slider__counter-current {
  font-weight: 700;
}
.slider__controls {
  position: absolute;
  bottom: 12%;
  right: 3.125rem;
  display: flex;
  gap: 0.625rem;
  z-index: 50;
}
@media (width <= 47.99875rem) {
  .slider__controls {
    right: 0.625rem;
  }
}
.slider__button {
  --size: 3.125rem;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--color-body-bg);
  cursor: pointer;
  transition: background-color opacity 0.3s;
}
@media (any-hover: hover) {
  .slider__button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
@media (any-hover: none) {
  .slider__button:active {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}
.slide__bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, var(--color-secondary) 10%, transparent);
}
.slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  bottom: 25%;
  width: 75rem;
  max-width: 90%;
  z-index: 10;
}
.slide__subtitle {
  font-size: clamp(0.875rem, 0.8112745098rem + 0.2614379085vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
}
@media (width <= 47.99875rem) {
  .slide__subtitle {
    margin-bottom: 0.625rem;
    font-size: 0.75rem;
  }
}
.slide__title {
  line-height: 1.1;
  letter-spacing: 0.125rem;
  margin-bottom: 1.875rem;
  max-width: 70%;
  opacity: 0;
  transform: translateY(2.5rem);
  color: var(--color-body-bg);
}
@media (width <= 47.99875rem) {
  .slide__title {
    margin-bottom: 1.25rem;
    font-size: 2rem;
  }
}
.slide__description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  line-height: 1.5;
  max-width: 37.5rem;
  opacity: 0;
  transform: translateY(1.25rem);
}
@media (width <= 47.99875rem) {
  .slide__description {
    font-size: 0.75rem;
  }
}

.section {
  position: relative;
}
.section--gray {
  background-color: var(--color-body-bg-grey);
}
.section__header {
  padding-block: clamp(1.875rem, 1.556372549rem + 1.3071895425vw, 3.125rem);
  position: relative;
}
.section__header-inner::after {
  position: absolute;
  content: "";
  left: 40%;
  width: 20%;
  height: 0.0625rem;
  bottom: 10%;
  background-color: var(--color-primary);
}
@media (width > 47.99875rem) {
  .section__header-inner {
    grid-template-columns: 1fr auto;
  }
}
@media (width <= 47.99875rem) {
  .section__header-inner {
    row-gap: 1.875rem;
  }
}
.section__header-info {
  display: grid;
  align-items: start;
  row-gap: 1rem;
  text-align: center;
}
@media (width <= 90.06125rem) {
  .section__header-info {
    row-gap: 0.625rem;
  }
}
.section__header-subtitle {
  justify-self: center;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}
.section__header-title {
  justify-self: center;
}
.section__header-description {
  justify-self: center;
  width: 80%;
}
@media (width <= 47.99875rem) {
  .section__header-description {
    font-size: 0.875rem;
  }
}
.section__body {
  padding-block: 1.875rem;
}

.advantages__main {
  display: flex;
  justify-content: space-between;
  margin-top: -86px;
}
@media (width <= 63.99875rem) {
  .advantages__main {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.advantages__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 100%;
  z-index: 3;
  padding-inline: 1.25rem;
  color: var(--color-body-bg);
}
@media (width <= 63.99875rem) {
  .advantages__card {
    padding-inline: 0;
  }
}
@media (any-hover: hover) {
  .advantages__card:hover svg {
    transform: rotateY(360deg);
  }
  .advantages__card:hover img {
    filter: grayscale(0);
  }
}
@media (any-hover: none) {
  .advantages__card:active svg {
    transform: rotateY(360deg);
  }
  .advantages__card:active img {
    filter: grayscale(0);
  }
}
.advantages__card-header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background-color: var(--color-additional-10);
  line-height: 1;
}
.advantages__card-header h3,
.advantages__card-header .h3 {
  margin: 0;
  color: var(--color-body-bg);
}
.advantages__card-icon {
  flex: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 5.375rem;
  height: 5.375rem;
  max-width: 100%;
  background-color: var(--color-primary);
}
.advantages__card-icon svg {
  --size: 3.125rem;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  fill: var(--color-body-bg);
  transition: all 300ms linear 0s;
}
.advantages__card-title {
  padding: 0.3125rem 1.875rem;
}
.advantages__card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.875rem;
  flex-grow: 1;
  background-color: var(--color-secondary);
}
.advantages__card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.375rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (any-hover: hover) {
  .advantages__card-link:hover {
    color: var(--color-body-bg);
  }
}
@media (any-hover: none) {
  .advantages__card-link:active {
    color: var(--color-body-bg);
  }
}
.advantages__img img {
  width: 100%;
}

.grid {
  --columns: 1;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 1.25rem;
}
@media (width > 30.06125rem) {
  .grid {
    --columns: 2;
  }
}
@media (width > 63.99875rem) {
  .grid {
    --columns: 3;
  }
}

.cross-hover {
  position: relative;
  overflow: hidden;
}
.cross-hover::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.0625rem;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  clip-path: polygon(0 0, 102% 0%, 102% 102%);
  transition: all var(--transition-duration-slow) ease;
  transform: scale(0);
  transform-origin: top right;
  background-color: var(--color-secondary);
}
.cross-hover::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.0625rem;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  clip-path: polygon(0 0, 102% 102%, 0% 102%);
  transition: all var(--transition-duration-slow) ease;
  transform: scale(0);
  transform-origin: bottom left;
  background-color: var(--color-additional-10);
}
@media (any-hover: hover) {
  .cross-hover:hover::before {
    transform: scale(1.005);
  }
  .cross-hover:hover::after {
    transform: scale(1.005);
  }
}
@media (any-hover: none) {
  .cross-hover:active::before {
    transform: scale(1.005);
  }
  .cross-hover:active::after {
    transform: scale(1.005);
  }
}

.service-card {
  padding: 1.25rem;
  aspect-ratio: 1/1;
  background-color: var(--color-body-bg);
  border: var(--border-gray);
}
@media (width > 63.99875rem) {
  .service-card {
    padding: 1.25rem;
  }
  .service-card:hover {
    color: var(--color-body-bg);
    border-color: transparent;
    transition: all 500ms ease;
  }
  .service-card:hover h4 {
    color: var(--color-body-bg);
  }
  .service-card:hover .service-card__image-wrapper {
    background-color: var(--color-primary);
  }
  .service-card:hover .service-card__image {
    animation: updown 500ms ease;
    animation-delay: 200ms;
  }
  .service-card:hover .service-card__link {
    color: var(--color-body-bg);
  }
}
.service-card {
  /* @include tablet { */
  /*   padding: rem(4); */
  /* } */
}
.service-card__wrapper {
  display: grid;
  grid-template-rows: 15% 70% 15%;
  justify-items: center;
  position: relative;
  height: 100%;
  z-index: 1;
}
.service-card__title {
  font-size: clamp(1.375rem, 1.3112745098rem + 0.2614379085vw, 1.625rem);
  font-family: var(--font-family-primary);
  text-align: center;
  line-height: 1;
}
.service-card__body {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  text-align: center;
}
.service-card__image-wrapper {
  width: 5.375rem;
  height: 5.375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary);
  border-radius: 0.1875rem;
}
.service-card__image {
  width: 50;
  height: auto;
  color: var(--color-body-bg);
  transition: all var(--transition-duration-slow) linear 600ms;
}
.service-card__description {
  padding-block: 0.625rem;
}
.service-card__link {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
.service-card__link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.0625rem;
  background-color: var(--color-body-bg);
  transition-duration: var(--transition-duration-slow);
}
@media (any-hover: hover) {
  .service-card__link:hover::after {
    width: 100%;
  }
}
@media (any-hover: none) {
  .service-card__link:active::after {
    width: 100%;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  color: var(--color-body-bg);
}
.contacts__item {
  padding: 0.625rem 0 1.25rem;
}
.contacts__item:not(:last-child) {
  border-bottom: 0.0625rem solid var(--color-body);
}
.contacts__item span {
  font-weight: 500;
  color: var(--color-primary);
}
.contacts__item-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.625rem;
  align-items: center;
  text-align: center;
}
.contacts__item-title {
  font-weight: 500;
}
.contacts__item-link {
  color: var(--color-header-text);
}
@media (any-hover: hover) {
  .contacts__item-link:hover {
    color: var(--color-body-bg);
  }
}
@media (any-hover: none) {
  .contacts__item-link:active {
    color: var(--color-body-bg);
  }
}
.contacts__item-link--big {
  font-size: clamp(1.5rem, 1.4044117647rem + 0.3921568627vw, 1.875rem);
  font-family: var(--font-family-primary);
  color: var(--color-primary);
}

.contact-us {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  min-height: 1px;
}
@media (width <= 63.99875rem) {
  .contact-us {
    flex-direction: column;
    row-gap: 0.625rem;
  }
}
.contact-us__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.9375rem;
  width: 67%;
}
.contact-us__form--wide {
  width: 100%;
}
@media (width <= 63.99875rem) {
  .contact-us__form {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .contact-us__form {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.contact-us__contacts {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  justify-content: center;
  margin-left: 1.25rem;
  padding: 2.8125rem 2.1875rem;
  width: 33%;
  background-color: var(--color-secondary);
}
@media (width <= 63.99875rem) {
  .contact-us__contacts {
    width: 100%;
    margin-left: 0;
  }
}
.contact-us__field--textarea {
  grid-column: span 2;
}
@media (width <= 47.99875rem) {
  .contact-us__field--textarea {
    grid-column: 1;
  }
}
.contact-us__field--checkbox {
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
  width: auto;
}

.area__body {
  display: flex;
  justify-content: space-between;
}
@media (width <= 63.99875rem) {
  .area__body {
    flex-direction: column;
  }
}
.area__cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.area__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background-color: var(--color-secondary);
}
.area__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  row-gap: 1.25rem;
  padding-block: 1.25rem;
  border-bottom: var(--border-gray);
}
.area__inner:first-child {
  padding-right: 0.9375rem;
}
@media (width <= 63.99875rem) {
  .area__inner:first-child {
    padding-right: 0;
  }
}
.area__inner:last-child {
  padding-left: 0.9375rem;
}
@media (width <= 63.99875rem) {
  .area__inner:last-child {
    padding-left: 0;
  }
}
@media (width <= 63.99875rem) {
  .area__title {
    line-height: 1;
  }
}

.card__body {
  display: flex;
  flex-direction: column;
  padding: 2.8125rem 2.1875rem;
}
.card__item:not(:last-child) {
  padding-block: 0.625rem;
}
.card__item:last-child {
  padding-top: 0.625rem;
}
.card__inner {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  align-items: center;
  text-align: center;
}
.card__title {
  font-family: var(--font-family-primary);
  font-size: 1.125rem;
  color: var(--color-body-bg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card__link {
  font-family: var(--font-family-primary);
  font-size: 2.1875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition-duration: var(--transition-duration-slow);
}
@media (any-hover: hover) {
  .card__link:hover {
    color: var(--color-body-bg);
  }
}
@media (any-hover: none) {
  .card__link:active {
    color: var(--color-body-bg);
  }
}
.card__cta {
  padding: 0.625rem 1.875rem;
  color: var(--color-body-bg);
  background-color: var(--color-additional-10);
  border-radius: 1.25rem;
  text-transform: uppercase;
}
.card__btn {
  padding-block: 1.25rem;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-body-bg);
  background-color: var(--color-primary);
  transition-duration: var(--transition-duration-slow);
}
@media (any-hover: hover) {
  .card__btn:hover {
    color: var(--color-secondary);
  }
}
@media (any-hover: none) {
  .card__btn:active {
    color: var(--color-secondary);
  }
}

.practice__card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5625rem 1.25rem;
  width: 100%;
  border: var(--border-gray);
}
.practice__card-title {
  position: relative;
  padding: 0.9375rem 1.5625rem;
  margin: -1.3125rem -1.625rem;
  overflow: hidden;
  font-family: var(--font-family-primary);
  font-weight: 700;
  color: var(--color-body-bg);
  background-color: var(--color-secondary);
}
.practice__card-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  border-bottom: 4.1875rem solid rgba(255, 255, 255, 0.07);
  border-left: 4.1875rem solid transparent;
  border-right: 4.1875rem solid rgba(255, 255, 255, 0.07);
}
.practice__card-list {
  margin-top: 1.25rem;
  margin-bottom: -1.25rem;
}
.practice__card-item:not(:last-child) {
  border-bottom: var(--border-gray);
}
.practice__card-link {
  display: flex;
  position: relative;
  align-items: center;
  padding-block: 1.125rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-heading);
}
.practice__card-link::before {
  width: 0.3125rem;
  height: 0.3125rem;
  content: "";
  display: inline-flex;
  background-color: var(--color-primary);
  margin-right: 0.625rem;
}
.practice__card-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--color-heading);
  transition: width 0.5s cubic-bezier(0.35, 0.7, 0.35, 1);
}
@media (any-hover: hover) {
  .practice__card-link:hover::after {
    width: 100%;
  }
}
@media (any-hover: none) {
  .practice__card-link:active::after {
    width: 100%;
  }
}

.work__process {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  row-gap: 1.25rem;
  padding-block: 1.25rem;
  border-bottom: var(--border-gray);
}

.prices__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.table {
  --tableRowHeight: var(--input-height);
  width: 100%;
  margin-block: 0.9375rem;
  border-collapse: collapse;
}
.table__header {
  font-size: clamp(1.375rem, 1.2794117647rem + 0.3921568627vw, 1.75rem);
  padding-inline: 1.25rem;
  font-family: var(--font-family-primary);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--color-body-bg);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
@media (width <= 63.99875rem) {
  .table__header {
    padding-inline: 0.3125rem;
  }
}
.table__header--small {
  font-size: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
  padding-inline: 1.25rem;
  font-family: var(--font-family-text);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--color-heading);
  background-color: var(--color-body-bg-grey);
  border: 1px solid var(--color-border-gray);
}
@media (width <= 63.99875rem) {
  .table__header--small {
    padding-inline: 0.3125rem;
  }
}
.table__row {
  height: var(--tableRowHeight);
  line-height: 1.2;
}
.table__data {
  font-size: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
  overflow-wrap: break-word;
  line-height: 1.2;
  padding-inline: 1.25rem;
  color: var(--color-body);
  border: 1px solid var(--color-border-gray);
}
@media (width <= 63.99875rem) {
  .table__data {
    padding-inline: 0.3125rem;
  }
}
.table__data-price {
  font-size: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
  text-align: right;
  line-height: 1.2;
  padding-inline: 1.25rem;
  color: var(--color-body);
  border: 1px solid var(--color-border-gray);
}
@media (width <= 63.99875rem) {
  .table__data-price {
    padding-inline: 0.3125rem;
  }
}

.contacts-card__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contacts-card__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  column-gap: 1.875rem;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .contacts-card__inner {
    flex-direction: column;
    row-gap: 1.25rem;
  }
}
.contacts-card__item {
  width: 48%;
  padding: 2.5rem 2rem;
  background-color: var(--color-secondary);
  color: var(--color-body-bg);
}
@media (width <= 47.99875rem) {
  .contacts-card__item {
    width: 100%;
    padding: 1.25rem 1rem;
  }
}
.contacts-card__title {
  font-size: clamp(1.375rem, 1.2475490196rem + 0.522875817vw, 1.875rem);
  font-family: var(--font-family-primary);
  font-weight: 600;
}
.contacts-card__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 0.625rem;
}
.contacts-card__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.625rem;
}

.about__advantages-header {
  padding-block: 0.625rem;
}
@media (width <= 47.99875rem) {
  .about__advantages-header {
    line-height: 1;
  }
}
.about__services-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  column-gap: 1.25rem;
}
@media (width <= 47.99875rem) {
  .about__services-wrapper {
    flex-direction: column;
    row-gap: 1.25rem;
  }
}
.about__services-inner {
  width: calc((100% - 1.25rem) / 2);
}
@media (width <= 47.99875rem) {
  .about__services-inner {
    width: 100%;
  }
}
.about__services-header {
  padding-block: 0.625rem;
}
@media (width <= 47.99875rem) {
  .about__services-header {
    line-height: 1;
  }
}
.about__services-list {
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  font-family: var(--font-family-primary);
  font-weight: 600;
  color: var(--color-heading);
}
.about__services-item {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  padding-block: 0.3125rem;
  font-family: var(--font-family-text);
  font-weight: 400;
  color: var(--color-body);
}

@media (width <= 47.99875rem) {
  .privacy__title {
    line-height: 1;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 1.25rem;
}
.privacy__block {
  width: 100%;
}
.privacy__block-text p {
  margin-bottom: 0.75rem;
}

.footer {
  color: var(--color-body-bg);
  background-color: var(--color-secondary);
}
.footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 1rem;
  padding-block: 1rem;
}
@media (width <= 47.99875rem) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
@media (width <= 47.99875rem) {
  .footer__column {
    padding-bottom: 1rem;
  }
}
.footer__column-header {
  font-size: clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem);
  position: relative;
  padding-bottom: 1rem;
  height: auto;
  font-family: var(--font-family-primary);
  font-weight: 700;
  /* &::after {
      position: absolute;
      content: "";
      display: block;
      height: rem(1);
      width: 60%;
      background-color: var(--color-primary);
  } */
}
.footer__column-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.625rem;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.625rem;
}
.footer__info-policy {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
.footer__info-policy p:not(:last-child) {
  margin-bottom: 1em;
}
.footer__policy {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
}
.footer__policy p:last-child {
  margin-bottom: 2em;
}

.cookies {
  display: none;
  max-width: var(--container-narrow-width);
  width: 100%;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-body-bg);
  border: var(--border-gray);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 1.25rem;
  z-index: 100;
  align-items: center;
  column-gap: 0.9375rem;
}
.cookies__text {
  font-size: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
}
@media (width <= 47.99875rem) {
  .cookies__text-desktop {
    display: none;
  }
}
@media (width > 47.99875rem) {
  .cookies__text-mobile {
    display: none;
  }
}
@media (width > 47.99875rem) {
  .cookies__text-link {
    display: none;
  }
}
.cookies__text a {
  font-weight: 500;
  text-decoration: none;
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .cookies__text a:hover {
    color: var(--color-secondary);
  }
}
@media (any-hover: none) {
  .cookies__text a:active {
    color: var(--color-secondary);
  }
}
.cookies__btn {
  padding-inline: 1.25rem;
  height: var(--input-height);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--color-secondary);
  color: var(--color-body-bg);
  border: 1px solid var(--color-secondary);
}
@media (any-hover: hover) {
  .cookies__btn:hover {
    background-color: var(--color-primary);
    border-color: transparent;
  }
}
@media (any-hover: none) {
  .cookies__btn:active {
    background-color: var(--color-primary);
    border-color: transparent;
  }
}

.show {
  display: flex;
}

.header,
.hero,
.advantages,
.section--gray,
.footer {
  /* display: none !important; */
}

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