@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: "Rubik", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Times New Roman", serif;
  --orange: #ff7428;
  --black: #1e1e1c;
  --typography-black: #3e3c41;
  --typography-white: #fcfcff;
  --blue: #5147ca;
  --swiper-pagination-color: #ff7428;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-navigation-size: 24px;
  --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: 1rem;
  color: #3e3c41;
}

.logo {
  display: grid;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  justify-items: start;
  width: clamp(9.375rem, 7.4411157025rem + 7.9338842975vw, 15.375rem);
}
.logo img {
  width: 100%;
}
.logo span {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #000;
}

.btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 14px 16px;
  box-shadow: 0 24px 20px -20px #262626;
  background: #5147ca;
  border-radius: 4px;
  text-decoration: none;
}

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

h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.18;
}
h1 strong {
  color: var(--orange);
  font-weight: 700;
}

a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #262626;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

* {
  box-sizing: border-box;
  outline: none;
}

.header__top {
  position: relative;
  background: #FFF;
  padding: 0.8125rem 0;
}
.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top .navigation-area {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header__top .navigation-area ul {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (width <= 63.99875rem) {
  .header__top .navigation-area ul {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    position: absolute;
  }
}
.header__top .navigation-area ul.active {
  position: unset;
  display: flex;
  position: absolute;
  height: calc(100vh - 68px);
  top: 100%;
  background: #FFF;
  width: 100%;
  visibility: visible;
  left: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.header__top .navigation-area ul.active li a {
  font-size: 2.5rem;
}
.header__top .navigation-area ul li {
  list-style: none;
}
.header__top .mobile__menu {
  width: 30px;
  display: grid;
  gap: 5px;
}
@media (width > 63.99875rem) {
  .header__top .mobile__menu {
    display: none;
  }
}
.header__top .mobile__menu span {
  display: table;
  width: 100%;
  height: 3px;
  background: #848484;
}
.header__top .mobile__menu.active {
  min-width: 30px;
  position: relative;
}
.header__top .mobile__menu.active span:nth-child(2) {
  display: none;
}
.header__top .mobile__menu.active span:first-child {
  rotate: -45deg;
  position: absolute;
  transition: 0.2s ease;
}
.header__top .mobile__menu.active span:last-child {
  rotate: 45deg;
  position: absolute;
  transition: 0.2s ease;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.header__contact .phone {
  display: block;
  flex-shrink: 0;
}
.header__contact .phone img {
  width: 25px;
}
@media (width > 47.99875rem) {
  .header__contact .phone img {
    display: none;
  }
}
@media (width <= 47.99875rem) {
  .header__contact .phone {
    font-size: 0;
  }
}
@media (width <= 30.06125rem) {
  .header__contact .social {
    display: none;
  }
}
.header__bottom {
  background: url(../img/header_bg_section.jpg) center right no-repeat;
  background-size: cover;
  padding: 60px 0 200px;
}
.header__bottom .box {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: center;
}
@media (width <= 80rem) {
  .header__bottom .box {
    grid-template-columns: 50% 1fr;
  }
}
@media (width <= 63.99875rem) {
  .header__bottom .box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 30px;
  }
}
.header__bottom .box-item:first-child {
  display: grid;
  gap: 35px;
}
.header__bottom .box-item:first-child h1 {
  margin: 0;
}
.header__bottom .box-item:first-child p {
  margin: 0;
}
.header__bottom .box img {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (width <= 63.99875rem) {
  .header__bottom .box img {
    height: 400px;
  }
}
@media (width <= 30.06125rem) {
  .header__bottom .box img {
    width: 100%;
    height: auto;
  }
}
.header__bottom .box p strong {
  color: var(--orange);
}
.header__bottom-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (width <= 30.06125rem) {
  .header__bottom-nav {
    flex-direction: column;
  }
}

.advantages .box {
  margin-top: -160px;
  margin-bottom: 60px;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (width <= 63.99875rem) {
  .advantages .box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .advantages .box {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
.advantages .box-item {
  padding: 25px 0;
  background: #FFF;
  display: grid;
  justify-items: center;
  text-align: center;
  grid-template-columns: 1fr;
  box-shadow: 0 15px 30px -8px rgba(62, 62, 62, 0.25);
  gap: 1.5625rem;
}
.advantages .box-item * {
  margin: 0;
}
@media (width <= 47.99875rem) {
  .advantages .box-item {
    max-width: 80%;
    margin: 0 auto;
    width: 100%;
  }
}
@media (width <= 30.06125rem) {
  .advantages .box-item {
    max-width: 95%;
    margin: 0 auto;
    width: 100%;
  }
}

.social {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.social a img {
  min-width: 25px;
}

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;
}
@media (width <= 47.99875rem) {
  h2.with-arrow {
    flex-direction: column;
    align-items: start;
  }
}

.about_us {
  margin-bottom: 70px;
}
.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 <= 80rem) {
  .about_us .box {
    gap: 1.875rem 1.25rem;
  }
}
@media (width <= 63.99875rem) {
  .about_us .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .about_us .box {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
.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 <= 80rem) {
  .about_us .box-item {
    gap: 20px;
  }
}
@media (width <= 63.99875rem) {
  .about_us .box-item {
    display: grid;
    justify-content: center;
    grid-template-columns: 80px 40px 1fr;
  }
}
@media (width <= 47.99875rem) {
  .about_us .box-item {
    grid-template-columns: 150px 40px 1fr;
  }
}
@media (width <= 30.06125rem) {
  .about_us .box-item {
    grid-template-columns: 100px 40px 1fr;
    align-items: center;
  }
}
.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:last-child {
  width: 41%;
}
@media (width <= 63.99875rem) {
  .about_us .box-item:last-child {
    width: 100%;
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
  }
}
@media (width <= 47.99875rem) {
  .about_us .box-item:last-child {
    width: 100%;
    display: grid;
  }
}
.about_us .box-item .number {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.39;
  text-align: center;
  color: #ff803d;
  font-size: clamp(3.75rem, 3.0247933884rem + 2.9752066116vw, 6rem);
}
@media (width <= 80rem) {
  .about_us .box-item .number {
    font-size: clamp(3.75rem, 3.8305785124rem + -0.3305785124vw, 3.5rem);
  }
}
@media (width <= 30.06125rem) {
  .about_us .box-item .number {
    font-size: 2.875rem;
  }
}
.about_us .box-item .plus {
  font-size: clamp(3.75rem, 3.0247933884rem + 2.9752066116vw, 6rem);
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.39;
  text-align: center;
  color: #ff803d;
}
@media (width <= 80rem) {
  .about_us .box-item .plus {
    font-size: clamp(3.75rem, 3.8305785124rem + -0.3305785124vw, 3.5rem);
  }
}
@media (width <= 30.06125rem) {
  .about_us .box-item .plus {
    font-size: 2.875rem;
  }
}
.about_us .box-item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 144%;
  color: #262626;
}

.slider-case {
  background: #f9f9f9;
}
.slider-case .container {
  max-width: 1494px;
  border-radius: 40px;
  position: relative;
  padding: 37px 105px;
}
@media (width <= 80rem) {
  .slider-case .container {
    max-width: 90%;
    padding: 37px 50px;
  }
}
.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;
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide .box {
    grid-template-columns: 1fr;
  }
}
.slider-case .slider .swiper-slide .box-item {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 3.125rem;
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide .box-item {
    align-items: center;
  }
}
.slider-case .slider .swiper-slide .box-item .btn {
  margin-right: 18%;
}
@media (width <= 63.99875rem) {
  .slider-case .slider .swiper-slide .box-item .btn {
    margin-right: unset;
  }
}
.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;
}
.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 .slider .swiper-slide .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 .slider .swiper-slide .box-item-ditails {
    margin-left: unset;
  }
}
.slider-case .slider .swiper-slide .box-item-ditails .dit-item {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-case .slider .swiper-slide .box-item-ditails .dit-item:nth-child(even) {
  background: #fafafa;
}
.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);
}

.sevices {
  background: #f9f9f9;
  padding: 3.75rem 0;
}
.sevices .box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
@media (width <= 63.99875rem) {
  .sevices .box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .sevices .box {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.sevices .box-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.8999;
}
.sevices .box-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.sevices .box-item .content {
  background: rgba(38, 38, 38, 0.39);
  padding: 25px;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.sevices .box-item .content .title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1;
  color: #fff;
  display: table;
  margin-bottom: 15px;
}
@media (width <= 47.99875rem) {
  .sevices .box-item .content .title {
    font-size: 1.6875rem;
  }
}
@media (width <= 30.06125rem) {
  .sevices .box-item .content .title {
    font-size: 1.125rem;
  }
}
.sevices .box-item .content small {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}
@media (width <= 47.99875rem) {
  .sevices .box-item .content small {
    font-size: 1.3125rem;
  }
}
@media (width <= 30.06125rem) {
  .sevices .box-item .content small {
    font-size: 1rem;
  }
}
.sevices .banner {
  background: linear-gradient(205deg, rgba(255, 128, 61, 0.15) 37.74%, rgba(255, 128, 61, 0.86) 76.86%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
}
@media (width <= 63.99875rem) {
  .sevices .banner {
    background: linear-gradient(359deg, rgba(255, 128, 61, 0.15) 17.74%, rgba(255, 128, 61, 0.86) 76.86%);
    flex-direction: column;
    gap: 40px;
    text-align: center;
    border-radius: 4px;
  }
}
.sevices .banner * {
  margin: 0;
}
.sevices .banner h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.42;
  color: #fff;
}
.sevices .banner p {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.how-services {
  padding: 3.75rem 0;
}
.how-services h2 {
  margin-bottom: 60px;
}
.how-services .box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.625rem, -0.180785124rem + 3.305785124vw, 3.125rem);
}
@media (width <= 63.99875rem) {
  .how-services .box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .how-services .box {
    grid-template-columns: 1fr;
  }
}
.how-services .box-item {
  box-shadow: 0 15px 30px -8px rgba(62, 62, 62, 0.2);
  background: #fff;
  padding: 25px;
  display: grid;
  gap: 0.875rem;
}
.how-services .box-item p {
  line-height: 1.7;
}

.callback {
  padding: 60px;
  background: url(../img/callback.jpg) center center no-repeat;
  background-size: cover;
}
.callback .container {
  display: grid;
  gap: 1.5625rem;
}
.callback .container * {
  margin: 0;
}
@media (width <= 47.99875rem) {
  .callback .container {
    justify-items: center;
    text-align: center;
  }
}
.callback h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.18;
  color: #fff;
}
@media (width <= 47.99875rem) {
  .callback h2 {
    font-size: 1.6875rem;
  }
}
@media (width <= 30.06125rem) {
  .callback h2 {
    font-size: 1.5rem;
  }
}
.callback p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}
.callback .btn {
  width: 212px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality {
  padding: 3.75rem 0;
}
.quality .box {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 63.99875rem) {
  .quality .box {
    grid-template-columns: 1fr;
  }
}
.quality .box-item {
  padding: 2.1875rem;
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.25);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  justify-items: start;
}
.quality .box-item * {
  margin: 0;
}
.quality .box-item h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 36px;
  line-height: 121%;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width <= 80rem) {
  .quality .box-item h2 {
    font-size: 1.6875rem;
  }
}
@media (width <= 47.99875rem) {
  .quality .box-item h2 {
    position: relative;
  }
}
.quality .box-item h2 strong {
  color: var(--orange);
}
.quality .box-item h2::after {
  content: attr(data-label);
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  background: var(--orange);
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
}
@media (width <= 47.99875rem) {
  .quality .box-item h2::after {
    position: absolute;
    left: 0;
    bottom: 100%;
  }
}
.quality .box-item .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  height: 247px;
}
@media (width <= 30.06125rem) {
  .quality .box-item .content {
    height: unset;
  }
}
.quality .box-item .content-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 51px;
}
@media (width <= 30.06125rem) {
  .quality .box-item .content-item {
    flex-direction: column;
    min-height: unset;
    align-items: start;
  }
}

