@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 16px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #111;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 40px 40px;
  border-bottom: 0.5px solid #B4B4B4;
  background: rgba(255, 255, 255, 0.8);
}

.header__container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.header__catalog {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #059347;
  border: none;
  outline: none;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 20px;
  transition: 0.2s ease-in-out;
}

.header__catalog:hover {
  background: #036631;
}

.header__desc {
  max-width: 205px;
  font-size: 12px;
  color: #5B5B5B;
  line-height: 130%;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 80px;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__socials {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-left: auto;
}

.header__socials a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #353535;
  line-height: 112%;
  transition: 0.2s ease-in-out;
}

.header__socials a:hover {
  color: #059347;
}

.header__socials a img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu {
  position: fixed;
  inset: 0;
  height: 100dvh;
  width: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  display: none;
}

.menu.active {
  display: flex;
}

.menu__block {
  position: relative;
  height: 100%;
  overflow: auto;
  background: #FFF;
  background-image: url("../img/bg.png");
  background-position: top right;
  background-repeat: no-repeat;
  padding: 60px;
  width: 600px;
}

.menu__block-title {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 500;
}

.menu__block-close {
  position: absolute;
  top: 40px;
  right: 40px;
}

.menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 40px;
}

.menu__list-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  border-bottom: 1px solid #B4B4B4;
  padding-bottom: 15px;
}

.menu__list-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
}

.menu__list-title {
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.menu__list-title:hover {
  color: #059347;
}

.menu__list-products {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.menu__list-products li a {
  font-size: 14px;
  line-height: 142%;
  transition: 0.2s ease-in-out;
}

.menu__list-products li a:hover {
  color: #059347;
}

.menu__contacts {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.menu__contacts-title {
  color: #059347;
  text-decoration: underline;
  font-weight: 500;
  font-size: 16px;
}

.menu__contacts-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
}

.menu__contacts-items a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.menu__contacts-items a:hover {
  color: #059347;
}

.menu__contacts-items a svg {
  flex-shrink: 0;
}

.header-space {
  padding-top: 107px;
}

.footer {
  margin-top: auto;
  background: #059347;
}

.footer__top {
  position: relative;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  background: url("../img/f-bg.png") center bottom/100% auto no-repeat;
  pointer-events: none;
}

.footer__top-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 220px;
}

.footer__logo {
  width: 210px;
  height: 48px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 140%;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.footer__socials a:hover {
  text-decoration: underline;
}

.footer__socials a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__street {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  font-size: 18px;
  line-height: 140%;
  color: #ffffff;
}

.footer__street img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__bot {
  padding: 20px 0;
}

.footer__bot-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 16px;
}

.footer__bot-wrapper a:hover {
  text-decoration: underline;
}

.breadcrumbs__container {
  padding: 50px 0 40px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #5B5B5B;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #059347;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #111;
}

.hero__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.hero__image::before {
  display: block;
  content: "";
}

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

.hero__image::before {
  padding-top: 48%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products-wrapper {
  background: #059347;
  padding-top: 30px;
}

.products {
  border-radius: 100px 100px 0 0;
  background: #ffffff;
  background-image: url("../img/decor.png");
  background-position: center 100px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.products__container {
  padding: 100px 0;
}

.products__subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #5B5B5B;
  font-size: 16px;
  line-height: 112%;
}

.products__title {
  margin-bottom: 50px;
}

.products__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  grid-gap: 30px;
}

.products__item {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.products__item:hover {
  transform: translateY(-10px);
}

.products__item:hover .products__item-title {
  color: #059347;
}

.products__item:nth-child(1) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.products__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.products__item-img::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}

.products__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products__item-title {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  z-index: 3;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.products__item-icon {
  position: absolute;
  bottom: 40px;
  right: 30px;
  z-index: 2;
}

.section {
  background: url("../img/decor.png") center top/100% auto no-repeat;
}

.preview__container {
  padding-bottom: 100px;
}

.preview__slider {
  position: relative;
}

.preview__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.preview__arrow.next {
  right: 50px;
}

.preview__arrow.prev {
  left: 50px;
}

.preview__slide {
  height: 400px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.preview__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.preview__pagination {
  position: absolute;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  z-index: 2;
}

.preview__pagination .swiper-pagination-bullet {
  border-radius: 10px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0);
  transition: 0.2s ease-in-out;
}

.preview__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFF;
}

.preview__categories {
  display: flex;
  gap: 20px 30px;
  font-size: 16px;
  flex-wrap: wrap;
}

.preview__categories a {
  transition: .2s ease-in-out;
  font-weight: 500;
}

.preview__categories a:hover {
  color: #036631;
  text-decoration: underline;
}

.category__container {
  padding-bottom: 100px;
}

.category__subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #5B5B5B;
  font-size: 16px;
  line-height: 112%;
}

