:root {
  --white: #fff;
  --black: #222;
  --blue: #1e71ff;
  --red: #f52a2d;
  --dark-blue: #00316e;
  --font-family: "Montserrat", sans-serif;
}

html,
body {
  height: 100%;
}

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

.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;
}

.top {
  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;
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 4.533vw, 40px);
  line-height: 120%;
  text-align: center;
  color: var(--dark-blue);
  margin-bottom: 32px;
  position: relative;
}
.title::after {
  position: absolute;
  display: block;
  content: "";
  height: 4px;
  background-color: var(--blue);
  border-radius: 10px;
  width: 80px;
  left: 0;
  right: 0;
  bottom: -16px;
  margin: 0 auto;
}
.title.title_v2::after {
  background-color: var(--red);
}

.pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  text-align: center;
  color: var(--black);
  max-width: 790px;
}

.no-scroll {
  overflow: hidden;
}

.header {
  padding: 16px 0;
}
.header__box {
  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;
}
.header .header-logo {
  position: relative;
  z-index: 51;
}
.header .header-logo img {
  width: 100%;
  max-width: 177px;
}
@media (max-width: 1200px) {
  .header .header-logo img {
    max-width: 144px;
  }
}
@media (max-width: 992px) {
  .header .header-logo img {
    max-width: 124px;
  }
}
.header .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.header .header-nav ul li a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .header-nav ul li a:hover {
  color: var(--blue);
}
@media (max-width: 1200px) {
  .header .header-nav ul {
    gap: 20px;
  }
  .header .header-nav ul li a {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .header .header-nav {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    background-color: #fff;
    padding-top: 140px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
    transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
    will-change: opacity, transform;
  }
  .header .header-nav ul {
    -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: 32px;
  }
}
.header .hbtn {
  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;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 20px;
  background: var(--blue);
  border-radius: 12px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .hbtn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 992px) {
  .header .hbtn {
    display: none;
  }
}
.header .btn-menu {
  position: relative;
  z-index: 51;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.header .btn-menu span {
  background: var(--blue);
  height: 2.5px;
  width: 32px;
  display: block;
  border-radius: 10px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: transform, opacity;
}
@media (max-width: 992px) {
  .header .btn-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 992px) {
  .header.is-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header.is-open .btn-menu span:nth-child(1) {
  -webkit-transform: translateY(9.5px) rotate(45deg);
          transform: translateY(9.5px) rotate(45deg);
}
.header.is-open .btn-menu span:nth-child(2) {
  opacity: 0;
}
.header.is-open .btn-menu span:nth-child(3) {
  -webkit-transform: translateY(-9.5px) rotate(-45deg);
          transform: translateY(-9.5px) rotate(-45deg);
}

.hero {
  height: 100dvh;
  min-height: 600px;
  background-image: url(../img/hero.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
}
.hero::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 18, 39, 0.4509803922);
}
.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 5;
}
.hero__box {
  width: 100%;
  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;
}
.hero__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 120%;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
}
.hero p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 140%;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}

.plumbing {
  padding: 80px 0;
  background: #f5f6f7;
}
@media (min-width: 992px) {
  .plumbing {
    padding: 120px 0;
  }
}
.plumbing .plumbing-box {
  margin-top: clamp(40px, 6.667vw, 60px);
}
.plumbing__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(22px, 3.6vw, 30px);
  line-height: 140%;
  text-align: center;
  color: var(--blue);
}
.plumbing__title.blue {
  color: var(--blue);
}
.plumbing__title.red {
  color: var(--red);
}
.plumbing__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(20px, 3.333vw, 30px) 1fr clamp(20px, 3.333vw, 30px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.333vw, 30px);
  margin-top: clamp(30px, 4.667vw, 40px);
}
@media (max-width: 992px) {
  .plumbing__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .plumbing__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.plumbing .plumbing-itm {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
}
.plumbing .plumbing-itm__top {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.plumbing .plumbing-itm__icon {
  min-width: clamp(50px, 7.333vw, 60px);
  max-width: clamp(50px, 7.333vw, 60px);
  aspect-ratio: 1/1;
  border-radius: 4px;
  background-color: #f5f6f7;
  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;
}
.plumbing .plumbing-itm__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 120%;
  color: var(--dark-blue);
}
.plumbing .plumbing-itm__content ul {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  padding-left: 18px;
}
.plumbing .plumbing-itm__content ul li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--dark-blue);
  position: relative;
}
.plumbing .plumbing-itm__content ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: -18px;
  width: 6px;
  height: 6px;
  background-color: var(--blue);
  border-radius: 50px;
}