.securety {
  padding: 3.75rem 0;
}
.securety .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .securety .box {
    display: flex;
    flex-direction: column-reverse;
  }
}
.securety .box p {
  line-height: 1.6;
}
@media (width <= 30.06125rem) {
  .securety .box img {
    width: 100%;
    margin-bottom: -10%;
  }
}

.support {
  padding: 3.75rem 0;
  background: #FAFAFA;
}
.support .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  justify-items: center;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .support .box {
    grid-template-columns: 1fr;
  }
  .support .box img {
    margin-bottom: -10%;
  }
}
.support .box h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.19;
  text-align: center;
  color: #262626;
}
.support .box p {
  text-align: center;
}
.support .box-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.support .box-item * {
  margin: 0;
}

.faq {
  padding: 3.75rem 0;
}
.faq .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 6.25rem;
}
@media (width <= 80rem) {
  .faq .box {
    gap: 0 3.125rem;
  }
}
@media (width <= 63.99875rem) {
  .faq .box {
    grid-template-columns: 1fr;
  }
}
.faq .accordion {
  border-bottom: 1px solid #ff803d;
}
.faq .accordion__summary {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  padding: 1.5625rem 0;
  color: #262626;
  position: relative;
  padding-right: 24px;
}
@media (width <= 80rem) {
  .faq .accordion__summary {
    font-size: 1rem;
  }
}
.faq .accordion__summary::after {
  content: "";
  width: 24px;
  height: 29px;
  background: url(../img/plus.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq .accordion__summary::marker {
  display: none;
  font-size: 0;
}
.faq .accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
}
.faq .accordion__content-body {
  overflow: hidden;
}
.faq .accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
  padding-bottom: 10px;
}
@media (width <= 63.99875rem) {
  .faq .accordion__details[open] + .accordion__content {
    padding-right: 24px;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}

.footer {
  background: #262626;
  padding: 2.5rem 0;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }
}
.footer__top .contact {
  display: grid;
  gap: 1.125rem;
}
.footer__top .contact .title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.39;
  color: #fff;
}
.footer__top .contact a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
}
@media (width <= 47.99875rem) {
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.footer__bottom ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 1.875rem;
}
@media (width <= 47.99875rem) {
  .footer__bottom ul {
    display: none;
  }
}
.footer__bottom ul li {
  list-style: none;
}
.footer__bottom ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.footer__bottom .social {
  margin-right: 25px;
}
@media (width <= 47.99875rem) {
  .footer__bottom .social {
    margin-right: unset;
  }
}