.category__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px 30px;
}

.category__item {
  display: flex;
  flex-direction: column;
}

.category__item:hover .category__item-img {
  border: 1px solid #059347;
}

.category__item-img {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #F2F2F2;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #F2F2F2;
  transition: 0.2s ease-in-out;
  margin-bottom: 20px;
  padding: 15px;
}

.category__item-img img {
  max-height: 100%;
}

.category__item-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  padding: 7px 15px;
}

.category__item-tag.order {
  color: #059347;
  font-size: 14px;
  border-radius: 21px;
  background: #DAEFE3;
}

.category__item-tag.avail {
  color: #FFF;
  font-size: 14px;
  border-radius: 21px;
  background: #059347;
}

.category__item-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 125%;
  word-break: break-all;
}

.category__item-price {
  font-size: 18px;
  font-weight: 700;
}

.product__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 100px;
}

.product__left {
  width: 53%;
}

.product__big {
  margin-bottom: 10px;
}

.product__big .category__item-tag {
  z-index: 2;
}

.product__big-slide {
  position: relative;
  background: rgba(242, 242, 242, 0.7);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 30px;
  overflow: hidden;
}

.product__big-slide img {
  max-height: 100%;
}

.product__thumbs {
  margin-bottom: 30px;
  padding-left: 2px;
}

.product__thumbs-slide {
  background: rgba(242, 242, 242, 0.7);
  border: 1px solid rgba(242, 242, 242, 0.7);
  border-radius: 10px;
  overflow: hidden;
  height: 150px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__thumbs-slide img {
  max-height: 100%;
}

.product__thumbs-slide.swiper-slide-thumb-active {
  border-color: #059347;
}

.product__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product__socials a,
.empty-link {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #059347;
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.product__socials a:hover,
.empty-link:hover {
  background: #036631;
}

.product__socials a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product__right {
  width: 44%;
}

.product__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  margin-bottom: 20px;
  gap: 20px;
}

.product__title {
  font-weight: 500;
  font-size: 20px;
  word-break: break-all;
}

.product__price {
  font-weight: 500;
  font-size: 20px;
  white-space: nowrap;
}

.product__block {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.product__block p {
  line-height: 120%;
}

.product__block iframe {
  width: 100%!important;
}

.product__block-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}

.product__block ul li > p {
  margin-bottom: 5px;
}

.product__block ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.product__block ul li p{
  display: inline-block;
  margin-right: 10px;
}

.product__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

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

.product__list li span {
  color: #5B5B5B;
  font-size: 14px;
}

.product__colors {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 150px;
}

.product__colors-title {
  font-size: 20px;
  font-weight: 500;
}

.product__colors-items {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product__colors-items a {
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid transparent;
  overflow: hidden;
}

.product__colors-items a.active {
  border-color: #059347;
}

.recomend__container {
  padding-bottom: 100px;
}

.recomend__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
  gap: 10px;
}

.recomend__title {
  text-align: left;
  margin-bottom: 0;
}

.recomend__arrows {
  display: flex;
  align-items: center;
  gap: 20px;
}

.recomend__arrows a {
  display: flex;
}

.contact {
  padding-bottom: 100px;
}

.contact__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.contact__map {
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.contact__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  align-items: start;
  grid-gap: 30px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 30px;
  background: rgba(242, 242, 242, 0.7);
  padding: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 156%;
  transition: 0.2s ease-in-out;
}

.contact__item:hover {
  background: #059347;
  color: #ffffff;
}

.contact__item:hover svg path {
  stroke: #ffffff;
}

.contact__item:nth-child(5) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.contact__item svg {
  flex-shrink: 0;
}

.contact__item svg path {
  transition: 0.2s ease-in-out;
}

.politic__container {
  padding-bottom: 100px;
}

.politic__text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 135%;
}

.empty__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
  padding-bottom: 100px;
}

.empty__container div {
  font-size: 30px;
  font-weight: 500;
}

.empty__container p {
  max-width: 650px;
  font-size: 14px;
  opacity: 0.8;
  line-height: 135%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 105;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  display: none;
}

.modal.active {
  display: flex;
}

.modal__block {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 16px;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
}

.modal__block-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  width: 15px;
  height: 15px;
}

