@font-face {
  font-family: "Gilroy Regular";
  src: url(../fonts/Gilroy-Regular.woff2) format("woff2"), url(../fonts/Gilroy-Regular.woff) format("woff"), url(../fonts/Gilroy-Regular.ttf) format("ttf");
}
@font-face {
  font-family: "Gilroy Medium";
  src: url(../fonts/Gilroy-Medium.woff2) format("woff2"), url(../fonts/Gilroy-Medium.ttf) format("ttf");
}
@font-face {
  font-family: "Gilroy SemiBold";
  src: url(../fonts/Gilroy-SemiBold.woff2) format("woff2"), url(../fonts/Gilroy-SemiBold.ttf) format("ttf");
}
@font-face {
  font-family: "Cygre Regular";
  src: url(../fonts/Cygre-Regular.woff2) format("woff2"), url(../fonts/Cygre-Regular.ttf) format("ttf");
}
@font-face {
  font-family: "Cygre Medium";
  src: url(../fonts/Cygre-Medium.woff2) format("woff2"), url(../fonts/Cygre-Medium.ttf) format("ttf");
}
@font-face {
  font-family: "Cygre SemiBold";
  src: url(../fonts/Cygre-SemiBold.woff2) format("woff2"), url(../fonts/Cygre-SemiBold.ttf) format("ttf");
}
@font-face {
  font-family: "Cygre ExtraBold";
  src: url(../fonts/Cygre-ExtraBold.woff2) format("woff2"), url(../fonts/Cygre-ExtraBold.ttf) format("ttf");
}
* {
  -ms-font-feature-settings: "locl" 0;
  font-feature-settings: "locl" 0;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Gilroy Regular";
  line-height: 1.5;
  font-size: 16px;
  background: #f2f0eb;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

button {
  font-family: inherit;
}

.scroll-lock {
  height: 100vh;
  overflow: hidden;
}

#primary,
.main {
  flex-grow: 1;
}

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

.logo img {
  max-width: 168px;
}

.title {
  color: #fff;
  font-family: "Cygre SemiBold";
  font-size: 48px;
  line-height: 1.3;
  text-transform: uppercase;
}

.menu__nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Cygre Medium";
  font-size: 14px;
  line-height: 1.3;
}

.lang {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 4px;
}
.lang ul {
  list-style: none;
}
.lang .current-language-menu-item {
  position: relative;
  font-family: "Cygre SemiBold";
  font-weight: 600;
}
.lang .sub-menu {
  position: absolute;
  height: 0;
  overflow: hidden;
  font-family: "Cygre Regular";
  font-weight: 400;
}
.lang svg {
  transition: all 0.3s;
}
.lang:hover svg {
  transform: rotate(-90deg);
}
.lang:hover .sub-menu {
  height: auto;
}

.social {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 21px;
}
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
}
.social a svg path {
  transition: all 0.3s;
}
.social a:hover {
  border-color: #406f3f;
}
.social a:hover svg path {
  fill: #406f3f;
}

