@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap");
:root {
  --page-bg: #F3F3F3;
  --white-color: #fff;
  --primary-color: #EF6A37;
  --pr-hover-color: #e26634;
  --dark-color: #141414;
  --grey-color: #DCE0E3;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #EF6A37;
  outline: none;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
/*   margin: 10px 0; */
}

html,
body {
  font-size: 16px;
  height: 100%;
  font-family: "Mulish", sans-serif;
  color: var(--dark-color);
  background: var(--page-bg);
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
}

body.lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
}

._container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.page-title {
  font-size: 24px;
}

/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*--------------------- HEADER ---------------------------------------------------------------- */
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--white-color);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
}

.header__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.header__logo {
  width: 180px;
  position: relative;
  z-index: 5;
}

.menu__icon {
  display: none;
}
.menu__list {
  display: flex;
  align-items: center;
}
.menu__list > li {
  position: relative;
  margin: 0px 0px 0px 30px;
}
.menu-item {
  position: relative;
}
.menu-item a {
  color: var(--dark-color);
  font-size: 14px;
  line-height: 150%;
}

.menu-item::after {
  position: absolute;
  display: block;
  content: "";
  top: 20px;
  height: 0.6px;
  width: 0%;
  left: 0;
  background-color: var(--dark-color);
  transition: 0.3s ease all 0.1s;
}

.menu-item:hover::after {
  width: 100%;
}

.sub-menu {
  position: absolute;
  top: 100%;
  background-color: var(--white-color);
  padding: 15px;
  min-width: 250px;
  box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
}

.sub-menu li {
  margin: 0 0 10px 0;
}

.sub-menu li:last-child {
  margin: 0;
}

body._pc .menu__list > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}

body._touch .menu__list > li {
  display: flex;
  align-items: center;
}

body._touch .menu-item {
  flex: 1 1 auto;
}

body._touch .menu__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0px 0px 0px 5px;
  transition: transform 0.3s ease 0s;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid black;
  margin-left: 30px;
}

body._touch .menu__list > li._active .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
  border-radius: 6px;
}
/* Добавляем стрелочку для пунктов меню с подменю */
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children > a::before {
  position: absolute;
  right: 0;
  display: none;
  content: '\25BC';
  padding-left: 8px;
  font-size: 12px;
}

body._touch .menu__list > li._active .menu-item-has-children > a::before {
  transform: rotate(-180deg);
}

/* --------- Поиск, языки, кнопка ------------- */
.header__action {
  display: flex;
  align-items: center;
  z-index: 1;
}

.search__icon .icon-search {
  font-size: 20px;
  color: var(--dark-color);
}
.search__icon .icon-search:hover {
  color: var(--primary-color);
}

.search-container {
  background: var(--white-color);
  padding: 60px 30px;
  border-radius: 20px;
  position: relative;
  margin: 0 10px;
}
.search__title {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}
.search-form {
  width: 100%;
}
.search-form label input {
  background: #eaedf0;
  border-radius: 10px;
  border: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #5b5b5b;
  padding: 14px;
  font-family: "Mulish", sans-serif;
  width: 320px;
}
.search-form .search-submit {
  background: var(--primary-color);
  border: none;
  padding: 14px 24px;
  border-radius: 30px;
  color: var(--white-color);
}

.header__lang {
  margin: 0 25px;
}

@media (min-width: 768px) {
  .header__lang:hover .lang__list {
    display: block;
  }
}
.iten_lang {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}
.iten_lang:hover {
  color: var(--primary-color);
}
.iten_lang .icon-planet {
  margin-left: 6px;
}

.lang__list .lang__link {
  padding: 6px 0;
  cursor: pointer;
}

.lang__list .lang__link a {
  text-decoration: none;
  color: var(--dark-color);
  font-size: 14px;
  text-transform: uppercase;
}
.lang__list .lang__link a:hover {
  color: var(--primary-color);
}

.lang__list {
  position: absolute;
  transition: opacity 0.3s ease, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  background: var(--white-color);
  border: 1px solid #f2f2f2;
  padding: 6px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
}

.header__lang:hover .lang__list {
  opacity: 1;
  visibility: visible;
}