.modal__block-form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
  text-align: center;
}

.modal__block-title {
  font-size: 30px;
  color: #059347;
  font-weight: 500;
}

.modal__block-subtitle {
  font-size: 16px;
  opacity: .8;
}

.modal__block-form input {
  width: 100%;
  background: transparent;
  border: 1px solid #059347;
  outline: none;
  padding: 10px 15px;
  border-radius: 8px;
}

.modal__block-form p {
  font-size: 14px;
  opacity: .8;
  line-height: 120%;
}

.modal__block-form p a {
  text-decoration: underline;
}

.modal__block-form button {
  cursor: pointer;
  background: transparent;
  border: 1px solid #059347;
  padding: 12px 20px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #059347;
  outline: none;
  border-radius: 10px;
  transition: .2s ease-in-out;
}

.modal__block-form button:hover {
  background: #059347;
  color: #fff;
}

.wp_fixed {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 4;
    right: 30px;
    bottom: 30px;
}

.wp_fixed_icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('../img/whatsapp.svg') center / 50% no-repeat, #25d366;
}

.wp_fixed_pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    animation: pulse 1.5s linear infinite;
    background-color: #25d366;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }
    90%,
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.seo-text__container {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  padding-bottom: 80px;
  line-height: 160%;
}

.feedback {
  position: relative;
  background: #059347;
  overflow: hidden;
}

.feedback__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 90px 0;
  z-index: 2;
}

.feedback__left {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 400px;
  flex-shrink: 0;
  padding-top: 80px;
}

.feedback__title {
  text-align: left;
  color: #fff;
}

.feedback__subtitle {
  color: #FFF;
  font-size: 16px;
  line-height: 112%;
}

.feedback__form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 50px;
  border-radius: 10px;
  background: #FFF;
  width: 500px;
}

.feedback__form input,
.feedback__form textarea {
  padding: 13px 20px;
  border-radius: 6px;
  background: #F7F5F5;
  border: none;
  outline: none;
  color: #5B5B5B;
  font-size: 16px;
  line-height: 112%;
}

.feedback__form textarea {
  height: 120px;
  resize: none;
}

.feedback__form button {
  padding: 20px;
  border-radius: 10px;
  background: #059347;
  cursor: pointer;
  border: none;
  outline: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  transition: .2s ease-in-out;
}

.feedback__form button:hover {
  transform: scale(1.04);
}

.big-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  bottom: 0;
  color: #FFF;
  text-align: center;
  font-size: clamp(80px, calc(80px + 20vw), 300px);
  font-style: normal;
  font-weight: 500;
  opacity: .03;
}

.benefits__container {
  padding-top: 120px;
  padding-bottom: 60px;
}

.benefits__title {
  text-align: left;
  margin-bottom: 50px;
}

.benefits__items {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 50px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.benefits__item-img {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}

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

.benefits__item-title {
  color: #111;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  max-width: 180px;
}

.category__link {
  position: absolute;
  padding: 10px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  border-radius: 10px;
  background: #059347;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 112%;
  text-align: center;
}

.main-page .recomend__container {
  padding-top: 60px;
}

.gallery__slide {
  width: 400px;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__slider {
  overflow: unset;
}

.gallery {
  overflow: hidden;
}

.gallery__container {
  padding-bottom: 120px;
}

.etaps__container {
  padding-bottom: 120px;
}

.etaps__title {
  bottom: 20px;
  text-align: left;
}

.etaps__subtitle {
  margin-bottom: 60px;
  color: #111;
  font-size: 20px;
  font-weight: 500;
}

.etaps__header {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  justify-items: center;
  grid-gap: 30px;
  margin-bottom: 50px;
}

.etaps__header-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #059347;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.etaps__header-item:not(:last-child)::before {
  position: absolute;
  content: '';
  width: 225px;
  height: 1px;
  border: 1px dashed #111;
  top: 25px;
  left: calc(100% + 20px);
}

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

.etaps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  border-radius: 30px;
  background: rgba(242, 242, 242, .7);
  color: #111;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  height: 250px;
  transition: .2s ease-in-out;
}

.etaps__item .etaps__header-item {
  display: none;
}

.etaps__item:hover {
  background: #059347;
  color: #fff;
}

.etaps__item:hover img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(100%) saturate(0%) hue-rotate(350deg) brightness(110%) contrast(101%);
}