.main__title {
  color: #2c2f22;
  font-family: "Cygre SemiBold";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.main__subtitle {
  font-size: 20px;
  font-family: "Gilroy Medium";
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

.breadcrumbs {
  color: #2c2f22;
  white-space: nowrap;
  font-size: 14px;
}
.breadcrumbs__inner {
  list-style: none;
  display: flex;
  gap: 9px;
  align-items: center;
}
.breadcrumbs__inner li, .breadcrumbs__inner a {
  display: flex;
  gap: 9px;
  align-items: center;
}
.breadcrumbs__inner li:last-child {
  color: #406f3f;
  font-family: "Gilroy SemiBold";
}

.burger__btn {
  display: none;
}

.mobile__social,
.mobile__lang,
.mobile__logo,
.about__cards-mob {
  display: none;
}

.header {
  color: #2c2f22;
  padding: 15px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menu__nav {
  text-transform: uppercase;
}
.header .menu__nav a {
  transition: all 0.3s;
}
.header .menu__nav a:hover {
  color: #406f3f;
}
.footer .menu__nav .trp-language-switcher-container,
.header .menu__nav .trp-language-switcher-container{
	display: none;
}
.header__phones {
  position: relative;
  border-radius: 30px;
  border: 1px solid #406f3f;
  background: #f2f0eb;
  color: #406f3f;
  font-family: "Cygre SemiBold";
  font-weight: 600;
}
.header__phones .main__phone {
  width: 193px;
  list-style: none;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header__phones .main__phone a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__phones .main__phone svg {
  transition: all 0.3s;
}
.header__phones .sub__phones {
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  display: flex;
  flex-direction: column;
  padding-left: 28px;
  gap: 8px;
  list-style: none;
  height: 0;
  overflow: hidden;
  z-index: 50;
  background: #f2f0eb;
}
.header__phones:hover {
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}
.header__phones:hover .sub__phones {
  height: 48px;
  border: 1px solid #406f3f;
  border-radius: 0 0 16px 16px;
  border-top: none;
  padding-bottom: 29px;
  padding-top: 5px;
  padding-right: 5px;
}
.header__phones:hover svg {
  transform: rotate(-90deg);
}
.header.fixed {
  position: fixed;
  background: #f2f0eb;
  border-bottom: 1px solid #f2f0eb;
  left: 0;
  width: 100%;
  z-index: 200;
}
.header.fixed .header__phones, .header.fixed .header__phones .sub__phones {
  background: #f2f0eb;
}
.header.fixed .logo img {
  max-width: 85px;
}

.home .header {
  position: absolute;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 50;
}
.home .header svg path {
  stroke: #fff;
}
.home .header__phones {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.home .header__phones .sub__phones {
  background: transparent;
}
.home .header__phones:hover .sub__phones {
  border-color: #fff;
}
.home .header.fixed {
  position: fixed;
  background: #f2f0eb;
  border-bottom: 1px solid #f2f0eb;
  color: #3c3937;
}
.home .header.fixed .header__phones, .home .header.fixed .header__phones .sub__phones {
  background: #f2f0eb;
  color: #3c3937;
	border-color: #3c3937;
}
.home .header.fixed .logo img {
  max-width: 85px;
}
.home .header.fixed .logo > a {
  display: none;
}
.home .header.fixed .logo .mobile__logo {
  display: block;
}
.home .header.fixed svg path {
    stroke: #3c3937;
}

.footer {
  background: #2c2f22;
  padding: 48px 0 46px;
  color: #fff;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer .logo {
  margin-right: 77px;
}
.footer .logo img {
  width: 231px;
  max-width: 100%;
}
.footer .copyright {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
}
.footer .footer__col-title {
  font-family: "Cygre ExtraBold";
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer ul {
  list-style: none;
}
.footer__nav ul {
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  font-size: 16px;
  font-family: "Gilroy Regular";
}
.footer__nav a {
  transition: all 0.3s;
}
.footer__nav a:hover {
  color: #406f3f;
}
.footer__phones ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer__phones li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__phones li:not(:first-child) {
  padding-left: 32px;
}
.footer__phones a {
  transition: all 0.3s;
}
.footer__phones a:hover {
  color: #406f3f;
}
.footer__location {
  max-width: 280px;
}
.footer__location ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__location ul li, .footer__location ul a {
  display: flex;
  gap: 8px;
}
.footer__info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__info a {
  text-decoration: underline;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.hero {
  position: relative;
  height: 100vh;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__inner {
  padding-top: 25%;
}
.hero h1 {
  font-family: "Cygre Regular";
  text-transform: uppercase;
  font-size: 64px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 32px;
  max-width: 570px;
  font-weight: 400;
}
.hero p {
  color: #fff;
  font-family: "Gilroy Regular";
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  max-width: 590px;
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.btn-wrapp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 175px;
  position: relative;
  flex-shrink: 0;
}
.btn-wrapp .circle__animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: rotate 10s linear infinite;
}
.btn-wrapp .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 126px;
  height: 126px;
  background: #406f3f;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  white-space: wrap;
  font-size: 14px;
  line-height: 1.4;
  border: none;
  border-radius: 50%;
  position: relative;
  z-index: 5;
  transition: all 0.3s;
  padding: 10px;
}
.btn-wrapp svg.circle__icon {
  width: 176px;
  height: 176px;
  transition: all 0.3s;
  fill: #fff;
}
.btn-wrapp svg path {
  transition: all 0.3s;
}
.btn-wrapp:hover .btn {
  background: #f2f0eb;
  color: #406f3f;
}
.btn-wrapp:hover svg path {
  fill: #406f3f;
}
.btn-wrapp:hover svg.circle__icon {
  fill: #406f3f;
}

.callback {
  background: #2c2f22;
  color: #fff;
  padding: 110px 0;
}
.callback .main__title {
  color: #fff;
}
.callback .main__subtitle {
  max-width: 495px;
}
.callback__inner {
  display: flex;
  justify-content: space-between;
}
.callback__form {
  position: relative;
  flex-shrink: 0;
}
.callback.form-request .callback__inner {
  flex-direction: row-reverse;
}
.callback.consultation {
  padding: 32px 0 46px;
  background-image: url(../images/consult-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.callback.consultation .callback__inner {
  align-items: center;
}
.callback.consultation h2 {
  max-width: 500px;
}
.single-product .callback.consultation h3 {
  max-width: 500px;
}
.callback.consultation .main__subtitle {
  max-width: 510px;
}

.form__inner {
  display: flex;
  gap: 57px;
}
.form__inner > p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  max-width: 286px;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  padding-bottom: 10px;
  font-family: "Gilroy Regular";
  font-size: 16px;
  color: #fff;
  width: 100%;
}
.form-input::-moz-placeholder {
  color: #fff;
  font-family: "Gilroy Regular";
}
.form-input::placeholder {
  color: #fff;
  font-family: "Gilroy Regular";
}
.form-input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent;
  -webkit-text-fill-color: #fff;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  position: absolute;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 14px;
  max-width: 440px;
  position: absolute;
  top: 105%;
  left: 0;
}

.wpcf7-spinner {
  display: none;
}

.pros {
  margin: 82px 0 125px;
}
.pros .main__title {
  margin-bottom: 39px;
}
.pros__wrapp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pros__row {
  display: flex;
  gap: 24px;
  height: 270px;
}
.pros__item {
  border: 1px solid #2c2f22;
  position: relative;
  height: 100%;
  width: 25%;
  max-width: 282px;
  transition: width 0.3s;
  overflow: hidden;
}
.pros__item.active {
  width: 50%;
  max-width: 588px;
}
.pros__item.active .pros__item-inner {
  visibility: visible;
  opacity: 1;
}
.pros__item.active .pros__item-outer {
  visibility: hidden;
  opacity: 0;
}
.pros__item.active .pros__arrow {
  border-color: #f2f0eb;
  bottom: auto;
  top: 20px;
}
.pros__item.active .pros__arrow svg {
  transform: rotate(-90deg);
}
.pros__item.active .pros__arrow svg path {
  stroke: #f2f0eb;
}
.pros__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pros__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pros__item-inner {
  color: #fff;
  visibility: hidden;
  opacity: 0;
  padding: 11px 130px 11px 33px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 2s;
}
.pros__item-inner .pros__inner-title {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.pros__item-inner .pros__inner-title span {
  font-family: "Cygre SemiBold";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
}
.pros__item-inner .pros__inner-title p {
  font-family: "Gilroy SemiBold";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 5px;
}
.pros__item-outer {
  background: #f2f0eb;
  padding: 45px 32px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pros__item-outer .pros__outer-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 190px;
}
.pros__item-outer .pros__outer-title span {
  color: #406f3f;
  font-family: "Cygre SemiBold";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
}
.pros__item-outer .pros__outer-title p {
  font-family: "Gilroy SemiBold";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: #2c2f22;
}
.pros__arrow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  border-radius: 50%;
  border: 1px solid #2c2f22;
  width: 69px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.pros__arrow svg path {
  transition: all 0.3s;
}

.main__slider {
  margin-bottom: 145px;
}
.main__slider-inner .container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1304px;
  margin: 0 auto;
}
.main__slider .indicator {
  position: absolute;
  top: -20px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #406f3f;
  border-radius: 100%;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.main__slider .gallery {
  display: flex;
  justify-content: space-around;
  width: 100%;
  overflow: hidden;
}
.main__slider .gallery-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 77px;
  height: 603px;
  margin: 0 12px;
  background: #f2f0eb;
  overflow: hidden;
  transition: flex 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  border-right: 1px solid #2c2f22;
  border-left: 1px solid #2c2f22;
}
.main__slider .gallery-item .gallery__inner {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  display: grid;
  grid-template-columns: 368px 465px;
  gap: 0 48px;
}
.main__slider .gallery-item .gallery__inner-info {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.main__slider .gallery-item .gallery__inner-info img {
  max-height: 248px;
  max-width: 357px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 25px 0;
}
.main__slider .gallery-item .gallery__inner-info .price {
  font-family: "Gilroy Regular";
  font-size: 32px;
  font-weight: 500;
  padding-left: 18px;
}
.main__slider .gallery-item .gallery__inner-info .product-attributes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.main__slider .gallery-item .gallery__inner-info .product-attribute {
  display: flex;
  gap: 16px;
  font-size: 20px;
  font-family: "Gilroy SemiBold";
  font-weight: 600;
}
.main__slider .gallery-item .gallery__inner-info .product-attribute span {
  font-weight: 400;
  font-family: "Gilroy Regular";
}
.main__slider .gallery-item .gallery__inner-info a {
  margin-top: auto;
  color: #406f3f;
  font-family: "Cygre ExtraBold";
  font-size: 16px;
  font-weight: 800;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: all 0.3s;
}
.main__slider .gallery-item .gallery__inner-info a:hover {
  color: #2c2f22;
}
.main__slider .gallery-item .gallery__inner-title {
  grid-column: 1/3;
  color: #2c2f22;
  font-family: "Cygre SemiBold";
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 28px;
}
.main__slider .gallery-item .gallery__inner-slider {
  max-width: 465px;
  width: 100%;
}
.main__slider .gallery-item .gallery__inner-slider img {
  height: 497px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__slider .gallery-item .gallery__inner-slider .main__slider-nav {
  width: 190px;
  position: absolute;
  left: 195px;
  bottom: 22px;
}
.main__slider .gallery-item .gallery__inner-slider .swiper-button-next, .main__slider .gallery-item .gallery__inner-slider .swiper-button-prev {
  width: 72px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid #2c2f22;
  transition: all 0.3s;
}
.main__slider .gallery-item .gallery__inner-slider .swiper-button-next svg, .main__slider .gallery-item .gallery__inner-slider .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.main__slider .gallery-item .gallery__inner-slider .swiper-button-next svg path, .main__slider .gallery-item .gallery__inner-slider .swiper-button-prev svg path {
  transition: all 0.3s;
}
.main__slider .gallery-item .gallery__inner-slider .swiper-button-next:hover, .main__slider .gallery-item .gallery__inner-slider .swiper-button-prev:hover {
  border-color: #406f3f;
}
.main__slider .gallery-item .gallery__inner-slider .swiper-button-next:hover svg path, .main__slider .gallery-item .gallery__inner-slider .swiper-button-prev:hover svg path {
  stroke: #406f3f;
}
.main__slider .gallery-item .gallery__inner-slider .swiper-button-next:after, .main__slider .gallery-item .gallery__inner-slider .swiper-button-prev:after {
  content: none;
}
.main__slider .gallery-item .gallery-main-title {
  transform: rotate(-90deg);
  position: absolute;
  z-index: 10;
  top: 43.5%;
  width: 603px;
  height: 77px;
  font-family: "Gilroy Regular";
  text-transform: uppercase;
  color: #2c2f22;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 400 !important;
  font-size: 36px;
  gap: 20px;
}
.main__slider .gallery-item.active {
  border-right: none;
  border-left: none;
}
.main__slider .gallery-item.active .gallery-main-title {
  display: none;
}
.main__slider .gallery-item.active .gallery__inner {
  visibility: visible;
  opacity: 1;
}

.main__slider-mob {
  display: none;
}

.advert {
  position: relative;
  height: 550px;
}
.advert__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.advert__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.advert__inner {
  padding-top: 179px;
  max-width: 770px;
  position: relative;
}
.advert .main__title {
  color: #f2f0eb;
  margin-bottom: 40px;
}
.advert .main__subtitle {
  max-width: 495px;
}
.advert .callback__btn {
  position: absolute;
  right: -170px;
  bottom: 0;
}

.technology {
  padding: 145px 0 73px;
}
.technology__container {
  padding-right: calc(50% - 600px);
}
.technology__inner {
  display: grid;
  grid-template-columns: 555px 690px;
  grid-template-rows: 221px auto;
  gap: 36px 24px;
  justify-content: end;
  align-items: start;
}
.technology__img {
  height: 692px;
  position: relative;
  grid-column: 1/2;
  grid-row: 1/3;
}
.technology__img .technology__num {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #406f3f;
  color: #fff;
  font-family: "Gilroy Medium";
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.technology__img .technology__num.active {
  transform: scale(1.5);
}
.technology__img .technology__num.active .plus {
  display: none;
}
.technology__img .technology__num.active .number {
  display: block;
  font-size: 12px;
}
.technology__img .technology__num .plus {
  font-size: 20px;
}
.technology__img .technology__num .number {
  display: none;
}
.technology__img .technology__num[data-target=item01] {
  top: 135px;
  left: 350px;
}
.technology__img .technology__num[data-target=item02] {
  top: 310px;
  left: 345px;
}
.technology__img .technology__num[data-target=item03] {
  top: 260px;
  left: 420px;
}
.technology__img .technology__num[data-target=item04] {
  top: 470px;
  left: 350px;
}
.technology__img .technology__num[data-target=item05] {
  top: 300px;
  left: 235px;
}
.technology__img .technology__num[data-target=item06] {
  top: 320px;
  left: 140px;
}
.technology__img .technology__num[data-target=item07] {
  top: 0;
  left: 210px;
}
.technology__img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.technology .main__subtitle {
  color: #2c2f22;
}
.technology__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}
.technology__item {
  display: flex;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.technology__item-num, .technology__item-title {
  font-size: 20px;
  font-family: "Gilroy Medium";
}
.technology__item-text {
  font-size: 16px;
}
.technology__item.active span {
  color: #406f3f;
}

.read__more {
  display: block;
  color: #406f3f;
  text-decoration: underline;
  text-transform: uppercase;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s;
}
.read__more:hover {
  color: #2c2f22;
}

.about-us {
  padding-bottom: 64px;
}
.about-us__inner {
  display: grid;
  grid-template-columns: 53% 40%;
  grid-template-rows: auto 261px;
  gap: 60px 100px;
  justify-content: space-between;
}
.about-us__main {
  grid-column: 2/3;
  grid-row: 1/3;
  max-height: 655px;
}
.about-us__main img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us__bottom img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us__info {
  max-width: 590px;
  margin-left: auto;
}
.about-us__text {
  margin: 16px 0;
}
.about-us .paragraph {
  font-size: 16px;
  line-height: 1.5;
}
.about-us .paragraph.hidden {
  display: none;
}

.stats {
  padding-bottom: 111px;
}
.stats__inner {
  display: flex;
  justify-content: space-between;
}
.stats__item {
  display: flex;
  flex-direction: column;
  width: 250px;
}
.stats__num {
  font-family: "Cygre Medium";
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
  color: #406f3f;
}
.stats__num span {
  color: rgba(44, 47, 34, 0.4);
}
.stats__text {
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Gilroy Medium";
  font-weight: 500;
  line-height: 1.5;
}
.products-slider {
	padding-bottom: 114px;
}
.products-slider .main__title {
  text-align: right;
  margin-bottom: 36px;
}
.products-slider .finished__products .product {
  width: 100% !important;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #2c2f22;
}
.products-slider .finished__products .product__img {
  margin-bottom: 16px;
}
.products-slider .finished__products .product__img img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-slider .finished__products .product__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-slider .finished__products .product__btns h3 {
  font-family: "Gilroy Medium";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.products-slider .finished__products .product__btns a {
  color: #406f3f;
  font-family: "Cygre ExtraBold";
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  transition: all 0.3s;
}
.products-slider ul .product__btns a:hover {
  color: #2c2f22;
}

.why-us {
  padding: 0 0 110px;
}
.why-us__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.why-us__header {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 62px;
}
.why-us__img {
  max-width: 785px;
  padding-right: 108px;
}
.why-us__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-us .btn-wrapp .circle__icon {
  fill: #2c2f22;
}
.why-us .btn-wrapp:hover .btn {
  color: #fff;
  background: #2c2f22;
}
.why-us__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-us__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
/*   height: 100%; */
}
.why-us__item-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #2c2f22;
  text-transform: uppercase;
  flex-grow: 1;
  font-size: 20px;
  font-family: "Gilroy Medium";
  font-weight: 500;
}

.latest-news {
  margin-bottom: 92px;
}
.latest-news .main__title {
  margin-bottom: 24px;
}
.latest-news .post__img {
  font-size: 0;
  margin-bottom: 16px;
}
.latest-news .post__img img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-news .post__inner h3,
.latest-news .post__inner > p{
  color: #406f3f;
  font-family: "Cygre SemiBold";
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
.latest-news .post__inner .post__content {
  overflow: hidden;
  text-overflow: ellipsis;
  whitespace: nowrap;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 16px;
}
.latest-news .post__inner .post__content img {
  display: none;
}
.latest-news .post__inner .post__meta {
  gap: 30px;
  margin-bottom: 0;
}
.latest-news .post__inner .post__meta-wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.latest-news .post__inner .post__link {
  color: #406f3f;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  line-height: 1.4;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: all 0.3s;
}
.latest-news .post__inner .post__link:hover {
  color: #2c2f22;
}

.slider__nav {
  position: relative;
  height: 32px;
  margin-top: 44px;
  display: flex;
  align-items: center;
  max-width: 390px;
  margin-left: auto;
}
.slider__nav .swiper-pagination {
  position: relative;
  gap: 26px;
  bottom: 0 !important;
  z-index: -1;
}
.slider__nav .swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #a3a39b;
  font-family: "Cygre ExtraBold";
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}
.slider__nav .swiper-pagination .swiper-pagination-bullet-active {
  color: #2c2f22;
}
.slider__nav .swiper-button-next, .slider__nav .swiper-button-prev {
  position: absolute;
  top: 0;
  width: 72px;
  height: 32px;
  margin-top: 0;
  border: 1px solid #2c2f22;
  border-radius: 30px;
  transition: all 0.3s;
}
.slider__nav .swiper-button-next svg path, .slider__nav .swiper-button-prev svg path {
  transition: all 0.3s;
}
.slider__nav .swiper-button-next:hover, .slider__nav .swiper-button-prev:hover {
  border-color: #406f3f;
}
.slider__nav .swiper-button-next:hover svg path, .slider__nav .swiper-button-prev:hover svg path {
  stroke: #406f3f;
}
.slider__nav .swiper-button-next::after, .slider__nav .swiper-button-prev::after {
  content: none;
}

.faq {
  padding: 92px 0 84px;
}
.faq .main__title {
  margin-bottom: 48px;
}
.faq__tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__box {
  cursor: pointer;
  border-bottom: 1px solid #2c2f22;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq__box.active-faq {
  align-items: flex-start;
}
.faq__box.active-faq .accordion {
  color: #406f3f;
}
.faq__box.active-faq .faq__arrow {
  transform: rotate(45deg);
}
.faq .accordion {
  border: none;
  background: transparent;
  color: #2c2f22;
  font-family: "Gilroy SemiBold";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  margin-right: auto;
}
.faq .panel {
  max-width: 588px;
  max-height: 0;
  overflow: hidden;
  font-family: "Gilroy Regular";
  line-height: 1.5;
  font-size: 16px;
}
.faq__arrow {
  margin-left: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-shop{
	margin-top:30px;
}

.seo {
  padding-bottom: 42px;
}
.seo .main__title {
  max-width: 800px;
  margin-bottom: 24px;
}
.seo__text {
  max-width: 1135px;
}
.seo .paragraph {
  font-size: 16px;
  line-height: 1.5;
}
.seo .paragraph.hidden {
  display: none;
}
.seo .read__more {
  margin-top: 24px;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  bottom: 30px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  margin: 0px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #406f3f;
}

.catalog__banners {
  position: relative;
  margin: 16px 0 80px;
}
.catalog__banners img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__banner {
  height: 460px;
}
.catalog__banner .container {
  position: relative;
  z-index: 5;
}
.catalog__banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.catalog__banner-info {
  width: 50%;
  margin-left: auto;
  padding: 66px 0 40px;
  position: relative;
}
.catalog__banner-title {
  color: #fff;
  font-family: "Cygre Regular";
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.catalog__banner-subtitle {
  font-family: "Gilroy Regular";
  font-weight: 400;
  text-transform: uppercase;
  max-width: 427px;
}
.catalog__banner .btn-wrapp {
  position: absolute;
  right: 0;
  bottom: 35px;
}

.add_to_cart_button {
  display: none !important;
}

.archive ul.products {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.archive ul.products li {
  padding-bottom: 48px;
  border-bottom: 1px solid #2c2f22;
  display: flex;
  gap: 24px;
  width: 100% !important;
  margin: 0 !important;
}
.archive ul.products li .product__img {
  width: 486px;
  height: 450px;
  flex-shrink: 0;
  overflow: hidden;
}
.archive ul.products li .product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.archive ul.products li .product__img:hover img {
  transform: scale(1.05);
}
.archive ul.products li .product__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-end;
}
.archive ul.products li h2 {
  color: #406f3f;
  font-family: "Cygre SemiBold";
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
.archive ul.products li .price {
  font-family: "Gilroy Medium";
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 36px;
}
.archive ul.products li .product-attributes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.archive ul.products li .product-attribute {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Gilroy SemiBold";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.archive ul.products li .product-attribute span {
  font-family: "Gilroy Regular";
  font-weight: 400;
}
.archive ul.products li .product__btns-wrapp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
  font-size: 16px !important;
  text-align: center;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.archive ul.products li .product__btns-wrapp .clickBuyButton {
  width: 100%;
  display: flex;
  height: 58px;
  justify-content: center;
  align-items: center;
  background: #406f3f;
  color: #fff;
  border: 1px solid #406f3f;
  border-radius: 30px;
  transition: all 0.3s;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 16px !important;
  text-align: center;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  line-height: 1.4; /* 22.4px */
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.archive ul.products li .product__btns-wrapp .clickBuyButton:hover {
  background: #2c2f22;
  border-color: #2c2f22;
}
.archive ul.products li .product__btns-wrapp .clickBuyButton:focus {
  background: transparent;
  color: #406f3f;
  border-color: #406f3f;
}
.archive ul.products li .details__link {
  color: #406f3f;
  border: 1px solid #406f3f;
  border-radius: 30px;
  transition: all 0.3s;
  flex-shrink: 0;
  height: 58px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive ul.products li .details__link:hover {
  background: #406f3f;
  color: #fff;
}
.archive ul.products li .details__link:focus {
  background: transparent;
  color: #406f3f;
}
.archive .lmp_load_more_button {
  margin: 56px 0 72px;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  line-height: 1.4 !important;
  text-transform: uppercase;
}
.archive .lmp_load_more_button a {
  text-decoration: underline !important;
}

.single-product__gallery {
  margin: 47px 0;
  display: flex;
  gap: 25px;
  max-height: 620px;
  font-size: 0;
}
.single-product__gallery img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product__gallery .swiperMain {
  max-width: 790px;
  margin: 0;
}
.single-product__gallery .swiperThumbs {
  margin: 0;
  width: fit-content;
}
.single-product__gallery .swiperThumbs .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  gap: 24px;
  overflow-y: scroll;
  position: relative;
}
.single-product__gallery .swiperThumbs .swiper-wrapper::-webkit-scrollbar {
  width: 4px;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
}
.single-product__gallery .swiperThumbs .swiper-wrapper::-webkit-scrollbar-track {
  background: #e3e1dc;
}
.single-product__gallery .swiperThumbs .swiper-wrapper::-webkit-scrollbar-thumb {
  background: #406f3f;
}
.single-product__gallery .swiperThumbs .swiper-wrapper::-webkit-scrollbar-thumb:hover {
  background: #2c2f22;
}
.single-product__gallery .swiperThumbs .swiper-wrapper .swiper-slide {
  width: 100% !important;
  max-width: 170px;
  height: 189px;
  cursor: pointer;
}
.single-product__gallery .swiperThumbs .swiper-wrapper .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  color: #2c2f22;
}
.single-product__title .entry-title {
  font-family: "Cygre SemiBold";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
.single-product__title .price {
  font-family: "Cygre SemiBold";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
.single-product__btns {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 59px;
}
.single-product__btns .quantity, .single-product__btns button[name=add-to-cart] {
  display: none;
}
.single-product__btns .clickBuyButton {
  border-radius: 30px;
  background: #406f3f;
  border: 1px solid #406f3f;
  height: 58px;
  width: 283px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  line-height: 1.4;
  transition: all 0.3s;
  cursor: pointer;
}
.single-product__btns .clickBuyButton.ld-ext-left.running {
  padding-left: 0 !important;
}
.single-product__btns .clickBuyButton .ld-cycle {
  display: none;
}
.single-product__btns .clickBuyButton:hover {
  border-color: #2c2f22;
  background: #2c2f22;
}
.single-product__btns .clickBuyButton:focus {
  border-color: #406f3f;
  color: #406f3f;
  background: transparent;
}
.single-product__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-product__social span {
  font-family: "Gilroy Medium";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  max-width: 240px;
}
.single-product__social a {
  border-color: #406f3f;
  background: #406f3f;
}
.single-product__social a:hover {
  background: #2c2f22;
  border-color: #2c2f22;
}
.single-product__social a:hover svg path {
  fill: #f2f0eb;
}
.single-product .tabs {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 110px;
  border-bottom: 1px solid #2c2f22;
  text-transform: uppercase;
  font-family: "Gilroy Regular";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5; /* 30px */
}
.single-product .tabs .active {
  font-family: "Gilroy SemiBold";
  font-weight: 700;
}
.single-product .woocommerce-Tabs-panel .tab__inner-title {
  display: none;
}
.single-product #tab-description {
  padding-top: 12px;
  margin-bottom: 103px;
}
.single-product #tab-description img {
  width: auto;
}
.single-product #tab-additional_information {
  padding-top: 24px;
  margin-bottom: 117px;
}
.single-product #tab-additional_information table {
  width: 100%;
}
.single-product #tab-additional_information tbody {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
.single-product #tab-additional_information tbody tr {
  display: flex;
  gap: 16px;
}
.single-product #tab-additional_information tbody tr th {
  position: relative;
  font-family: "Gilroy SemiBold";
}
.single-product #tab-additional_information tbody tr th::after {
  position: absolute;
  content: ":";
  left: 101%;
}
.single-product #complectation {
  padding-top: 40px;
  margin-bottom: 114px;
}
.single-product #complectation .complectation__subtitle {
  margin-bottom: 47px;
  max-width: 643px;
  font-family: "Gilroy Medium";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.single-product #complectation .complectation__tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-product #complectation .faq__box {
  padding: 22px 24px;
  border: 1px solid #406f3f;
  flex-direction: column;
  align-items: flex-start;
}
.single-product #complectation .accordion {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #406f3f;
  font-family: "Gilroy Medium";
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-product #complectation .accordion.active-faq .faq__arrow {
  transform: rotate(45deg);
}
.single-product #complectation .panel {
  max-width: 952px;
  max-height: 0;
  overflow: hidden;
  font-family: "Gilroy Regular";
  line-height: 1.5;
  font-size: 16px;
}

.post__meta {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #a3a39b;
}

.post__views {
  display: flex;
  align-items: center;
  gap: 7px;
}

.news {
  margin: 48px 0 63px;
}
.news .main__title {
  margin-bottom: 36px;
}
.news__list article {
  display: flex;
  gap: 28px;
}
.news__list .post__img {
  flex-shrink: 0;
  max-width: 486px;
  max-height: 230px;
}
.news__list .post__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__list .alm-reveal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news__list .post__inner {
  padding: 11px 0;
}
.news__list .post__inner h3 {
  color: #406f3f;
  font-family: "Cygre SemiBold";
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.news__list .post__inner .post__link {
  font-family: "Cygre ExtraBold";
  color: #406f3f;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.3s;
  display: inline-block;
}
.news__list .post__inner .post__link:hover {
  color: #2c2f22;
  text-decoration: underline;
}
.news__list .post__content {
  overflow: hidden;
  text-overflow: ellipsis;
  whitespace: nowrap;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news__list .post__content img {
  display: none;
}
.news__list .alm-btn-wrap {
  margin: 39px 0 0;
  padding: 0;
}
.news__list .alm-load-more-btn {
  background: transparent !important;
  border-radius: 30px !important;
  box-shadow: none !important;
  color: #406f3f !important;
  font-family: "Cygre ExtraBold";
  font-size: 16px !important;
  font-weight: 800 !important;
  height: 58px !important;
  padding: 0 !important;
  width: 269px !important;
  border: 1px solid #406f3f !important;
  text-transform: uppercase !important;
}
.news__list .alm-load-more-btn:hover {
  background: #406f3f !important;
  color: #fff !important;
}
.news__list .alm-load-more-btn::before {
  content: none !important;
}
.news__list .alm-load-more-btn.done {
  display: none;
}

.single-news {
  margin-bottom: 96px;
}
.single-news .post__banner {
  margin: 24px 0;
  height: 400px;
  position: relative;
  padding: 20px 0 101px;
  display: flex;
  align-items: flex-end;
}
.single-news .post__banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.single-news .post__banner h1 {
  color: #fff;
  font-family: "Cygre Medium";
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}
.single-news .post__meta {
  margin-bottom: 24px;
}
.single-news .post__content img {
  margin: 24px 0;
}
.single-news .post-navigation__wrapp {
  margin-top: 34px;
  position: relative;
  width: 100%;
  height: 58px;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
}
.single-news .post-navigation__wrapp a.post-navigation__news-link {
  position: absolute;
  top: 0;
  left: 50.3%;
  transform: translateX(-50%);
  z-index: 10;
  border-radius: 30px;
  border: 1px solid #406f3f;
  height: 58px;
  width: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #406f3f;
  text-transform: uppercase;
  transition: all 0.3s;
}
.single-news .post-navigation__wrapp a.post-navigation__news-link:hover {
  color: #fff;
  border-color: #2c2f22;
  background: #2c2f22;
}
.single-news .post-navigation__wrapp .navigation.post-navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  height: 100%;
}
.single-news .post-navigation__wrapp .post-navigation .nav-links {
  display: flex;
  align-items: center;
  height: 100%;
}
.single-news .post-navigation__wrapp .post-navigation .nav-links a {
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  color: #2c2f22;
}
.single-news .post-navigation__wrapp .post-navigation .nav-links a svg path {
  transition: all 0.3s;
}
.single-news .post-navigation__wrapp .post-navigation .nav-links a:hover {
  color: #406f3f;
}
.single-news .post-navigation__wrapp .post-navigation .nav-links a:hover .nav-title {
  border-color: #406f3f;
}
.single-news .post-navigation__wrapp .post-navigation .nav-links a:hover svg path {
  fill: #406f3f;
}
.single-news .post-navigation__wrapp .post-navigation .nav-previous {
  flex: 1 0 50%;
}
.single-news .post-navigation__wrapp .post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
  padding-right: 5px;
}
.single-news .post-navigation__wrapp .post-navigation .nav-next a {
  justify-content: flex-end;
  margin-left: auto;
}
.single-news .post-navigation__wrapp span.nav-title {
  font-size: 0;
  border-radius: 20px;
  border: 1px solid #373a38;
  width: 58px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.finished__list {
  margin-bottom: 93px;
}
.finished__list ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 431px;
  gap: 36px 26px;
}
.finished__list ul a {
  width: 100% !important;
  height: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #2c2f22;
  transition: all 0.3s;
}
.finished__list ul a svg {
  transition: all 0.3s;
}
.finished__list ul a svg path {
  transition: all 0.3s;
}
.finished__list ul a:nth-child(1), .finished__list ul a:nth-child(9), .finished__list ul a:nth-child(12n), .finished__list ul a:nth-child(20n) {
  grid-column: 1/4;
}
.finished__list ul a:nth-child(2), .finished__list ul a:nth-child(10), .finished__list ul a:nth-child(13n), .finished__list ul a:nth-child(21n) {
  grid-column: 4/10;
}
.finished__list ul a:nth-child(3), .finished__list ul a:nth-child(11), .finished__list ul a:nth-child(14n), .finished__list ul a:nth-child(22n) {
  grid-column: 10/13;
}
.finished__list ul a:nth-child(4), .finished__list ul a:nth-child(6), .finished__list ul a:nth-child(15n), .finished__list ul a:nth-child(27n) {
  grid-column: 1/5;
}
.finished__list ul a:nth-child(5), .finished__list ul a:nth-child(16n) {
  grid-column: 5/13;
}
.finished__list ul a:nth-child(7), .finished__list ul a:nth-child(18n) {
  grid-column: 5/9;
}
.finished__list ul a:nth-child(8), .finished__list ul a:nth-child(19n) {
  grid-column: 9/13;
}
.finished__list ul a .product__img {
  height: 360px;
  overflow: hidden;
}
.finished__list ul a .product__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.finished__list ul a .product__btns-wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.finished__list ul a:hover img {
  transform: scale(1.05);
}
.finished__list ul a:hover svg {
  transform: rotate(-90deg);
}
.finished__list ul a:hover svg path {
  stroke: #2c2f22;
}
.finished__list .load__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  color: #406f3f;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  line-height: 1.4;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.finished__list .load__more:hover {
  color: #2c2f22;
}
.finished__list.closed ul a:nth-child(n+12) {
  display: none;
}
.finished__list .product__img {
  margin-bottom: 8px;
}
.finished__list h2 {
  color: #406f3f;
  font-family: "Cygre SemiBold";
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
.finished__list .price {
  font-family: "Gilroy Medium";
  font-weight: 500;
  line-height: 1.5;
}
.finished .catalog__banner .btn-wrapp {
  bottom: -15px;
}
.finished .catalog__banners {
  margin: 16px 0 36px;
}
.finished .main__title {
  margin-bottom: 48px;
}

.b2b-hero {
  height: 460px;
  position: relative;
  margin-top: 16px;
}
.b2b-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.b2b-hero__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b2b-hero__inner {
  padding: 169px 0 20px;
  width: 75%;
  position: relative;
}
.b2b-hero__title {
  max-width: 625px;
  margin-bottom: 30px;
  color: #fff;
  font-family: "Cygre Regular";
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.b2b-hero__subtitle {
  max-width: 606px;
  font-family: "Gilroy Regular";
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}
.b2b-hero .btn-wrapp {
  position: absolute;
  right: 0;
  bottom: 80px;
}
.b2b__main-text {
  margin: 51px 0 103px;
}
.b2b__main-text .b2b__stats {
  margin: 48px 0;
  padding-bottom: 0;
}
.b2b-pros {
  margin-bottom: 88px;
}
.b2b-pros__inner {
  display: flex;
  flex-direction: column;
}
.b2b-pros__row {
  display: flex;
}
.b2b-pros__row:nth-child(1) {
  gap: 92px;
}
.b2b-pros__row:nth-child(1) .b2b-pros__img {
  max-width: 420px;
}
.b2b-pros__row:nth-child(1) h2 {
  max-width: 500px;
  margin-bottom: 50px;
}
.b2b-pros__row:nth-child(1) .b2b-pros__info {
  max-width: 590px;
}
.b2b-pros__row:nth-child(2) {
  margin-bottom: 86px;
  align-items: flex-end;
  gap: 61px;
}
.b2b-pros__row:nth-child(2) .b2b-pros__img {
  max-width: 690px;
}
.b2b-pros__row:nth-child(3) {
  gap: 128px;
}
.b2b-pros__row:nth-child(3) .b2b-pros__info .b2b-pros__img {
  margin-bottom: 36px;
}
.b2b-pros__row:nth-child(3) .b2b-pros__info:first-child {
  flex-shrink: 0;
  max-width: 483px;
}
.b2b-pros__info h3 {
  color: #406f3f;
  font-family: "Cygre SemiBold";
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.b2b-pros__img {
  flex-shrink: 0;
}

.about-hero {
  height: 460px;
  position: relative;
  margin-top: 16px;
}
.about-hero .container {
  height: 100%;
}
.about-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-hero__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-hero__inner {
  padding: 20px 0 75px;
  width: 75%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.about-hero__title {
  max-width: 625px;
  margin-bottom: 30px;
  color: #fff;
  font-family: "Cygre Regular";
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.about-hero__subtitle {
  max-width: 606px;
  font-family: "Gilroy Regular";
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}
.about__main-text {
  margin: 48px 0 58px;
}
.about__main-text .about__main-paragraph {
  max-width: 1095px;
}
.about__info {
  margin-bottom: 62px;
}
.about__info .about__main-text {
  margin: 0;
}
.about__info-row {
  margin-bottom: 56px;
  display: flex;
  gap: 67px;
}
.about__info-box {
  padding-top: 50px;
  max-width: 381px;
}
.about__info-box .main__title {
  margin-bottom: 24px;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  grid-auto-rows: 250px;
}
.about__grid-item {
  background: #406f3f;
  color: #fff;
}
.about__grid-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__grid-item.text-box {
  padding: 22px 24px;
}
.about__grid-item.text-box h2 {
  font-family: "Cygre SemiBold";
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 49px;
}
.about__cards-list {
  width: 100%;
  display: flex;
  padding: 56px 0;
}
.about__cards .card {
  width: 16%;
  overflow: hidden;
  transition: all 0.5s linear;
  height: 333px;
  color: #406f3f;
  border: 1px solid #e8e4db;
  background: #f2f0eb;
  box-shadow: 7px 6px 20px 0px rgba(186, 183, 176, 0.1), 29px 22px 37px 0px rgba(186, 183, 176, 0.09), 66px 50px 49px 0px rgba(186, 183, 176, 0.05), 117px 88px 59px 0px rgba(186, 183, 176, 0.01), 183px 138px 64px 0px rgba(186, 183, 176, 0);
}
.about__cards .card a.action {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
}
.about__cards .card a.action span {
  font-family: "Cygre Medium";
  font-size: 60px;
  font-weight: 500;
  position: absolute;
  top: 20px;
  width: 100px;
  right: 25px;
}
.about__cards .card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 745px;
  padding: 21px 40px 40px;
  height: 100%;
}
.about__cards .card__content p.card__content-title {
  font-family: "Cygre Medium";
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: left;
  width: 100%;
}
.about__cards .card__content span {
  font-family: "Cygre Medium";
  font-size: 60px;
  font-weight: 500;
  display: block;
  margin-bottom: auto;
}
.about__cards .card.active {
  width: 80%;
  border-color: #406f3f;
}
.about__cards .card.active a.action {
  display: none;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 99999999;
}
.popup.open {
  display: block;
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__content {
  color: #f2f0eb;
  width: 486px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 36px 61px 55px;
  background: #406f3f;
  position: relative;
}
.popup__close {
  font-size: 32px;
  position: absolute;
  top: 24px;
  right: 24px;
  line-height: 0.6;
  cursor: pointer;
}
.popup__title {
  font-family: "Cygre SemiBold";
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  text-transform: uppercase;
  margin: 0 0 8px 0;
  text-align: center;
}
.popup__text {
  text-align: center;
  font-size: 20px;
  line-height: 130%; /* 31.2px */
  max-width: 210px;
  margin: 0 auto 16px;
}
.popup__form {
  max-width: 313px;
  margin: 0 auto;
}
.popup .form__inner {
  flex-direction: column;
  gap: 16px;
}
.popup .form__inner > p {
  max-width: 286px;
  margin: 0 auto;
}
.popup__form .form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  padding-bottom: 10px;
  font-family: "Gilroy Regular";
  font-size: 16px;
  color: #fff;
  width: 100%;
}
.popup__form .form-input::-moz-placeholder {
  color: #fff;
  font-family: "Gilroy Regular";
}
.popup__form .form-input::placeholder {
  color: #fff;
  font-family: "Gilroy Regular";
}
.popup__form .form-input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent;
  -webkit-text-fill-color: #fff;
}
.popup__form .circle__animation {
  display: none;
}
.popup__form .btn-wrapp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  position: relative;
  flex-shrink: 0;
}
.popup__form .btn-wrapp p {
  height: 100%;
  width: 100%;
}
.popup__form .btn-wrapp .btn {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  background: #2c2f22;
  padding: 0;
}
.popup__form .btn-wrapp .btn:hover {
  border-color: #f2f0eb;
  background: #f2f0eb;
}
.popup .wpcf7 form .wpcf7-response-output {
  position: static;
}
.popup .social {
  margin-top: 16px;
  justify-content: center;
}
.popup.success .popup__content {
  color: #f2f0eb;
  width: 486px;
  height: 350px !important;
  background-color: #406f3f;
  background-image: url(../images/success-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  position: relative;
  text-align: center;
}
.popup.success .popup__title {
  font-family: "Cygre Medium";
  font-size: 60px;
  font-weight: 500;
  line-height: 130%; /* 78px */
  text-transform: uppercase;
}
.popup.success .popup__text {
  font-size: 24px;
  line-height: 150%; /* 36px */
}

#formOrderOneClick .popup {
  color: #f2f0eb;
  width: 486px !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  padding: 36px 61px 55px !important;
  background-color: #406f3f !important;
  border-radius: 0 !important;
  border: none !important;
}
#formOrderOneClick .popup .social a:hover {
  border-color: #2c2f22;
  background: #2c2f22;
}
#formOrderOneClick .popup .social a:hover svg path {
  fill: #f2f0eb;
}

#formOrderOneClick .popup .close_order {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 30px !important;
  top: 4px !important;
  right: 4px !important;
}

