/* --- HEADER-V2 --- */
.header-v2 {
  position: sticky;
  top: 0;
  z-index: 100;

  display: flex;
  align-items: center;

  width: 100%;
  height: 90px;
  padding: 0 100px;

  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.header-v2 .header-v2__container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
}

.header-v2 .header-v2__logo {
  flex-shrink: 0;
}

.header-v2 .header-v2__nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.header-v2 .header-v2__nav .nav-v2__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-v2 .header-v2__nav .nav-v2__list .nav-v2__item > a {
  font-family: "Golos UI", "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;

  color: #333333;

  transition: all 0.2s ease-in-out;
}

.header-v2 .header-v2__nav .nav-v2__list .nav-v2__item > a:hover {
  color: #ff6a00;
}

.header-v2 .header-v2__nav .nav-v2__list .nav-v2__item--sub {
  position: relative;
  padding-right: 20px;
}

.header-v2 .header-v2__nav .nav-v2__list .nav-v2__item--sub::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);

  width: 6px;
  height: 6px;

  border-right: 2px solid #ff6a00;
  border-bottom: 2px solid #ff6a00;

  transition: all 0.2s ease-in-out;
}

.header-v2 .header-v2__nav .nav-v2__list .nav-v2__item--sub:hover::after {
  transform: translateY(-50%) rotate(225deg);
  top: 30%;
}

.header-v2 .header-v2__nav .nav-v2__list .nav-v2__item--sub .nav-v2__sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;

  width: max-content;
  padding-top: 20px;

  opacity: 0;
  visibility: hidden;

  transition: all 0.2s ease-in-out;
}

.header-v2
  .header-v2__nav
  .nav-v2__list
  .nav-v2__item--sub:hover
  .nav-v2__sub-list {
  opacity: 1;
  visibility: visible;
}

.header-v2
  .header-v2__nav
  .nav-v2__list
  .nav-v2__item--sub
  .nav-v2__sub-list
  .nav-v2__sub-item {
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.header-v2
  .header-v2__nav
  .nav-v2__list
  .nav-v2__item--sub
  .nav-v2__sub-list
  .nav-v2__sub-item
  a {
  font-family: "Golos UI", "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;

  color: #333333;

  transition: all 0.2s ease-in-out;
}

.header-v2
  .header-v2__nav
  .nav-v2__list
  .nav-v2__item--sub
  .nav-v2__sub-list
  .nav-v2__sub-item
  a:hover {
  color: #ff6a00;
}

.header-v2 .header-v2__info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-v2 .header-v2__info .header-v2__phone a {
  font-family: "Golos UI", "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;

  color: #333333;
}
/* --- HEADER-V2 --- */

/* --- HEADER-V2-MEDIA --- */
@media (max-width: 1300px) {
  .header-v2 {
    padding: 0 50px;
  }
}

@media (max-width: 1200px) {
  .header-v2 {
    padding: 0 20px;
  }

  .header-v2 .header-v2__nav .nav-v2__list {
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .header-v2 .header-v2__nav {
    display: none;
  }
}

@media (max-width: 500px) {
  .header-v2 .header-v2__info {
    gap: 20px;
  }

  .header-v2 .header-v2__info .header-v2__phone a {
    font-size: 14px;
  }

  .header-v2 .header-v2__info .header-v2__btn-contact {
    padding: 10px 20px;
  }
}
/* --- HEADER-V2-MEDIA --- */

/* Advantages Section Fix */
.adv_section .adv_wrap {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px;
    align-items: flex-start; 
}

.adv_section .adv_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    flex-grow: 1; 
    flex-basis: 60%;
    padding: 0;
    margin: 0;
}

.adv_section .adv_list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: calc(33.333% - 20px); 
    min-width: 150px; 
}

.adv_section .adv_list-img {
  width: 56px;
  height: 56px;
  margin-bottom: 15px;
}

.adv_section .adv_list-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.adv_section .adv_text-block {
    flex-grow: 1;
    flex-basis: 35%;
}


/* Responsive adjustments */
@media screen and (max-width: 900px) {
  .adv_section .adv_wrap {
    flex-direction: column;
  }

  .adv_section .adv_list,
  .adv_section .adv_text-block {
    flex-basis: 100%; 
    width: 100%;
  }

  .adv_section .adv_list {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .adv_section .adv_list li {
    flex-basis: calc(50% - 20px); 
  }
}

@media screen and (max-width: 400px) {
  .adv_section .adv_list li {
    flex-basis: 100%;
  }
}