@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: "Kumbh Sans";
  src: url("../fonts/KumbhSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kumbh Sans";
  src: url("../fonts/KumbhSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Roboto", sans-serif;
  --third-family: "Rubik", sans-serif;
  --font3: "Inter", sans-serif;
  --orange: #ff7428;
  --black: #1e1e1c;
  --typography-black: #3e3c41;
  --typography-white: #fcfcff;
  --blue: #2bacef;
  --swiper-pagination-color: #ff7428;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-navigation-size: 24px !important;
  --swiper-navigation-color: #262626;
  --swiper-navigation-sides-offset: 105px;
}
@media (width <= 63.99875rem) {
  :root {
    --swiper-navigation-sides-offset: 20px;
  }
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !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;
  }
}

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: calc((var(--100vw) - var(--container-width)) / 2);
  height: 0.0625rem;
  background-color: var(--color-dark-15);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

.circle-icon {
  --circleSize: 3.25rem;
  --circleMarginLeft: 1.25rem;
  position: relative;
  min-height: var(--circleSize);
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (width <= 90.06125rem) {
  .circle-icon {
    --circleSize: 2.75rem;
    --circleMarginLeft: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .circle-icon {
    --circleSize: 2.5rem;
  }
}
.circle-icon::after {
  width: var(--circleSize);
  height: var(--circleSize);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  background: url("../../icons/arrow-top-right_black.svg") center no-repeat var(--color-accent);
  border-radius: 50%;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.875rem;
  color: #3e3c41;
  background: #F2F2F2;
}

a:visited {
  color: inherit;
}

p:empty {
  display: none !important;
}

.logo {
  display: grid;
  text-transform: uppercase;
  color: var(--orange) !important;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  justify-items: start;
  max-width: 160px;
}
.logo span {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #000;
}

.telegram {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #2bacef;
  text-decoration: none;
}
.telegram small {
  font-size: 1rem;
}
.telegram:hover {
  color: #2bacef;
  opacity: 0.8;
  transition: opacity 0.5s;
}

.btn {
  font-family: var(--font-family);
  font-weight: 600;
  text-align: center;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn:hover {
  color: var(--orange);
  opacity: 0.8;
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.8;
  transition: opacity 0.5s;
}

.container {
  max-width: 1500px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (width <= 90.06125rem) {
  .container {
    max-width: 90%;
  }
}

.header {
  margin-bottom: 6.25rem;
}
.header__top {
  padding: 20px 0;
  margin-bottom: 4.1875rem;
}
.header__top .container {
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 80rem) {
  .header__top .container {
    max-width: 80%;
  }
}
@media (width <= 63.99875rem) {
  .header__top .container {
    max-width: 90%;
  }
}
@media (width <= 47.99875rem) {
  .header__bottom .container {
    max-width: 100%;
  }
}
.header__bottom .box {
  background: var(--black);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  min-height: 45.625rem;
  display: flex;
  align-items: center;
  padding: 5.3125rem;
}
@media (width <= 63.99875rem) {
  .header__bottom .box {
    align-items: start;
  }
}
@media (width <= 47.99875rem) {
  .header__bottom .box {
    min-height: auto;
    padding: 3.75rem 10px;
    border-radius: 12px;
  }
}
@media (width <= 30.06125rem) {
  .header__bottom .box {
    padding: 3.75rem 1.875rem;
    align-items: start;
  }
}
.header__bottom .box-item {
  width: 50%;
}
@media (width <= 80rem) {
  .header__bottom .box-item {
    width: 60%;
  }
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (width <= 47.99875rem) {
  .header__bottom .box-item {
    align-items: start;
  }
}
.header__bottom .box-item + img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 780px;
  width: 100%;
}
@media (width <= 90.06125rem) {
  .header__bottom .box-item + img {
    right: -20%;
  }
}
@media (width <= 80rem) {
  .header__bottom .box-item + img {
    right: -40%;
  }
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item + img {
    right: 0;
    bottom: -50%;
  }
}
@media (width <= 47.99875rem) {
  .header__bottom .box-item + img {
    bottom: 0;
    max-height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: right;
       object-position: right;
    display: none;
  }
}
@media (width <= 30.06125rem) {
  .header__bottom .box-item + img {
    bottom: -14%;
  }
}
.header__bottom .box-item h1 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 3.125rem;
  line-height: 110%;
  color: #fff;
  margin: 0 0 3.125rem;
}
@media (width <= 90.06125rem) {
  .header__bottom .box-item h1 {
    font-size: 2.5rem;
  }
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item h1 {
    font-size: clamp(1.5rem, 1.1776859504rem + 1.3223140496vw, 2.5rem);
  }
}
@media (width <= 47.99875rem) {
  .header__bottom .box-item h1 {
    text-align: left;
    margin-bottom: 1.5625rem;
  }
}
.header__bottom .box-item p {
  font-weight: 500;
  font-size: 1.25rem;
  color: #FFF;
}
@media (width <= 90.06125rem) {
  .header__bottom .box-item p {
    font-size: 1rem;
  }
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item p {
    font-size: clamp(0.875rem, 0.8347107438rem + 0.1652892562vw, 1rem);
  }
}
@media (width <= 47.99875rem) {
  .header__bottom .box-item p {
    text-align: left;
  }
  .header__bottom .box-item p br {
    display: none;
  }
}

.give_you {
  margin-bottom: 4.5rem;
}
.give_you .container {
  max-width: 1389px;
}
@media (width <= 80rem) {
  .give_you .container {
    max-width: 80%;
  }
}
@media (width <= 63.99875rem) {
  .give_you .container {
    max-width: 90%;
  }
}
.give_you .box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.1875rem;
}
@media (width <= 80rem) {
  .give_you .box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 63.99875rem) {
  .give_you .box {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.give_you .box h2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 50px;
  line-height: 110%;
  color: #3e3c41;
  margin: 0;
}
@media (width <= 63.99875rem) {
  .give_you .box h2 {
    font-size: clamp(1.6875rem, 1.4256198347rem + 1.0743801653vw, 2.5rem);
  }
}
@media (width <= 47.99875rem) {
  .give_you .box h2 {
    text-align: center;
  }
}
.give_you .box-item {
  border-radius: 30px;
  padding: 1.25rem 2.5rem;
}
.give_you .box-item:first-child {
  padding-top: 0;
}
@media (width <= 80rem) {
  .give_you .box-item:first-child {
    grid-column: 1/-1;
  }
}
.give_you .box-item:nth-child(2) {
  color: #FFF;
}
.give_you .box-item:nth-child(2) .title {
  color: #fcfcff;
}
.give_you .box-item .title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  display: table;
  margin-bottom: 40px;
}
.give_you .box-item p {
  margin-bottom: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
}
.give_you .box-item ul {
  padding: 0 0 0 1.5625rem;
  display: grid;
  gap: 0.625rem;
  margin: 0;
}
.give_you .box-item:last-child {
  background: #FFF;
}
.give_you .exsperts {
  background: var(--black);
  border-radius: 1.875rem;
  color: #FFF;
  padding: 2.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}
@media (width <= 90.06125rem) {
  .give_you .exsperts * {
    position: relative;
    z-index: 2;
  }
  .give_you .exsperts img {
    z-index: 1;
  }
}
.give_you .exsperts h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.875rem;
  margin: 0 0 16px;
  color: #fcfcff;
}
.give_you .exsperts ul {
  -moz-columns: 2;
       columns: 2;
  max-width: 885px;
  margin: 0;
}
@media (width <= 63.99875rem) {
  .give_you .exsperts ul {
    -moz-columns: unset;
         columns: unset;
    display: grid;
    gap: 15px;
  }
}
.give_you .exsperts .bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.orange {
  background: var(--orange);
}

h2.with-arrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 118%;
  color: #262626;
  margin-bottom: 50px;
}
h2.with-arrow::before {
  content: "";
  width: 94px;
  height: 15px;
  background: url(../img/aroow-right.svg) center center no-repeat;
}