.header__button a span {
  font-size: 14px;
  color: var(--dark-color);
  line-height: 100%;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid var(--dark-color);
}
.header__button a span:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.header__button a img {
  display: none;
  width: 24px;
  height: 24px;
}

/* ------------------------------------------ PAGE ------------------------------------------- */
.page {
  flex: 1 1 auto;
}

.page__main-block {
  height: 100vh;
  overflow: hidden;
}

.page__main-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

._ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.h3__subtitle {
  font-weight: 600;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.3;
  color: var(--primary-color);
}

.h2__title {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  color: #141414;
}

/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*---------------- MAIN PAGE STYLE -------------------------------------------------------------*/
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
.hero {
  position: relative;
  padding: 80px 30px 0;
  margin-bottom: 50px;
  height: 790px;
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 180px;
}

.hero__bg {
  padding: 80px 30px 0;
}
.hero__bg img {
  position: relative;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  filter: brightness(50%);
}

.slider {
  width: 100%;
  max-width: 1320px;
  position: relative;
}

.slides {
  display: flex;
  overflow: hidden;
  position: relative;
}

.slide {
  min-width: 100%;
  transition: transform 0.5s ease;
  display: none;
  height: 350px;
}

.slide.active {
  display: block;
}

.content {
  text-align: left;
}

.subheading {
  font-size: 16px;
  color: var(--grey-color);
  animation: fadeInUp 1s ease-in-out;
}

.heading {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: bold;
  color: var(--white-color);
  margin: 10px 0;
  max-width: 690px;
  animation: fadeInUp 1s ease-in-out;
}

.sl_button {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-color);
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  animation: fadeInUp 1s ease-in-out;
}

.sl_button:hover {
  background-color: var(--pr-hover-color);
}

.pagination {
  display: flex;
  position: absolute;
  bottom: 45px;
  right: 0;
  color: var(--white-color);
  cursor: pointer;
}
.pagination .total-slides {
  font-family: "Conthrax Sb";
  margin-left: 5px;
  font-size: clamp(20px, 3vw, 30px);
}
.pagination .divider {
  position: relative;
}
.pagination .divider::before {
  content: "";
  display: block;
  background: var(--white-color);
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
}
.pagination .current-slide {
  font-family: "Conthrax Sb";
  margin-right: 5px;
  animation: fadeInUp 1s ease-in-out;
  font-size: clamp(60px, 7vw, 80px);
  line-height: 100%;
  margin-top: 45px;
}

.dots {
  position: absolute;
  bottom: 0;
  right: 25px;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #ff5a00;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/*---------------- Section about us ---------------------------------*/
.m-about {
  margin: 100px 30px 50px;
  background: var(--grey-color);
  padding: 75px 0;
  border-radius: 20px;
}

.m-about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.m-about__left p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

.m-about__subtitle {
  margin-bottom: 18px;
}

.m-about__title {
  margin-bottom: 40px;
}

.m-about__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease 0s;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid var(--primary-color);
}
.m-about__link:hover {
  color: var(--white-color);
  transition: all 0.3s ease 0s;
  background: var(--primary-color);
}
.m-about__link:hover .icon-btn_arrow {
  color: var(--white-color);
}
.m-about__link .icon-btn_arrow {
  margin-left: 5px;
  position: relative;
  height: 12px;
}

.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.stat {
  text-align: start;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease, transform 1s ease;
}

.stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.line-container {
  width: 50px;
  margin: 0 auto 10px auto;
  overflow: hidden;
  position: relative;
}

.line {
  width: 0;
  height: 2px;
  background-color: black;
  position: absolute;
  left: 0;
  transition: width 2s ease;
}

.line.visible {
  width: 100%;
}

.number__wrapp {
  display: flex;
  align-items: center;
}
.number__wrapp span {
  font-family: "Conthrax Sb";
  font-size: 48px;
  font-weight: bold;
  margin: 15px 0;
}

.number {
  font-family: "Conthrax Sb";
  font-size: 48px;
  font-weight: bold;
  margin: 15px 0;
}

.label {
  font-size: 14px;
  color: var(--dark-color);
}

/*---------------- Section directions ---------------------------------*/
.directions {
  margin: 120px 0;
}

