@import url("fontello.css");
@font-face {
  font-family: "fontello";
  src: url("../fonts/icons/fontello.eot?44875037");
  src: url("../fonts/icons/fontello.eot?44875037#iefix") format("embedded-opentype"), url("../fonts/icons/fontello.woff2?44875037") format("woff2"), url("../fonts/icons/fontello.woff?44875037") format("woff"), url("../fonts/icons/fontello.ttf?44875037") format("truetype"), url("../fonts/icons/fontello.svg?44875037#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
}
:root {
  --green-color: #3BA540;
    --base-color: #342e29;
  --orange-color: #EF7911;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
    line-height: 1.3;
  color: #4A4A4A;
}

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

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

.ul-style-none {
  padding: 0;
}
.ul-style-none li {
  padding: 0;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

input:not([type=checkbox], [type=radio]),
input:not([type=checkbox], [type=radio]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.modal__bg {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
}

.modal {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 90;
  display: none;
}
.modal.active, .modal__bg.active {
  display: block;
}
.modal-body {
  width: 100%;
  height: 100%;
  padding: 30px;
  position: relative;
}
.modal-title {
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

body.show-modal {
  overflow: hidden;
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.close .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.close .inner::before, .close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu li {
  margin-right: 20px;
}
.menu li:last-child {
  margin-right: 0;
}
.menu a {
  padding: 5px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
.menu a:hover {
  text-decoration: underline;
}
.menu li.current-menu-item>a {
  opacity: 0.7;
}
.menu li.menu-item-has-children {
  position: relative;
}
.menu li.menu-item-has-children .sub-menu {
  min-width: 350px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 25px 15px;
  position: absolute;
  z-index: 2;
  display: none;
}
.menu li.menu-item-has-children .sub-menu li {
  margin-bottom: 10px;
}
.menu li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
.menu li.menu-item-has-children .sub-menu a {
  color: var(--base-color);
  font-size: 14px;
}
.menu li.menu-item-has-children .sub-menu li.active a {
  text-decoration: underline;
}
.menu li.menu-item-has-children > a {
  padding-right: 15px;
  position: relative;
}
.menu li.menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 13px;
  height: 10px;
  background-image: url("../img/icons/arrow_menu.svg");
  background-size: cover;
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu li.menu-item-has-children:hover .sub-menu {
  display: block;
}
.header .menu {
  margin: 0 20px !important;
  justify-content: center;
  flex-wrap: wrap;
}
.header .menu li {
  margin-bottom: 10px;
}
.mobile-nav .menu {
  display: block;
}
.mobile-nav li {
  margin-right: 0;
  margin-bottom: 25px;
}
.mobile-nav li.menu-item-has-children .sub-menu {
  position: static;
  background-color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-bottom: 0;
}
.mobile-nav li.menu-item-has-children .sub-menu a {
  color: #fff;
  font-size: 13px;
}
.mobile-nav li.menu-item-has-children:hover .sub-menu {
  display: none;
}
.mobile-nav li.menu-item-has-children.active .sub-menu {
  display: block;
}

.menu li.menu-item-has-children > a::after {
  width: 11px;
  height: 8px;
}

.mobile-wrap {
  max-width: 450px;
  width: 100%;
  height: 100vh;
  background-color: var(--base-color);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 70;
}
.mobile-wrap.active {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-body {
  width: 100%;
  height: 100%;
  padding: 70px 15px 30px 30px;
  position: relative;
}
.mobile-body .close {
  position: absolute;
  top: 25px;
  right: 25px;
}
.mobile-body .close .inner::before,
.mobile-body .close .inner::after {
  background-color: #fff;
}
.mobile-nav {
  margin-bottom: 30px;
}
.mobile-nav .menu a, .mobile-nav .categories-list a {
  color: #fff;
}
.mobile-wrap .phone .phone__num {
  color: #fff;
  margin-bottom: 30px;
  font-size: 15px;
}
.mobile-wrap .phone .phone__icon {
  width: 18px;
  height: 18px;
}
.mobile-wrap .social {
  justify-content: flex-start;
}
.social.white-social a i {
  color: #fff;
  font-size: 23px;
}
.header .social {
  margin-right: 25px;
}
.header .social a {
  border: none;
  margin-right: 3px;
}
.header .social a:hover {
  background-color: transparent;
}
.header .social a:hover i {
  color: var(--green-color);
}
.header .social a:first-child {
  margin-right: 0;
}
.header .social a i {
  font-size: 20px;
}
.mobile-btn {
  width: 40px;
  height: 20px;
  cursor: pointer;
  position: relative;
  display: none;
}
.mobile-btn .inner, .mobile-btn::before, .mobile-btn::after {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--base-color);
  position: absolute;
  right: 0;
}
.mobile-btn .inner {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-btn::before {
  content: "";
  top: 0;
}
.mobile-btn::after {
  content: "";
  bottom: 0;
}

.tab {
  border-top: 1px solid #c8c6c6;
  padding: 25px 0;
}
.tab-title {
  width: 100%;
  padding-right: 25px;
  font-weight: 700;
  position: relative;
}
.tab-title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.tab-title::after {
  content: "+";
  display: block;
  font-size: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tab-ans {
  line-height: 1.3;
  margin-top: 25px;
  display: none;
}
.tab.active .tab-ans {
  display: block;
}

.tab:last-child {
  border-bottom: 1px solid #c8c6c6;
}

.tab.active .tab-title::after {
  content: "-";
}

.wrap {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
body.fixed-header .header-content {
    position: relative;
}
body.fixed-header .desctop-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -80px;
  z-index: 10;
}

.header-top {
  padding: 20px 0;
}
.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-top .wrap {
  position: relative;
}
.header-top .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-info .phone {
  margin-right: 30px;
}
.header-cart {
  display: block;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}
.header-cart i {
  font-size: 25px;
  color: #fff;
}
.mobile-header .header-cart i {
    color: var(--green-color);
}
.header-cart-count {
  width: 20px;
  height: 20px;
  -webkit-border-radius: 150%;
  -moz-border-radius: 150%;
  border-radius: 150%;
  background-color: #EF7911;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
.header-search {
  max-width: 350px;
  width: 100%;
  position: relative;
}
.header-search button {
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-bottom {
  background-color: var(--base-color);
  padding: 5px 0;
}
.header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 5px 0;
}
.header .nav .menu {
  margin: 0;
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 50%;*/
  /*transform: translate(-50%, -50%);*/
}
.header .nav .menu li#catalog {
  display: none;
}
.header .nav-catalog-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .nav-catalog-text {
  white-space: nowrap;
}
.header .nav-catalog .mobile-btn {
  width: 30px;
  margin-right: 10px;
  display: block;
}

.header .nav-catalog .mobile-btn .inner,
.header .nav-catalog .mobile-btn::before,
.header .nav-catalog .mobile-btn::after {
  background-color: #fff;
  height: 2px;
  width: 100%;
}

.header .nav-catalog {
  position: relative;
}
.header .nav-catalog-list {
  min-width: 350px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 25px 15px;
  position: absolute;
  top: 100%;
  z-index: 10;
  display: none;
}
.header .nav-catalog:hover .nav-catalog-list {
  display: block;
}
.header .nav-catalog-list ul {
  margin: 0;
}
.header .nav-catalog-list li {
  margin-bottom: 10px;
}
.header .nav-catalog-list li:last-child {
  margin-bottom: 0;
}
.header .nav-catalog-list li a {
  color: var(--base-color);
  font-size: 14px;
}
.header .nav-catalog-list li a.active {
  text-decoration: underline;
}

.header.mobile-header {
  display: none;
  /*padding-bottom: 15px;*/
}
.header.mobile-header .mobile-header-content {
  width: 100%;
  padding: 15px 0;
  position: relative;
}
.mobile-header-content .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*.header.mobile-header .mobile-btn {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  right: 15px;*/
/*  -webkit-transform: translateY(-50%);*/
/*      -ms-transform: translateY(-50%);*/
/*          transform: translateY(-50%);*/
/*  z-index: 1;*/
/*}*/
.header.mobile-header .logo {
  max-width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header.mobile-header .header-top {
  position: relative;
  height: 70px;
}
.header.mobile-header .header-top .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header.mobile-header .header-bottom {
  background-color: #fff;
  padding-top: 15px;
}
.header.mobile-header .header-bottom-row {
  display: flex;
  align-items: center;
}
.header.mobile-header .header-bottom .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header.mobile-header .header-mobile-item {
  width: 25px;
  height: 25px;
  margin-left: 30px;
}
.header.mobile-header .header-mobile-item.header-cart-mobile {
  width: 50px;
  height: 50px;
}
.header.mobile-header .header-cart {
  justify-content: flex-start;
}
.header.mobile-header .header-mobile-item .phone__icon {
  width: 100%;
  height: 100%;
}
.header.mobile-header .header-mobile-item img {
  width: 100% !important;
  height: 100% !important;
}
.header.mobile-header .header-mobile-item.phone {
  width: 28px;
  transform: translateX(5px);
}
.header.mobile-header .header-mobile-item:last-child {
  margin-right: 0;
}
.header.mobile-header .header-cart i {
  font-size: 29px;
}

body.fixed-header {
  padding-top: 130px;
}
body.fixed-header .header.mobile-header {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}
body.fixed-header .header.mobile-header .header-top {
  display: none;
}

.logo {
  max-width: 100px;
  display: block;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    align-items: center;
}
.phone__icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.phone__icon svg {
    width: 20px;
    height: 20px;
}
.phone__num {
  color: var(--base-color);
  font-weight: 500;
  font-size: 18px;
}

input:not([type=submit], [type=radio]),
textarea,select {
  width: 100%;
  border: 1px solid var(--base-color);
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
}

textarea {
  border-radius: 10px;
}

input[type=submit].btn {
  line-height: 45px;
  border: none;
  cursor: pointer;
  margin-top: 25px;
}

.section {
  margin-bottom: 100px;
}

.banner {
  width: 100%;
  /*height: 600px;*/
  margin-top: 20px;
  position: relative;
}

.main-slider {
  background-color: transparent;
}
.main-slider.mobile-slider {
  display: none;
}
.main-slider .slick-list {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.main-slider .slider-item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.main-slider .slick-dots li button::before {
  font-size: 15px;
}
.main-slider .slick-dots li.slick-active button::before {
  color: var(--green-color);
}
.main-slider .slick-prev {
  left: 25px;
  opacity: 0;
}
.main-slider .slick-next {
  right: 25px;
  opacity: 0;
}

.slider {
  width: 100%;
  height: 100%;
}
.slider-item {
  width: 100%;
  height: 100%;
  background-position: center center;
  position: relative;
}
.slider-item.dark-slider-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}

.offer {
  height: 100%;
  color: #fff;
  padding-left: 5%;
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 1;
}
.offer .wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.offer-content {
  max-width: 700px;
}
.offer-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}
.offer-desc {
  font-size: 20px;
  margin-bottom: 30px;
}
.offer-btn {
  max-width: 300px;
  width: 100%;
}

.btn {
  max-width: 250px;
  width: 100%;
  display: inline-block;
  line-height: 60px;
  font-weight: 700;
  background-color: #EF7911;
  text-align: center;
  padding: 0 15px;
  border-radius: 150px;
  color: #fff;
  cursor: pointer;
}

.btn:hover {
  background-color: #E56F08;
}

.btn.btn-transparent {
  border: 1px solid var(--orange-color);
  background-color: transparent;
  color: var(--orange-color);
}

.btn.btn-transparent:hover {
  background-color: var(--orange-color);
  color: #fff;
}

.btn.btn-green {
  background-color: var(--green-color);
  color: #fff;
}

.btn-with-arrow {
  color: var(--orange-color);
  font-weight: 500;
  font-size: 20px;
  padding-right: 25px;
  position: relative;
}
.btn-with-arrow::after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background-image: url('../img/icons/arrow.svg');
  background-size: cover;
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  transform: translateY(-50%);
}

.row-btn {
  display: flex;
  justify-content: center;
}

.triggers .wrap {
  padding: 0;
}
.triggers-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.triggers-item {
  width: 25%;
  padding: 0 15px;
}
.triggers-item .inner {
  line-height: 1.3;
  margin: 0 auto;
}
.triggers-item .item__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.triggers-item .item__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--base-color);
  margin-bottom: 15px;
}

.section-about {
  padding-top: 200px;
  padding-bottom: 250px;
  background-image: url("../img/bg_3_1.jpg");
  background-size: cover;
}
.section-about .wrap {
  max-width: 700px;
}
.section-about .section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--base-color);
}
.section-about .section-desc {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.section-about .btn {
  max-width: 250px;
  width: 100%;
}

.popular .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--base-color);
}
.popular-row.wrap {
  padding: 0;
  margin-bottom: 30px;
}
.popular-btn {

}
.products-slider .slick-track {
  padding: 15px 0;
}
.products-slider .slick-arrow {
  width: 45px;
  height: 45px;
  background-image: url("../img/icons/arrow_slider.svg");
  background-size: cover;
  z-index: 1;
}
.products-slider .slick-arrow::before {
  display: none;
}
.products-slider .slick-arrow.slick-next {
  -webkit-transform: scaleX(-1) translate(0, -50%);
      -ms-transform: scaleX(-1) translate(0, -50%);
          transform: scaleX(-1) translate(0, -50%);
}
.products-slider .slick-dots li.slick-active button::before {
  color: var(--base-color);
  font-size: 12px;
}

.card {
  padding: 0 15px;
}
.card:hover .inner {
  border: 1px solid #bbbbbb;
}
.card .inner {
  padding: 30px 15px;
  border: 1px solid #d6d6d6;
}
.card-img {
  margin-bottom: 20px;
}
.card-title {
  min-height: 37px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 7px;
  color: var(--green-color);
}
.card-price {
  font-weight: 700;
}
.card-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.card-price-row .price {
  font-size: 16px;
}
.card-price.old__price {
  margin-right: 15px;
  text-decoration: line-through;
  font-weight: 400;
}
.card .btn {
  max-width: 200px;
  width: 100%;
  line-height: 40px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

.what {
  position: relative;
}
.what-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../img/what_bg_1.png");
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
}
.what .wrap {
  max-width: 900px;
}
.what-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.what-row-content {
  width: 48%;
}
.what-row-content .item__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--base-color);
  margin-bottom: 25px;
}
.what-row-content .item__text {
  line-height: 1.3;
}
.what-row-img {
  width: 48%;
}
.what-row:last-child {
  margin-bottom: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.what::after {
  content: "";
  display: block;
  width: 100%;
  height: 250px;
  background-color: var(--base-color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.new {
  background-color: var(--base-color);
  color: #fff;
  line-height: 1.3;
  padding-top: 50px;
  padding-bottom: 150px;
  position: relative;
  background-image: url('../img/to_home.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -50px;
}
.new .btn {
    background-color: var(--orange-color);
}
/*.super-new-img {*/
/*  max-width: 100%;*/
/*  width: auto;*/
/*  max-height: 100%;*/
/*  height: auto;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*}*/
.new-img {
  width: 50%;
  min-width: 320px;
  max-height: 480px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
}
.new .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.new-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.new .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}
.new .section-desc {
  margin-bottom: 50px;
}
.new .section-desc li {
  margin-bottom: 5px;
}

.callback {
  padding: 50px 0;
}
.callback .wrap {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.callback-left {
  max-width: 38%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--base-color);
}
.callback-right {
  width: 60%;
  position: relative;
}
.callback-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}
.callback-desc {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
}
.callback-form {
  width: 40%;
  aspect-ratio: 1/1;
  border-radius: 150%;
  background-color: #fff;
  padding: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -50%);
      -ms-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
}
.callback .form-group {
  margin-bottom: 15px;
}
.callback input:not([type=submit]) {
  border: none;
  border-bottom: 1px solid grey;
  border-radius: 0;
}

.footer {
  padding: 100px 0 50px;
  background-color: #C2BDBA;
  line-height: 1.3;
}
.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .own {
  font-size: 13px;
  margin-top: 20px;
}
.footer-item {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
}
.footer-item-title {
  font-weight: 700;
  color: var(--base-color);
}
.footer-item li {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-item a {
  font-size: 14px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social a {
  width: 35px;
  height: 35px;
  border: 1px solid var(--base-color);
  border-radius: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}
.social a i {
  color: var(--base-color);
  font-size: 18px;
}
.social a:hover {
  background-color: var(--base-color);
}
.social a:hover i {
  color: #fff;
}
.social a:last-child {
  margin-right: 0;
}

.payment-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}
.payment-methods img {
  width: 40%;
}

.breadcrumbs {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  color: rgb(165, 165, 165);
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumbs ul li {
  margin-right: 15px;
  color: rgb(165, 165, 165);
}
.breadcrumbs a {
  color: #4A4A4A !important;
}
.breadcrumbs ul li:last-child {
  margin-right: 0;
}

.page-content h1 {
  font-size: 50px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
  color: var(--base-color);
}

.catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog-wrap {
  width: 100%;
}
.catalog ul.products {
  padding-left: 0;
}
.catalog ul.products li {
  list-style-type: none;
}
.catalog .sidebar {
  min-width: 200px;
}
.categories-list li.active a {
  position: relative;
}
.categories-list li.active a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.sidebar .categories-list li.active a::after {
  background-color: #EF7911;
}
.footer .categories-list li.active a::after {
  background-color: #4A4A4A;
}
.catalog .sidebar-item {
  margin-bottom: 30px;
}
.catalog .sidebar-item-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--base-color);
  margin-bottom: 20px;
}
.catalog .sidebar-item li {
  margin-bottom: 15px;
}
.catalog .sidebar-item li a {
  color: #EF7911;
}
.catalog-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-row .card {
  width: 25%;
  margin-bottom: 30px;
  list-style-type: none;
}
.catalog-row.search-row .card {
  width: 25%;
}
.catalog .order-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 30px;
}
.catalog .order-row select {
  width: 100%;
  border: 1px solid #d6d6d6;
  padding: 5px;
  background-color: #fff;
  font-size: 14px;
}
.attachment-woocommerce_thumbnail {
  margin-bottom: 20px;
}

.product h1 {
  color: var(--base-color);
  margin-bottom: 30px;
}
.product h1.mobile {
  display: none;
}
.product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product .wrap {
  max-width: 1200px;
}
.product-left {
  width: 56%;
}
.product-right {
  width: 40%;
}
.product .info__item {
  margin-bottom: 20px;
}
.product-desc {
  line-height: 1.5;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border: none !important;
  background-color: transparent !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  display: block;
  background-color: var(--green-color);
  height: 5px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.product-desc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product .in__stock {
  font-weight: 500;
  color: #EF7911;
}
.product .add-to-cart.btn {
  line-height: 55px;
}

body .fancybox__container {
  background-color: rgba(255, 255, 255, 0.5);
  --fancybox-bg: rgba(255, 255, 255, 0.7);
}

.price {
  font-size: 25px;
  font-weight: 700;
}
.price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.price.old__price {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: line-through;
  margin-right: 15px;
}

.gallery {
  margin-bottom: 30px;
}
.gallery-img {
  height: 500px;
  margin-bottom: 20px;
  border: 1px solid #c8c6c6;
  border-radius: 5px;
}
.gallery-item {
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.gallery-item img, .gallery-item video {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}

.gallery-item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery-thumbs-item {
  width: 70px;
  height: 70px;
  padding: 5px;
  border: 1px solid #c8c6c6;
  border-radius: 5px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-thumbs-item .video__item {
  width: 70%;
  height: 70%;
}
.gallery-thumbs-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-thumbs-item.active {
  border: 1px solid var(--base-color);
}

.add-to-cart {
  border: none;
  cursor: pointer;
}
.add-to-cart-row {
  margin: 40px 0;
}

.qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
}
.qty input {
  width: 70px;
  border: 1px solid #c8c6c6;
  border-radius: 0;
  font-size: 18px;
  text-align: center;
  margin: 0 10px;
}
.qty__item {
  cursor: pointer;
}

.attrs {
  max-width: 350px;
}
.attrs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.attrs .name {
  opacity: 0.7;
}
.attrs .value {
  font-weight: 500;
}

.related-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--base-color);
  margin-bottom: 30px;
  padding: 0 15px;
}
.related .wrap {
  max-width: 100%;
  padding: 0 25px;
}

.contact .wrap {
  max-width: 900px;
}
.contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact-items {
  width: 48%;
}
.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.contact-item .item__icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.contact-item .item__text {
  font-size: 18px;
  font-weight: 500;
}
.contact-item .item__num {
  color: #4A4A4A !important;
  font-weight: 500;
  font-size: 18px;
}
.contact-form {
  width: 48%;
}
.contact .social {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 50px;
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--base-color);
}
.form input:not([type=submit]),
.form textarea {
  padding: 15px;
}
.form input[type=submit].btn {
  line-height: 50px;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.map {
  height: 450px;
}

.about {
  line-height: 1.3;
}
.about .wrap {
  max-width: 1000px;
}
.about-quote {
  background-color: var(--base-color);
  border-radius: 20px;
  padding: 15px 25px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
}
.about-quote-text {
  max-width: 500px;
  text-align: center;
}
.about-text {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.about-text.about-text__1 {
  border: 1px solid var(--green-color);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 20px;
}
.about-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-block {
  width: 49%;
  padding: 50px 25px;
  border: 1px solid var(--base-color);
  border-radius: 30px;
  font-size: 14px;
}
.about .block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.about .block-row .block-img {
  margin-right: 15px;
  margin-bottom: 0;
}
.about .block-img {
  margin-bottom: 30px;
}
.about .block-img img {
  border-radius: 30px;
}
.about .block-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--base-color);
  margin-bottom: 15px;
}
.about .block-desc {
  font-weight: 500;
  color: var(--base-color);
}

