@charset "UTF-8";

@font-face {
  font-family: "Days One";
  src: url("../fonts/days-one.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --green: #5f9944;
  --light-green: #8cc63f;
  --rusobrus: #b61f29;
  --dark-fon: #2e302c;
  --fon-temnozelenyy: #28473f;
  --bezh: #e5e1d1;
  --white: #fff;
}

/*--- COMMON ----*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", serif;
  color: var(--dark-fon);
  font-weight: 400;
  background: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "Days One", serif;
  font-weight: 400;
}

h1 {
  line-height: 1.6;
}

@media (max-width: 767px) {
  h1 {
    font-size: calc(24px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h1 {
    font-size: calc(24px + 8 * 100vw / 1900);
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: calc(26px + 23.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h2 {
    font-size: calc(26px + 14 * 100vw / 1900);
  }
}

h3 {
  text-transform: uppercase;
  color: var(--green);
}

@media (max-width: 767px) {
  h3 {
    font-size: calc(24px + 23.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h3 {
    font-size: calc(24px + 14 * 100vw / 1900);
  }
}

h4 {
  font-weight: 700;
  line-height: 160%;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  h4 {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h4 {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

a {
  text-decoration: none;
  color: var(--dark-fon);
}

p {
  line-height: 1.4;
  font-family: "Montserrat", serif;
}

p span {
  font-weight: 700;
}

p:not(:last-child) {
  margin-bottom: 10px;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 15px;
}

.btn {
  display: inline-block;
  border: 1px solid var(--light-green);
  background: var(--light-green);
  font-weight: 700;
  color: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
  padding: 18px 30px;
  transition: background 0.2s ease-in-out;
  cursor: pointer;
}

@media (max-width: 767px) {
  .btn {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .btn {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

@media (max-width: 575px) {
  .btn {
    padding: 14px 20px;
  }
}

.btn:hover {
  background: #fff;
  color: var(--dark-fon);
}

.btn--dark {
  border: 1px solid var(--green);
  background: var(--green);
  transition: background 0.2s ease-in-out;
}

.btn--dark:hover {
  background-color: #fff;
  color: #000;
}

/*--- COMMON ----*/
/*--- HEADER ---*/
.header {
  background: var(--fon-temnozelenyy);
}



.container-header {
  padding: 20px 15px 14px 15px;
}

@media (max-width: 991px) {
  .container-header {
    padding-top: 8px;
    padding-bottom: 0;
  }
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  color: var(--white);
  text-align: center;
}

@media (max-width: 1116px) {
  .logo {
    width: 150px;
  }
}

@media (max-width: 991px) {
  .logo {
    width: 120px;
  }
}

.logo__text {
  font-size: 14px;
  margin-bottom: 6px;
}

@media (max-width: 1116px) {
  .logo__text {
    display: none;
  }
}

.logo__img {
  width: 100%;
}

@media (max-width: 991px) {
  .logo__img {
    width: 70px;
  }
}

.logo__titel {
  font-size: 15px;
  position: relative;
  top: -10px;
  font-weight: 700;
  color: var(--white);
}

@media (max-width: 991px) {
  .logo__titel {
    font-size: 14px;
    font-weight: 500;
  }
}


.header-content {
  width: 100%;
}

.social-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.social-content .btn {
  display: flex;
  align-items: center;
  padding: 8px 25px;
  width: 155px;
  height: 44px;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 991px) {
  .social-content .btn {
    width: auto;
    padding: 8px 14px;
  }
}

.social-content .btn svg {
  margin-right: 3px;
}

@media (max-width: 991px) {
  .social-content .btn svg {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .social-content .btn span {
    display: none;
  }
}

.group-mobile {
  display: flex;
}

.group-mobile .btn--dark {
  display: none;
  margin-right: 10px;
}

@media (max-width: 1239px) {
  .group-mobile .btn--dark {
    display: block;
  }
}

.adres {
  display: flex;
  align-items: center;
  width: 484px;
}

@media (max-width: 1102px) {
  .adres {
    display: none;
  }
}

.adres__img {
  margin-right: 8px;
}

.adres__text {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}

@media (max-width: 991px) {
  .group-header {
    display: none;
  }
}

.group-header__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #ebedf0;
  margin-bottom: 6px;
}

.group-header__content {
  display: flex;
}

.header-phone {
  display: flex;
  align-items: center;
  font-weight: 700;
  width: 200px;
}

@media (max-width: 767px) {
  .header-phone {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .header-phone {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

.header-phone a {
  color: var(--white);
}

.header-phone:first-child {
  margin-right: 20px;
}

.header-menu {
  background: var(--fon-temnozelenyy);
}

@media (max-width: 991px) {
  .header-menu {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 67px);
    background: var(--bezh);
    transform: translateX(150%);
    transition: transform 0.2s ease-in-out;
    z-index: 50;
  }
}

.header-menu--active {
  transform: translateX(0%);
}

.container-menu {
  padding-top: 0px;
  padding-bottom: 20px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
  }
}

.menu .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  padding: 7px 16px;
  width: 277px;
}

.menu .btn div:first-child {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

@media (max-width: 1116px) {
  .menu .btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .menu .btn {
    display: flex;
    width: 100%;
    font-size: 14px;
    padding: 6px 16px;
    margin-top: 24px;
  }
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1116px) {
  .menu-list {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .menu-list {
    flex-direction: column;
  }
}

.menu-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14%;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 991px) {
  .menu-list__item {
    justify-content: flex-start;
  }
}

.menu-list__item--active {
  border-radius: 12px 12px;
  background: var(--white);
}

@media (max-width: 1116px) {
  .menu-list__item {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .menu-list__item {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .menu-list__item {
    border-left: 2px solid var(--light-green);
  }
}

.menu-list__link {
  display: block;
  box-sizing: border-box;
  padding: 4px 35px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 1386px) {
  .menu-list__link {
    padding: 4px 30px;
  }
}

@media (max-width: 1336px) {
  .menu-list__link {
    padding: 4px 22px;
  }
}

@media (max-width: 1256px) {
  .menu-list__link {
    padding: 4px 15px;
  }
}

@media (max-width: 1186px) {
  .menu-list__link {
    padding: 4px 8px;
  }
}

@media (max-width: 991px) {
  .menu-list__link {
    color: var(--dark-fon);
    padding: 4px 8px;
  }
}

.menu-list__item:nth-child(1) {
  width: 22%;
}

@media(max-width: 767px) {
  .menu-list__item:nth-child(1) {
    width: 100%;
  }
}

.menu-list__item:nth-child(2) {
  width: 21%;
}

@media(max-width: 767px) {
  .menu-list__item:nth-child(2) {
    width: 100%;
  }
}

  .menu-list__item:not(:last-child) {
    border-right: 1px solid var(--light-green);
  }

  @media (max-width: 991px) {
    .menu-list__item:not(:last-child) {
      border-right: none;
      margin-bottom: 12px;
    }
  }

  .header-menu-product .menu-list__link {
    color: var(--dark-fon);
  }

    @media (max-width: 991px) {
     .header-menu-product .menu-list__link {
    display: block;
    text-align: left;
    width: 100%;
  }
  }

  .menu-list__item--active {
    border: 1px solid var(--green) !important;
  }

  .wrap-modile {
    display: none;
    margin-top: 24px;
  }

  @media (max-width: 991px) {
    .wrap-modile {
      display: block;
    }
  }

  .wrap-modile__text {
    font-size: 14px;
    line-height: 150%;
    color: #999;
    margin-bottom: 6px;
  }

  @media (max-width: 991px) {
    .wrap-modile .adres {
      display: flex;
      width: 100%;
    }
  }

  @media (max-width: 991px) {
    .wrap-modile .adres .adres__text {
      color: var(--dark-fon);
    }
  }

  .menu-list__item:hover {
    border-radius: 12px 12px;
    background: var(--white);
  }

  .menu-list__item:hover .menu-list__link {
    color: var(--dark-fon);
  }

  .bold-menu {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
  }

  @media (max-width: 991px) {
    .bold-menu {
      color: var(--dark-fon);
    }
  }

  .menu-list__item:hover .bold-menu {
    color: var(--dark-fon);
  }

  /*--- HEADER ---*/
  
  
  /*--- FOOTER ---*/
  .footer {
    background-color: var(--fon-temnozelenyy);
  }

  .container-footer {
    padding: 30px 15px 40px 15px;
  }

  .footer-header {
    display: flex;
    justify-content: space-between;
  }

  @media (max-width: 767px) {
    .footer-header {
      flex-direction: column;
    }
  }

  .footer-menu {
    width: calc(100% - 430px);
  }

  @media (max-width: 1095px) {
    .footer-menu {
      width: calc(100% - 400px);
    }
  }

  @media (max-width: 767px) {
    .footer-menu {
      margin-bottom: 24px;
      width: calc(100% - 0px);
    }
  }

  .footer-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }

  @media (max-width: 767px) {
    .footer-menu-list {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 1065px) {
    .footer-menu-list {
      flex-direction: column;
    }
  }

  @media (max-width: 767px) {
    .footer-menu-list {
      flex-direction: row;
    }
  }

  .footer-menu-list__item {
    width: 25%;
    text-align: center;
  }

  @media (max-width: 1065px) {
    .footer-menu-list__item {
      border-left: 2px solid var(--green);
      padding-left: 8px;
    }
  }

  @media (max-width: 767px) {
    .footer-menu-list__item {
      width: 50%;
    }
  }

  @media (max-width: 575px) {
    .footer-menu-list__item {
      width: 100%;
      border-left: none;
    }
  }

  .footer-menu-list__item a {
    font-weight: 700;
    color: var(--white);
  }

  @media (max-width: 767px) {
    .footer-menu-list__item a {
      font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .footer-menu-list__item a {
      font-size: calc(16px + 2 * 100vw / 1900);
    }
  }

  .footer-menu-list__item a:hover {
    border-bottom: 1px dashed #5f9944;
  }

  .footer-menu-list__item:not(:last-child) {
    border-right: 2px solid var(--green);
  }

  @media (max-width: 1065px) {
    .footer-menu-list__item:not(:last-child) {
      border-right: none;
      margin-bottom: 10px;
    }
  }

  .group-footer {
    width: 380px;
  }

  @media (max-width: 1065px) {
    .group-footer {
      width: 100%;
    }
  }

  .group-footer__title {
    color: #ebedf0;
    margin-bottom: 10px;
  }

  .group-footer__content {
    display: flex;
    justify-content: space-between;
  }

  .phone-footer a {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--white);
  }

  @media (max-width: 767px) {
    .phone-footer a {
      font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .phone-footer a {
      font-size: calc(16px + 2 * 100vw / 1900);
    }
  }

  .footer-body {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }

  @media (max-width: 1065px) {
    .footer-body {
      flex-direction: column;
    }
  }

  .footer-body .btn {
    display: flex;
    align-items: center;
  }

  @media (max-width: 1065px) {
    .footer-body .btn {
      margin-bottom: 10px;
      width: 48%;
      justify-content: center;
    }
  }

  @media (max-width: 767px) {
    .footer-body .btn {
      width: 100%;
      margin-bottom: 14px;
    }
  }

  .footer-body .btn img {
    margin-left: 5px;
  }

  .footer-body .btn svg {
    fill: var(--white);
    margin-left: 10px;
  }

  .footer-body .btn:hover svg {
    fill: var(--green);
  }

  .footer-body__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 430px);
  }

  @media (max-width: 1095px) {
    .footer-body__content {
      width: calc(100% - 400px);
    }
  }

  @media (max-width: 1065px) {
    .footer-body__content {
      width: calc(100% - 0px);
    }
  }

  @media (max-width: 767px) {
    .footer-body__content {
      flex-direction: column;
    }
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 96px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: var(--white);
  }

  @media (max-width: 1185px) {
    .footer-logo {
      display: none;
    }
  }

  .footer-logo__img {
    width: 100%;
  }

  .footer-adres {
    display: flex;
    align-items: flex-start;
    color: var(--white);
    font-weight: 500;
  }

  .footer-adres__img {
    margin-right: 4px;
  }

  .footer-info {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
    color: #ebedf0;
  }

  @media (max-width: 767px) {
    .footer-info {
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding-top: 40px;
    }
  }

  @media (max-width: 767px) {
    .developed {
      margin: 10px 0;
    }
  }

  .developed__link {
    color: #ebedf0;
  }

  .developed__link:hover {
    text-decoration: underline;
  }

  .confidesalnost__link {
    color: #ebedf0;
    line-height: 1.4;
  }

  .confidesalnost__link:hover {
    text-decoration: underline;
  }

  /*--- FOOTER ---*/
  .whatsapp-fixed {
    position: fixed;
    right: 50px;
    bottom: 70px;
    z-index: 10;
    cursor: pointer;
  }

  @media (max-width: 991px) {
    .whatsapp-fixed {
      display: none;
    }
  }

  @media (max-width: 790px) {
    .whatsapp-fixed {
      right: 30px;
      bottom: 50px;
    }
  }

  @media (max-width: 790px) {
    .link-phone {
      display: none;
    }
  }

  @media (max-width: 790px) {
    .link-phone svg {
      display: none;
    }
  }

  .link-phone-mob {
    display: none;
  }

  @media (max-width: 790px) {
    .link-phone-mob {
      display: block;
    }
  }

  @media (max-width: 790px) {
    .link-phone-mob img {
      width: 35px;
      transform: translate(-5%, -20%);
    }
  }

  .size-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(rgb(134, 255, 179) 0%, rgb(38, 211, 103) 100%);
    border: 4px solid rgb(187, 255, 212);
    padding: 10px;
    border-radius: 100%;
    text-align: center;
    animation: pulse 1.5s infinite;
  }

  @media (max-width: 790px) {
    .size-button {
      width: 50px;
      height: 50px;
      background: #d81535;
      border: 1px solid #d81535;
      box-shadow: 0 0 0 0 rgba(216, 21, 53, 0.4), inset 0 4px 0 #d81535;
    }
  }

  .size-button:hover {
    transition: transform 0.2s ease-in-out;
    transform: scale(1.15);
  }

  @media (max-width: 790px) {
    .size-button {
      width: 40px;
      height: 40px;
    }
  }

  .whatsapp-icon {
    transform: translate(1px, -2px);
    fill: #fff;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(38, 211, 103, 0.4);
    }

    70% {
      box-shadow: 0 0 0 25px rgba(38, 211, 103, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(38, 211, 103, 0);
    }
  }

  @media (max-width: 790px) {
    @keyframes pulse {
      100% {
        box-shadow: 0 0 0 15px rgba(90, 153, 220, 0), inset 0 1px 0 #d81535;
      }
    }
  }

  /*--- PAGES ---*/
  .pages {
    background-color: var(--fon-temnozelenyy);
  }

  .pages-catalog {
    background-color: transparent;
  }

  .container-pages {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  @media(max-width: 767px) {
    .container-pages {
      padding-top: 20px;
    }
  }

  .wrapper-pages {
    display: flex;
    flex-wrap: wrap;
  }

  .wrapper-pages__item {
    font-size: 14px;
    color: #999;
  }

  .wrapper-pages__item:not(:last-child) {
    padding-right: 20px;
  }

  .wrapper-pages__link {
    font-size: 14px;
    color: #ebedf0;
    position: relative;
    line-height: 1.4;
  }

  .wrapper-pages__link::after {
    position: absolute;
    content: "»";
    top: -8px;
    right: -15px;
  }

  @media (max-width: 767px) {
    .wrapper-pages__link::after {
      font-size: calc(14px + 13.6 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .wrapper-pages__link::after {
      font-size: calc(14px + 8 * 100vw / 1900);
    }
  }

  @media (max-width: 575px) {
    .wrapper-pages__link::after {
      top: -1px;
    }
  }

  .pages-catalog .wrapper-pages__item {
    color: #8f8f8f;
  }

  .pages-catalog .wrapper-pages__link {
    color: #5a5a5a;
  }

  /*--- PAGES ---*/
  
  /*--- ABOUT-DASHA ---*/
  .container-about-dasha {
    padding-top: 40px;
  }

  @media (max-width: 767px) {
    .container-about-dasha {
      padding-top: 10px;
      padding-bottom: 30px;
    }
  }

  .container-about-dasha h2 span {
    text-transform: uppercase;
    color: var(--green);
  }

  .wrapper-about-dasha {
    margin-top: 30px;
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
  }

  @media (max-width: 991px) {
    .wrapper-about-dasha {
      flex-direction: column;
    }
  }

  .wrapper-about-dasha__image {
    width: calc(100% - 450px);
  }

  @media (max-width: 1239px) {
    .wrapper-about-dasha__image {
      width: calc(100% - 420px);
    }
  }

  @media (max-width: 1110px) {
    .wrapper-about-dasha__image {
      width: calc(100% - 360px);
    }
  }

  @media (max-width: 991px) {
    .wrapper-about-dasha__image {
      width: 100%;
    }
  }

  .wrapper-about-dasha__content {
    width: 410px;
    background-color: rgba(255, 255, 255, 0.662745098);
    border: 1px solid rgba(191, 191, 191, 0.3960784314);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 20px;
  }

  @media (max-width: 1110px) {
    .wrapper-about-dasha__content {
      width: 340px;
    }
  }

  @media (max-width: 991px) {
    .wrapper-about-dasha__content {
      width: 100%;
      margin-top: 10px;
      padding: 10px;
    }
  }

  .img-slide {
    width: 100%;
    height: 570px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px;
  }

  @media (max-width: 1239px) {
    .img-slide {
      height: 500px;
    }
  }

  @media (max-width: 1110px) {
    .img-slide {
      height: 450px;
    }
  }

  @media (max-width: 767px) {
    .img-slide {
      height: 350px;
    }
  }

  @media (max-width: 575px) {
    .img-slide {
      height: 250px;
    }
  }

  @media (max-width: 400px) {
    .img-slide {
      height: 220px;
    }
  }

  .wrap-parametr__item {
    display: flex;
    align-items: center;
  }

  .wrap-parametr__item:not(:last-child) {
    margin-bottom: 12px;
  }

  @media (max-width: 1110px) {
    .wrap-parametr__item:not(:last-child) {
      margin-bottom: 6px;
    }
  }

  .wrap-parametr__img {
    margin-right: 10px;
  }

  .wrap-parametr__text {
    margin-left: 10px;
    font-size: 18px;
    line-height: 150%;
  }

  .text-param {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: var(--dark-fon);
  }

  .text-desc {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.4;
  }

  .title-param {
    margin-top: 40px;
    font-weight: 600;
    line-height: 160%;
  }

  @media (max-width: 767px) {
    .title-param {
      font-size: calc(18px + 6.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .title-param {
      font-size: calc(18px + 4 * 100vw / 1900);
    }
  }

  @media (max-width: 1239px) {
    .title-param {
      margin-top: 16px;
    }
  }

  .title-param--pmg {
    margin-top: 20px;
  }

  .price-komlect {
    margin-top: 20px;
  }

  @media (max-width: 1110px) {
    .price-komlect {
      margin-top: 10px;
    }
  }

  .price-komlect__item {
    background: #ebedf0;
    box-sizing: border-box;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
  }

  @media (max-width: 1239px) {
    .price-komlect__item {
      padding: 10px 20px;
    }
  }

  .price-komlect__item:hover {
    background: #c8ced6;
  }

  .price-komlect__item:nth-child(2) {
    background: #ffe066;
  }

  .price-komlect__item:nth-child(2):hover {
    background: #f0bf00;
  }

  .price-komlect__item:nth-child(3) {
    background: #ff9500;
  }

  .price-komlect__item:nth-child(3):hover {
    background: #ffb54d;
  }

  .price-komlect__item:not(:last-child) {
    margin-bottom: 20px;
  }

  @media (max-width: 1110px) {
    .price-komlect__item:not(:last-child) {
      margin-bottom: 10px;
    }
  }

  .price-komlect__title {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  @media (max-width: 767px) {
    .price-komlect__title {
      font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .price-komlect__title {
      font-size: calc(20px + 4 * 100vw / 1900);
    }
  }

  .price-komlect__text {
    font-weight: 700;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
  }

  @media (max-width: 767px) {
    .price-komlect__text {
      font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .price-komlect__text {
      font-size: calc(20px + 6 * 100vw / 1900);
    }
  }

  .price-komlect__text::before {
    position: absolute;
    content: "";
    width: 51%;
    height: 2px;
    background-color: #fff;
    left: 0;
  }

  .price-ekonom {
    margin-right: 6px;
  }

  .wrapper-menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  @media (max-width: 1102px) {
    .wrapper-menu {
      margin-top: 20px;
    }
  }

  .wrapper-menu__link {
    display: block;
    border: 2px solid var(--bezh);
    background: var(--bezh);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 14px 41px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    transition: background 0.2s ease-in-out;
  }

  @media (max-width: 767px) {
    .wrapper-menu__link {
      font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .wrapper-menu__link {
      font-size: calc(16px + 2 * 100vw / 1900);
    }
  }

  @media (max-width: 1365px) {
    .wrapper-menu__link {
      padding: 14px 30px;
    }
  }

  @media (max-width: 1272px) {
    .wrapper-menu__link {
      padding: 14px 20px;
    }
  }

  @media (max-width: 1186px) {
    .wrapper-menu__link {
      padding: 14px 10px;
    }
  }

  @media (max-width: 1102px) {
    .wrapper-menu__link {
      width: 49%;
      text-align: center;
      margin-top: 20px;
    }
  }

  @media (max-width: 1002px) {
    .wrapper-menu__link {
      margin-top: 10px;
      padding: 14px 14px;
    }
  }

  .wrapper-menu__link:hover {
    background: var(--green);
    border: 2px solid var(--green);
    color: #fff;
  }

  .wrapper-menu__link:first-child {
    background: var(--light-green);
    color: #fff;
  }

  .wrapper-menu__link:first-child:hover {
    background: var(--white);
    color: var(--dark-fon);
  }

  .wrapper-menu__link:not(:last-child) {
    margin-right: 26px;
  }

  @media (max-width: 1102px) {
    .wrapper-menu__link:not(:last-child) {
      margin-right: 0px;
    }
  }

  .wrapper-menu__link:nth-child(3) {
    background: url(../img/icon/btn.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--dark-fon);
    border: none;
  }

  @media (max-width: 1002px) {
    .wrapper-menu__link:nth-child(3) {
      width: 100%;
    }
  }

  @media (max-width: 1002px) {
    .wrapper-menu__link:nth-child(4) {
      width: 100%;
    }
  }

  .wrapper-menu__link:last-child {
    background: var(--green);
    color: #fff;
  }

  .wrapper-menu__link:last-child:hover {
    background: var(--white);
    color: var(--dark-fon);
  }

  .wrapper-menu-pmg {
    gap: 0;
  }

  .wrapper-menu-pmg .wrapper-menu__link {
    box-sizing: border-box;
    width: 24%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .wrapper-menu-pmg .wrapper-menu__link span {
    font-weight: 400;
  }

  .wrapper-menu-pmg .wrapper-menu__link:nth-child(1) {
    background: var(--fon-temnozelenyy);
  }

  .wrapper-menu-pmg .wrapper-menu__link:nth-child(1):hover {
    background: var(--white);
  }

  .wrapper-menu-pmg .wrapper-menu__link:nth-child(2) {
    background: var(--light-green);
    color: var(--white);
  }

  .wrapper-menu-pmg .wrapper-menu__link:nth-child(2):hover {
    background: var(--white);
    color: var(--dark-fon);
  }

  .wrapper-menu-pmg .wrapper-menu__link:nth-child(4) {
    padding: 8px 10px;
  }

  @media (max-width: 1072px) {
    .wrapper-menu-pmg .wrapper-menu__link {
      width: 49%;
      margin: 5px 0;
    }
  }

  @media (max-width: 575px) {
    .wrapper-menu-pmg .wrapper-menu__link {
      width: 100%;
    }
  }

  /*--- ABOUT-DASHA ---*/
  /*--- COMPLECT ---*/
  .container-complect {
    padding-top: 0;
  }

  .table {
    margin-top: 30px;
  }

  .table-thead {
    position: sticky;
    top: 0;
    display: flex;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
  }

  @media (max-width: 767px) {
    .table-thead {
      font-size: calc(14px + 20.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .table-thead {
      font-size: calc(14px + 12 * 100vw / 1900);
    }
  }

  .table-thead__name {
    background: var(--fon-temnozelenyy);
    box-sizing: border-box;
    padding: 10px 30px;
    width: calc(100% - 600px);
  }

  @media (max-width: 991px) {
    .table-thead__name {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 10px;
      text-align: center;
      width: calc(100% - 240px);
    }
  }

  @media (max-width: 575px) {
    .table-thead__name {
      width: calc(100% - 150px);
    }
  }

  .table-thead__param {
    width: 200px;
    box-sizing: border-box;
    padding: 10px 20px;
    border-left: 2px solid #fff;
    background: var(--fon-temnozelenyy);
  }

  @media (max-width: 991px) {
    .table-thead__param {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 10px;
      text-align: start;
      width: 80px;
      height: 140px;
    }
  }

  @media (max-width: 767px) {
    .table-thead__param {
      height: 120px;
    }
  }

  @media (max-width: 575px) {
    .table-thead__param {
      width: 50px;
    }
  }

  @media (max-width: 400px) {
    .table-thead__param {
      height: 98px;
    }
  }

  .table-thead__param span {
    display: block;
  }

  @media (max-width: 991px) {
    .table-thead__param span {
      transform: rotate(-90deg);
    }
  }

  .table-tbody__tr {
    display: flex;
    margin-bottom: 2px;
  }

  .table-tbody__name {
    background: #fff;
    box-sizing: border-box;
    padding: 10px 30px;
    width: calc(100% - 600px);
    line-height: 160%;
  }

  @media (max-width: 767px) {
    .table-tbody__name {
      font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .table-tbody__name {
      font-size: calc(16px + 2 * 100vw / 1900);
    }
  }

  @media (max-width: 991px) {
    .table-tbody__name {
      width: calc(100% - 240px);
      padding: 10px 10px;
    }
  }

  @media (max-width: 575px) {
    .table-tbody__name {
      padding: 4px 6px;
      width: calc(100% - 150px);
    }
  }

  .table-tbody__name span {
    color: var(--fon-temnozelenyy);
    font-weight: 700;
  }

  .table-tbody__item {
    width: 200px;
    box-sizing: border-box;
    padding: 10px 20px;
    border-left: 2px solid #f5f5f5;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 991px) {
    .table-tbody__item {
      width: 80px;
      padding: 10px 10px;
    }
  }

  @media (max-width: 575px) {
    .table-tbody__item {
      width: 50px;
    }
  }

  .info-econom--active {
    background: #ebedf0;
  }

  .info-standart--active {
    background-color: #fffddf;
  }

  .info-komfort--active {
    background-color: rgb(233, 255, 236);
  }

  .table-line {
    width: 100%;
    height: 2px;
    background-color: var(--fon-temnozelenyy);
    margin: 10px 0;
  }

  .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: relative;
    color: #fff;
  }

  @media (max-width: 767px) {
    .circle {
      font-size: calc(16px + 13.6 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .circle {
      font-size: calc(16px + 8 * 100vw / 1900);
    }
  }

  @media (max-width: 575px) {
    .circle {
      width: 25px;
      height: 25px;
    }
  }

  .yes-price {
    background-color: var(--green);
    color: #ffffff;
  }

  .yes-price::before {
    position: absolute;
    content: "✔";
    color: #ffffff !important;
  }


  .no-price {
    background-color: #ff3b30;
    color: #ffffff;
  }

  .no-price::before {
    position: absolute;
    content: "✖";
    color: #ffffff !important;
  }

  /*--- COMPLECT ---*/
  /*--- YEAR ---*/
  .year {
    background-color: var(--fon-temnozelenyy);
  }

  .year-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 767px) {
    .year-content {
      flex-direction: column;
    }
  }

  .year-content h2 {
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .year-content h2 span {
    display: block;
    margin: 0 20px;
    color: #fc0;
  }

  @media (max-width: 767px) {
    .year-content h2 span {
      font-size: calc(40px + 68 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .year-content h2 span {
      font-size: calc(40px + 40 * 100vw / 1900);
    }
  }

  .year-content .btn {
    margin-left: 30px;
    padding: 18px 80px;
  }

  @media(max-width: 767px) {
    .year-content .btn {
      margin-left: 0px;
      width: 100%;
    }
  }

  /*--- YEAR ---*/
  /*--- HERO-CATALOG ---*/
  .main-catalog {
    background-image: url(../img/background/bg-4.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .main-catalog--pmg {
    background-image: url(../img/background/bg-6.webp);
  }

  .main-catalog--portfolio {
    background-image: url(../img/background/bg-8.webp);
  }

  .main-catalog--portfolio {
    background-image: url(../img/background/bg-8.webp);
  }

  .main-catalog--rekonstrukciya {
    background-image: url(../img/background/bg-9.png);
  }

  .main-catalog--pristroika {
    background-image: url(../img/background/bg-12.png);
  }

  .container-main-catalog {
    padding-top: 126px;
    padding-bottom: 126px;
    position: relative;
  }

  @media (max-width: 575px) {
    .container-main-catalog {
      padding-bottom: 70px;
    }
  }

  .container-main-catalog h2 {
    color: var(--white);
    text-align: center;
  }

  @media (max-width: 767px) {
    .container-main-catalog h2 {
      font-size: calc(36px + 74.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .container-main-catalog h2 {
      font-size: calc(36px + 44 * 100vw / 1900);
    }
  }

  .container-main-catalog--portfolio {
    padding-top: 52px;
  }

  @media (max-width: 767px) {
    .container-main-catalog--portfolio .title-portfoli {
      font-size: calc(24px + 61.2 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .container-main-catalog--portfolio .title-portfoli {
      font-size: calc(24px + 36 * 100vw / 1900);
    }
  }

  .text-portfoli {
    width: 800px;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    color: var(--dark-fon);
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.7);
  }

  @media (max-width: 767px) {
    .text-portfoli {
      font-size: calc(18px + 10.2 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .text-portfoli {
      font-size: calc(18px + 6 * 100vw / 1900);
    }
  }

  @media (max-width: 991px) {
    .text-portfoli {
      width: auto;
      padding: 10px 20px;
    }
  }

  /*--- HERO-CATALOG ---*/
  /*--- ATTENTION ---*/
  .attention {
    background-color: var(--fon-temnozelenyy);
  }

  @media (max-width: 767px) {
    .container-attention {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }

  .container-attention h2 {
    color: #ff3b30;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .container-attention h2 span {
    color: #fff;
    text-transform: none;
  }

  @media (max-width: 767px) {
    .container-attention h2 span {
      font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .container-attention h2 span {
      font-size: calc(20px + 4 * 100vw / 1900);
    }
  }

  .container-attention .text {
    color: var(--white);
  }

  .attention-text {
    font-weight: 700;
    color: var(--white);
    margin-top: 16px;
    cursor: pointer;
  }

  @media (max-width: 767px) {
    .attention-text {
      font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .attention-text {
      font-size: calc(16px + 2 * 100vw / 1900);
    }
  }

  .prev-text {
    display: none;
  }

  .prev-text__title {
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--white);
  }

  @media (max-width: 767px) {
    .prev-text__title {
      font-size: calc(20px + 3.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .prev-text__title {
      font-size: calc(20px + 2 * 100vw / 1900);
    }
  }

  .prev-text--active {
    display: block;
  }

  .list__item {
    color: var(--white);
    line-height: 1.4;
    font-weight: 400;
    font-style: italic;
  }

  /*--- ATTENTION ---*/
  /*--- ETAP ---*/
  .container-etap {
    padding-bottom: 80px;
  }

  .container-etap .btn {
    background: var(--green);
    box-sizing: border-box;
    padding: 18px 60px;
    margin-top: 10px;
  }

  .wrapper-etap {
    margin-top: 40px;
  }

  .wrapper-etap__item {
    display: flex;
  }

  @media (max-width: 872px) {
    .wrapper-etap__item {
      flex-direction: column;
    }
  }

  .wrapper-etap__item .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-green);
    transition: all 0.2s ease-in-out;
    width: 400px;
  }

  @media (max-width: 872px) {
    .wrapper-etap__item .btn {
      width: 100%;
      padding: 14px 0;
    }
  }

  .wrapper-etap__item .btn span {
    margin-right: 10px;
  }

  .wrapper-etap__item .btn svg {
    fill: var(--white);
  }

  .wrapper-etap__item .btn:hover {
    background: var(--white);
  }

  .wrapper-etap__item .btn:hover svg {
    fill: var(--green);
  }

  .wrapper-etap__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .wrapper-etap__content {
    background: var(--bezh);
    box-sizing: border-box;
    padding: 30px 40px;
    width: calc(100% - 420px);
    border-radius: 12px 0 0 12px;
  }

  @media (max-width: 1239px) {
    .wrapper-etap__content {
      padding: 20px 20px;
    }
  }

  @media (max-width: 991px) {
    .wrapper-etap__content {
      padding: 10px 10px;
    }
  }

  @media (max-width: 872px) {
    .wrapper-etap__content {
      width: 100%;
      border-radius: 12px 12px 0 0;
    }
  }

  @media (max-width: 575px) {
    .wrapper-etap__content {
      padding: 15px 10px;
    }
  }

  .wrapper-etap__image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 420px;
    border-radius: 0 12px 12px 0;
  }

  @media (max-width: 872px) {
    .wrapper-etap__image {
      width: 100%;
      height: 200px;
      border-radius: 0 0 12px 12px;
    }
  }

  .wrapper-etap__item:nth-child(1) .wrapper-etap__image {
    background-image: url(../img/all/1.webp);
  }

  .wrapper-etap__item:nth-child(2) .wrapper-etap__image {
    background-image: url(../img/all/2.webp);
  }

  .wrapper-etap__item:nth-child(3) .wrapper-etap__image {
    background-image: url(../img/all/3.webp);
  }

  .wrapper-etap__item:nth-child(4) .wrapper-etap__image {
    background-image: url(../img/all/4.webp);
  }

  .wrapper-etap__item:nth-child(5) .wrapper-etap__image {
    background-image: url(../img/all/5.webp);
  }

  .wrapper-etap__item:nth-child(6) .wrapper-etap__image {
    background-image: url(../img/all/6.webp);
  }

  .wrapper-etap__item:nth-child(7) .wrapper-etap__image {
    background-image: url(../img/all/7.webp);
  }

  .wrapper-etap__item:nth-child(6).wrapper-etap__item--pmg .wrapper-etap__image {
    background-image: url(../img/all/1111.jpg);
  }

  .wrapper-etap__item:nth-child(2).wrapper-etap__item--dogovor .wrapper-etap__image {
    background-image: url(../img/all/3.webp);
}

.wrapper-etap__item:nth-child(3).wrapper-etap__item--stroi .wrapper-etap__image {
    background-image: url(../img/all/5.webp);
}

.wrapper-etap__item:nth-child(4).wrapper-etap__item--garant .wrapper-etap__image {
    background-image: url(../img/all/7.webp);
}


  .group-etap {
    display: flex;
    align-items: center;
  }

  .group-etap__num {
    background: #fc0;
    box-sizing: border-box;
    padding: 9px 20px;
    border-radius: 12px 12px;
    margin-right: 30px;
  }

  @media (max-width: 767px) {
    .group-etap__num {
      font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .group-etap__num {
      font-size: calc(18px + 2 * 100vw / 1900);
    }
  }

  .group-etap__title {
    font-weight: 700;
    text-transform: uppercase;
  }

  @media (max-width: 767px) {
    .group-etap__title {
      font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .group-etap__title {
      font-size: calc(20px + 6 * 100vw / 1900);
    }
  }

  .list-main {
    margin-top: 30px;
  }

  .list-main__item {
    line-height: 1.5;
  }

  @media (max-width: 767px) {
    .list-main__item {
      font-size: calc(16px + 6.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .list-main__item {
      font-size: calc(16px + 4 * 100vw / 1900);
    }
  }

  /*--- ETAP ---*/
  /*--- FAQ ---*/
  .faq {
    background: linear-gradient(90deg, rgba(40, 71, 63, 0.6) 0%, rgba(40, 71, 63, 0.6) 100%), url(../img/background/bg-5.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .container-faq {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  @media (max-width: 1239px) {
    .container-faq {
      padding-bottom: 60px;
    }
  }

  @media (max-width: 575px) {
    .container-faq {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }

  .container-faq h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--white);
  }

  .accordion {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    cursor: pointer;
    box-sizing: border-box;
    padding: 20px 40px;
    font-weight: 500;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    border-radius: 12px 12px;
    transition: 0.4s;
    position: relative;
  }

  @media (max-width: 767px) {
    .accordion {
      font-size: calc(18px + 13.6 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .accordion {
      font-size: calc(18px + 8 * 100vw / 1900);
    }
  }

  @media (max-width: 767px) {
    .accordion {
      padding: 20px 20px;
      padding-right: 40px;
    }
  }

  @media (max-width: 575px) {
    .accordion {
      padding: 14px 14px;
      padding-right: 40px;
    }
  }

  .active {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 12px 12px 0 0;
    color: var(--dark-fon);
  }

  .accordion:hover {
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--dark-fon);
  }

  .accordion:after {
    position: absolute;
    top: 16px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "+";
    color: var(--green);
    width: 40px;
    height: 40px;
    background: var(--bezh);
    border-radius: 4px 4px;
  }

  @media (max-width: 767px) {
    .accordion:after {
      font-size: calc(20px + 51 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .accordion:after {
      font-size: calc(20px + 30 * 100vw / 1900);
    }
  }

  @media (max-width: 767px) {
    .accordion:after {
      top: calc(50% - 20px);
      right: 15px;
    }
  }

  @media (max-width: 575px) {
    .accordion:after {
      width: 30px;
      height: 30px;
      top: calc(50% - 15px);
      right: 15px;
    }
  }

  .active:after {
    content: "−";
    background: var(--green);
    color: var(--white);
  }

  .panel {
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  @media (max-width: 767px) {
    .panel {
      padding: 0px 20px;
    }
  }

  @media (max-width: 575px) {
    .panel {
      padding: 0px 15px;
    }
  }

  .panel--active {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 0 0 12px 12px;
  }

  .panel:not(:last-child) {
    margin-bottom: 20px;
  }

  @media (max-width: 1239px) {
    .panel:not(:last-child) {
      margin-bottom: 10px;
    }
  }

  /*--- FAQ ---*/
  /*--- ADV-MAIN ---*/
  .adv-main {
    background-image: url(../img/background/bg-7.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .container-adv-main {
    padding-top: 250px;
    padding-bottom: 0;
  }

  @media (max-width: 767px) {
    .container-adv-main {
      padding-top: 50px;
    }
  }

  .container-adv-main h2 {
    text-align: center;
    color: var(--white);
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  @media (max-width: 767px) {
    .container-adv-main h2 {
      font-size: calc(36px + 74.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .container-adv-main h2 {
      font-size: calc(36px + 44 * 100vw / 1900);
    }
  }

  @media (max-width: 991px) {
    .container-adv-main h2 {
      width: 100%;
      margin-bottom: 10px;
    }
  }

  .wrapper-adv-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .wrapper-adv-main__item {
    width: 23.5%;
    box-sizing: border-box;
    padding: 10px 10px 60px 10px;
    background: linear-gradient(180deg, rgba(46, 48, 44, 0.05) 1%, rgba(46, 48, 44, 0.35) 15%, rgba(46, 48, 44, 0.9) 100%);
  }

  @media (max-width: 991px) {
    .wrapper-adv-main__item {
      width: 49%;
      margin-top: 20px;
    }
  }

  @media (max-width: 767px) {
    .wrapper-adv-main__item {
      width: 100%;
      padding: 10px 10px 20px 10px;
    }
  }

  .wrapper-adv-main__yeas {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px 4px;
    background-color: var(--light-green);
    margin-bottom: 16px;
  }

  @media (max-width: 767px) {
    .wrapper-adv-main__yeas {
      font-size: calc(22px + 10.2 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .wrapper-adv-main__yeas {
      font-size: calc(22px + 6 * 100vw / 1900);
    }
  }

  .wrapper-adv-main__yeas::after {
    content: "✔";
    color: var(--white);
  }

  .wrapper-adv-main__title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
  }

  @media (max-width: 767px) {
    .wrapper-adv-main__title {
      font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .wrapper-adv-main__title {
      font-size: calc(20px + 4 * 100vw / 1900);
    }
  }

  .wrapper-adv-main__text {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 18px;
    color: var(--white);
  }

  .wrapper-adv-main__btn {
    display: block;
    background: var(--light-green);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 13px 40px;
    text-align: center;
    cursor: pointer;
  }

  @media (max-width: 767px) {
    .wrapper-adv-main__btn {
      width: 100%;
    }
  }

  /*--- ADV-MAIN ---*/
  /*--- CONTACT ---*/
  .container-contact {
    padding-top: 40px;
  }

  @media (max-width: 767px) {
    .container-contact {
      padding-top: 10px;
    }
  }

  .contact-block {
    background: var(--bezh);
    margin: 30px 0;
    border-radius: 8px 8px;
    box-sizing: border-box;
    padding: 30px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
  }

  @media (max-width: 767px) {
    .contact-block {
      padding: 15px 15px;
    }
  }

  .wrapper-contact {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  @media (max-width: 850px) {
    .wrapper-contact {
      flex-direction: column;
    }
  }

  .wrapper-contact__contant {
    width: 450px;
  }

  @media (max-width: 850px) {
    .wrapper-contact__contant {
      width: 100%;
    }
  }

  .wrapper-contact__contant .btn {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .wrapper-contact__contant .btn svg {
    fill: var(--white);
    margin-left: 10px;
  }

  .wrapper-contact__contant .btn:hover svg {
    fill: var(--dark-fon);
  }

  .wrapper-contact__text {
    color: #999;
    margin-bottom: 10px;
  }

  .wrapper-contact__map {
    width: calc(100% - 480px);
  }

  @media (max-width: 850px) {
    .wrapper-contact__map {
      width: 100%;
      margin-top: 20px;
    }
  }

  #map {
    width: 100%;
    height: 400px;
  }

  @media (max-width: 850px) {
    #map {
      height: 250px;
    }
  }

  .contact-phone {
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
  }

  @media (max-width: 767px) {
    .contact-phone {
      font-size: calc(26px + 20.4 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .contact-phone {
      font-size: calc(26px + 12 * 100vw / 1900);
    }
  }

  @media (max-width: 767px) {
    .contact-phone {
      margin-bottom: 10px;
    }
  }

  .contact-adres {
    line-height: 1.4;
    font-weight: 500;
  }

  @media (max-width: 767px) {
    .contact-adres {
      font-size: calc(16px + 6.8 * (100vw - 320px) / 1900);
    }
  }

  @media (min-width: 767px) {
    .contact-adres {
      font-size: calc(16px + 4 * 100vw / 1900);
    }
  }

  /*--- CONTACT ---*/
  /*--- PORTFOLIO ---*/
  .container-portfolio h2 {
    margin-bottom: 30px;
  }

  /* Grid */
  .container-galereay {
    display: grid;
    grid-gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    box-sizing: border-box;
    padding: 0 0px;
    margin-top: 15px;
  }

  @media (max-width: 1239px) {
    .container-galereay {
      grid-auto-rows: 140px;
    }
  }

  @media (max-width: 991px) {
    .container-galereay {
      grid-auto-rows: 100px;
    }
  }

  @media (max-width: 767px) {
    .container-galereay {
      grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    }
  }

  @media (max-width: 575px) {
    .container-galereay {
      grid-template-columns: repeat(auto-fit, minmax(33.333%, 1fr));
    }
  }

  .container-galereay__link {
    display: block;
  }

  .container-galereay__item>a>.container-galereay__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  /* Используем :nth-child() для задания стилей с повторением каждые 10 элементов */
  .container-galereay>div:nth-child(10n+1),
  .container-galereay>div:nth-child(10n+6),
  .container-galereay>div:nth-child(10n+8) {
    grid-column: span 2;
  }

  .container-galereay>div:nth-child(10n+2),
  .container-galereay>div:nth-child(10n+5) {
    grid-row: span 2;
  }

  .container-galereay>div:nth-child(10n+4) {
    grid-column: span 2;
    grid-row: span 2;
  }

  /* Media Queries */
  @media screen and (min-width: 1024px) {
    .wrapper {
      width: 1400px;
      margin: 0 auto;
    }
  }

  .wrapper-feedback {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }

  .wrapper-feedback__item {
    width: calc(33.333% - 14px);
    border-radius: 4px 4px;
  }

  @media (max-width: 991px) {
    .wrapper-feedback__item {
      width: calc(50% - 14px);
    }
  }

  @media (max-width: 767px) {
    .wrapper-feedback__item {
      width: 100%;
    }
  }

  .my-video {
    width: 100%;
    border-radius: 4px 4px;
    cursor: pointer;
  }

  .visibillity {
    display: none;
  }

  .visibillity--block {
    display: grid;
  }

  .visibl {
    display: none;
  }

  .visibl-feedback {
    display: flex;
    margin-top: 15px;
  }

  /*--- PORTFOLIO ---*/
  /*--- MENU-MOBILE ---*/
  .menu-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 7px 15px;
    background: linear-gradient(180deg, rgba(41, 112, 94, 0.9) 0%, rgba(40, 71, 63, 0.9) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 20;
  }

  @media (max-width: 991px) {
    .menu-mobile {
      display: flex;
    }
  }

  .menu-mobile__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu-mobile__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu-mobile__item a svg {
    width: 30px;
  }

  .menu-mobile__text {
    margin-top: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    text-align: center;
    color: var(--bezh);
  }

  .burger {
    width: 32px;
    height: 25px;
    background-color: transparent;
    border: none;
    position: relative;
    margin-top: 6px;
  }

  .burger::after,
  .burger::before {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--bezh);
    border-radius: 30px;
    transition: transform 0.2s ease-in-out;
  }

  .burger::before {
    top: 0;
  }

  .burger::after {
    bottom: 0;
  }

  .burger__line {
    position: absolute;
    top: calc(50% - 1.5px);
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--bezh);
    border-radius: 30px;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }

  .burger--active::before {
    top: 45%;
    transform: rotate(45deg);
  }

  .burger--active::after {
    bottom: 45%;
    transform: rotate(-45deg);
  }

  .burger--active .burger__line {
    opacity: 0;
  }

  /*--- MENU-MOBILE ---*/
  /*--- GARANT ---*/
  .garant {
    background-color: var(--fon-temnozelenyy);
  }

  @media (max-width: 825px) {
    .container-garant {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }

  .wrapper-garant {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media (max-width: 825px) {
    .wrapper-garant {
      flex-direction: column;
    }
  }

  .wrapper-garant__img {
    margin-right: 40px;
  }

  @media (max-width: 825px) {
    .wrapper-garant__img {
      margin-right: 0;
    }
  }

  .wrapper-garant h2 {
    color: var(--white);
    text-transform: uppercase;
    margin-right: 40px;
  }



  /*--- BLOG ---*/
.blog {
  background-color: #fff;
}

.container-blog h2 {
  margin-bottom: 30px;
  color: #28473f;
}
.container-blog h4 {
  font-weight: 400;
  text-transform: none;
  margin: 19px 0;
  color: #28473f;
}
@media (max-width: 767px) {
  .container-blog h4 {
    font-size: calc(22px + 17 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .container-blog h4 {
    font-size: calc(22px + 10 * 100vw / 1900);
  }
}
@media (max-width: 767px) {
  .container-blog h4 {
    line-height: 1.1;
  }
}
.container-blog .btn {
  display: block;
  width: 470px;
  box-sizing: border-box;
  padding: 14px 20px;
  margin-top: 40px;
}
@media (max-width: 567px) {
  .container-blog .btn {
    width: 100%;
  }
}
.container-blog .title-karkas {
  margin-top: 0;
}
@media (max-width: 767px) {
  .container-blog .text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .container-blog .text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}
.container-blog .text span {
  color: #28473f;
}

.wrapper-blog {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: rgba(195, 224, 194, 0.368627451);
  box-sizing: border-box;
  padding: 30px 30px;
  border-radius: 15px 15px;
  margin: 40px 0;
  line-height: 1.5;
  position: relative;
}
@media (max-width: 767px) {
  .wrapper-blog {
    padding: 20px 20px;
  }
}
@media (max-width: 567px) {
  .wrapper-blog {
    padding: 10px 10px;
    margin: 30px 0;
  }
}
.wrapper-blog__text {
  line-height: 1.45;
  width: calc(100% - 75px);
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .wrapper-blog__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .wrapper-blog__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}
@media (max-width: 767px) {
  .wrapper-blog__text {
    width: calc(100% - 55px);
    margin-top: 0px;
  }
}
@media (max-width: 567px) {
  .wrapper-blog__text {
    width: calc(100% - 40px);
    line-height: 1.35;
  }
}

.blog-klient {
  float: right;
  margin: 0 0 10px 10px;
  width: 480px;
  border-radius: 6px 6px;
}

@media (max-width: 991px) {
  .blog-klient {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .blog-klient {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.img-citata {
  width: 60px;
}
@media (max-width: 767px) {
  .img-citata {
    width: 40px;
  }
}
@media (max-width: 567px) {
  .img-citata {
    width: 30px;
  }
}

.wrapper-img-blog {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
@media (max-width: 767px) {
  .wrapper-img-blog {
    gap: 15px;
  }
}
.wrapper-img-blog__item {
  width: calc(33.333% - 15px);
}
@media (max-width: 991px) {
  .wrapper-img-blog__item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .wrapper-img-blog__item {
    width: calc(50% - 10px);
  }
}
.wrapper-img-blog__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px 4px;
}
@media (max-width: 767px) {
  .wrapper-img-blog__img {
    height: 220px;
  }
}
@media (max-width: 567px) {
  .wrapper-img-blog__img {
    height: 150px;
  }
}
@media (max-width: 400px) {
  .wrapper-img-blog__img {
    height: 130px;
  }
}