.about_us {
  margin-bottom: 176px;
}
.about_us .container {
  max-width: 1290px;
}
@media (width <= 80rem) {
  .about_us .container {
    max-width: 90%;
  }
}
.about_us .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.125rem 0rem;
}
@media (width <= 90.06125rem) {
  .about_us .box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .about_us .box {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.about_us .box-item {
  width: 33.3%;
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (width <= 90.06125rem) {
  .about_us .box-item {
    width: auto;
  }
}
@media (width <= 63.99875rem) {
  .about_us .box-item {
    display: grid;
    grid-template-columns: 110px 40px 150px;
  }
}
.about_us .box-item:nth-child(4) {
  margin-right: 50px;
}
@media (width <= 63.99875rem) {
  .about_us .box-item:nth-child(4) {
    margin-right: unset;
  }
}
.about_us .box-item .number {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(3.75rem, 3.0247933884rem + 2.9752066116vw, 6rem);
  line-height: 139%;
  text-align: center;
  color: #fe5a01;
}
.about_us .box-item .plus {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(3.75rem, 3.0247933884rem + 2.9752066116vw, 6rem);
  line-height: 139%;
  text-align: center;
  color: #fe5a01;
}
.about_us .box-item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 144%;
  color: #262626;
}

.btn-bg {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: var(--orange);
  text-decoration: none;
  border-radius: 4px;
  width: 221px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.slider-case {
  margin-bottom: 113px;
}
.slider-case .container {
  max-width: 1494px;
  border-radius: 40px;
  position: relative;
  background: #FFF;
  padding: 37px 105px;
}
@media (width <= 80rem) {
  .slider-case .container {
    max-width: 90%;
    padding: 37px 50px;
  }
}
@media (width <= 47.99875rem) {
  .slider-case .container {
    padding: 37px 30px;
  }
}
.slider-case h2 {
  margin: 0;
}
.slider-case .subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #fe5a01;
  margin-left: 6.875rem;
}
.slider-case .title_container {
  position: relative;
  top: 25px;
}
@media (width <= 63.99875rem) {
  .slider-case .title_container {
    top: unset;
  }
  .slider-case .title_container .subtitle {
    margin-left: unset;
    text-align: center;
    display: table;
    margin: 0 auto 20px;
  }
  .slider-case .title_container h2 {
    flex-direction: column;
  }
}
.slider-case .slider {
  overflow: hidden;
}
.slider-case .slider .swiper-slide {
  height: 621px;
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide {
    height: auto;
  }
}
.slider-case .slider .swiper-slide h2 {
  margin: 0;
}
@media (width <= 80rem) {
  .slider-case .slider .swiper-slide h2 {
    font-size: clamp(1.5rem, 1.2582644628rem + 0.9917355372vw, 2.25rem);
  }
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide h2 {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.slider-case .slider .swiper-slide .box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.125rem;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide .box {
    grid-template-columns: 1fr;
  }
}
.slider-case .slider .swiper-slide .box-item .btn-bg {
  margin-left: auto;
  margin-right: 17%;
  margin-top: 50px;
  color: #FFF;
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide .box-item .btn-bg {
    margin: 50px auto 0;
  }
}
.slider-case .slider .swiper-slide .box-item:first-child img {
  margin-left: auto;
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.25);
}
.slider-case .slider .swiper-slide .box-item:nth-child(2) img {
  margin: 60px auto;
  max-height: 468px;
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide .box-item:nth-child(2) img {
    margin: 30px auto;
  }
}
.slider-case .slider .swiper-slide .subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: var(--orange);
  display: table;
  margin-bottom: 70px;
}
@media (width <= 80rem) {
  .slider-case .slider .swiper-slide .subtitle {
    font-size: clamp(0.875rem, 0.7541322314rem + 0.4958677686vw, 1.25rem);
  }
}
.slider-case .swiper-pagination {
  position: relative;
}
.slider-case .swiper-button-next {
  background: #FFF;
  border-radius: 4px;
  width: 64px;
  height: 65px;
  box-shadow: 0 15px 30px -8px rgba(160, 158, 158, 0.25);
}
.slider-case .swiper-button-prev {
  background: #FFF;
  border-radius: 4px;
  width: 64px;
  height: 65px;
  box-shadow: 0 15px 30px -8px rgba(160, 158, 158, 0.25);
}
.slider-case .box-item-ditails {
  background: #FFF;
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.25);
  max-width: 441px;
  width: 100%;
  display: table;
  margin-left: auto;
}
@media (width <= 63.99875rem) {
  .slider-case .box-item-ditails {
    margin: 0 auto;
  }
}
@media (width <= 47.99875rem) {
  .slider-case .box-item-ditails {
    margin: 10px;
  }
}
.slider-case .box-item-ditails .dit-item {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-case .box-item-ditails .dit-item:nth-child(even) {
  background: #fafafa;
}

.feedback {
  margin-bottom: 175px;
}
.feedback .container {
  max-width: 1070px;
}
@media (width <= 63.99875rem) {
  .feedback .container {
    max-width: 90%;
  }
}
.feedback .container .box {
  background: var(--black);
  border-radius: 40px;
  height: 401px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.feedback .container .box * {
  position: relative;
  z-index: 2;
}
.feedback .container .box .bg {
  position: absolute !important;
  right: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  position: relative;
  z-index: 1;
}
@media (width <= 47.99875rem) {
  .feedback .container .box .bg {
    opacity: 0.5;
  }
}
.feedback .container .box h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 50px;
  text-align: center;
  color: #fff;
  margin: 0;
  margin-bottom: 30px;
}
@media (width <= 63.99875rem) {
  .feedback .container .box h2 {
    font-size: clamp(1.5rem, 0.9762396694rem + 2.1487603306vw, 3.125rem);
  }
}
.feedback .container .box .feedback__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (width <= 47.99875rem) {
  .feedback .container .box .feedback__nav {
    display: grid;
    justify-items: center;
  }
}
.feedback .container .box .feedback__nav .telegram {
  color: #FFF;
}

.footer {
  padding-bottom: 110px;
}
.footer .container {
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 63.99875rem) {
  .footer .container {
    max-width: 90%;
  }
}

.modal {
  background: #F2F2F2;
  border-radius: 30px;
  width: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 22;
  padding: 0 100px;
  opacity: 0;
  visibility: hidden;
}
.modal.active {
  opacity: 1;
  width: 560px;
  height: 461px;
  visibility: visible;
  transition: opacity 0.2s ease;
}
@media (width <= 47.99875rem) {
  .modal.active {
    width: 95%;
    padding: 0 50px;
    height: 90vh;
    border-radius: 10px;
  }
}
.modal a.close {
  position: absolute;
  top: 40px;
  right: 40px;
}
.modal a.close svg path {
  stroke: #1e1e1c;
}
.modal h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 110%;
  text-align: center;
  color: #1e1e1c;
}
.modal form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
}
.modal form input {
  padding: 12px;
  line-height: 1;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  color: #1e1e1c;
  border: 0.5px solid #1e1e1c;
  border-radius: 8px;
}
.modal form button {
  background: transparent;
  border: unset;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #ff7428 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 0%;
  height: 0%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}
.overlay.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}/*# sourceMappingURL=main.css.map */