#buyoneclick_form_order {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#buyoneclick_form_order h2 {
  font-family: "Cygre SemiBold";
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
#buyoneclick_form_order .buyoneclick__subtitle {
  text-align: center;
  font-family: "Gilroy Regular";
  font-size: 20px;
  font-weight: 400;
  max-width: 210px;
  margin: 0 auto 16px;
}
#buyoneclick_form_order input[type=email], #buyoneclick_form_order input[type=tel], #buyoneclick_form_order input[type=text] {
  font-size: 16px !important;
  border: none !important;
  padding: 0 0 16px !important;
  border-radius: 0 !important;
  text-shadow: none !important;
  height: auto !important;
  box-shadow: none !important;
  margin: 0 auto 36px !important;
  width: 286px !important;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff !important;
  outline: none;
  padding-bottom: 10px;
  font-family: "Gilroy Regular";
  color: #fff !important;
}
#buyoneclick_form_order input[type=email]::-moz-placeholder, #buyoneclick_form_order input[type=tel]::-moz-placeholder, #buyoneclick_form_order input[type=text]::-moz-placeholder {
  color: #fff;
  font-family: "Gilroy Regular";
}
#buyoneclick_form_order input[type=email]::placeholder, #buyoneclick_form_order input[type=tel]::placeholder, #buyoneclick_form_order input[type=text]::placeholder {
  color: #fff;
  font-family: "Gilroy Regular";
}
#buyoneclick_form_order input[type=email]:-webkit-autofill, #buyoneclick_form_order input[type=tel]:-webkit-autofill, #buyoneclick_form_order input[type=text]:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent;
  -webkit-text-fill-color: #fff;
}
#buyoneclick_form_order input[type=email] {
  margin-bottom: 16px !important;
}
#buyoneclick_form_order .button {
  background: #2c2f22 !important;
  background-color: #2c2f22 !important;
  border-radius: 30px !important;
  text-shadow: none !important;
  border: 1px solid #2c2f22 !important;
  color: #f2f0eb !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  width: 313px !important;
  padding: 0 !important;
  margin: 0px auto !important;
  box-shadow: none !important;
  height: 56px;
  text-align: center;
  font-family: "Cygre ExtraBold";
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s;
}
#buyoneclick_form_order .button:hover {
  border-color: #f2f0eb !important;
  background-color: #f2f0eb !important;
  background: #f2f0eb !important;
  color: #406f3f !important;
}