.page-wrap .wrap {
  max-width: 1000px;
}

.modal#cart.modal {
  display: block;
  top: -100%;
}
.modal#cart.modal.active {
  top: 50px;
}
#cart.modal {
  max-width: 800px;
  max-height: 90vh;
  height: 500px;
  overflow-y: auto;
}
#cart.modal .modal-title {
  font-weight: 700;
}
/*#cart.modal .modal-content {*/
/*  height: 100%;*/
/*}*/
#cart.modal .cart-content {
  height: 100%;
  padding-bottom: 30px;
}
#cart.modal .products__title {
  font-weight: 700;
}
.woocommerce-mini-cart__empty-message {
  text-align: center;
}

.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 30px;
  margin-bottom: 20px;
  position: relative;
}
.cart-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}
.cart-item-img {
  width: 100px;
  margin-right: 15px;
}
.cart-item-title {
  font-weight: 700;
  color: var(--base-color);
  margin-bottom: 10px;
  display: block;
}
.cart-item-total {
  font-weight: 700;
  font-size: 18px;
}
.cart-item .qty {
  margin-right: 30px;
}
.cart-item .qty input,
.woocommerce-checkout .page-content .cart-item .qty input {
  padding: 5px;
}
.cart-item-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-item-delete {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.cart-total .total__num {
  font-weight: 700;
}
.cart-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.cart-btns .continue.close {
  width: auto;
  height: auto;
  font-weight: 500;
  line-height: 35px;
  font-size: 14px;
  position: static;
}
.cart-btns .btn.go-order {
  font-size: 14px;
  line-height: 35px;
}
.page-content .select2-container--default .select2-selection--single,
 select#billing_state {
  border: 1px solid var(--base-color);
}
.page-content .woocommerce-info {
  border-top-color: var(--green-color);
}
.page-content .woocommerce-info::before {
  color: var(--green-color);
}
.page-content .showcoupon {
  color: var(--green-color);
}
#customer_details {
  margin-bottom: 50px;
}
#order_review_heading {
  margin-bottom: 30px;
}
.woocommerce-checkout .product-name-row {
  display: flex;
  align-items: center;
}
.woocommerce-checkout .product-name-row img {
  width: 100px;
}
.woocommerce-checkout .product-quantity {
  margin-left: 15px;
}
.woocommerce-checkout .product-name-link {
  color: var(--green-color);
  font-weight: 500;
}
.page-content #add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background-color: transparent;
}
.page-content .woocommerce-checkout #payment div.payment_box {
  background-color: var(--green-color);
  color: #fff;
}
.page-content .woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid var(--green-color);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
.page-content .wc_payment_method .payment_box {
  display: none !important;
}
.woocommerce form .form-row .required {
  color: #e35757 !important;
  font-weight: 400 !important;
}
.woocommerce-checkout .page-content input, .woocommerce-checkout .page-content textarea {
  padding: 15px;
}
#order_review {
  margin-bottom: 50px;
}
.woocommerce table.shop_table th {
  font-weight: 500 !important;
}
.btn.checkout-btn {
  max-width: 300px;
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  float: none !important;
}
.woocommerce-cart .page-content .wrap {
  max-width: 1000px;
}
.woocommerce-cart .page-content #coupon_code {
  min-width: 200px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
}