.etaps__item-img {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.etaps__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .2s ease-in-out;
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1360px) {
  .gallery__slide {
    width: 300px;
    height: 200px;
  }
  .container {
    max-width: 1240px;
  }

  .header__catalog {
    gap: 15px;
    padding: 12px 14px;
    font-size: 16px;
  }

  .header__logo {
    width: 130px;
    height: 60px;
  }

  .header__socials {
    row-gap: 10px;
  }

  .header__socials a {
    font-size: 14px;
  }

  .header-space {
    padding-top: 97px;
  }

  .category__item-title {
    font-size: 16px;
  }
}

@media (max-width: 1240px) {
  .etaps__header-item:not(:last-child)::before {
    width: 155px;
  }
  .etaps__item-img {
    width: 65px;
    height: 65px;
  }
  .etaps__item {
    height: 200px;
    font-size: 16px;
    gap: 10px;
  }
  .benefits__item-title {
    font-size: 18px;
  }
  .benefits__container {
    padding: 60px 0;
  }
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 26px;
  }

  .products__items {
    grid-auto-rows: 250px;
    grid-gap: 15px;
  }

  .products__item-title {
    font-size: 20px;
    bottom: 25px;
    left: 25px;
  }

  .products__item-icon {
    right: 20px;
    bottom: 20px;
  }

  .category__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .product__left {
    max-width: 600px;
  }

  .product__socials a {
    font-size: 14px;
    padding: 12px 16px;
    gap: 5px;
  }

  .product__socials a img {
    width: 15px;
    height: 15px;
  }

  .contact__block {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .contact__items {
    gap: 15px;
  }

  .contact__item {
    padding: 20px;
    gap: 15px;
  }

  .contact__item svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

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

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .etaps__header {
    display: none;
  }
  .etaps__item .etaps__header-item {
    display: flex;
  }
  .etaps__header-item:not(:last-child)::before {
    display: none;
  }
  .etaps__items {
    grid-template-columns: 1fr;
  }
  .benefits__items {
    grid-template-columns: repeat(2,1fr);
  }
  .feedback__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .feedback__left {
    width: 100%;
    row-gap: 0;
    padding-top: 0;
  }
  .feedback__form {
    width: 100%;
    padding: 20px;
  }
  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 0;
    margin-right: auto;
  }

  .header__desc {
    display: none;
  }

  .footer__top-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
  }

  .footer__col {
    align-items: center;
  }

  .footer__socials a {
    justify-content: center;
  }

  .footer__bot-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .breadcrumbs__container {
    padding: 30px 0 30px 0;
  }

  .preview__arrow.next {
    right: 25px;
  }

  .preview__arrow.prev {
    left: 25px;
  }

  .preview__slide {
    height: 300px;
  }

  .product__container {
    flex-direction: column;
  }

  .product__left {
    max-width: unset;
    width: 100%;
  }

  .product__right {
    width: 100%;
  }

  .product__colors {
    margin-top: 30px;
  }
}

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

  .header__catalog {
    font-size: 0;
    gap: 0;
    padding: 10px;
    order: 3;
    margin-right: 0;
  }

  .header__catalog svg {
    width: 20px;
    height: 20px;
  }

  .header__logo {
    width: 80px;
    height: 40px;
    order: 1;
    position: static;
    transform: unset;
  }

  .header__socials {
    order: 2;
    margin-right: 20px;
  }

  .header__socials a {
    font-size: 12px;
    gap: 5px;
  }

  .menu__block {
    width: 100%;
    padding: 30px 16px;
  }

  .menu__block-title {
    font-size: 20px;
  }

  .menu__block-close {
    right: 16px;
    top: 20px;
  }

  .header-space {
    padding-top: 77px;
  }

  .products {
    border-radius: 50px 50px 0 0;
  }

  .products__container {
    padding: 30px 0 80px 0;
  }

  .products__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .category__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery__slide {
    width: 250px;
    height: 150px;
  }
  .category__item-img {
    height: 250px;
  }

  .contact__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact__item:nth-child(5) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
  .footer__logo {
    width: 150px;
    height: 35px;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .benefits__items {
    grid-template-columns: 1fr;
  }
  .menu__list-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .products__subtitle {
    margin-bottom: 30px;
  }

  .products__items {
    grid-auto-rows: 200px;
  }

  .products__item-title {
    font-size: 16px;
  }

  .products__item-icon {
    display: none;
  }

  .category__subtitle {
    margin-bottom: 30px;
  }

  .category__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .product__thumbs-slide {
    height: 100px;
  }
}

@media (max-width: 420px) {
  .products__items {
    grid-auto-rows: 150px;
  }
}