@charset "UTF-8";
:root {
  --white: #fff;
  --black: #181818;
  --orange: #ff680b;
  --gray: #f3f3f3;
  --gray-dark: #8a8a8a;
  --font-family: "Raleway", sans-serif;
  --second-family: "Playfair Display", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: var(--white);
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
  color: var(--black);
}

body.menu-open {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

strong {
  font-weight: 700;
}

.title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(30px, 4.667vw, 40px);
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
}

.sw-nav {
  margin-top: clamp(30px, 4.667vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(30px, 4.667vw, 40px);
}

.slbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  background-color: var(--white);
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  cursor: pointer;
}
.slbtn svg path {
  fill: var(--black);
}
.slbtn svg {
  width: clamp(8px, 1.2vw, 10px);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  width: auto !important;
}
.pagination .swiper-pagination-bullet {
  width: clamp(8px, 1.2vw, 10px);
  height: clamp(8px, 1.2vw, 10px);
  opacity: 1 !important;
  background-color: var(--white);
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.pagination .swiper-pagination-bullet-active {
  background-color: var(--black);
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  cursor: pointer;
  border: none;
  gap: 12px;
  background: var(--orange);
  border-radius: 4px;
  padding: clamp(12px, 1.867vw, 16px) clamp(12px, 2.4vw, 24px);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
}
.btn:hover {
  background-color: #f25f03;
}
.btn.btn-light {
  background-color: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.btn.btn-light:hover {
  background-color: #f25f03;
  color: #fff;
}

.section {
  padding: clamp(60px, 10.667vw, 100px) 0px;
}

.stick-tel-box {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 30;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  display: none;
}
.stick-tel-box .stick-tel {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}
.stick-tel-box.show {
  bottom: 0;
}
@media (max-width: 768px) {
  .stick-tel-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header {
  background-color: #000;
  padding: 12px 0;
  position: relative;
  z-index: 5;
}
.header.headerV1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .hlogo {
  position: relative;
  z-index: 12;
}
.header .hlogo img {
  width: 100%;
  max-width: 110px;
}
.header .h-nav {
  position: relative;
  z-index: 10;
}
.header .h-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.header .h-nav ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
}
.header .h-nav .h-tel {
  display: none;
}
@media (max-width: 992px) {
  .header .h-nav .h-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 992px) {
  .header .h-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.header .h-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 10px 16px;
  background-color: #000;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .h-tel svg path {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .h-tel:hover {
  color: #000;
  background-color: var(--orange);
}
.header .h-tel:hover svg path {
  fill: #000;
}
.header .burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  background-color: #000;
  position: relative;
  z-index: 12;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .burger-btn::before, .header .burger-btn::after,
.header .burger-btn span {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: var(--orange);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .burger-btn::before {
  top: 13px;
}
.header .burger-btn span {
  top: 21px;
}
.header .burger-btn::after {
  top: 29px;
}
.header .burger-btn.is-active::before {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.header .burger-btn.is-active span {
  opacity: 0;
}
.header .burger-btn.is-active::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 1200px) {
  .header .h-nav ul {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .header .container {
    position: relative;
  }
  .header .h-tel {
    display: none;
  }
  .header .burger-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .h-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
  }
  .header .h-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .header.is-open .h-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.3s ease, visibility 0s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s, -webkit-transform 0.3s ease;
  }
}
@media (max-width: 768px) {
  .header .hlogo img {
    max-width: 92px;
  }
  .header .burger-btn {
    width: 38px;
    height: 38px;
  }
  .header .burger-btn::before {
    top: 11px;
  }
  .header .burger-btn span {
    top: 18px;
  }
  .header .burger-btn::after {
    top: 25px;
  }
  .header .burger-btn.is-active::before {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  .header .burger-btn.is-active::after {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
}

.hero {
  height: 738px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/hero.webp);
}
@media (max-width: 768px) {
  .hero {
    height: 600px;
  }
}
.hero .hero-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 223px;
  position: relative;
}
.hero .hero-wrap::after {
  position: absolute;
  content: "";
  min-width: 1100px;
  max-width: 1100px;
  height: 700px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/shadow.png);
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 576px) {
  .hero .hero-wrap {
    padding-top: 150px;
  }
}
.hero h1 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(35px, 6vw, 55px);
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
}
.hero p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 140%;
  text-align: center;
  color: var(--white);
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.hero .hero-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.adv {
  background: var(--black);
  padding: 32px 0px;
}
.adv .adv-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
}
.adv .adv-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.adv .adv-item__content h6 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.adv .adv-item__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 992px) {
  .adv {
    padding: 24px 0px;
  }
  .adv .adv-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  .adv .adv-item {
    gap: 16px;
  }
  .adv .adv-item img {
    width: 32px;
  }
  .adv .adv-item__content h6 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .adv .adv-item__content p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .adv .adv-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.howwork {
  background: var(--gray);
}
.howwork .title {
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.howwork__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .howwork__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .howwork__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.howwork .howwork-item {
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}
.howwork .howwork-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.howwork .howwork-item__num {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(30px, 4.667vw, 40px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--black);
}
.howwork .howwork-item__content {
  margin-top: clamp(30px, 4.667vw, 40px);
}
.howwork .howwork-item__content h5 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(18px, 2.667vw, 22px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.howwork .howwork-item__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
@media (max-width: 768px) {
  .howwork .howwork-item img {
    width: 50px;
  }
}

.services {
  padding-bottom: 0;
}
.services .title {
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.services .services-block:nth-child(2) {
  padding-bottom: 0;
}
.services .service-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .services .service-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services .service-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.services .service-btnplace {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.services .service-list-V2 {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: none;
}
@media (max-width: 992px) {
  .services .service-list-V2 {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .services .service-list-V2 {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.services .service-item {
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  position: relative;
  isolation: isolate;
}
.services .service-item::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(70%, rgba(0, 0, 0, 0)));
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.services .service-item::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000;
  opacity: 0;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.services .service-item__image {
  position: absolute;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.services .service-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
.services .service-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 24px;
  position: relative;
  z-index: 2;
}
.services .service-item__name {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 26px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}
.services .service-item__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: max-height 0.6s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.6s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: max-height 0.6s ease, opacity 0.4s ease, transform 0.4s ease;
  transition: max-height 0.6s ease, opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.services .service-item:hover::before {
  opacity: 0;
}
.services .service-item:hover::after {
  opacity: 0.6;
}
.services .service-item:hover .service-item__descr {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  max-height: 200px;
}
@media (max-width: 768px) {
  .services .service-item::before {
    opacity: 0;
  }
  .services .service-item::after {
    opacity: 0.6;
  }
  .services .service-item .service-item__descr {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    max-height: 200px;
  }
}

.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .about .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__main {
  background: var(--gray);
  border-radius: 8px;
  padding: clamp(24px, 4.267vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 50%;
}
.about__main div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-top: clamp(30px, 4.667vw, 40px);
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.about__main div p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
@media (max-width: 992px) {
  .about__main {
    width: 100%;
  }
}
.about__media {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.about__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
@media (max-width: 992px) {
  .about__media {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 768px) {
  .about__media {
    height: 300px;
  }
}

.why {
  background: var(--black);
}
.why .title {
  color: #fff;
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.why .why-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .why .why-list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.why .why-item {
  background: rgba(255, 255, 255, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 24px;
  gap: clamp(30px, 4.667vw, 40px);
}
.why .why-item p {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(18px, 2.667vw, 22px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--white);
}
@media (max-width: 768px) {
  .why .why-item img {
    width: 45px;
  }
}

.featured-prj__pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  text-align: center;
  color: var(--black);
}
.featured-prj .featuredSlider {
  margin-top: clamp(30px, 4.667vw, 40px);
}
.featured-prj .featured-prj-item {
  border-radius: 8px;
  overflow: hidden;
}
.featured-prj .comparison-wrp {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.featured-prj .comparison-wrp .comparison-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  -ms-touch-action: none;
      touch-action: none;
}
.featured-prj .comparison-wrp .comparison-container::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@supports (aspect-ratio: 1/1) {
  .featured-prj .comparison-wrp .comparison-container {
    aspect-ratio: 1/1;
  }
  .featured-prj .comparison-wrp .comparison-container::before {
    display: none;
  }
}
.featured-prj .comparison-wrp .image-wrapper {
  position: absolute;
  inset: 0;
}
.featured-prj .comparison-wrp .image-before,
.featured-prj .comparison-wrp .image-after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.featured-prj .comparison-wrp .image-before img,
.featured-prj .comparison-wrp .image-after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.featured-prj .comparison-wrp .slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: white;
  z-index: 3;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.featured-prj .comparison-wrp .slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--white);
  border-radius: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: ew-resize;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .featured-prj .comparison-wrp .slider-button {
    width: 56px;
    height: 56px;
    gap: 8px;
  }
}
.featured-prj .comparison-wrp .slider-button::before,
.featured-prj .comparison-wrp .slider-button::after {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .featured-prj .comparison-wrp .slider-button::before,
  .featured-prj .comparison-wrp .slider-button::after {
    width: 14px;
    height: 14px;
  }
}
.featured-prj .comparison-wrp .slider-button::before {
  background-image: url(../img/icons/ll.svg);
}
.featured-prj .comparison-wrp .slider-button::after {
  background-image: url(../img/icons/rr.svg);
}
.featured-prj__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(30px, 4.667vw, 40px);
  margin-top: clamp(30px, 4.667vw, 40px);
}
.featured-prj .slbtn {
  background-color: var(--gray);
}
.featured-prj .pagination .swiper-pagination-bullet {
  background-color: var(--gray);
}
.featured-prj .pagination .swiper-pagination-bullet-active {
  background-color: var(--black);
}

.cta-block {
  padding: clamp(60px, 9.333vw, 80px) 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/ctabg.webp);
}
.cta-block:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
}
.cta-block .title {
  text-align: center;
  color: white;
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.cta-block .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

.payment {
  background: var(--gray);
}
.payment p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  text-align: center;
  color: var(--black);
  margin-top: 16px;
}
.payment .payment-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(30px, 4.667vw, 40px);
  gap: 20px clamp(40px, 6.667vw, 60px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.payment .payment-item img {
  width: 100%;
}
.payment .payment-item:nth-child(1) img {
  max-width: 77px;
}
.payment .payment-item:nth-child(2) img {
  max-width: 50px;
}
.payment .payment-item:nth-child(3) img {
  max-width: 109px;
}
.payment .payment-item:nth-child(4) img {
  max-width: 114px;
}
.payment .payment-item:nth-child(5) img {
  max-width: 70px;
}
.payment .payment-item:nth-child(6) img {
  max-width: 73px;
}
.payment .payment-item:nth-child(7) img {
  max-width: 63px;
}
@media (max-width: 768px) {
  .payment .payment-item:nth-child(1) img {
    max-width: 60px;
  }
  .payment .payment-item:nth-child(2) img {
    max-width: 40px;
  }
  .payment .payment-item:nth-child(3) img {
    max-width: 99px;
  }
  .payment .payment-item:nth-child(4) img {
    max-width: 104px;
  }
  .payment .payment-item:nth-child(5) img {
    max-width: 60px;
  }
  .payment .payment-item:nth-child(6) img {
    max-width: 63px;
  }
  .payment .payment-item:nth-child(7) img {
    max-width: 53px;
  }
}

.service-area__block {
  margin-top: clamp(30px, 4.667vw, 40px);
  gap: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1200px) {
  .service-area__block {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .service-area__block {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .service-area__block {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-area__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.service-area .service-area-item__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--black);
  cursor: pointer;
}
@media (max-width: 768px) {
  .service-area .service-area-item__main {
    font-size: 18px;
  }
}
.service-area .service-area-item__main::before {
  content: "";
  position: relative;
  display: block;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/icons/mp.svg);
}
@media (max-width: 768px) {
  .service-area .service-area-item__main::before {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
  }
}
.service-area .service-area-item__main:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  width: 12px;
  height: 12px;
  position: relative;
  background-image: url(../img/icons/arrrrr.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.service-area .service-area-item__main.active::after {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.service-area .service-area-item__list {
  padding-left: 40px;
  display: -ms-grid;
  display: grid;
  gap: 8px;
  padding-top: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
  display: none;
}
.service-area__forma {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(40px, 8vw, 80px);
}
.service-area .service-area-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.service-area .service-area-form input {
  backdrop-filter: blur(15px);
  background: var(--gray);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-dark);
  padding: 15px 24px;
  border: none;
  height: 52px;
  width: 400px;
}
.service-area .service-area-form .service-area-form-search {
  height: 52px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .service-area .service-area-form input {
    width: 300px;
  }
}
@media (max-width: 576px) {
  .service-area .service-area-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-area .service-area-form input {
    width: 100%;
  }
}
.service-area .service-area-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: clamp(30px, 4.667vw, 40px);
}
.service-area .service-area-result p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 140%;
  color: var(--black);
  text-align: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.policy-hero {
  background: var(--gray);
  padding-top: clamp(120px, 18vw, 170px);
}
.policy-hero .title {
  margin-bottom: 12px;
}
.policy-hero .policy-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-dark);
  text-align: center;
}

.policy-content .policy-toc {
  background: var(--gray);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.policy-content .policy-toc__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 12px;
  color: var(--black);
}
.policy-content .policy-toc ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}
.policy-content .policy-toc ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
  text-decoration: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.policy-content .policy-toc ul li a:hover {
  color: var(--orange);
}
.policy-content .policy-cards {
  display: -ms-grid;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}
.policy-content .policy-card {
  background: var(--gray);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
}
.policy-content .policy-card h3 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  color: var(--black);
  margin-bottom: 12px;
}
.policy-content .policy-card p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--black);
  margin-bottom: 10px;
}
.policy-content .policy-card p a {
  color: var(--orange);
  text-decoration: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.policy-content .policy-card p a:hover {
  color: var(--black);
}
@media (max-width: 992px) {
  .policy-content .policy-toc ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.success-hero {
  background: var(--gray);
  padding-top: clamp(120px, 18vw, 170px);
}

.success-card {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-animation: successFadeUp 0.6s ease both;
          animation: successFadeUp 0.6s ease both;
}
.success-card h1 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 120%;
  color: var(--black);
  margin-bottom: 10px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff6ef;
}

.success-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--black);
  margin-bottom: 8px;
}

.success-note {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.success-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn.success-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--orange);
}

