/* ProjectHeader */
.header {
  background-image: url(../img/bg-top.webp);
  background-size: cover;
  background-position: center;
  min-height: 880px;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1245px;
  padding: 24px 15px 24px 15px;
  margin: 0 auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header__top-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #365046;
  z-index: 999;
}

.header__logo {
  width: 160px;
  height: 30px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.header__nav ul li a {
  color: var(--light, #FFFCF5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header__nav ul li a:hover {
  color: var(--add-txt, #7A6C4A);
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.header__social-item {
  width: 40px;
  height: 40px;
}
.header__social-item img {
  width: 100%;
  height: 100%;
}

.bottom__busket {
    position: fixed;
    bottom: 1em;
    right: 1em;
    cursor: pointer;
    background-color: #365046;
    border-radius: 50px;
    padding: 6px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Тень */
    transition: transform 0.3s, box-shadow 0.3s; /* Транзиция для плавности эффектов */
    z-index: 10; /* Устанавливаем поверх других элементов */
}

.bottom__busket:hover {
    transform: translateY(-5px); /* Приподнимаем иконку при наведении */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Увеличиваем тень при наведении */
}

.bottom__busket.show {
    display: flex;
}

.header__busket {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background-image: url(../img/busket.svg);
  background-size: cover;
  position: relative;
}

.header__busket-count {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  color: #FFF;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0px 5px;
  border-radius: 100px;
  background: var(--red, #EC8161);
  min-width: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  right: -2px;
}

.header__busket-count-active {
  opacity: 1;
}

.header__social-mobile {
  display: none;
}

.menu__icon {
  display: none;
  cursor: pointer;
  position: relative;
  height: 16px;
  width: 32px;
  z-index: 10;
}

.menu__icon span {
  position: absolute;
  background-color: #ffffff;
  left: 0;
  width: 100%;
  height: 2px;
  top: 7px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__icon::after,
.menu__icon::before {
  content: "";
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  left: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__icon::before {
  top: 0;
}

.menu__icon::after {
  bottom: 0;
}

@media (max-width: 1160px) {
  .header {
    min-height: 850px;
  }
  .header__top {
    padding: 24px 15px 24px 15px;
  }
  .header__logo {
    width: 160px;
    height: 30px;
  }
  .header__nav ul {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
  .header__nav ul li a {
    font-size: 14px;
  }
  .header__social-item {
    width: 35px;
    height: 35px;
  }
  .header__busket {
    width: 34px;
    height: 34px;
  }
  .header__busket-count {
    font-size: 8px;
    padding: 0px 5px;
    min-width: 23px;
    right: -2px;
  }
}
@media (max-width: 992px) {
  .header {
    min-height: 650px;
  }
  .header__top {
    padding: 6px 15px 6px 15px;
  }
  .header__logo {
    z-index: 5;
  }
  .header__nav ul {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
  .header__nav ul li a {
    font-size: 14px;
  }
  .header__social {
    display: none;
  }
  .header__social-item {
    width: 35px;
    height: 35px;
  }
  .header__busket {
    width: 34px;
    height: 34px;
  }
  .header__busket-count {
    font-size: 8px;
    padding: 0px 5px;
    min-width: 23px;
    right: -2px;
  }
  .header__social-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .header__nav {
    position: fixed;
    top: -150%;
    left: 0px;
    width: 100%;
    max-width: none;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 2;
    padding-top: 101px;
    margin-top: 0px;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    background-color: #365046;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__nav ul li {
    text-align: center;
    padding: 15px 0;
  }
  .header__nav ul li a {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
  }
  ._active::after, ._active::before {
    background-color: #ffffff;
  }
  .menu__icon {
    display: block;
  }
  ._active::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 5px;
  }
  ._active::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 9px;
  }
  ._active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  ._actived {
    top: 0%;
  }
}
.header__bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1245px;
  padding: 48px 15px 20px 15px;
  margin: 0 auto;
}

.header__bottom-title {
  color: var(--light, #FFFCF5);
  text-align: center;
  font-family: "Kharkiv";
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  max-width: 920px;
}

.header__bottom-subtitle {
  margin-top: 6px;
  color: var(--light, #FFFCF5);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  max-width: 620px;
}

.header__bottom-button {
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 26px;
  background: var(--light, #FFFCF5);
  padding: 16px 42px;
  color: var(--green, #365046);
  text-align: center;
  font-family: "Kharkiv";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.header__bottom-button:hover {
  background: var(--green, #365046);
  color: #FFFCF5;
}

.header__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .header__bottom-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
    max-width: 1245px;
    height: 100%;
    min-height: 605px;
    padding: 34px 15px 40px 15px;
  }
  .header__bottom-inner {
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .header__bottom-title {
    font-size: 28px;
    max-width: 920px;
  }
  .header__bottom-subtitle {
    margin-top: 20px;
    font-size: 16px;
  }
  .header__bottom-button {
    justify-self: flex-end;
    margin-top: 0px;
  }
}
/* ProjectSection1 */
.section__top-container {
  max-width: 1245px;
  padding: 110px 15px 55px 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__top-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--black, #333);
  font-family: "Kharkiv";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 44px */
}
.section__top-title span:first-child {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
  max-width: 907px;
  text-align: left;
}
.section__top-title span:last-child {
  text-align: left;
}

.section__top-subtitle {
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  width: 100%;
  max-width: 500px;
}

.section__top-inner {
  margin-top: 20px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
  max-width: 910px;
}

.section__top-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.section__top-item-left {
  border: 1px solid var(--green, #365046);
  width: 100%;
  max-width: 495px;
  height: 700px;
}
.section__top-item-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section__top-item-right {
  width: 100%;
  max-width: 392px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section__top-item-right-photo {
  border: 1px solid var(--green, #365046);
  height: 390px;
}
.section__top-item-right-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section__top-item-right-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
.section__top-item-right-text p {
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

@media (max-width: 992px) {
  .section__top-container {
    max-width: 1245px;
    padding: 60px 15px 30px 15px;
  }
  .section__top-title {
    width: 100%;
    display: block;
    font-size: 20px;
  }
  .section__top-title span:first-child {
    text-align: left;
    display: inline;
    margin-left: 40px;
    padding-right: 0px;
  }
  .section__top-title span:last-child {
    display: inline;
    text-align: left;
  }
  .section__top-subtitle {
    font-size: 15px;
    line-height: 140%;
    max-width: none;
  }
  .section__top-inner {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .section__top-items {
    row-gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .section__top-item-left {
    max-width: none;
    height: 450px;
  }
  .section__top-item-right {
    width: 100%;
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 20px;
  }
  .section__top-item-right-photo {
    height: 390px;
  }
  .section__top-item-right-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .section__top-item-right-text p {
    font-size: 15px;
    line-height: 140%; /* 20.8px */
  }
}
/* ProjectSection2 */
.section__produkt-container {
  overflow: hidden;
  max-width: 1245px;
  padding: 55px 15px 55px 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__produkt-items {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 907px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.section__produkt-item {
  width: 100%;
  max-width: 289px;
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  padding-right: 13px;
  border: 1px solid var(--green, #365046);
}

.section__produkt-item-title {
  color: var(--black, #333);
  font-family: "Kharkiv";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}

.section__produkt-item-text {
  color: var(--add-txt, #7A6C4A);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

.section__produkt-item-green {
  background: var(--green, #365046);
}
.section__produkt-item-green .section__produkt-item-title {
  color: var(--light, #FFFCF5);
}
.section__produkt-item-green .section__produkt-item-text {
  color: var(--light, #FFFCF5);
}

.section__produkt-item-photo {
  padding: 0px;
}
.section__produkt-item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 992px) {
  .section__produkt-container {
    max-width: 1245px;
    padding: 30px 15px 30px 15px;
  }
  .section__produkt-items {
    margin-top: 20px;
    max-width: none;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section__produkt-item {
    width: 100%;
    max-width: 289px;
    min-height: 200px;
  }
  .section__produkt-item-title {
    font-size: 18px;
  }
  .section__produkt-item-text {
    font-size: 14px;
  }
  .section__produkt-item-photo {
    padding: 0px;
    height: 200px;
  }
  .section__produkt-item-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 576px) {
  .section__produkt-item {
    max-width: none;
  }
}
/* ProjectLanding */

/* ProjectCatalog */
.section__catalog-container {
  max-width: 1245px;
  padding: 55px 15px 55px 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section__catalog-container .section__top-title {
  width: 100%;
  max-width: 907px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-align: left;
}

.section__catalog-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.section__catalog-tab {
  cursor: pointer;
  color: var(--add-txt, #7A6C4A);
  font-family: "Kharkiv";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 10px;
  border: 1px solid var(--green, rgba(54, 80, 70, 0));
}
.section__catalog-tab:hover {
  color: #365046;
}

.section__catalog-tab-active {
  border: 1px solid var(--green, #365046);
  color: var(--black, #333);
}

.section__catalog-content {
  margin-top: 20px;
  position: relative;
}

.section__catalog-tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.section__catalog-tab-content-active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  position: relative;
}

.section__catalog-tab-content-item {
  cursor: pointer;
  border: 1px solid var(--grey, #C3C9C1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23.5%;
          flex: 0 1 23.5%;
  min-height: 360px;
  row-gap: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  min-width: 250px;
}
.section__catalog-tab-content-item:hover {
  border: 1px solid var(--green, #365046);
}
.section__catalog-tab-content-item:hover .section__catalog-tab-content-item-row-busket {
  background-image: url(../img/busket-hover.svg);
}
.section__catalog-tab-content-item:hover .section__catalog-tab-content-item-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.section__catalog-tab-content-item-img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.section__catalog-tab-content-item-img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section__catalog-tab-content-item-inner {
  min-height: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section__catalog-tab-content-item-name {
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

.section__catalog-tab-content-item-weight {
  margin-top: 8px;
  color: var(--add-txt, #7A6C4A);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section__catalog-tab-content-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__catalog-tab-content-item-row-price {
  color: var(--red, #EC8161);
  font-family: "Kharkiv";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.section__catalog-tab-content-item-row-busket {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background-image: url(../img/busket-disable.svg);
  background-size: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.section__catalog-tabs-slick {
  display: none;
}

@media (max-width: 1024px) {
  .section__catalog-tab-content-item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 23%;
            flex: 0 1 23%;
    padding: 12px;
  }
}
.section__catalog-tab-content-item-img-hidden {
  display: none;
}

@media (max-width: 992px) {
  .section__catalog-container {
    max-width: 1245px;
    padding: 30px 15px 30px 15px;
    display: block;
    overflow-x: hidden;
  }
  .section__catalog-container .section__top-title {
    width: 100%;
    max-width: none;
    -ms-flex-item-align: start;
        align-self: flex-start;
    text-align: center;
  }
  .section__catalog-tabs {
    display: none;
  }
  .section__catalog-tab {
    width: auto;
    max-width: none;
  }
  .section__catalog-tabs-slick {
    display: block;
  }
  .section__catalog-tab-content {
    gap: 10px;
  }
  .section__catalog-tab-content-item {
    padding: 0px;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 29%;
            flex: 1 1 29%;
    min-height: 245px;
    row-gap: 5px;
  }
  .section__catalog-tab-content-item-img {
    width: 100%;
    height: 150px;
  }
  .section__catalog-tab-content-item-inner {
    min-height: 1px;
    padding: 10px;
    padding-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 1px;
  }
  .section__catalog-tab-content-item-name {
    font-size: 12px;
  }
  .section__catalog-tab-content-item-weight {
    font-size: 10px;
  }
  .section__catalog-tab-content-item-row {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .section__catalog-tab-content-item-row-price {
    font-size: 14px;
    line-height: 100%; /* 150% */
  }
  .section__catalog-tab-content-item-row-busket {
    cursor: pointer;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 576px) {
  .section__catalog-tab-content-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 48%;
            flex: 1 1 48%;
  }
}
/* ProjectShip */
.section__ship-container {
  max-width: 1245px;
  padding: 55px 15px 110px 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__ship-inner {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 907px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.section__ship-item {
  border-top: 1px solid #365046;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0px;
}

.section__ship-item-left {
  width: 100%;
  max-width: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.section__ship-item-left-title {
  color: var(--black, #333);
  font-family: "Kharkiv";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}

.section__ship-item-left-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
.section__ship-item-left-text p {
  color: var(--add-txt, #7A6C4A);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

.section__ship-item-right {
  width: 170px;
  height: 170px;
}
.section__ship-item-right img {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .section__ship-container {
    padding: 30px 15px 55px 15px;
  }
  .section__ship-inner {
    max-width: none;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .section__ship-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0px;
  }
  .section__ship-item-left-title {
    margin-left: 40px;
    font-size: 18px;
  }
  .section__ship-item-left-text {
    row-gap: 15px;
  }
}
/* ProjectOpen */
.section__open {
  background: var(--green, #365046);
}

.section__open-container {
  max-width: 1245px;
  padding: 90px 15px 90px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
.section__open-container .section__top-title {
  color: var(--light, #FFFCF5);
}

.section__open-inner {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  width: 100%;
  max-width: 907px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.section__open-inner-text {
  color: var(--light, #FFFCF5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  width: 100%;
  max-width: 498px;
}

.section__open-inner-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.section__open-inner-items-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 498px;
  padding: 30px;
  background: var(--light, #FFFCF5);
}

.section__open-inner-items-left-title {
  color: var(--black, #333);
  font-family: "Kharkiv";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}

.section__open-inner-items-left-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  width: 100%;
  row-gap: 16px;
}

.section__open-inner-items-left-form-input {
  text-align: center;
  color: var(--add-txt, #7A6C4A);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 16px;
  border: 1px solid var(--black, #333);
  background: var(--light, #FFFCF5);
  color: var(--black, #333);
}
.section__open-inner-items-left-form-input::-webkit-input-placeholder {
  color: var(--add-txt, #7A6C4A);
}
.section__open-inner-items-left-form-input::-moz-placeholder {
  color: var(--add-txt, #7A6C4A);
}
.section__open-inner-items-left-form-input:-ms-input-placeholder {
  color: var(--add-txt, #7A6C4A);
}
.section__open-inner-items-left-form-input::-ms-input-placeholder {
  color: var(--add-txt, #7A6C4A);
}
.section__open-inner-items-left-form-input::placeholder {
  color: var(--add-txt, #7A6C4A);
}
.section__open-inner-items-left-form-input:focus {
  border: 2px solid var(--green, #365046);
}

.section__open-inner-items-left-form-button {
  color: var(--light, #FFFCF5);
  text-align: center;
  font-family: "Kharkiv";
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 100%;
  padding: 16px;
  background: var(--green, #365046);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--green, rgba(54, 80, 70, 0));
}
.section__open-inner-items-left-form-button:hover {
  border: 1px solid var(--green, #365046);
  background: var(--light, #FFFCF5);
  color: var(--green, #365046);
}

.section__open-inner-items-left-text {
  color: var(--add-txt, #7A6C4A);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 15.6px */
  margin-top: 16px;
}
.section__open-inner-items-left-text a {
  color: var(--add-txt, #7A6C4A);
}

.section__open-inner-items-right {
  border: 1px solid var(--light, #FFFCF5);
  width: 100%;
  max-width: 392px;
}
.section__open-inner-items-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 992px) {
  .section__open {
    background: var(--green, #365046);
  }
  .section__open-container {
    padding: 40px 15px 40px 15px;
  }
  .section__open-inner {
    margin-top: 20px;
    max-width: none;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .section__open-inner-text {
    color: var(--light, #FFFCF5);
    font-size: 15px;
    line-height: 140%;
    max-width: none;
  }
  .section__open-inner-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .section__open-inner-items-left {
    max-width: none;
    padding: 10px;
  }
  .section__open-inner-items-left-title {
    font-size: 18px;
  }
  .section__open-inner-items-left-form {
    margin-top: 10px;
    row-gap: 10px;
  }
  .section__open-inner-items-left-text {
    margin-top: 10px;
  }
  .section__open-inner-items-right {
    height: 400px;
    max-width: none;
  }
}
/* ProjectFaq */
.section__faq-container {
  max-width: 1245px;
  padding: 110px 15px 55px 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__faq-questions {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 907px;
}

.section__faq-question {
  cursor: pointer;
  border-top: 1px solid var(--green, #365046);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0px;
}

.section__faq-question-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__faq-question-title-active .section__faq-question-title-icon {
  background-image: url(../img/minus.svg);
}

.section__faq-question-title-text {
  color: var(--black, #333);
  font-family: "Kharkiv";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}

.section__faq-question-title-icon {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 42px;
  height: 41px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  background-image: url(../img/plus.svg);
  background-size: cover;
}

.section__faq-question-answer {
  padding-top: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

.section__faq-question-answer-active {
  opacity: 1;
  max-height: 600px;
  overflow: visible;
  padding-top: 10px;
}

@media (max-width: 992px) {
  .section__faq-container {
    max-width: 1245px;
    padding: 60px 15px 30px 15px;
  }
  .section__faq-questions {
    -ms-flex-item-align: start;
        align-self: flex-start;
    max-width: none;
  }
  .section__faq-question {
    cursor: pointer;
    border-top: 1px solid var(--green, #365046);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0px;
  }
  .section__faq-question-title {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .section__faq-question-title-text {
    font-size: 18px;
  }
  .section__faq-question-answer {
    font-size: 15px;
    line-height: 140%; /* 20.8px */
  }
  .section__faq-question-answer-active {
    max-height: 800px;
  }
}
/* ProjectBottom */
.section__bottom-container {
  max-width: 1245px;
  padding: 55px 15px 110px 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__bottom-inner {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  width: 100%;
}

.section__bottom-inner-left {
  height: 500px;
  width: 100%;
  max-width: 804px;
  border: 1px solid var(--green, #365046);
}
.section__bottom-inner-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section__bottom-inner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 392px;
}

.section__bottom-inner-right-text {
  color: var(--black, #333);
  /* desktop/h3 */
  font-family: "Kharkiv";
  margin-top: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}

.section__bottom-inner-right-socials {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.section__bottom-inner-right-social {
  width: 40px;
  height: 40px;
}
.section__bottom-inner-right-social img {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .section__bottom-container {
    max-width: 1245px;
    padding: 30px 15px 55px 15px;
  }
  .section__bottom-inner {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 20px;
    width: 100%;
  }
  .section__bottom-inner-left {
    height: 500px;
    width: 100%;
    max-width: 804px;
    border: 1px solid var(--green, #365046);
  }
  .section__bottom-inner-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .section__bottom-inner-right {
    max-width: none;
  }
  .section__bottom-inner-right-text {
    margin-top: 10px;
    font-size: 18px;
  }
  .section__bottom-inner-right-socials {
    margin-top: 10px;
  }
}
/* ProjectFooter */
.footer {
  background: var(--green, #365046);
}

.footer__container {
  max-width: 1245px;
  padding: 50px 15px 125px 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer__left {
  width: 100%;
  max-width: 235px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 23px;
}

.footer__left-logo {
  width: 160px;
  height: 30px;
}
.footer__left-logo img {
  width: 100%;
  height: 100%;
}

.footer__left-c {
  color: var(--grey, #C3C9C1);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

.footer__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  width: 100%;
  max-width: 907px;
}

.footer__nav ul {
  width: 100%;
  max-width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
.footer__nav ul li a {
  color: #FFF7E3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer__nav ul li a:hover {
  color: var(--add-txt, #7A6C4A);
}

.footer__column-right {
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 34px;
}

.footer__column-right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.footer__column-right-block-title {
  color: var(--grey, #C3C9C1);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

.footer__column-right-block-text {
  color: var(--light, #FFFCF5);
  font-family: "Kharkiv";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}

.footer__left-c-mobile {
  display: none;
}

@media (max-width: 992px) {
  .footer__container {
    max-width: 1245px;
    padding: 40px 15px 70px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__left {
    max-width: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__left-c {
    display: none;
  }
  .footer__left-c-mobile {
    display: block;
    text-align: center;
    margin-top: 60px;
  }
  .footer__columns {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 60px;
    width: 100%;
    max-width: none;
  }
  .footer__nav ul {
    width: 100%;
    max-width: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__nav ul li a {
    text-align: center;
  }
  .footer__column-right {
    max-width: none;
    row-gap: 20px;
  }
  .footer__column-right-block-title {
    text-align: center;
  }
  .footer__column-right-block-text {
    text-align: center;
    font-size: 18px;
  }
}