.services {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .services {
    padding: 120px 0;
  }
}
.services__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(15px, 3.067vw, 30px) 1fr clamp(15px, 3.067vw, 30px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 3.067vw, 30px);
  margin-top: clamp(40px, 6.667vw, 60px);
}
@media (max-width: 992px) {
  .services__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.services .services-item {
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  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;
  cursor: pointer;
}
.services .services-item::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: #001227;
  opacity: 0.45;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.services .services-item:hover::after {
  background: var(--blue);
  opacity: 0.8;
}
.services .services-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services .services-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services .services-item__content {
  position: relative;
  z-index: 5;
  padding: 20px;
  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;
}
.services .services-item__content p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 120%;
  text-align: center;
  color: var(--white);
  text-shadow: 0 4px 20px 0 #001227;
  margin-top: 24px;
  max-width: 300px;
}

.emerg {
  background: var(--dark-blue);
  padding: 80px 0;
}
@media (min-width: 992px) {
  .emerg {
    padding: 120px 0;
  }
}
.emerg__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 992px) {
  .emerg__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.emerg__content {
  width: 50%;
}
@media (max-width: 992px) {
  .emerg__content {
    width: 100%;
  }
}
.emerg__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 4.8vw, 40px);
  line-height: 120%;
  color: var(--red);
  margin-bottom: 20px;
}
.emerg p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 140%;
  color: var(--white);
  margin-bottom: 40px;
}
.emerg .emtel {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(20px, 3.733vw, 32px);
  line-height: 120%;
  text-align: center;
  color: var(--blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(12px, 2.133vw, 20px);
  margin-bottom: 20px;
}
.emerg .emtel img {
  width: clamp(20px, 4vw, 40px);
}
.emerg .emtelbtn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(18px, 2.933vw, 24px);
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
  padding: clamp(14px, 2.267vw, 20px) clamp(20px, 4vw, 40px);
  background: var(--blue);
  border-radius: 12px;
  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;
  text-align: center;
}
.emerg__image {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .emerg__image {
    width: 100%;
  }
}
.emerg__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.btnred {
  background: var(--red);
  border-radius: 12px;
  padding: 20px 40px;
  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;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btnred:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.about {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .about {
    padding: 120px 0;
  }
}
.about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 992px) {
  .about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__content {
  width: 50%;
}
@media (max-width: 992px) {
  .about__content {
    width: 100%;
  }
}
.about__content .title {
  text-align: left;
}
.about__content .title::after {
  left: 0;
  right: auto;
}
.about__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: #181818;
  margin-bottom: 16px;
}
.about__content .btnred {
  margin-top: 24px;
}
@media (max-width: 576px) {
  .about__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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__content .title {
    text-align: center;
  }
  .about__content .title::after {
    left: 0 !important;
    right: 0 !important;
  }
}
.about__image {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .about__image {
    width: 100%;
    max-width: 700px;
  }
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.areas {
  padding: 80px 0;
  background: var(--dark-blue);
}
@media (min-width: 992px) {
  .areas {
    padding: 120px 0;
  }
}
.areas .title {
  color: var(--blue);
}
.areas .areas-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.areas .areas-nav__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;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 120%;
  text-align: center;
  color: var(--white);
  padding: clamp(12px, 1.867vw, 16px) clamp(24px, 4.267vw, 40px);
  border-radius: clamp(8px, 1.333vw, 12px);
  -webkit-transition: 0.23s;
  transition: 0.23s;
  cursor: pointer;
}
.areas .areas-nav__btn:hover {
  color: var(--blue);
}
.areas .areas-nav__btn.active {
  background: var(--blue);
}
.areas .areas-nav__btn.active:hover {
  color: #fff;
}
.areas__box {
  margin-top: clamp(40px, 6.667vw, 60px);
}
.areas .areas-item {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.areas .areas-item__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin-top: clamp(40px, 6.667vw, 60px);
}
@media (max-width: 1200px) {
  .areas .areas-item__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .areas .areas-item__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.areas .areas-item__listV2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 30px;
  margin-top: clamp(40px, 6.667vw, 60px);
}
@media (max-width: 1200px) {
  .areas .areas-item__listV2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .areas .areas-item__listV2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.areas .areas-item.active {
  display: block;
  opacity: 1;
}
.areas .areas-area {
  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;
}
.areas .areas-area__img {
  overflow: hidden;
  aspect-ratio: 277/184;
  border-radius: 8px;
}
.areas .areas-area__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.areas .areas-area__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(18px, 2.533vw, 20px);
  line-height: 140%;
  text-align: center;
  color: var(--white);
}

