@charset "UTF-8";
@import "includes/header.css";
.nav {
  width: 100%;
  position: fixed;
  background: transparent;
  transition: 0.4s;
  z-index: 100;
}
.nav .container {
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
}
.nav .container .nav__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 86px;
}
.nav .container .nav__left_logo a img {
  min-width: 110px;
}
.nav .container .nav__left_links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav .container .nav__left_links-link {
  color: #fff;
}
.nav .container .nav__right {
  display: flex;
  align-items: center;
  gap: 35px;
}
.nav .container .nav__right .lang {
  position: relative;
  display: inline-block;
}
.nav .container .nav__right .lang .lang-dropdown {
  display: inline-block;
}
.nav .container .nav__right .lang .lang-dropdown .lang-button {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: #f8fcff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
  background: transparent;
  text-transform: uppercase;
}
.nav .container .nav__right .lang .lang-dropdown .lang-button.active svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.nav .container .nav__right .lang .lang-dropdown .lang-button svg {
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.nav .container .nav__right .lang .lang-dropdown .lang-menu {
  display: none;
  position: absolute;
  background: #031420;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 10;
}
.nav .container .nav__right .lang .lang-dropdown .lang-menu a {
  display: block;
  color: #f8fcff;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.nav .container .nav__right_price {
  display: flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav .container .nav__right_price p {
  color: #fff;
}
.nav .container .nav__right_contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav .container .nav__right_contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav .container .nav__right_contacts a p {
  color: #fff;
}
.nav .container .burger__menu {
  display: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  /* Активное состояние: превращение в крестик */
}
.nav .container .burger__menu svg {
  width: 100%;
  height: 100%;
}
.nav .container .burger__menu .line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center; /* Центр вращения */
}
.nav .container .burger__menu.active .line1 {
  transform: rotate(45deg) translate(0, -7px); /* Поворот и смещение вверх */
}
.nav .container .burger__menu.active .line2 {
  opacity: 0; /* Скрываем среднюю линию */
}
.nav .container .burger__menu.active .line3 {
  transform: rotate(-45deg) translate(0, 7px); /* Поворот и смещение вниз */
}
.nav .container .burger__nav {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 90%;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background: #031320;
  transition: left 0.5s ease-in-out;
  z-index: 101;
}
.nav .container .burger__nav.active {
  left: 0;
}
.nav .container .burger__nav .burger__nav_box {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.nav .container .burger__nav .burger__nav_box .lang {
  position: relative;
  display: inline-block;
}
.nav .container .burger__nav .burger__nav_box .lang .lang-dropdown {
  display: inline-block;
}
.nav .container .burger__nav .burger__nav_box .lang .lang-dropdown .lang-button {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: #f8fcff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
  background: transparent;
  text-transform: uppercase;
}
.nav .container .burger__nav .burger__nav_box .lang .lang-dropdown .lang-button.active svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.nav .container .burger__nav .burger__nav_box .lang .lang-dropdown .lang-button svg {
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.nav .container .burger__nav .burger__nav_box .lang .lang-dropdown .lang-menu {
  display: none;
  position: absolute;
  background: #031420;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 10;
}
.nav .container .burger__nav .burger__nav_box .lang .lang-dropdown .lang-menu a {
  display: block;
  color: #f8fcff;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.nav .container .burger__nav .burger__nav_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav .container .burger__nav .burger__nav_list-logo {
  margin-bottom: 30px;
  max-width: 130px;
}
.nav .container .burger__nav .burger__nav_list hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.nav .container .burger__nav .burger__nav_list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .container .burger__nav .burger__nav_list a p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
.nav .container .burger__nav .burger__nav_list a p:hover {
  color: #d5002b;
}
.nav .container .burger__nav .burger__nav_bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nav .container .burger__nav .burger__nav_bottom a {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav .container .burger__nav .burger__nav_bottom a p {
  color: #fff;
  text-align: end;
}
.nav .container .burger__nav .burger__nav_bottom-text {
  margin-top: 18px;
  text-align: center;
  color: #8e979d;
  font-size: 14px;
  font-weight: 400;
}

.nav.headerScrolled {
  transition: 0.4s;
  background: #031420;
}

@media (max-width: 1300px) {
  .nav .container {
    padding: 30px 20px;
  }
  .nav .container .nav__left {
    gap: 44px;
  }
}
@media (max-width: 1080px) {
  .nav .container .nav__left {
    gap: 24px;
  }
  .nav .container .nav__left .burger__menu {
    display: block;
  }
  .nav .container .nav__left .burger__nav .burger__nav_box .lang__burger {
    display: block;
  }
  .nav .container .nav__left_links {
    display: none;
  }
  .nav .container .nav__right .lang {
    display: none;
  }
  .nav .container .nav__right_price {
    display: none;
  }
}
@media (max-width: 576px) {
  .nav .container {
    gap: 30px;
    padding: 22px 12px;
  }
  .nav .container .nav__right_contacts a svg {
    width: 18px;
    height: 18px;
  }
  .nav .container .nav__right_contacts a p {
    white-space: nowrap;
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  .nav .container .nav__right_contacts a svg {
    width: 14px;
    height: 14px;
  }
  .nav .container .nav__right_contacts a p {
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  .nav .container .nav__left_logo a img {
    width: 110px;
  }
}
.navigation .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 100px;
}
.navigation .container .navigation__container {
  width: 30%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 24px;
  border: 1px solid #ecf3f8;
  background: #fff;
  transition: 0.4s;
}
.navigation .container .navigation__container_top {
  display: flex;
  gap: 24px;
}
.navigation .container .navigation__container_top svg {
  min-width: 66px;
  min-height: 66px;
}
.navigation .container .navigation__container_top-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navigation .container .navigation__container_top-text h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 27px */
}
.navigation .container .navigation__container_top-text p {
  width: 100%;
  max-width: 246px;
  color: #394b59;
  font-size: 14px;
  font-weight: 350;
  line-height: 140%; /* 19.6px */
}
.navigation .container .navigation__container a {
  text-align: center;
  padding: 12px 24px;
  color: #007bd6;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  border-radius: 12px;
  background: #ecf3f8;
}
@media (max-width: 1200px) {
  .navigation .container {
    padding: 40px 20px;
    gap: 20px;
  }
  .navigation .container .navigation__container:nth-child(1),
  .navigation .container .navigation__container:nth-child(2) {
    width: 48%;
  }
  .navigation .container .navigation__container:nth-child(3) {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .navigation .container .navigation__container:nth-child(3) .navigation__container_top .navigation__container_top-text p {
    max-width: 320px;
    width: 100%;
  }
  .navigation .container .navigation__container:nth-child(3) a {
    max-width: 220px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .navigation .container .navigation__container:nth-child(1),
  .navigation .container .navigation__container:nth-child(2) {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .navigation .container {
    padding: 20px 12px;
  }
  .navigation .container .navigation__container {
    padding: 12px;
  }
  .navigation .container .navigation__container_top-text h3 {
    font-size: 18px;
  }
  .navigation .container .navigation__container:nth-child(1),
  .navigation .container .navigation__container:nth-child(2) {
    width: 100%;
  }
  .navigation .container .navigation__container:nth-child(3) {
    flex-direction: column;
    align-items: start;
  }
  .navigation .container .navigation__container:nth-child(3) a {
    max-width: 100%;
  }
}

.equipments .container {
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.equipments .container .equipments__title {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
.equipments .container .equipments__cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.equipments .container .equipments__cards_card {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  width: 30%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #ecf3f8;
  background: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  transition: 0.4s;
}
.equipments .container .equipments__cards_card:hover {
  border: 1px solid #007bd6;
  transform: scale(1.02);
}
.equipments .container .equipments__cards_card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fef4ee;
  border-radius: 24px;
  width: 100%; /* Устанавливаем ширину блока */
  height: 250px; /* Задаем высоту блока, можно адаптировать под нужное значение */
  position: relative;
  overflow: hidden;
}
.equipments .container .equipments__cards_card-img img {
  object-fit: contain; /* Изображение растягивается по размеру контейнера, сохраняя пропорции */
  object-position: center; /* Центрируем изображение */
  height: 100% !important;
}
.equipments .container .equipments__cards_card-info {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.equipments .container .equipments__cards_card-info h3 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%; /* 28.6px */
}
.equipments .container .equipments__cards_card-info p {
  padding: 18px 0px 24px 0px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  color: #8e979d;
  font-size: 16px;
  font-weight: 350;
  line-height: 130%; /* 20.8px */
}
.equipments .container .equipments__cards_card-info p span {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
}
.equipments .container .equipments__cards_card-info button {
  text-align: center;
  padding: 12px;
  color: #007bd6;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  border-radius: 12px;
  background: #ecf3f8;
}
@media (max-width: 1200px) {
  .equipments .container {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .equipments .container .equipments__cards_card {
    width: 47%;
  }
}
@media (max-width: 767px) {
  .equipments .container {
    padding: 40px 12px;
  }
  .equipments .container .equipments__title {
    font-size: 28px;
  }
  .equipments .container .equipments__cards_card {
    width: 100%;
  }
  .equipments .container .equipments__cards_card-info h3 {
    font-size: 20px;
  }
}

.about .container {
  padding: 60px 100px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.about .container .about__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 606px;
}
.about .container .about__left_title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
}
.about .container .about__left_text {
  color: #394b59;
  font-size: 20px;
  font-weight: 350;
  line-height: 150%; /* 30px */
}
.about .container .about__left_bottom {
  display: flex;
  gap: 30px;
}
.about .container .about__left_bottom-left, .about .container .about__left_bottom-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about .container .about__left_bottom-left h2, .about .container .about__left_bottom-right h2 {
  color: #000;
  font-size: 40px;
  font-weight: 600;
}
.about .container .about__left_bottom-left p, .about .container .about__left_bottom-right p {
  max-width: 180px;
  color: #394b59;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.about .container .about__left_btn {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%; /* 24px */
  border-radius: 12px;
  background: #007bd6;
}
.about .container .about__right {
  position: relative;
  max-width: 606px;
  width: 100%;
  border-radius: 16px;
  background: url(/assets/images/about-img.jpg) center center/cover;
}
.about .container .about__right img {
  max-width: 184px;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 1200px) {
  .about .container {
    padding: 35px 20px;
  }
}
@media (max-width: 992px) {
  .about .container .about__left {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .about .container {
    gap: 20px;
  }
  .about .container .about__left {
    gap: 20px;
  }
  .about .container .about__left_title {
    font-size: 32px;
  }
  .about .container .about__left_text {
    font-size: 16px;
  }
  .about .container .about__left_bottom-left h2, .about .container .about__left_bottom-right h2 {
    font-size: 24px;
  }
  .about .container .about__left_bottom-left p, .about .container .about__left_bottom-right p {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .about .container {
    padding: 40px 12px;
    gap: 20px;
    flex-direction: column-reverse;
  }
  .about .container .about__left {
    max-width: 100%;
    gap: 20px;
  }
  .about .container .about__left_title {
    font-size: 28px;
  }
  .about .container .about__left_btn {
    width: 100%;
  }
  .about .container .about__right {
    width: 100%;
    height: 340px;
  }
}

.whyUs .container {
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whyUs .container .whyUs__title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
}
.whyUs .container .whyUs__subtitle {
  margin: 12px 0px 24px 0px;
  color: #394b59;
  font-size: 20px;
  font-weight: 350;
}
.whyUs .container .whyUs__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.whyUs .container .whyUs__container_box {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.whyUs .container .whyUs__container_box img {
  width: 50px;
  height: 50px;
}
.whyUs .container .whyUs__container_box h3 {
  margin: 24px 0px 12px 0px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
}
.whyUs .container .whyUs__container_box p {
  color: #394b59;
  font-size: 16px;
  font-weight: 350;
  line-height: 140%; /* 22.4px */
}
@media (max-width: 1200px) {
  .whyUs .container {
    padding: 34px 20px;
  }
}
@media (max-width: 992px) {
  .whyUs .container .whyUs__container_box {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .whyUs .container .whyUs__title {
    font-size: 32px;
  }
  .whyUs .container .whyUs__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .whyUs .container {
    padding: 34px 12px;
  }
  .whyUs .container .whyUs__title {
    font-size: 28px;
  }
  .whyUs .container .whyUs__subtitle {
    text-align: center;
    font-size: 16px;
  }
  .whyUs .container .whyUs__container_box {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    width: 100%;
  }
  .whyUs .container .whyUs__container_box-info h3 {
    font-size: 18px;
    margin: 0;
  }
  .whyUs .container .whyUs__container_box-info p {
    font-size: 14px;
  }
}

.branches .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  column-gap: 20px;
  padding: 50px 20px;
  position: relative;
}
.branches .container .data-container {
  display: none;
}
.branches .container .branches__top {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 245px;
  justify-content: space-between;
  align-items: center;
}
.branches .container .branches__top_title {
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0%;
  vertical-align: middle;
  width: 100%;
}
.branches .container .branches__top_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.branches .container .branches-box {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}
.branches .container .branches__container {
  position: absolute;
  left: 20px;
  width: 33%;
  height: max-content;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.branches .container .branches__container_title {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  /* 36px */
}
.branches .container .branches__container_links {
  margin: 24px 0px 26px 0px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.branches .container .branches__container_links a,
.branches .container .branches__container_links p {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 320px;
  color: #031420;
  font-size: 18px;
  font-weight: 350;
}
.branches .container .branches__container_links a svg,
.branches .container .branches__container_links p svg {
  min-width: 32px;
  min-height: 32px;
}
.branches .container .branches__container_links p {
  line-height: 150%;
  /* 27px */
}
.branches .container .branches__container_links p svg {
  width: 32px;
  height: 32px;
}
.branches .container .branches__container_btn {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  border-radius: 12px;
  background: #007bd6;
}
.branches .container .branches__container_link {
  color: #007bd6;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  border-radius: 12px;
  border: 1px solid #007bd6;
  padding: 12px 24px;
  display: block;
  text-align: center;
  box-sizing: border-box;
}
.branches .container .branches__map {
  width: 67%;
}
.branches .container .branches__map svg {
  height: min-content;
  width: 100%;
}
.branches .container .branches__map svg .city:hover {
  cursor: pointer;
  fill: #007bd6;
}
.branches .container .branches__map svg .pointer__none {
  pointer-events: none;
}
.branches .container .branches__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .branches .container .branches__top {
    grid-template-columns: auto;
  }
  .branches .container .branches__top_text {
    width: 50%;
  }
  .branches .container .branches__container {
    left: auto;
    top: 50px;
  }
  .branches .container .branches__map {
    width: 100%;
    padding-top: 200px;
  }
  .branches .container .branches__map svg {
    width: 100%;
  }
}
@media (max-width: 1040px) {
  .branches .container .branches__top {
    column-gap: 100px;
  }
  .branches .container .branches__container {
    width: 40%;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .branches .container {
    padding: 40px 12px;
  }
  .branches .container .branches__top {
    grid-template-columns: auto;
    text-align: center;
  }
  .branches .container .branches__top_title {
    font-size: 28px;
  }
  .branches .container .branches__top_text {
    width: 100%;
  }
  .branches .container .branches__map {
    padding-top: 0;
  }
  .branches .container .branches-box {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .branches .container .branches__container {
    position: relative;
    width: 100%;
    top: auto;
  }
  .branches .container .branches__container_title {
    font-size: 20px;
  }
  .branches .container .branches__container_links a,
  .branches .container .branches__container_links p {
    font-size: 16px;
  }
}
.branches .city:hover path {
  cursor: pointer;
  fill: #007bd6;
}

.projects .container {
  padding: 60px 0px;
}
.projects .container .projects__swiper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px 100px;
  overflow-x: hidden;
}
.projects .container .projects__swiper_title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
}
.projects .container .projects__swiper_btns {
  position: absolute;
  top: 28px;
  right: 100px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.projects .container .projects__swiper_btns .swiper-button-prev,
.projects .container .projects__swiper_btns .swiper-button-next {
  position: static;
  width: 100% !important;
  height: 100% !important;
}
.projects .container .projects__swiper_btns .swiper-button-prev::after,
.projects .container .projects__swiper_btns .swiper-button-next::after {
  display: none;
}
.projects .container .projects__swiper_btns .swiper-button-disabled svg path {
  fill: #8e979d;
}
.projects .container .projects__swiper .swiper-wrapper {
  margin: 0px;
  box-sizing: border-box !important;
}
.projects .container .projects__swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}
.projects .container .projects__swiper .swiper-wrapper .swiper-slide-img {
  width: 100%; /* Устанавливаем ширину блока */
  height: 250px; /* Задаем высоту блока, можно адаптировать под нужное значение */
  position: relative;
  overflow: hidden;
}
.projects .container .projects__swiper .swiper-wrapper .swiper-slide-img img {
  border-radius: 12px;
  object-fit: cover; /* Изображение растягивается по размеру контейнера, сохраняя пропорции */
  object-position: center; /* Центрируем изображение */
  height: 100% !important;
}
.projects .container .projects__swiper .swiper-wrapper .swiper-slide-text {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%; /* 26px */
}
@media (max-width: 1200px) {
  .projects .container .projects__swiper {
    padding: 0 20px;
  }
  .projects .container .projects__swiper_title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .projects .container .projects__swiper {
    padding: 0 12px;
  }
  .projects .container .projects__swiper_title {
    text-align: center;
    margin: 0;
  }
  .projects .container .projects__swiper .swiper-button-prev,
  .projects .container .projects__swiper .swiper-button-next {
    display: none;
  }
}
@media (max-width: 700px) {
  .projects .container .projects__swiper_title {
    font-size: 28px;
  }
  .projects .container .projects__swiper .swiper-wrapper .swiper-slide-text {
    font-size: 16px;
  }
}

.services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 100px;
}
.services .container .services__title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
}
.services .container .services__subtitle {
  margin: 12px 0px 30px 0px;
  color: #394b59;
  font-size: 20px;
  font-weight: 350;
}
.services .container .services__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.services .container .services__container_box {
  width: 30%;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
}
.services .container .services__container_box svg {
  min-width: 38px;
  min-height: 38px;
}
.services .container .services__btn {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%; /* 24px */
  border-radius: 12px;
  background: #007bd6;
}
@media (max-width: 1200px) {
  .services .container {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .services .container .services__title,
  .services .container .services__subtitle {
    text-align: center;
  }
  .services .container .services__container_box {
    width: 46%;
  }
}
@media (max-width: 767px) {
  .services .container .services__title {
    font-size: 28px;
  }
  .services .container .services__subtitle {
    font-size: 16px;
  }
  .services .container .services__btn {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 700px) {
  .services .container .services__container_box {
    width: 100%;
  }
}

.materials .container {
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.materials .container .materials__title {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
.materials .container .materials__cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.materials .container .materials__cards_card {
  min-width: 300px;
  width: 30%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #ecf3f8;
  background: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
}
.materials .container .materials__cards_card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Устанавливаем ширину блока */
  height: 300px; /* Задаем высоту блока, можно адаптировать под нужное значение */
  position: relative;
  overflow: hidden;
  background: #fef4ee;
  border-radius: 24px;
}
.materials .container .materials__cards_card-img img {
  border-radius: 12px;
  object-fit: cover; /* Изображение растягивается по размеру контейнера, сохраняя пропорции */
  object-position: center; /* Центрируем изображение */
  height: 100% !important;
}
.materials .container .materials__cards_card-info {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.materials .container .materials__cards_card-info h3 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%; /* 28.6px */
}
.materials .container .materials__cards_card-info p {
  padding: 18px 0px 24px 0px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  color: #8e979d;
  font-size: 16px;
  font-weight: 350;
  line-height: 130%; /* 20.8px */
}
.materials .container .materials__cards_card-info p span {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
}
.materials .container .materials__cards_card-info button {
  text-align: center;
  padding: 12px;
  color: #007bd6;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  border-radius: 12px;
  background: #ecf3f8;
}
@media (max-width: 1200px) {
  .materials .container {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .materials .container .materials__cards_card {
    width: 47%;
  }
}
@media (max-width: 767px) {
  .materials .container {
    padding: 40px 12px;
  }
  .materials .container .materials__title {
    font-size: 28px;
  }
  .materials .container .materials__cards_card {
    width: 100%;
  }
  .materials .container .materials__cards_card-info h3 {
    font-size: 20px;
  }
}

.form {
  background: url(/assets/images/main-form-bg.jpg) center center/cover;
}
.form .container {
  padding: 0px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 470px;
}
.form .container .form__title {
  max-width: 698px;
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%; /* 48px */
}
.form .container form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.form .container form .form__item {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form .container form .form__item label {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.form .container form .form__item input {
  color: #fff;
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}
.form .container form .form__item input::placeholder {
  color: #fff;
}
.form .container form button {
  width: 30%;
  padding: 15px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: #007bd6;
}
@media (max-width: 1200px) {
  .form .container {
    padding: 0 20px;
    height: 600px;
  }
}
@media (max-width: 992px) {
  .form .container {
    background: url(/assets/images/main-form-bg-tablet.jpg) center center/cover;
  }
  .form .container form {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .form .container form .form__item,
  .form .container form button {
    width: 60%;
  }
}
@media (max-width: 700px) {
  .form .container {
    padding: 70px 12px;
    background: url(/assets/images/main-form-bg-mobile.jpg) center center/cover;
  }
  .form .container .form__title {
    font-size: 32px;
  }
  .form .container form .form__item,
  .form .container form button {
    width: 100%;
  }
}

.footer {
  background: #031420;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 60px 100px;
}
.footer .container .footer__left {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 66px;
}
.footer .container .footer__left_top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer .container .footer__left_top-title {
  width: 100%;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 150%; /* 42px */
}
.footer .container .footer__left_top-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer .container .footer__left_top-contacts .contacts__left {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer .container .footer__left_top-contacts .contacts__left h3 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 27px */
  text-transform: uppercase;
}
.footer .container .footer__left_top-contacts .contacts__left a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.footer .container .footer__left_top-contacts .contacts__left a svg {
  min-width: 28px;
  min-height: 28px;
}
.footer .container .footer__left_top-contacts .contacts__right {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer .container .footer__left_top-contacts .contacts__right h3 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 27px */
  text-transform: uppercase;
}
.footer .container .footer__left_top-contacts .contacts__right a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.footer .container .footer__left_top-contacts .contacts__right a svg {
  min-width: 28px;
  min-height: 28px;
}
.footer .container .footer__left_top-location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.footer .container .footer__left_top-location svg {
  min-width: 28px;
  min-height: 28px;
}
.footer .container .footer__left_bottom {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer .container .footer__left_bottom-title {
  color: #8e979d;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}
.footer .container .footer__left_bottom div {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer .container .footer__left_bottom div a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  padding: 12px 24px;
  border-radius: 12px;
  background: #007bd6;
}
.footer .container .footer__right {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .container .footer__right_title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 150%; /* 42px */
}
.footer .container .footer__right_subtitle {
  margin-top: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%; /* 27px */
}
.footer .container .footer__right_text {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.footer .container .footer__right_qr {
  display: flex;
  gap: 24px;
}
.footer .container .footer__right_qr img {
  width: 135px;
  height: 135px;
}
@media (max-width: 1200px) {
  .footer .container {
    padding: 60px 20px;
  }
  .footer .container .footer__left {
    width: 60%;
  }
  .footer .container .footer__right {
    width: 30%;
  }
}
@media (max-width: 992px) {
  .footer .container .footer__left {
    width: 45%;
  }
  .footer .container .footer__left_top-contacts .contacts__left,
  .footer .container .footer__left_top-contacts .contacts__right {
    width: 100%;
  }
  .footer .container .footer__left_top-location {
    max-width: 370px;
    white-space: wrap;
  }
  .footer .container .footer__left_bottom div {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .footer .container .footer__right {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .footer .container {
    padding: 40px 12px;
    flex-direction: column;
    align-items: center;
  }
  .footer .container .footer__left,
  .footer .container .footer__right {
    width: 100%;
  }
}

.popup {
  height: 100%;
  width: 100%;
  position: fixed;
  background: rgba(50, 51, 54, 0.7);
  top: -100%;
  left: 0;
  z-index: 999;
  transition: 0.4s;
}
.popup .form__modal {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  max-width: 675px;
  width: 100%;
  padding: 50px 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 10px;
  z-index: 3;
}
.popup .form__modal h2 {
  color: #272b31;
  font-size: 28px;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.popup .form__modal p {
  color: #676c74;
  font-size: 16px;
  font-weight: 350;
  line-height: 140%; /* 22.4px */
}
.popup .form__modal .formModal {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.popup .form__modal .formModal h3 {
  text-align: center;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 130%; /* 28.6px */
}
.popup .form__modal .formModal__item {
  max-width: 474px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup .form__modal .formModal__item input {
  padding: 12px 18px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d2dbe1;
  background: #ecf3f8;
}
.popup .form__modal .formModal button {
  padding: 12px 24px;
  color: #fffcfc;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  background: #007bd6;
}
.popup .form__modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

@media (max-width: 768px) {
  /* Ваши стили для экранов шириной до 768px */
  .popup .form__modal {
    padding: 50px 20px;
    align-items: center;
    width: 94%;
  }
  .popup .form__modal h2 {
    text-align: center;
  }
  .popup .form__modal .formModal__item {
    max-width: 100%;
  }
  .popup .form__modal .formModal__item input {
    max-width: 100%;
  }
}
.success {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.4s;
  background: rgba(50, 51, 54, 0.7);
}
.success__container {
  min-width: 280px;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  max-width: 675px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 10px;
  z-index: 3;
  box-shadow: 0px 0px 34.3px 10px rgba(27, 27, 27, 0.05);
}
.success__container img {
  max-width: 160px;
}
.success__container h2 {
  color: #272b31;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 140%; /* 39.2px */
}
.success__container p {
  color: #676c74;
  text-align: center;
  font-size: 16px;
  font-weight: 350;
  line-height: 140%; /* 22.4px */
  max-width: 370px;
}
.success__container button {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  background: #007bd6;
  width: 100%;
}

@media (max-width: 768px) {
  /* Ваши стили для экранов шириной до 768px */
  .success__container {
    justify-content: center;
  }
  .success__container img {
    max-width: 112px;
  }
  .success__container h2 {
    text-align: center;
    color: #111;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%; /* 27.3px */
    text-transform: uppercase;
  }
}
.product {
  background: #031420;
}
.product .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 100px 60px 100px;
}
.product .container .product__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  max-width: 1240px;
  width: 100%;
}
.product .container .product__container_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}
.product .container .product__container_info-nav {
  color: rgba(255, 255, 255, 0.8);
}
.product .container .product__container_info-nav span {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.product .container .product__container_info-title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%; /* 48px */
}
.product .container .product__container_info-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 350;
  line-height: 150%; /* 24px */
}
.product .container .product__container_info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product .container .product__container_info-box div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product .container .product__container_info-box div p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.product .container .product__container_info-box div span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
}
.product .container .product__container_info-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  border-radius: 12px;
  background: #007bd6;
}
.product .container .product__container_images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 50%;
}
.product .container .product__container_images .mySwiper2 {
  width: 100%;
  max-width: 635px;
  height: 503px;
  border-radius: 24px;
  cursor: grab;
}
.product .container .product__container_images .mySwiper2 .swiper-wrapper .swiper-slide {
  border-radius: 12px;
  background: #1c2628;
  border-radius: 12px;
}
.product .container .product__container_images .mySwiper2 .swiper-wrapper .swiper-slide img {
  object-fit: contain;
  max-height: 100%;
  border-radius: 12px;
}
.product .container .product__container_images .mySwiper {
  width: 100%;
  max-width: 635px;
}
.product .container .product__container_images .mySwiper .swiper-wrapper .swiper-slide {
  width: 112px !important;
  height: 83px !important;
  border-radius: 12px;
  cursor: pointer;
}
.product .container .product__container_images .mySwiper .swiper-wrapper .swiper-slide img {
  width: 112px !important;
  height: 83px !important;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .product .container {
    padding: 150px 20px 40px 20px;
  }
  .product .container .product__container {
    gap: 60px;
  }
}
@media (max-width: 992px) {
  .product .container .product__container {
    flex-direction: column-reverse;
    align-items: start;
  }
  .product .container .product__container_info {
    width: 100%;
  }
  .product .container .product__container_info-box {
    flex-direction: row;
  }
  .product .container .product__container_images {
    width: 100%;
  }
  .product .container .product__container_images .mySwiper2 {
    height: 503px;
  }
}
@media (max-width: 700px) {
  .product .container .product__container_info-title {
    font-size: 28px;
  }
  .product .container .product__container_info-text {
    font-size: 14px;
  }
  .product .container .product__container_info-box {
    flex-direction: column;
  }
  .product .container .product__container_info-box div span {
    font-size: 20px;
  }
  .product .container .product__container_images .mySwiper2 {
    width: 100%;
    max-width: 500px;
    height: 280px;
  }
  .product .container .product__container_images .mySwiper2 .swiper-wrapper .swiper-slide {
    border-radius: 12px;
  }
  .product .container .product__container_images .mySwiper2 .swiper-wrapper .swiper-slide img {
    border-radius: 12px;
  }
  .product .container .product__container_images .mySwiper {
    width: 100%;
    max-width: 500px;
  }
  .product .container .product__container_images .mySwiper .swiper-wrapper .swiper-slide {
    width: 70px !important;
    height: 54px !important;
  }
  .product .container .product__container_images .mySwiper .swiper-wrapper .swiper-slide img {
    width: 70px !important;
    height: 54px !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
  font-family: Finlandica;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

button {
  border: none;
  outline: none;
  padding: 12px 24px;
  cursor: pointer;
}

select {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
select option {
  border: none;
  outline: none;
  background: transparent !important;
  cursor: pointer !important;
}

.hover1:hover {
  color: #fff !important;
  transition: 0.4s !important;
  background: #0d6bb0 !important;
}

.hover2:hover {
  color: #fff !important;
  transition: 0.4s !important;
  background: #007bd6 !important;
}

.hide {
  overflow: hidden;
  opacity: 0;
  z-index: -3;
}

.show {
  overflow: visible;
  opacity: 1;
  top: 0;
}

.iti__selected-country {
  max-width: 120px !important;
  width: 100% !important;
  border-radius: 12px 0px 0px 12px !important;
}

.iti__country-container {
  width: 100%;
}

.iti__search-input {
  color: #000 !important;
  border: 2px solid #000 !important;
}
.iti__search-input::placeholder {
  color: #000 !important;
}

.main .blue__bg {
  background: #f2f9fe;
}

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