.btn.success-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.success-steps {
  background: var(--white);
}

.success-steps-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) clamp(16px, 3vw, 28px) minmax(0, 1fr) clamp(16px, 3vw, 28px) minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin-top: clamp(24px, 4vw, 40px);
}

.success-step {
  background: var(--gray);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 28px);
}
.success-step h3 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--black);
  margin-bottom: 10px;
}
.success-step p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: var(--black);
}

@-webkit-keyframes successFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes successFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .success-card {
    -webkit-animation: none;
            animation: none;
  }
}
@media (max-width: 992px) {
  .success-steps-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.rew {
  background: var(--gray);
}
.rew .title {
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.rew .rew-item {
  background: var(--white);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  border-radius: 8px;
  padding: 24px;
}
.rew .rew-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rew .rew-item__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.rew .rew-item__link img {
  width: 24px;
}
.rew .rew-item__content {
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
.rew .rew-item__name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(18px, 2.267vw, 20px);
  line-height: 140%;
  color: var(--black);
}
.rew .rew-item__location {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rew .rev-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(30px, 4.667vw, 40px);
  margin-top: clamp(30px, 4.667vw, 40px);
}

.contact {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/contact.webp);
}
.contact .title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  text-align: left;
}
.contact__pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
  width: 100%;
  max-width: 610px;
}
.contact .contact-box {
  width: 100%;
  max-width: 610px;
}
.contact .form {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.contact .form-group input {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  padding: 14px 24px;
  width: 100%;
  border: none;
}
.contact .form-group input::-webkit-input-placeholder {
  color: var(--gray-dark);
}
.contact .form-group input::-moz-placeholder {
  color: var(--gray-dark);
}
.contact .form-group input:-ms-input-placeholder {
  color: var(--gray-dark);
}
.contact .form-group input::-ms-input-placeholder {
  color: var(--gray-dark);
}
.contact .form-group input::placeholder {
  color: var(--gray-dark);
}
.contact .upload-file .file-area {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-dark);
  cursor: pointer;
  height: 121px;
}
.contact .uploaded-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  gap: 16px;
  display: none;
}
.contact .uploaded-photo .uploaded-photo-item {
  position: relative;
  border-radius: 8px;
  width: 80px;
  height: 80px;
  border: 1px solid #FF680C;
}
.contact .uploaded-photo .uploaded-photo-item__remove {
  position: absolute;
  top: -10px;
  right: -10px;
  border: 1px solid #fff;
  border-radius: 40px;
  background-color: #FF680C;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.contact .uploaded-photo .uploaded-photo-item__remove svg path {
  fill: #fff;
}
.contact .uploaded-photo .uploaded-photo-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  border-radius: 7px;
  left: 0;
}
.contact .uploaded-photo .uploaded-photo-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}