.why {
  padding: 80px 0;
  background: #f5f6f7;
}
@media (min-width: 992px) {
  .why {
    padding: 120px 0;
  }
}
.why__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(40px, 6.667vw, 60px);
}
@media (max-width: 1200px) {
  .why__box {
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
}
@media (max-width: 576px) {
  .why__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.why .why-itm {
  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;
  padding-left: 10px;
  padding-right: 10px;
}
.why .why-itm::before {
  display: block;
  position: absolute;
  content: "";
  width: 2px;
  height: 80px;
  background-color: var(--blue);
  left: 0;
  top: calc(50% - 40px);
}
.why .why-itm:nth-child(1)::before {
  display: none;
}
.why .why-itm img {
  width: clamp(34px, 4.933vw, 40px);
  margin-bottom: 24px;
}
.why .why-itm p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(18px, 2.533vw, 20px);
  line-height: 140%;
  text-align: center;
  color: #181818;
  max-width: 300px;
}
@media (max-width: 1200px) {
  .why .why-itm:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .why .why-itm {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .why .why-itm::before {
    width: 80px;
    height: 2px;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .why .why-itm:nth-child(1)::before {
    display: block;
  }
  .why .why-itm:nth-child(3)::before {
    display: block;
  }
  .why .why-itm:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .why .why-itm:last-child::before {
    display: none;
  }
}

.rew {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .rew {
    padding: 120px 0;
  }
}
.rew__box {
  margin-top: clamp(40px, 6.667vw, 60px);
}
.rew .rewSwiper {
  position: relative;
}
.rew .rewSwiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.rew .rewSwiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rew .rew-itm {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--white);
  border: 1px solid #a9b4ca;
  border-radius: 8px;
  padding: 24px;
}
.rew .rew-itm__main {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: #242424;
}
.rew .rew-itm__bottom {
  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;
  margin-top: 24px;
}
.rew .rew-itm .rew-itm-usr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.rew .rew-itm .rew-itm-usr__av {
  min-width: clamp(50px, 7.333vw, 60px);
  max-width: clamp(50px, 7.333vw, 60px);
  height: clamp(50px, 7.333vw, 60px);
  background: #a9b4ca;
  border-radius: 100px;
  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;
}
.rew .rew-itm .rew-itm-usr__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: #003254;
  margin-bottom: 4px;
}
.rew .rew-itm .rew-itm-usr__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.rew .rew-itm__g img {
  width: clamp(35px, 5vw, 40px);
}

.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: #f5f6f7;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.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: 10px;
  height: 10px;
  opacity: 1 !important;
  background-color: #f5f6f7;
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.pagination .swiper-pagination-bullet-active {
  background-color: var(--black);
}

.customers {
  padding: 80px 0;
  background: #f5f6f7;
}
@media (min-width: 992px) {
  .customers {
    padding: 120px 0;
  }
}
.customers__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-top: clamp(40px, 6.667vw, 60px);
}
.customers .customers-list {
  gap: 30px;
}
.customers .customers-list .customers-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.customers .customers-list .customers-item img {
  height: 90px;
}
@media (max-width: 768px) {
  .customers__box {
    gap: 15px;
  }
  .customers .customers-list {
    gap: 15px;
  }
  .customers .customers-list .customers-list-wrap {
    gap: 15px;
  }
  .customers .customers-list .customers-item img {
    height: 50px;
  }
}