.directions__title {
  max-width: 613px;
}

.directions__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-top: 45px;
}
.directions__items .item_image {
  max-width: 90px;
  margin-bottom: 15px;
}
.directions__items .item__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.directions__items .item__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--dark-color);
}

/*---------------- Section segmental ---------------------------------*/
.segmental {
  margin: 120px 0;
}

.segmental__subtitle {
  margin-bottom: 18px;
}

.segmental__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.item__segmental {
  background: var(--grey-color);
  padding: 20px;
  border-radius: 15px;
  height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item__segmental:hover {
  background: var(--white-color);
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.15);
}
.item__segmental:hover .item_link .item__title {
  color: var(--primary-color);
}
.item__segmental:hover .item_link svg circle {
  fill: var(--primary-color);
}
.item__segmental:hover .item_link svg path {
  fill: var(--white-color);
}
.item__segmental .item_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item__segmental .item_link svg {
  width: 36px;
  height: 36px;
}
.item__segmental .item_link .item__title {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  color: var(--dark-color);
  width: 80%;
}
.item__segmental .item_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
	color: var(--dark-color);;
}

/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*---------------- FOOTER ----------------------------------------------------------------------*/
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 60px 0 0 0;
  margin: 0 30px 30px;
  border-radius: 20px;
}
.footer a {
  color: var(--white-color);
}

.footer__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer__logo {
  max-width: 222px;
}

.footer__social {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.footer__social li {
  margin-right: 25px;
}
.footer__social li a {
  font-size: 26px;
}
.footer__social li a:hover::before {
  color: var(--primary-color);
}

.footer__label {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.link__contact {
  font-size: 20px;
  font-weight: 600;
}
.link__contact:hover {
  color: var(--pr-hover-color);
}
.footer__list li a {
  font-size: 16px;
  line-height: 100%;
}
.footer__list li,
.footer__list-ways li {
  margin-bottom: 16px;
}
.footer__list li a:hover,
.footer__list-ways li a:hover {
  color: var(--pr-hover-color);
  text-decoration: underline;
}

.label__address {
  margin-top: 15px;
}

.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #37383F;
  padding: 22px 0;
}
.footer__copyright .copyright {
  margin-bottom: 15px;
}
.footer__copyright .copyright__right {
  margin-top: 15px;
}
.footer__copyright .copyright__icons {
  display: flex;
  align-items: center;
}
.footer__copyright .copyright__icons li {
  width: 65px;
  margin-left: 5px;
}

/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*--------------- Popup form style -------------------------------------------------------------*/
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
.feedback-container {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  max-width: 1050px;
  background: #F0F3F6;
  border-radius: 20px;
  padding: 50px;
  margin: 5px;
  position: relative;
}

.popup__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 15px;
}

.tech__title,
.feedback__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: var(--dark-color);
}

.tech__text,
.feedback__text {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.tech_list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.tech_list li span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary-color);
}
.tech_list li a {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--dark-color);
}

.tech_list:last-child {
  margin-top: 30px;
}

.input__feedback {
  display: flex;
  flex-direction: column;
}
.input__feedback input {
  background: #eaedf0;
  border-radius: 10px;
  border: none;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #5b5b5b;
  padding: 14px;
  margin-bottom: 13px;
  font-family: "Mulish", sans-serif;
}
.input__feedback .input__name p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.add__input {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
}
.add__input textarea {
  background: #eaedf0;
  border-radius: 10px;
  border: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #5b5b5b;
  padding: 14px;
  margin-bottom: 13px;
  max-height: 180px;
}
.add__input .fields__add {
  display: flex;
  flex-direction: column;
}
.add__input .fields__add label {
  margin-bottom: 5px;
  font-size: 14px;
}

.policy__check {
  margin-bottom: 20px;
}
.policy__check .policy__label {
  line-height: 120%;
}
.policy__check .policy__label a {
  font-size: 14px;
}

.contact__btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 30px;
  padding: 14px 39px;
}
.contact__btn:hover {
  background: var(--pr-hover-color);
}