.footer {
  background: var(--black);
}
.footer .footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 44px;
}
@media (max-width: 992px) {
  .footer .footer-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .footer .footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 992px) {
  .footer .fcol:nth-child(1) {
    width: 100%;
  }
}
.footer .flogo img {
  width: 100%;
  max-width: 130px;
}
.footer .fnav ul {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.footer .fnav ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
}
.footer .fnav ul li a:hover {
  text-decoration: underline;
}
.footer .fcontact {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.footer .fcontact-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
}
.footer .fcontact-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
  gap: 12px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer .fcontact-item a:hover {
  color: #FF680B;
}
.footer .worktime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.footer .worktime div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .fcos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.footer .fcos a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  display: block;
}
.footer .fcos a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .footer-bottom p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--gray);
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.footer .flinks span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--gray);
}
.footer .flinks a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: center;
  color: var(--gray);
}
.footer .flinks a:hover {
  text-decoration: none;
}

.upload-guide-open {
  overflow: hidden;
}

.upload-guide-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  z-index: 9999;
}
.upload-guide-popup.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.upload-guide-popup__dialog {
  width: 100%;
  max-width: 1220px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}
@media (max-width: 768px) {
  .upload-guide-popup__dialog {
    padding: 18px;
  }
}
.upload-guide-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.upload-guide-popup__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 120%;
  color: #fff;
  margin-bottom: 10px;
}
.upload-guide-popup__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #cfcfcf;
  margin-bottom: 24px;
  max-width: 760px;
}
.upload-guide-popup__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.upload-guide-popup__ok {
  display: none;
  min-width: 160px;
}
.upload-guide-popup__ok.is-visible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.upload-guide-steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 992px) {
  .upload-guide-steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.upload-guide-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.upload-guide-step__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 12px;
}
.upload-guide-step__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  margin-bottom: 12px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.upload-guide-step__label {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 6px;
}
.upload-guide-step__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #d9d9d9;
  margin-bottom: 14px;
}
.upload-guide-step__upload {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}
.fab__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.fab.is-open .fab__actions {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fab__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.fab__action:hover .fab__icon {
  background: var(--orange);
  color: var(--white);
}
.fab__label {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.fab__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.fab__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.fab__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.23s;
  transition: 0.23s;
  position: relative;
  -webkit-animation: fab-pulse 2.4s infinite;
          animation: fab-pulse 2.4s infinite;
}
.fab__toggle:hover {
  background-color: #f25f03;
}
.fab__toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: absolute;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.fab__toggle .fab__icon-open {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.fab__toggle .fab__icon-close {
  opacity: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.fab.is-open .fab__toggle {
  -webkit-animation: none;
          animation: none;
}
.fab.is-open .fab__toggle .fab__icon-open {
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.fab.is-open .fab__toggle .fab__icon-close {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media (max-width: 768px) {
  .fab.fab--lifted {
    bottom: 100px;
  }
}

@-webkit-keyframes fab-pulse {
  0% {
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0.45);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0.45);
  }
  70% {
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(255, 104, 11, 0);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(255, 104, 11, 0);
  }
  100% {
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0);
  }
}

@keyframes fab-pulse {
  0% {
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0.45);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0.45);
  }
  70% {
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(255, 104, 11, 0);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(255, 104, 11, 0);
  }
  100% {
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 104, 11, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fab__toggle {
    -webkit-animation: none;
            animation: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-service {
  padding: clamp(28px, 4vw, 40px) 0;
}
.blog-service:nth-of-type(even) {
  background: var(--gray);
}
.blog-service__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 40%) clamp(24px, 4.667vw, 60px) 1fr;
  grid-template-columns: minmax(0, 40%) 1fr;
  gap: clamp(24px, 4.667vw, 60px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.blog-service:nth-of-type(even) .blog-service__inner {
  -ms-grid-columns: 1fr minmax(0, 40%);
  grid-template-columns: 1fr minmax(0, 40%);
}
.blog-service:nth-of-type(even) .blog-service__gallery {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.blog-service__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.8fr clamp(8px, 1.2vw, 12px) 1fr;
  grid-template-columns: 1.8fr 1fr;
  -ms-grid-rows: 1fr clamp(8px, 1.2vw, 12px) 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(8px, 1.2vw, 12px);
  height: 30vh;
  overflow: hidden;
}
.blog-service__gallery > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.blog-service__gallery > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.blog-service__gallery > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.blog-service__gallery > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.blog-service__gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
.blog-service__gallery-main {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.blog-service__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 125%;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: clamp(12px, 2vw, 18px);
}
.blog-service__descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 155%;
  color: var(--black);
  margin-bottom: clamp(14px, 2vw, 18px);
}
.blog-service__label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 150%;
  color: var(--black);
  margin-bottom: 10px;
}
.blog-service__list {
  margin-bottom: clamp(14px, 2vw, 18px);
}
.blog-service__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.867vw, 16px);
  line-height: 150%;
  color: var(--black);
}
.blog-service__list li:not(:last-child) {
  margin-bottom: 8px;
}
.blog-service__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.blog-service__perks {
  margin-bottom: clamp(16px, 2.4vw, 20px);
}
.blog-service__perks li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(14px, 1.867vw, 16px);
  line-height: 150%;
  color: var(--black);
}
.blog-service__perks li:not(:last-child) {
  margin-bottom: 8px;
}
.blog-service__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  line-height: 17px;
  text-align: center;
}
.blog-service__pitch {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 150%;
  color: var(--black);
  margin-bottom: clamp(20px, 3.333vw, 30px);
}