form {
  display: grid;
  gap: 0.9375rem;
  align-items: center;
  justify-items: start;
}
form div.iti {
  width: 100%;
}
form input,
form select,
form textarea {
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  width: 100%;
  line-height: 1;
  padding: 1.375rem 1.875rem;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
@media (width <= 30.06125rem) {
  form input,
  form select,
  form textarea {
    padding: 0.75rem 0.9375rem;
  }
}
form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.8125rem 1.875rem;
}
form textarea {
  resize: none;
  min-height: 100px;
}
form button,
form input[type=submit] {
  border: 0;
  min-height: unset;
  max-height: unset;
}

.modal {
  position: fixed;
  background: #fafafa;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  padding: 0px;
  z-index: 23;
  visibility: hidden;
  opacity: 0;
}
.modal.active {
  visibility: visible;
  opacity: 1;
  width: 838px;
  height: auto;
  padding: 20px;
  border: 10px solid var(--orange);
  transition: opacity 0.2s ease;
}
@media (width <= 63.99875rem) {
  .modal.active {
    width: 95%;
  }
}
@media (width <= 30.06125rem) {
  .modal.active {
    padding-top: 60px;
  }
}
.modal h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 119%;
  text-align: center;
  color: #262626;
  margin: 0 0 16px;
}
.modal p {
  text-align: center;
}
.modal a.close {
  position: absolute;
  right: 16px;
  top: 20px;
}
.modal a.close img {
  rotate: 45deg;
}
.modal .btn {
  margin-top: 15px;
}

.overlay {
  width: 0%;
  height: 0%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 22;
}
.overlay.active {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=main.css.map */