/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*================= АДАПТАЦІЯ СТИЛІВ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ ===================================*/
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/*/
@media (max-width: 1040px) {
  .header__button a span {
    display: none;
  }
  .header__button a img {
    display: block;
  }
}
@media (max-width: 959.98px) {
  .feedback-container {
    grid-template-columns: 1fr 440px;
    gap: 20px;
  }
  .tech__title, .feedback__title {
    font-weight: 700;
    font-size: 24px;
  }
  .m-about__body {
    grid-template-columns: 1fr;
  }
  .directions__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .segmental__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__body {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 950px) {
  .menu__link {
    font-size: 13px;
  }
  .menu__list > li {
    margin: 0px 0px 0px 20px;
  }
}
@media (min-width: 767px) {
  .menu__list .menu-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .menu-item > li {
    padding: 10px 0;
  }
  .sub-menu {
    transform: translate(0px, 10%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0s;
    border-radius: 10px;
  }
}
@media (max-width: 767.98px) {
  .header__container {
    height: 50px;
  }
  .header__lang {
    display: block;
    z-index: 5;
  }
  .menu__icon {
    display: block;
    z-index: 5;
    position: absolute;
    width: 30px;
    height: 18px;
    cursor: pointer;
    right: 10px;
    top: 32%;
  }
  .menu__icon span,
  .menu__icon::before,
  .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #000;
  }
  .menu__icon::before,
  .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    top: 50%;
    transform: rotate(45deg) translate(0px, -50%);
  }
  .menu__body {
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 100px 30px 30px 30px;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body._active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 70px;
    background-color: #fff;
    z-index: 2;
  }
  .menu__list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .menu-item-has-children > a::before {
    display: block;
  }
  .menu-item-has-children {
    width: 100%;
  }
  .menu__list > li {
    flex-wrap: wrap;
    margin: 0px 0px 30px 0px;
  }
  .menu__list > li:last-child {
    margin-bottom: 0;
  }
  .menu__list > li._active .sub-menu {
    display: block;
  }
  .menu-item {
    font-size: 24px;
  }
  .sub-menu {
    position: relative;
    background-color: #fff;
    flex: 1 1 100%;
    margin: 20px 0px 0px -15px;
    display: none;
  }
  .sub-menu .menu-item {
    font-size: 16px;
    color: #000;
  }
  .header__action {
    margin-right: 50px;
  }
  /*--- slider ---*/
  .slide {
    height: 470px;
  }
  .hero__body {
    margin-top: 100px;
  }
  /*-- modal form --*/
  .feedback-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tech_list:last-child {
    margin-top: 15px;
  }
}
@media (max-width: 640px) {
  .footer__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 15px;
    margin-bottom: 90px;
  }
  .label__address {
    margin-top: 80px;
  }
  .text__address {
    width: 300px;
    position: absolute;
  }
  .stats-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .segmental__items {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 45px;
  }
  .item__segmental {
    height: 250px;
  }
}
@media (max-width: 520px) {
  .hero__bg img {
    height: 100%;
  }
  .hero__body {
    margin-top: 120px;
  }
  .hero__bg {
    padding: 80px 10px 0;
  }
  .slide {
    height: 430px;
  }
  .m-about {
    margin: 50px 10px;
  }
  .directions__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /*---- footer -----*/
  .footer {
    margin: 0 10px 30px;
  }
  .footer__copyright {
    margin-top: 65px;
  }
  .popup__close {
    width: 15px;
    height: 15px;
  }
  .tech_list li a {
    font-size: 18px;
  }
  .feedback-container {
    padding: 35px 20px;
  }
  .add__input {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .input__feedback .input__name {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 479.98px) {
  .header__logo {
    width: 110px;
  }
  .hero {
    margin-bottom: 20px;
  }
  .search-form label input {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 414.98px) {
  .menu-item a {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
  }
  .sub-menu .menu-item a {
    font-size: 16px;
  }
  .menu-item::after {
    top: 38px;
  }
  .footer__body {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  .footer-column {
    margin-bottom: 15px;
  }
  .footer__logo {
    max-width: 250px;
    margin-bottom: 30px;
  }
  .label__address {
    margin-top: 30px;
  }
  .text__address {
    width: 300px;
    position: relative;
  }
  .footer__copyright {
    margin-top: 0;
  }
}/*# sourceMappingURL=main-style.css.map */