.blog-cta {
  background: var(--orange);
  border-radius: 12px;
  padding: clamp(24px, 3.6vw, 36px) clamp(20px, 3vw, 32px);
  text-align: center;
}
.blog-cta__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(15px, 2.133vw, 18px);
  line-height: 140%;
  color: var(--white);
  margin-bottom: clamp(8px, 1.2vw, 12px);
}
.blog-cta__phone {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(30px, 4.667vw, 44px);
  line-height: 120%;
  color: var(--white);
  margin-bottom: clamp(14px, 2vw, 20px);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.blog-cta__phone:hover {
  opacity: 0.85;
}
.blog-cta__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(14px, 2vw, 20px);
}
.blog-cta__round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(48px, 6.7vw, 56px);
  height: clamp(48px, 6.7vw, 56px);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.blog-cta__round:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  background: #000;
}
.blog-cta__round svg {
  width: clamp(22px, 3vw, 26px);
  height: clamp(22px, 3vw, 26px);
  fill: currentColor;
}

@media (max-width: 992px) {
  .blog-service__inner, .blog-service:nth-of-type(even) .blog-service__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .blog-service:nth-of-type(even) .blog-service__gallery {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .blog-service__gallery {
    -ms-grid-columns: 1.8fr 1fr;
    grid-template-columns: 1.8fr 1fr;
  }
}
@media (max-width: 768px) {
  .blog-service__gallery {
    -ms-grid-columns: 1.5fr 1fr;
    grid-template-columns: 1.5fr 1fr;
  }
}
/* Submit progress: the button itself fills in as the request goes out, then
   turns green once the server confirms the lead was received. */
.submit-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.submit-btn__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: #9a9a9a;
  -webkit-transition: width 0.35s ease, background-color 0.25s ease;
  transition: width 0.35s ease, background-color 0.25s ease;
  z-index: 0;
}

.submit-btn__label {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.submit-btn__label svg {
  -webkit-animation: submitSpin 0.8s linear infinite;
  animation: submitSpin 0.8s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  display: none;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.submit-btn.is-sending {
  cursor: progress;
  background: #9a9a9a;
}

.submit-btn.is-sending .submit-btn__label svg {
  display: block;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.submit-btn.is-success {
  background: #1fa971;
  cursor: default;
}

.submit-btn.is-success .submit-btn__fill {
  width: 100% !important;
  background: #1fa971;
}

.submit-btn.is-error {
  background: #e5484d;
}

.submit-btn:disabled {
  opacity: 1;
}

@-webkit-keyframes submitSpin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes submitSpin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.submit-status {
  margin-top: 10px;
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 1.5;
  color: #e5484d;
  text-align: center;
  min-height: 0;
}

.submit-status:empty {
  margin-top: 0;
}