.woocommerce-cart .coupon .btn {
  border: none;
  line-height: 30px;
  font-weight: 400;
  font-size: 13px;
}
.woocommerce-cart .woocommerce {
  margin-bottom: 50px;
}
.woocommerce-cart .btn.go-to-checkout {
  max-width: 300px;
  width: 100%;
  line-height: 45px;
}
.apply-coupon-message {
  text-align: left !important;
}
.success {
  color: var(--green-color);
}
.error {
  color: red;
}

.apply-coupon-row {
  display: flex;
  align-items: center;
}
.apply-coupon-row input {
  min-width: 250px;
  padding: 12px !important;
}
.btn.btn-transparent {
  background-color: transparent;
  border: 1px solid var(--orange-color);
  color: var(--orange-color);
  font-weight: 400;
}
.apply-coupon-row .btn.btn-transparent {
  line-height: 35px;
  font-size: 13px;
}

#submit-coupon {
  background-color: transparent;
  border: 1px solid var(--orange-color);
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  border-radius: 150px;
  color: var(--orange-color);
  font-weight: 400;
  line-height: 35px;
  font-size: 13px;
  padding: 0 15px !important;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  float: left;
}
.woocommerce-cart h2 {
  margin-bottom: 30px;
  color: var(--green-color);
}
.woocommerce-checkout .woocommerce table.shop_table td,
.woocommerce-checkout .woocommerce table.shop_table tfoot th {
  border-top: none;
}
.woocommerce-checkout textarea[name="order_comments"] {
  min-height: 100px;
}
.woocommerce .slick-track {
  margin: 0;
}
.back-to-cart {
  margin-bottom: 50px;
}
.back-to-cart a {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-color);
  padding-left: 25px;
  position: relative;
}
.back-to-cart a::before {
  content: '';
  display: block;
  width: 20px;
  height: 15px;
  background-image: url('../img/icons/arrow_back.png');
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(3px) scaleX(-1);
}
.back-to-cart a:hover {
  text-decoration: underline;
}
.page .page-text {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.page.woocommerce-checkout .page-text {
  max-width: 100%;
}
.page-text {
  line-height: 1.5;
}
.empty-string {
  text-align: center;
}
.empty-string a {
  color: var(--green-color);
  font-weight: 700;
}
.mobile-header-search {
  max-width: 600px;
  width: 95%;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
}
.mobile-header-search.active {
  display: block;
}
.mobile-header-search .header-search {
  max-width: 100%;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: transparent !important;

}
.woocommerce nav.woocommerce-pagination ul li,
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
  font-size: 21px !important;
}
.woocommerce nav.woocommerce-pagination ul li a {
  color: var(--green-color);
}
.wrap.search-row {
  padding: 0;
}
.order-total .woocommerce-Price-amount {
  font-size: 18px;
}
#shipping_method li {
  font-size: 14px;
}
#checkout-content {
  /*display: none;*/
}
#checkout-content.show {
  display: block;
}
.info-line {
  background-color: var(--green-color);
  color: #fff;
  padding: 5px 0;
  text-align: center;
  font-size: 14px;
}
.info-line-text span {
  font-weight: 700;
}
.checkout-preview-title {
  color: var(--green-color);
  margin-bottom: 15px;
}
.checkout-cart {
  margin-bottom: 50px;
}
.checkout-cart .cart-item:last-child {
  margin-bottom: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: flex-end;
}
.cart-subtotal-sum {
  font-weight: 700;
}
.woocommerce-checkout .cart-total {
  justify-content: flex-start;
}
.cart-shipping-content {
  margin-bottom: 30px;
}
#reply-title, .woocommerce #review_form #respond p {
  font-size: 14px;
}
.woocommerce .star-rating {
  color: #e3e324;
}
.checkout-preview {
  max-width: 900px;
  margin: 0 auto;
}
.checkout-border-item {
  border: 1px solid var(--green-color);
  border-radius: 15px;
  padding: 20px;
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form-control-wrap {
  margin-bottom: 20px;
  display: block;
}
.wpcf7-form-control-wrap input {
  margin-bottom: 0;
}
.form .wpcf7-not-valid-tip {
  font-size: 13px;
}
.callback-form-inner {
  position: relative;
}
.callback-form .wpcf7-response-output {
  width: 100%;
  font-size: 13px !important;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
}
.go-to-top {
  width: 35px;
  height: 35px;
  border-radius: 150%;
  border: 2px solid var(--green-color);
  background-color: #fff;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 10;
  transform: rotate(90deg);
  display: none;
}
.go-to-top.active {
  display: block;
}
.main-slider-arrow {
  width: 80px;
  height: 100%;
  background-color: rgba(255,255,255,0);
  position: absolute;
  top: 0;
  z-index: 9;
  cursor: pointer;
}
.main-slider-arrow:hover {
  background-color: rgba(255,255,255,0.3);
}
.main-slider-arrow .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.main-slider-arrow.arrow-prev {
  left: 0;
}
.main-slider-arrow.arrow-next {
  right: 0;
}
.main-slider-arrow::before {
  content: '';
  width: 50px;
  height: 50px;
  background-image: url('../img/icons/arrow_slider.svg');
  background-size: 150%;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-slider-arrow.arrow-next::before {
  transform: translate(-50%, -50%) scaleX(-1);
}
.green {
    color: var(--green-color);
    font-weight: 700;
}
.bold {
    font-weight: 700;
}
.section-subtitle {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--base-color);
}
.block-border {
    padding: 20px;
    border: 3px solid var(--green-color);
    border-radius: 20px;
}
.text-center {
    text-align: center;
}
.partners-content {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}
.partners-row {
    display: flex;
    justify-content: space-between;
    li {
        margin-bottom: 15px;
    }
}
.partners-row .block-right {
    display: flex;
    align-items: center;
}
.partners-row img {
    max-width: 400px;
}
.mb-50 {
    margin-bottom: 50px;
}
.partners-quote {
    font-size: 18px;
}
.partners-product-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 100px;
}
.partners-product-section.section__first .partners-product-row,
.partners-product-section.section__krem .partners-product-row{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.partners .subtitle {
    margin-bottom: 25px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.partners-product-item {
    .item__title {
        text-align: center;
        font-weight: 700;
    }
}
.partners-form {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.partners-form input[type="submit"] {
    margin: 0 auto;
}







/** Adaptive **/
@media (max-width: 1500px) {
  .products-slider.popular-row .slick-prev {
    left: 0;
  }
  .products-slider.popular-row .slick-next {
    right: 0;
  }
  .products-slider.popular-row {
    margin-bottom: 50px;
  }
  .popular-btn {
    font-size: 16px;
  }
    .what-wrapper {
        background-size: cover;
    }
}
/* 1500 end */
@media (max-width: 1350px) {
  .section-about {
    background-image: none;
    background-color: #E9F4EA;
    padding: 100px 0;
  }
  .new__img {
    display: none;
  }
  .new .wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* 1350 end */
@media (max-width: 1200px) {
  .header {
    display: none;
  }
  .header.mobile-header {
    display: block;
  }
  .header-top .wrap {
    position: static;
  }
  .mobile-btn {
    display: block;
  }
  /*.banner {*/
  /*  height: 500px;*/
  /*}*/
  .footer-item {
    width: 25%;
    margin-bottom: 30px;
  }
  .catalog-row .card {
    width: 33.3333%;
  }
}
/* 1200 end */
@media (max-width: 1100px){
    .partners-product-section.section__first .partners-product-row,
    .partners-product-section.section__krem .partners-product-row,
    .partners-product-row            {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
/* 1100 end */
@media (max-width: 1000px) {
  .offer-title {
    font-size: 40px;
  }
  .offer-desc {
    font-size: 15px;
  }
  .btn {
    line-height: 50px;
  }
  .triggers-item {
    width: 50%;
    margin-bottom: 30px;
  }
  .callback .wrap {
    display: block;
  }
  .callback-left {
    max-width: 100%;
    margin-bottom: 50px;
    text-align: center;
    display: block;
  }
  .callback-right {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }
  .catalog-row .card {
    width: 50%;
  }
  .catalog-row.search-row .card {
    width: 33.3333%;
  }
  .woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
    float: none;
    width: 100%;
  }
  .woocommerce form .form-row-last, .woocommerce-page form .form-row-last {
    float: none;
    width: 100%;
  }
  .new {
    background-image: none;
    margin-top: 0;
    padding-bottom: 50px;
  }

}
/* 1000 end */
@media (max-width: 900px) {
  .footer-item {
    width: 50%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #cart.modal {
    width: 95vw;
  }
}
/* 900 end */
@media (max-width: 800px) {
  .catalog {
    display: block;
  }
  .catalog .sidebar {
    padding: 0 15px;
  }
  .catalog .sidebar-item-title {
    display: none;
  }
  .catalog .sidebar .categories-list {
    display: flex;
    justify-content: center;
  }
  .catalog .sidebar .categories-list li {
    margin-right: 15px;
  }
  .catalog .sidebar .categories-list li:last-child {
    margin-right: 0;
  }
  .catalog.wrap {
    padding: 0;
  }
  .catalog .order-row {
    padding: 0 15px;
  }
  .page-content h1 {
    font-size: 35px;
  }
  .product-row {
    display: block;
  }
  .product-left,
  .product-right {
    width: 100%;
  }
  .product h1 {
    display: none;
  }
  .product h1.mobile {
    display: block;
  }
  .product-desc-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-tabs {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .contact .wrap {
    max-width: 400px;
  }
  .contact-row {
    display: block;
  }
  .contact-items {
    width: 100%;
    margin-bottom: 50px;
  }
  .contact-form {
    width: 100%;
  }
  .contact-item .item__text,
  .contact-item .item__num {
    font-size: 16px;
  }
  .form input[type=submit].btn {
    margin: 0 auto;
  }
  .about-row {
    display: block;
  }
  .about-block {
    width: 100%;
    margin: 0 auto 30px;
  }
  .new .section-title {
    font-size: 35px;
  }
    .partners-row img {
        display: none;
    }
    .partners-row {
        justify-content: center;
    }
}
/* 800 end */
@media (max-width: 700px) {
  .cart-item {
    display: block;
    margin-bottom: 25px;
  }
  .cart-item-data {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .catalog-row.search-row .card {
    width: 50%;
  }
  .banner {
    margin-top: 0;
  }
  .banner.wrap {
    padding: 0;
  }
  .main-slider .slick-list {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .banner .slider-item {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .main-slider-arrow {
    width: 50px;
  }
  .main-slider-arrow::before {
    background-size: 100%;
  }
  .new .wrap {
    flex-direction: column-reverse;
  }
  .new-img {
    margin: 50px auto 0;
    img {
      min-width: 1px;
    }
  }
}
/* 700 end */
@media (max-width: 600px) {
  .section, .partners-product-row {
    margin-bottom: 50px;
  }
  .popular .section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .section-about {
    padding: 70px 0;
  }
  .section-about .section-title {
    font-size: clamp(25px, 6.6vw, 40px);
  }
  .section-about .section-desc {
    font-size: 16px;
  }
  .what-row {
    display: block;
  }
  .what-row-content {
    width: 100%;
    margin-bottom: 20px;
  }
  .what-row-img {
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
  }
  .new .section-title {
    font-size: 35px;
  }
  .callback-right-img {
    display: none;
  }
  .callback-form {
    width: 100%;
    position: static;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    aspect-ratio: 0;
  }
  .callback-title {
    font-size: 30px;
  }
  .callback-desc {
    font-size: 18px;
  }
  .footer-item {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .footer {
    padding: 50px 0 30px;
  }
  .footer .logo {
    margin: 0 auto;
  }
  .card-price-row {
    margin-bottom: 15px;
  }
  .breadcrumbs {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .back-to-cart a {
    font-size: 16px;
  }
  .back-to-cart a::before {
    transform: translateY(0) scaleX(-1);
  }
  .header.mobile-header .header-mobile-item {
    width: 20px;
    height: 20px;
  }
  .header.mobile-header .header-cart i {
    font-size: 25px;
  }
  .header.mobile-header .header-mobile-item {
    margin-left: 18px;
  }
  /*.banner {*/
  /*  height: 400px;*/
  /*}*/
  .offer {
    padding-left: 0;
  }
  .offer-title {
    font-size: 35px;
  }
  .cart-btns {
    flex-direction: column;
  }
  .cart-btns .continue.close {
    margin-bottom: 20px;
  }
  .main-slider.mobile-slider {
    display: block;
  }
  .main-slider.desctop-slider {
    display: none;
  }
  .banner {
    width: 100%;
    aspect-ratio: 20/21;
  }
  .banner .main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
    .partners-product-section.section__first .partners-product-row,
    .partners-product-section.section__krem .partners-product-row,
    .partners-product-row            {
        grid-template-columns: 1fr 1fr;
    }
    .partners .subtitle {
        font-size: 20px;
    }
    .partners .popular .section-title {
        font-size: 25px;
    }
}
/* 600 end */
@media (max-width: 500px) {
  body {
    font-size: 14px;
  }
  .card {
    padding: 0 7.5px;
  }
  .card .inner {
    padding: 15px 7.5px;
  }
  .catalog .card {
    margin-bottom: 15px;
  }
  .triggers-item {
    width: 100%;
  }
  .new .section-title {
    font-size: 30px;
  }
  .gallery-img {
    height: 60vh;
  }
  .about-block {
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
  }
  .about .block-row {
    display: block;
  }
  .about .block-row .block-img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .about .block-title {
    font-size: 18px;
  }
  .modal-body {
    padding: 30px 15px;
  }
  .cart-btns {
    display: block;
    text-align: center;
  }
  .cart-btns .continue.close {
    margin-bottom: 20px;
  }
  .related .wrap {
    padding: 0;
  }
  .related-row.products-slider .wrap {
    padding: 0;
  }
  .related-row.products-slider .slick-next {
    right: 0;
  }
  .related-row.products-slider .slick-prev {
    left: 0;
  }
  .woocommerce-checkout .woocommerce table.shop_table td.product-total {
    text-align: right;
  }
  .coupon {
    display: flex;
    flex-direction: column;
  }
  .coupon input {
    margin-bottom: 15px !important;
  }
  .coupon button {
    max-width: 200px;
    width: 100% !important;
  }
  .wc-proceed-to-checkout {
    display: flex;
    justify-content: center;
  }
  .woocommerce-checkout .product-name-row {
    display: block;
    position: relative;
  }
  .woocommerce-checkout .product-name-row .product-quantity {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .woocommerce-checkout .product-name-row img {
    display: block;
  }
  #shipping_method li {
    font-size: 13px;
  }
  .popular-btn.btn {
    max-width: 200px;
    line-height: 40px;
  }
  .header.mobile-header .logo {
    left: 70px;
    transform: translateY(-50%);
  }
  .info-line {
    font-size: 13px;
  }
    .partners-row ul {
        padding-left: 10px;
    }
    .block-border {
        padding: 15px;
    }
    .what-wrapper {
        padding-bottom: 50px;
    }
}
/* 500 end */

@media (max-width: 400px){
  .header.mobile-header .mobile-header-content {
    padding: 10px 0;
  }
}
/* 400 end */

@media (max-width: 350px){
  .woocommerce-checkout .product-name-row img {
    width: 50px;
  }
}
/* 350 end */