.contact {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .contact {
    padding: 120px 0;
  }
}
.contact__box {
  gap: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 992px) {
  .contact__box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact__main .top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__main .top .title {
  text-align: left;
}
.contact__main .top .title::after {
  left: 0;
  right: 0 auto;
  margin-left: 0;
}
.contact__main .top .pretitle {
  text-align: left;
}
@media (max-width: 576px) {
  .contact__main .top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact__main .top .title::after {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.contact form {
  display: block;
  margin-top: clamp(30px, 6vw, 60px);
}
.contact form .f-group {
  margin-bottom: 20px;
}
.contact form .f-group label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
.contact form .f-group input,
.contact form .f-group textarea {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  width: 100%;
  margin-top: 8px;
  border-radius: 12px;
  padding: 20px;
  background: #f5f6f7;
  border: 1px solid #f5f6f7;
}
.contact form .f-group input:focus,
.contact form .f-group textarea:focus {
  border-color: var(--blue);
}
.contact form .f-group .kv-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(245, 42, 45, 0.18);
}
.contact form .f-group input::-webkit-input-placeholder, .contact form .f-group textarea::-webkit-input-placeholder {
  color: #a9b4ca;
}
.contact form .f-group input::-moz-placeholder, .contact form .f-group textarea::-moz-placeholder {
  color: #a9b4ca;
}
.contact form .f-group input:-ms-input-placeholder, .contact form .f-group textarea:-ms-input-placeholder {
  color: #a9b4ca;
}
.contact form .f-group input::-ms-input-placeholder, .contact form .f-group textarea::-ms-input-placeholder {
  color: #a9b4ca;
}
.contact form .f-group input::placeholder,
.contact form .f-group textarea::placeholder {
  color: #a9b4ca;
}
.contact form .f-group textarea {
  resize: none;
  height: 120px;
}
.contact form button {
  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: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 20px;
  border-radius: 12px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  width: 100%;
}
.contact form button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.contact__image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .contact__image {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .contact__image {
    height: 300px;
  }
}
.contact__image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.footer {
  background: var(--dark-blue);
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer .footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
}
@media (max-width: 992px) {
  .footer .footer-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px 24px;
  }
}
@media (max-width: 576px) {
  .footer .footer-main {
    gap: 48px;
  }
}
.footer .footer-col {
  max-width: 320px;
}
@media (max-width: 992px) {
  .footer .footer-col {
    width: calc(50% - 12px);
  }
}
@media (max-width: 992px) and (min-width: 576px) {
  .footer .footer-col:nth-child(1) {
    -webkit-box-ordinal-group: -3;
        -ms-flex-order: -4;
            order: -4;
  }
  .footer .footer-col:nth-child(2) {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  .footer .footer-col:nth-child(3) {
    -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
            order: -3;
  }
  .footer .footer-col:nth-child(4) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media (max-width: 576px) {
  .footer .footer-col {
    width: 100%;
  }
}
.footer .footer-logo img {
  width: 100%;
  max-width: 177px;
}
.footer .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.footer .footer-nav ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer .footer-nav ul li a:hover {
  color: var(--blue);
}
.footer .footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.footer .footer-contact .footer-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer .footer-contact .footer-contact-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer .footer-contact .footer-contact-item__top img {
  min-width: 24px;
  max-width: 24px;
}
.footer .footer-contact .footer-contact-item__top span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
}
.footer .footer-contact .footer-contact-item__bottom {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  font-size: clamp(18px, 2.533vw, 20px);
  line-height: 140%;
  color: var(--blue);
}
.footer .footer-social {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.footer .footer-social a {
  background-color: var(--blue);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  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;
}
.footer .footer-social a img {
  width: 24px;
}
.footer .footer-social a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer .footer-bottom {
  border-top: 1px solid var(--white);
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer .footer-bottom p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
}
.footer .footer-bottom a {
  font-family: var(--font-family);
  font-weight: 600;
  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(--blue);
}
.footer .footer-bottom a:hover {
  text-decoration: none;
}
@media (max-width: 576px) {
  .footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