.contacts .map {
  margin: 36px 0;
}
.contacts .main__title {
  margin-bottom: 36px;
}
.contacts__info {
  margin-bottom: 110px;
}
.contacts__info-row {
  display: flex;
  gap: 59px;
}
.contacts__col {
  font-family: "Gilroy SemiBold";
  font-size: 24px;
  font-weight: 600;
}
.contacts__col h3 {
  font-family: "Gilroy Medium";
  font-size: 16px;
  font-weight: 500;
  color: #406f3f;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.contacts__col ul {
  list-style: none;
}
.contacts__col .address {
  max-width: 250px;
}
.contacts__col a {
  transition: all 0.3s;
}
.contacts__col a:hover {
  color: #406f3f;
}
.error-404 {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product .product__img{
	position: relative;
}
.onsale {
    position: absolute;
    z-index: 5;
    color: #fff;
    padding: 2px 5px;
    background: #406f3f;
}
.menu-item-has-children{
	position: relative;
}
.menu-item-has-children svg {
	position: relative;
	top: 3px;
	transition: all 0.3s;
	
}
.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    display: flex;
    flex-direction: column;
    width: max-content;
    align-items: flex-start !important;
    gap: 10px !important;
	height: 0;
	overflow: hidden;
}
.menu-item-has-children:hover .sub-menu {
	height: auto;
	padding: 20px;
}
.menu-item-has-children:hover svg {
	transform: rotate(-90deg);
}
.home .menu-item-has-children .sub-menu{
	background: transparent;
}
.fixed .menu-item-has-children .sub-menu,
.menu-item-has-children .sub-menu{
	background: #f2f0eb;
}
.page-id-515 h1,
.page-id-518 h1 {
	font-size: 36px;
}
.footer .menu-item-has-children .sub-menu {
	display: none;
}
.onefloor .b2b-hero__subtitle {
    max-width: unset;
}
.onefloor .b2b-hero__inner {
    width: 100%;
}
.onefloor .b2b-hero .btn-wrapp {
    bottom: 50%;
}
.onefloor .b2b-pros__row:not(:first-child){
	margin-top: 50px;
	margin-bottom: 0;
}
.onefloor .b2b-pros__row .b2b-pros__info {
    max-width: unset;
}
.onefloor .b2b-pros__row .main__title {
    max-width: unset;
    margin-bottom: 20px;
}
.onefloor .b2b-pros {
	margin: 50px 0;
}
.onefloor .b2b-pros ul {
	margin: 30px 0 30px 30px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.onefloor .b2b-pros ul li {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.onefloor .b2b-pros ul li h3{
	margin-bottom: 0;
}
.filter {
	margin-bottom: 20px;
}
.filter__btn{
	padding: 10px 30px;
	text-transform: uppercase;
	border-radius: 30px;
	border: 1px solid #406f3f;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	font-family: "Cygre Medium";
	color: #406f3f;
	transition: all 0.3s;
}
.filter__btn svg path {
	transition: all 0.3s;
}
.filter__btn:hover{
	color: #fff;
	background: #406f3f;
}
.filter__btn:hover svg path{
	stroke: #fff;
}
.filter__content-wrapp {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	z-index: 9999;
}
.filter__content-wrapp.open {
	visibility: visible;
	opacity: 1;
}
.filter__content {
	position: absolute;
	width: 30%;
	height: 100%;
	top: 0;
	left: -120%;
	transition: all 0.3s;
	background: #fff;
	z-index: 9999;
	padding: 100px 50px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.open .filter__content {
	left: 0;
}
.filter__close {
	margin-left: auto;
	font-size: 52px;
	cursor: pointer;
}
.filter .wpfFilterWrapper .wfpTitle {
    font-size: 22px;
	margin-bottom: 5px;
}
.wpfButton {
	background: #406f3f;
	border-radius: 40px !important;
	color: #fff;
	font-family: "Cygre Medium";
	transition: all 0.3s;
}
.wpfFilterButton:hover {
	background: #2c2f22;
}
.filter .wpfClearButton {
	border: 1px solid #406f3f !important;
	background: #fff;
	color: #406f3f;
}
.filter .wpfClearButton:hover {
	background: #406f3f;
	color: #fff;
}











/*# sourceMappingURL=styles.css.map */