@charset "UTF-8";
:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1230px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --dark-color: #000;
  --acent-color: #20ff98;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.container-index {
  position: relative;
  z-index: 3;
}


.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.section-title {
  margin: 0;
  margin-bottom: 100px;
  text-align: center;
  font-size: 50px;
  color: var(--light-color);
  font-weight: 900;
  line-height: 35px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 50px;
  }
}

.more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--light-color);
  font-size: 27px;
}

@media (max-width: 576px) {
  .more {
    font-size: 20px;
  }
}
.more::before {
  content: "";
  margin-right: 10px;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: var(--acent-color);
  background-image: url("../img/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 576px) {
  .more::before {
    width: 25px;
    height: 25px;
  }
}

.blob-btn {
  display: block;
  width: fit-content;
  z-index: 1;
  position: relative;
  padding: 15px 46px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 20px;
}

.blob-btn--fill {
  background-color: var(--acent-color);
  color: var(--dark-color);
}

.blob-btn--dark {
  color: #000;
}

@media (max-width: 768px) {
  .blob-btn--dark {
    color: var(--light-color);
  }
}

.btn-svg {
  display: none;
}
.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--acent-color);
  border-radius: 20px;
}
.blob-btn--fill::before {
  border: 2px solid var(--acent-color);
}
.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 20px;
}
.blob-btn:hover {
  color: #FFFFFF;
  border-radius: 20px;
}
.blob-btn--fill:hover{
  color: var(--dark-color);
}
.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 20px;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
}
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: var(--acent-color);
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

.blob-btn--fill .blob-btn__blob {
  background: var(--light-color);
}
@supports (filter: url('#goo')) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url('#goo')) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}


.bg-wrapper {
  background: url("../img/main-bg.png");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: right;
}

@media (max-width: 768px) {
  .bg-wrapper {
  background: url("../img/main-bg-mobile.png");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: right;
}
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #303030;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--acent-color);
  border-radius: 20px;
  border: 3px solid var(--acent-color);
}

.header {
  background-color: #000000c4;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  padding: 15px 0;
  position: fixed;
  z-index: 100;
  width: 100%;
}
.header__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  width: 60px;
  height: 60px;
}
@media (max-width: 576px) {
  .header__logo {
    width: 50px;
    height: 50px;
  }
}
.header__links {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid var(--acent-color);
}
@media (max-width: 576px) {
  .header__links {
    display: none;
  }
}
.header__link {
  font-size: 16px;
  color: #949495;
  -webkit-transition: color 0.3s ease-in, -webkit-transform 0.3s ease-in;
  transition: color 0.3s ease-in, -webkit-transform 0.3s ease-in;
  transition: color 0.3s ease-in, transform 0.3s ease-in;
  transition: color 0.3s ease-in, transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.header__link:first-of-type {
  margin-bottom: 5px;
}
.header__link:hover {
  color: var(--light-color);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.header__link--email::before {
  content: "Email:";
}
.header__link--telegram::before {
  content: "Telegram:";
}

.burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: var(--acent-color);
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.sub-menu-container {
  width: 100%;
  position: fixed;
  left:0;
  top: 122px;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

.sub-menu { 
  background-color: #000000c4;
  backdrop-filter: blur(7px);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  left:116px;
  width: 280px;
  min-height: 400px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow-y: scroll;
  z-index: 10001;
  transition: all 0.3s ease-in;
}

.sub-menu-mobile {
  display: none;
}


.sub-menu-mobile__item--next {
  margin: 0;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease-in;
}


.sub-menu-mobile__item--next:hover {
  color: var(--acent-color);
}
.sub-menu-mobile__item--next::after {
  content: '';
  display: block;
  width: 7px;
  height: 11px;
  background-image: url('../img/sm-arrow.png');
  background-size: 7px 11px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease-in;
}

.sub-menu-mobile__item--prev {
  display: none;
  cursor: pointer;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease-in;
}

.sub-menu__all {
  display: block;
  text-transform: uppercase;
  color: var(--acent-color);
  margin: 0;
  padding: 10px 0;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease-in;
}

.sub-menu__all:hover {
  color: var(--acent-color);
}

._orientationRight__oxDaj .button__KxYQH {
  margin-right: 90px !important;
}

@media (max-width: 1024px) {
  .sub-menu-mobile {
    display: block;
  }
  .sub-menu-mobile__item {
    padding: 10px 0;
  }

  .sub-menu-mobile__link {
    margin: 0;
    cursor: pointer;
    color: var(--light-color);
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease-in;
  }

  .sub-menu-mobile__item--next {
    color: #fff;
  }

 .sub-menu__list {
  display: none;
 }
 
}

.sub-menu__list.active {
  display: block;
 }

@media (max-width: 576px) {
  .sub-menu {
    width: 100%;
    left: 0;
    top: 65px;
    height: 100vh;
  }
  

}
.sub-menu-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}



.sub-menu::-webkit-scrollbar {
  width: 5px;
}

.sub-menu::-webkit-scrollbar-track {
  background: #303030;
}

.sub-menu::-webkit-scrollbar-thumb {
  background-color: var(--acent-color);
  border-radius: 20px;
  border: 3px solid var(--acent-color);
}

.sub-menu__title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--acent-color);
}

.sub-menu__list:not(:last-child) {
  margin-bottom: 5px;
}
.sub-menu__main-item {

}

.sub-menu__main-item.active .sub-menu__children  {
  opacity: 1;
  visibility: visible;
  height: auto;
  top: 0;
  margin: 10px 0;
}

.sub-menu__main-item.active .sub-menu__name::after  {
  transform: rotate(90deg);
}

.sub-menu__children {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding-left: 10px;
  position: relative;
  top: 20px;
  transition: all 0.3s ease;

}
.sub-menu__name {
  margin: 0;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease-in;
}
.sub-menu__name:hover {
  color: var(--acent-color);
}
.sub-menu__name::after {
  content: '';
  display: block;
  width: 7px;
  height: 11px;
  background-image: url('../img/sm-arrow.png');
  background-size: 7px 11px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease-in;
}

.sub-menu__item:not(:last-child) {
  margin-bottom: 10px;
}

.sub-menu__link {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease-in;
}

.sub-menu__item:hover .sub-menu__link {
  color: var(--acent-color);
}

.sub-menu__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.sub-menu__logo {
  display: block;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav__item:hover .nav__link {
  color: var(--acent-color);
}

.nav__item {
  transition: transform 0.3s ease-in;
}

.nav__item:hover {
  transform: scale(1.1);
}
.nav__item:not(:last-child) {
  margin-right: 50px;
}
@media (max-width: 1200px) {
  .nav__item:not(:last-child) {
    margin-right: 20px;
  }
}
.nav__link {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}

.cart {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cart-empty__btn {
  margin: 0 auto;
}

.cart-empty__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 50vh;
}



.cart__price-amount {
  color: var(--light-color);
  font-size: 23px;
  font-weight: bold;
  margin-left: 15px;
}

.cart__price {
  color: var(--light-color);
  vertical-align: bottom;
  margin-left: 14px;
  margin-bottom: 5px;
}

.cart__link {
  cursor: pointer;
  transition: transform 0.3s ease-in;
}

.cart__link:hover {
  transform: scale(1.1);
}

.cart__price .woocommerce-Price-amount {
  font-size: 20px;
}

.hero__slider {
  position: relative;
}
.hero__slide {
  padding-top: 286px;
  padding-bottom: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  background-position: top center;
}

@media (max-width: 768px) {
  .hero__slide {
    background-position-y: center;
    background-position-x: center;
    background-size: cover;
  }

  .hero__slide--first {
    background-image: url('../img/nf3.png') !important;
  }

  .hero__slide--sec {
    background-image: url('../img/nf2.png') !important; 

  }

  .hero__slide--third {
    background-image: url('../img/nf1.png') !important;

  }
}
@media (max-width: 1200px) {
  .hero__slide {
    padding-top: 200px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .hero__slide {
    padding: 0;
    height: 100vh;
    
  }
  .hero__container {
    padding-bottom: 80px;
    padding-top: 270px;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.hero__container {
  width: 100%;
}
.hero__title {
  max-width: 850px;
  margin: 0;
  margin-bottom: 40px;
  color: var(--light-color);
  font-weight: 800;
  font-size: 56px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    margin-bottom: 20px;
    font-size: 28px;
    width: 92%;
  }
}


.hero__title--dark {
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .hero__title--dark {
    color: var(--light-color);
  }
}
.hero__title span {
  vertical-align: super;
  font-size: 24px;
  font-weight: 500;
  color: var(--acent-color);
  text-transform: lowercase;
}
@media (max-width: 576px) {
  .hero__title span {
    display: none;
  }
}
.hero__text {
  margin: 0;
  margin-bottom: 40px;
  max-width: 400px;
  color: var(--light-color);
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 576px) {
  .hero__text {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
.hero__text--dark {
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .hero__text--dark {
    color: var(--light-color);
  }
}
.hero__link {
  color: var(--acent-color);
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 576px) {
  .hero__link {
    font-size: 18px;
  }
}
.hero__img {
  margin-bottom: 100px;
  display: block;
}
@media (max-width: 576px) {
  .hero__img {
    margin-bottom: 50px;
  }
}
.hero__more {
  font-size: 22px;
  color: var(--light-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .hero__more {
    margin-top: auto;
    font-size: 18px;
  }

  .hero__more::before {
    width: 25px !important;
    height: 25px !important;
  }
}
.hero__more--dark {
  margin-right: 30px;
  color: var(--dark-color);
}


@media (max-width: 768px) {
  .hero__more--dark {
    color: var(--light-color);
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.hero__more:hover::before {
  margin-right: 20px;
}
.hero__more::before {
  content: "";
  margin-right: 10px;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: var(--acent-color);
  background-image: url("../img/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: margin 0.3s ease-in;
  transition: margin 0.3s ease-in;
}
.hero__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .hero__wrapper {
    margin-top: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.hero__prev, .hero__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 0;
  margin: 0;
  padding: 0;
  color: var(--light-color);
}
.hero__prev::after,.hero__next::after {
  transition: color 0.3s ease-in;
}
.hero__prev:hover::after, .hero__next:hover::after{
  color: var(--acent-color);
}
@media (max-width: 576px) {
  .hero__prev, .hero__next {
    display: none;
  }
}
.hero__prev {
  left: 30px;
}
.hero__next {
  right: 10px;
}

.benefits {
  padding-top: 80px;
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .benefits {
    padding: 80px 0;
  }
}
.benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 90px;
}
@media (max-width: 576px) {
  .benefits__list {
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 70px;
  }
}
.benefits__item {
  width: 30%;
}
@media (max-width: 1024px) {
  .benefits__item {
    width: 48%;
  }
}
@media (max-width: 576px) {
  .benefits__item {
    width: 100%;
    max-width: 320px;
    position: relative;
  }

  .benefits__item:nth-child(even) {
    margin-left: auto;
  }

  .benefits__item:nth-child(even) .benefits__img {
    margin-left: auto;
  }
  .benefits__item:nth-child(even) .benefits__text {
    text-align: right;
  }
  .benefits__item:nth-child(even) .benefits__title {
    text-align: right;
  }
}
.benefits__img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .benefits__img {
    width: 50px;
    height: 50px;
    margin: 0;
    margin-bottom: 20px;
  }
}
.benefits__title {
  margin: 0;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  color: var(--light-color);
}

@media (max-width: 576px) {
  .benefits__title {
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
  }

}
.benefits__text {
  margin: 0;
  text-align: center;
  color: #a1a1a1;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

@media (max-width: 576px) {
  .benefits__text {
    font-size: 14px;
    text-align: left;
    line-height: 117%;
  }
}

.arrow {
  display: none;
  position: absolute;
  width: 20%;
  height: 22%;
  filter: brightness(1.3);
  object-fit: contain;
  bottom: -50px !important;
}

@media (max-width: 576px) {

  .arrow {
    display: block;
  }
  .advantage-1 .arrow, .advantage-3 .arrow, .advantage-5 .arrow {
    bottom: -15px;
    display: block;
    right: 0px;
    transform: scaleX(-1);
  }
}

.mushroom {
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .mushroom {
    padding-bottom: 80px;
  }
}
.mushroom__title {
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  .mushroom__title {
    margin-bottom: 50px;
  }
}
.mushroom__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .mushroom__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.mushroom__item {
  width: 45%;
}
@media (max-width: 768px) {
  .mushroom__item {
    width: 100%;
    max-width: 380px;
  }
  .mushroom__item:not(:last-child) {
    margin-bottom: 50px;
  }

  .mushroom__item:nth-child(even)  {
    margin-left: auto;
  }

  .mushroom__item:nth-child(even) .mushroom__subtitle {
    text-align: right;
  }
  .mushroom__item:nth-child(even) .mushroom__text{
    text-align: right;
  }
}
.mushroom__subtitle {
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
  color: var(--acent-color);
  font-size: 35px;
  line-height: 35px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .mushroom__subtitle {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: left;
  }
}
.mushroom__text {
  margin: 0;
  color: var(--light-color);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}
@media (max-width: 576px) {
  .mushroom__text {
    font-size: 14px;
    line-height: 117%;
    text-align: left;
  }
}

.popular__title {
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .popular__title {
    margin-bottom: 30px;
  }
}
.popular__grid  {
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .popular__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .popular__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .popular__grid {
    display: none;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.popular__slider {
  display: none;
}
@media (max-width: 576px) {
  .popular__slider {
    display: block;
    margin-bottom: 30px;
  }
}
.popular__btn:hover::before {
  margin-right: 20px;
}

.product {
  background-color: var(--light-color);
  border-radius: 20px;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 15px;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
}
.product:hover {
  -webkit-box-shadow: 0px 3px 14px rgba(118, 249, 159, 0.5294117647);
  box-shadow: 0px 3px 14px rgba(118, 249, 159, 0.5294117647);
}
.product__top {
  position: relative;
}
.product__img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  height: 200px;
  width: 100%;
}

.product__img img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  height: 200px;
  width: 100%;
}

.product__variation {
  position: absolute;
  bottom: 4px;
  left: 0;
  background-color: var(--acent-color);
  color: var(--light-color);
  font-size: 14px;
  padding: 10px 8px;
  border-radius: 0 10px 0 0;
}
.variable-item  {
  cursor: pointer;
}
.product .price {
  color: var(--dark-color);
}
.product__name {
  margin: 0;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  color: var(--dark-color);
}
.product__desc {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #9d9999;
  border-bottom: 1px solid #9d9999;
  color: var(--dark-color);
  padding: 5px 15px;
  height: 135px;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product__botom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-top: auto;
  text-align: center;
  padding: 0 20px;
}
.product__price {
  margin: 0;
  text-align: center;
  font-size: 26px;
  color: var(--dark-color);
}
.woocommerce-Price-currencySymbol {
  color: var(--acent-color);
}

.product__btn {
  width: 100%;
}


.about {
  padding-top: 100px;
}
.about__title {
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .about__title {
    margin-bottom: 30px;
  }
}
.about__top {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .about__top {
    margin-bottom: 30px;
  }
}
.about__text {
  margin: 0;
  width: 48%;
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
  padding: 15px 25px;
  background-color: #2a2a2a;
  border-radius: 20px;
  color: var(--light-color);
}

.about__text--mobile {
  display: none;
}
@media (max-width: 768px) {
  .about__text {
    display: none;
  }
  .about__text--mobile {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 117%;
  }
}
.about__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: flex-end;
  flex-direction: flex-end;
}
@media (max-width: 768px) {
  .about__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about__list {
  max-width: 380px;
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.about__item:not(:last-child) {
  margin-bottom: 60px;
}
.about__subtitle {
  margin: 0;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 400;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .about__subtitle {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about__subtitle {
    font-size: 22px;
  }
}
.about__number {
  margin: 0;
  width: 110px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -10px;
  font-size: 50px;
  font-weight: 400;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .about__number {
    width: 100px;
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .about__number  {
    margin-top: -5px;
    width: 70px;
    font-size: 30px;
  }
}
.about__descr {
  margin: 0;
  font-size: 17px;
  color: #a1a1a1;
  line-height: 25px;
}

@media (max-width: 576px) {
  .about__descr {
    font-size: 14px;
    line-height: 117%;
  }
}


@media (max-width: 1024px) {
  .about__img {
    max-width: 367px;
  }
}
@media (max-width: 768px) {
  .about__img {
    display: block;
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .about__img {
    margin-top: 40px;
    max-width: 310px;
  }
}
.assortment {
  background-color: var(--dark-color);
}
.assortment__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.assortment__item {
  padding: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 33.3%;
  height: 420px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .assortment__item {
    padding: 25px;
    background-position: center !important;
  }
}
.assortment__item:hover .assortment__link::before {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .assortment__item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .assortment__item {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .assortment__item {
    height: 340px;
  }
}
.assortment__name {
  margin: 0;
  font-weight: 800;
  opacity: 0.3;
  font-size: 50px;
  color: #fcfafa;
}
@media (max-width: 576px) {
  .assortment__name {
    font-size: 42px;
  }
}
.contacts {
  padding: 100px 0;
  background-color: var(--dark-color);
}
@media (max-width: 576px) {
  .contacts {
    padding: 80px 0;
  }
}
.contacts__container {
  max-width: 830px;
}
.contacts__list {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contacts__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contacts__list {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .contacts__item:not(:last-child) {
    margin-bottom: 45px;
  }
}
.contacts__title {
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: var(--light-color);
}

@media (max-width: 768px) {
  .contacts__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}


.contacts__question {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  color: var(--light-color);
  font-size: 35px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contacts__question {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.contacts__text {
  margin: 0;
  font-size: 23px;
  font-weight: 400;
  text-align: center;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .contacts__text {
    font-size: 16px;
  }
}

.contacts__btn {
  width: 250px;
}

@media (max-width: 768px) {
  .contacts__btn {
    font-size: 16px;
    width: 200px;
    margin-right: 5px;
  }
}

@media (max-width: 586px) {
  .contacts__btn {
    font-size: 16px;
    width: 220px;
    margin-right: 0;
    padding: 15px;
  }
}

.contacts__text span {
  font-weight: 500;
  color: var(--acent-color);
}

.footer {
  padding-top: 30px;
  padding-bottom: 80px;
  background-color: #1a1a1a;
  position: relative;
  z-index: 3;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .footer__container {
    flex-direction: column-reverse;
  }
}
.footer__column {
  width: 208px;
}
@media (max-width: 1024px) {
  .footer__column {
    margin-bottom: 20px;
    width: 100%;
  }
}
.footer__logo {
  margin: 0 auto;
  margin-bottom: 40px;
  display: block;
  width: 86px;
  height: 86px;
}

@media (max-width: 576px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
.footer__copy {
  margin: 0;
  color: #848585;
  font-size: 15px;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .footer__copy {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__list:not(:last-child) {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .footer__list:not(:last-child) {
    margin-bottom: 0;
  }
  .footer__item:last-child {
    margin-bottom: 20px;
  }
  .footer__link {
    color: #fff !important;
  }
}
.footer__title {
  margin: 0;
  margin-bottom: 20px;
  color: var(--light-color);
  font-size: 26px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer__title {
    color: var(--acent-color);
  }

  .footer__item {
    display: none;
  }
}


.footer__item:hover .footer__link {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.footer__item:not(:last-child) {
  margin-bottom: 20px;
}
.footer__link {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--acent-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (max-width: 1200px) {
  .footer__link {
    font-size: 14px;
  }
}

/* integration styles */

.catalog__grid {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .catalog__grid {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width: 768px) {
  .catalog__grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 576px) {
  .catalog__grid {
    grid-template-columns: repeat(1,1fr);
  }
}

.page-catalog {
  background: #303030;
  background-image: url('../img/shop-bg.png');
  margin: 0;
  box-shadow: 0px 0px 66px #000 inset;
  padding: 0;
  padding-bottom: 30px;
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center;
}


.page-title {
  padding-top: 130px;
  padding-left: 15px;
  margin: 0;
  margin-top: 10px;
  color: var(--light-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 50px;
}

.page-catalog__quanity {
  margin: 0;
  padding-left: 15px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 17px;
  color: var(--light-color);
}


.page-catalog__wrapper {
  margin-bottom: 30px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-catalog__search {
  background: #00000066!important;
  border-radius: 16px 0px 0px 16px !important;
  outline: none !important;
  border: none !important;
  padding: 10px 0 10px 30px !important;
  font-size: 18px !important;
  color: #fffefe !important;
  position: relative !important;
  width: 272px !important;
  text-align: center !important;
  text-transform: lowercase !important;
}

@media (max-width: 576px) {
  .page-catalog__search {
    width: 180px !important;
  }
}



.page-catalog__search-btn {
  cursor: pointer;
  background: #00000066;
  outline: none;
  border: none;
  color: #fff;
  padding: 10px 33px 10px 33px;
  font-size: 18px;
  margin: 0;
  border-radius: 0px 16px 16px 0px;
  position: relative;
  margin-left: -4px;
  text-transform: lowercase;
}

.page-catalog__search-btn:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 27px;
  background-color: var(--acent-color);
  position: absolute;
  left: 0px;
  top: 8px;
}


.page-numbers {
  display: inline-flex;
  padding-left: 0;
  list-style-type: none;
}

.woocommerce-pagination {
  display: flex;
  align-items: center;
}


.show-all-btn {
  background-color: var(--acent-color);
  height: 44px;
  display: inline-flex;
  margin-bottom: 0px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  transition: 0.3s;
  color: #000 !important;
  border-radius: 15px;
  transition: all 0.3s ease-in;
}

.show-all-btn:hover {
  background-color: var(--light-color);
}

.woocommerce-pagination li.active-pagination {
  background: var(--light-color);
}

.woocommerce-pagination li {
  padding: 16px 20px;
  background-color: var(--acent-color);
  border-radius: 15px;
  margin-right: 6px;
  width: 47px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.woocommerce-pagination li:hover {
  background-color: var(--light-color);
  box-shadow: 0px 3px 14px #76f99f87;
}

.woocommerce-pagination li a {
  color: var(--dark-color);
  width: 47px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-pagination li.active-pagination {
  background-color: var(--light-color); 
 }

/* product-card */

.product-card {
  background: none;
}

.product-card:hover {
  box-shadow: none;
}


.product__botom table.variations {
  width: 49%;
  border-bottom: 0px solid;
  margin: 0;
  padding: 0;
}
.summary table.variations {
  width: 100%;
  border-bottom: 0px solid;
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
}

.summary .product__quantity {
  margin-right: 0;
}


.product__botom table.variations .label {
  display: none;
}

.summary table.variations .label {
  display: none;
}

.product__botom  td {
  padding: 0 !important;
}

.product-main-info .variations_form>div {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px;
  margin-top: 3px;
}

.summary .variations_form>div {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px;
  margin-top: 3px;
}

.product__botom .variable-items-wrapper {
  list-style-type: none;
  display: flex;
  color: #000;
  padding: 0;
  margin: 0;
}

.summary .variable-items-wrapper {
  list-style-type: none;
  display: flex;
  color: var(--light-color);
  padding: 0;
  margin: 0;
}

.product__botom .button-variable-item.selected {
  border: 2px solid #000;
}

.summary .button-variable-item.selected {
  border: 2px solid var(--acent-color);
  background-color: var(--acent-color);
}

.product__botom .button-variable-item {
  border: 2px solid var(--acent-color);
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 5px;
}

.summary .button-variable-item {
  border: 2px solid var(--acent-color);
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 5px;
}

.product__botom .reset_variations {
  display: none !important;
}

.summary .reset_variations {
  display: none !important;
}

.summary .wrapper .woocommerce-variation-add-to-cart .quantity {
  display: none;
}


.main-bg {
  position: relative;
  background: rgba(48,48,48,1);

}

.main-bg::before {
  content: "";
  background: url('../img/product-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -3%;
  bottom: -122px;
  width: 620px;
  height: 712px;
  z-index: 1;
}

.main-bg::after {
  content: "";
  background: url('../img/product-bg-2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -3%;
  bottom: -80px;
  width: 660px;
  height: 847px;
  z-index: 1;
}

@media (max-width:576px) {
  .main-bg::after {
    content: "";
    background: url(../img/product-bg-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: -16%;
    top: 161px;
    width: 400px;
    height: 694px;
    z-index: 1;
  }
}


.product-card__wrapper {
  padding-top: 150px;
}

@media (max-width: 768px) {
  .product-card__wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-top: 90px;
  }
}

@media (max-width: 576px) {
  .product-card__wrapper {
    padding-top: 80px;
  }
}

.product-card__main-inner {
  display: flex;
}


@media (max-width:768px) {
  .product-card__main-inner {
    flex-direction: column;
  }

  .woocommerce-product-gallery__image {
    margin-right: 0;
  }
}

.woocommerce-product-gallery__image {
  margin-right: 60px;
}

@media (max-width:768px) {
  .woocommerce-product-gallery__image {
    margin-right: 0;
  }
}

.wp-post-image {
  width: 800px;
}

.woocommerce-tabs {
  max-width: 800px;
}

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

.wp-post-image {
  box-shadow: 0px 0px 40px #000;
}

.entry-summary {
  display: flex;
  flex-direction: column;
  max-width: 370px;
}

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

.entry-summary .product_title {
  margin: 0;
  font-size: 30px;
  color: var(--acent-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.price {
  font-size: 26px;
  color: var(--light-color);
}

.woocommerce-product-details__short-description {
  display: none;
}

.entry-summary .cart {
  justify-content: flex-start;
}

.product__quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f7f9f8;
  border-radius: 20px;
  height: 54px;
  width: 150px;
  margin-right: 25px;
}

.product__botom .product__quantity {
  margin-right: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  justify-content: space-around;
  order: 3;
}

.td_kvo_qty b {
  font-size: 12px;
  font-weight: 400;
}

.summary .td_kvo_qty b {
  color: var(--light-color);
}

.woocommerce-variation-add-to-cart {
  width: 100%;
  order: 4;
}

.plus, .minus {
  background-color: transparent;
  border: none;
  color: var(--light-color);
  font-size: 25px;
  transition: 0.3s;
  border-radius: 2%;
  cursor: pointer;
}

.product__botom .plus, .minus {
  color: var(--dark-color);
}

.product__botom .plus:hover, .minus:hover {
  color: var(--acent-color);
}

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

.summary .wrapper {
  
  align-items: center;
  gap: 10px;
}

.summary .wrapper .woocommerce-variation-add-to-cart {
  width: 49%;
}

.summary .wrapper .single_variation {
  width: 100%;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  overflow-wrap: normal !important;
  word-wrap: normal !important;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.qty {
  text-align: center;
  background-color: transparent !important;
  color: var(--acent-color) !important;
  font-size: 23px !important;
  border: none !important;
  width: 40px !important;
  padding: 0 !important;
}

/* .single_add_to_cart_button {
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 5px;
  color: var(--acent-color);
  text-decoration: none;
  font-size: 17px;
  height: 54px;
  width: 150px;
  transition: 0.5s;
  background: transparent;
  background-size: 10%;

  transition: all 0.3s ease-in;
}

.single_add_to_cart_button:hover {
  background-color: var(--light-color);
  border: 1px solid var(--acent-color);
  background-size: 100%;
  box-shadow: 1px 1px 10px var(--acent-color);
  text-shadow: 1px 1px 10px var(--light-color);
} */

.product-card__support {
  order: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

.product-card__support-info {
  border-bottom: 1px solid #28453d;
  border-top: 1px solid #28453d;
  color: #bfbfbf;
  padding: 20px 0 20px 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.product-card__support-info-b {
  border-bottom: 1px solid #28453d;
  color: #bfbfbf;
  padding: 20px 0 20px 0;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.product-card__support-info:hover,
.product-card__support-info-b:hover {
  color: var(--acent-color);
}

.product_meta {
  order: 5;
}

.product_meta .posted_in {
  color: var(--acent-color);
  font-weight: 600;
}

.product_meta .posted_in a {
  color:var(--light-color);
  text-decoration: none;
}

.product-attribute p {
  color: var(--light-color);
  
}

.product-attribute p {
  margin: 0;
  margin-bottom: 16px;
}

.product-attribute {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--acent-color);
}

.product-card__description {
  margin-top: 50px;
}

.product-card__spec-title {
  margin: 0;
  font-size: 17px;
  color: var(--acent-color);
  margin-bottom: 20px;
}



.xoo-wsch-top {
  justify-content: space-between !important;
}

.xoo-wsc-ft-btn-continue {
  display: none !important;
}


.xoo-wsc-footer-txt {
  display: none !important;
}

.xoo-wsc-basket {
  display: none !important;
}

.xoo-wsc-sum-col {
  padding-left: 0 !important;
}

a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn {
  padding: 15px 0;
  border-radius: 20px;
  background: none;
  border: 1px solid var(--acent-color);
  color: var(--light-color);
  transition: all 0.3s ease-in;
}

a.xoo-wsc-ft-btn:hover, .xoo-wsc-container .xoo-wsc-btn:hover {
  background: var(--acent-color);
}

.xoo-wsc-ft-btn-cart {
  margin-bottom: 15px !important;
}

.xoo-wsc-pname {
  color: var(--acent-color) !important;
}

/* cart */


.cart-bg {
  padding-top: 200px;
  padding-bottom: 50px;
}

.gribnaya__cart-table {
  width: 100%;
  display: table;
  border: none !important;
}

.product-quantiy-border:before {
  content: "";
  height: 30px;
  width: 1px;
  background: #ffffff85;
  display: inline-block;
  background-position: center;
  position: absolute;
  left: -11px;
}

@media (max-width: 576px) {
  .product-quantiy-border:before {
    display: none;
  }
}

.product-quantiy-border {
  position: relative;
  width: auto;
}

.product-quantiy-border:after {
  content: "";
  height: 30px;
  width: 1px;
  background: #ffffff85;
  display: inline-block;
  background-position: center;
  position: absolute;
  right: -12px;
}

@media (max-width: 576px) {
  .product-quantiy-border:after {
    display: none;
  }

  .product-subtotal {
    text-align: right !important;
  }

  .gribnaya__cart-table thead th {
    text-align: right !important;
  }
}

.gribnaya__cart-table thead th {
  border-bottom: 1px solid #05dfa857;
  padding-bottom: 15px !important;
  text-align: center !important;
  color: var(--light-color);
  text-align: left;
  font-size: 20px;
}




.page-cart__empty {
  margin: 0;
  margin-bottom: 50px;
  text-align: center;
  font-size: 48px;
  color: var(--acent-color);
  font-weight: 900;
}

.product-name-width {
  width: 54%;
}

@media (max-width:576px) {
  .product-name-width {
    width: auto;
  }
}

@media (max-width: 576px) {
  .woocommerce-cart-form__contents .product-price {
      display: none !important;
  }
}



.gribnaya__cart-table thead .product-name-width {
  text-align: left !important;
}

.woocommerce-cart-form__contents .product-price {
  width: 195px;
}

.woocommerce-cart-form__contents .product-subtotal {
  width: 195px;
}

.cart_item td {
  padding: 30px 0;
  border-bottom: 1px solid #05dfa857;
}

.gribnaya__cart-table td {
  font-size: 20px;
  padding: 30px 0 !important;
  color: var(--light-color);
  text-align: center;
}


.woocommerce-input-wrapper input {
  width: 100% !important;
}


td.product-name {
  text-align: left;
}

td.product-name a {
  color: var(--light-color);
}

.woocommerce a.remove {
  color: var(--acent-color) !important;
  font-weight: 900;
  font-size: 21px;
  transition: 0.2s;
  font-family: sans-serif;
  padding-right: 5px;
  transition: all 0.3s ease-in;
}

.woocommerce a.remove:hover {
  background: none;

}

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

.cart__title {
  text-align: center;
  font-size: 25px;
  color: var(--acent-color);
}


@media (max-width:576px) {
  .cart__title {
    font-size: 18px;
  }
}
.cart-totals__price-wrap {
  margin-right: 47px;
}

@media (max-width:576px) {
  .cart-totals__price-wrap {
    margin-right: 0;
  }
}
.cart-totals__wrapper .woocommerce-Price-amount {
  font-size: 25px;
  color: var(--light-color);
}

@media (max-width:576px) {
  .cart-totals__wrapper .woocommerce-Price-amount {
    font-size: 18px;
  }
}


.payment-cart__wrapper {
  padding: 40px 20px;
  background: #4b4b4b4a;
  text-align: center;
  list-style: none;
  margin-bottom: 10px;
  margin-top: 10px;
  border: none !important;
  text-align: center !important;
  border-radius: 5px;
  margin-top: 20px;
}

.payment-cart__method {
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 200;
  margin-bottom: 40px;
  margin-top: 0;
}

@media (max-width:576px) {
  .payment-cart__method {
    font-size: 16px;
    margin-bottom: 20px;
  }
}


.checkout-button {
  margin: 0 auto;
}

@media (max-width: 576px) {


  .gribnaya__cart-table thead th {
    text-align: right !important;
  }
}

/* checkout */

.checkout-page {
  padding-top: 150px;
  padding-bottom: 50px;
}

.checkout__title {
  margin: 0;
  color: var(--light-color);
  margin-bottom: 40px;
}

.grib__checkout__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .grib__checkout__wrapper {
    flex-direction: column;
  }
}

.checkout-forms__wrappers {
  width: 48%;
}

@media (max-width: 576px) {
  .checkout-forms__wrappers {
    width: 100%;
  }
}



.grib__checkout__wrapper h3 {
  font-size: 28px;
  margin-top: 0;
}

.page-checkout__title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 28px;
  color: var(--light-color);
}

.order_checkout__wrapper-lab label {
  color: #fff;
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.custom-label {
  color: #fff;
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #1b1b1b;
  background: #4b4b4b4a;
  padding: 8px 0 5px 8px;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
  resize: none;
  height: 110px;
}

.order_checkout__wrapper-lab input {
  width: 480px;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"] {
  width: 350px;
  border-radius: 5px;
  border: 1px solid #1b1b1b;
  background: #4b4b4b4a;
  padding: 12px 0 12px 8px;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  box-shadow: 0px 0px 10px #05dfa152;
  border: 1px solid #05dfa152;
  outline: none;
}

.page-checkout__review {
  width: 48%;
}

@media (max-width: 576px) {
  .page-checkout__review {
    width: 100%;
  }
}

.woocommerce form .form-row .required {
  color: var(--acent-color) !important;
  text-decoration: none;
}

.checkout__grib_table {
  width: 100%;
  margin: 0;
  margin-bottom: 40px;
  border: none;
  border-collapse: collapse ;
}

.product-name {
  text-align: left;
}

.checkout__grib_table thead th {
  padding-bottom: 15px !important;
}

.checkout__grib_table tfoot th {
  text-align: left;
}

.woocommerce table.shop_table th {
  color: var(--light-color);
  padding: 0;
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 576px) {
  .woocommerce table.shop_table th {
    font-size: 16px;
  }
}

.checkout__grib_table thead th {
  border-bottom: 1px solid #05dfa857;
  padding-bottom: 12px;
}

.product-name {
  color: var(--light-color);
  padding: 0;
}

.woocommerce table.shop_table td {
  padding: 0;
}

.checkout__grib_table .product-total {
  text-align: right;
  color: var(--light-color);
}


.checkout__grib_table tfoot td {
  text-align: right;
  color: var(--light-color);
  border-bottom: 1px solid #05dfa857;
  font-weight: 400 !important;
}

.checkout__grib_table tfoot th {
  border-bottom: 1px solid #05dfa857;
}

.checkout__grib_table td {
  padding: 15px 0 !important; 
}

.cart-subtotal th {
  font-size: 16px !important;
}

.shipping th {
  font-size: 16px !important;
}

.checkout-coupon__wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  background: #4b4b4b4a;
  border-radius: 10px;
}

.woocommerce-checkout-payment {
  background: #4b4b4b4a !important;
  padding: 20px !important;
  border-radius: 10px !important;
  margin-top: 20px !important;
  list-style-type: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none !important;
  list-style-type: none !important;
  font-size: 20px !important;
  color: #fff !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: none !important;
  padding: 0 !important;
}

.woocommerce-privacy-policy-text {
  display: none !important;
}

/* .woocommerce #payment #place_order {
  float: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--acent-color);
  color: var(--light-color);
  border: none;
  transition: 0.3s;
  font-size: 25px;
  padding: 15px 60px;
} */

/* 
.woocommerce-checkout-payment .button:hover {
  box-shadow: 0px 0px 20px #18b983bb;
  
} */


#payment_method_cod {
  display: none !important;
}

.thankyou__title {
  margin: 0;
  margin-bottom: 30px;
  color: var(--light-color);
}

.checkout-final__text {
  margin: 0;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
}

.checkout-final__text-mt {
  font-weight: 800;
}

.order-details {
  max-width: 800px;
  display: flex;
  list-style: none;
  color: #fff;
  padding: 0;
  margin-bottom: 40px;
}

.details-item {
  border-right: 1px var(--acent-color) dashed;
  padding-left: 16px;
  font-weight: 800;
  font-size: 14px;
  padding-right: 16px;
}
.details-item:first-of-type {
  padding-left: 0;
}

.details-item strong {
  display: block;
  margin-top: 5px;
  font-weight: 400;
}

.requisites_warning {
  margin: 0;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 25px;
}

.requisites_tg {
  margin: 0 auto;
}

.woocommerce-order {
  max-width: 800px;
}
.thankyou__wrapper {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: #4b4b4b4a;
  text-align: center;
  list-style: none;
  text-align: center !important;
  border-radius: 5px;
}

.blob-btn-centred {
  margin: 0 auto;
  margin-top: 30px;
}

.order_details  th {
  font-size: 16px !important;
}

.shipped_via {
  display: none;
}


/* secondary-pages */

.not-found {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 50vh;
}

.not-found__number {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 120px;
  font-weight: 900;
  color: var(--acent-color);
}

.not-found__text {
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
  font-size: 49px;
  color: var(--light-color);
  font-weight: 900;
}

.not-found__btn {
  margin: 0 auto;
}

.bonus {
  padding-top: 150px;
  padding-bottom: 50px;
}

.bonus__title {
  margin: 0;
  margin-bottom: 20px;
  color: var(--light-color);
  font-size: 30px;
  font-weight: 900;
}

.bonus-sub-title {
  margin: 0;
  color: var(--acent-color);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 35px;
}


.bonus-text {
  color: var(--light-color);
  font-size: 17px;
  line-height: 27px;
  margin-top: 4px;
}

.legal {
  padding-top: 150px;
  padding-bottom: 50px;
}

.legal-list {
  padding: 20px;
  color: var(--light-color);
}

.legal-item::marker {
  color: var(--acent-color);
}

.legal-item {
  font-size: 17px;
  font-weight: 600;
  line-height: 35px;
  color: var(--light-color);
}

.privacy {
  padding-top: 150px;
  padding-bottom: 50px;
}

.privacy-sub-title {
  color: var(--light-color);
  font-size: 17px;
  font-weight: 600;
}

.summary .price {
  color: var(--light-color);
}

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

.summary form button {
  width: 100%;
  max-width: 200px;
  height: 54px;
}

@media (max-width: 576px) {
  .summary form button {
    width: 150px;
    padding: 15px;
    height: 54px;
  }
}

.woocommerce-message {
  padding: 20px 0;
  color: var(--light-color);
}

.woocommerce-message a {
  color: var(--acent-color);
}

.sku, .sku_wrapper {
  display: none !important;
}
.related-block {
  padding: 50px 0;
}

@media (max-width: 576px) {
  .related-block {
    padding: 50px 10px;
  }
  
}
.related-block__title {
  margin: 0;
  margin-bottom: 50px;
  text-align: left;
  
}

/* blog */

.blog {

  padding-top: 185px;
  padding-bottom: 100px;
}

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

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

@media (max-width: 1024px) {
  .blog__wrapper {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width: 768px) {
  .blog__wrapper {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 576px) {
  .blog__wrapper {
    grid-template-columns: repeat(1,1fr);
  }
}
.pagination {
  margin-top: 50px;
  display: flex;
  align-items: center;
}


.pagination .page-numbers {
  padding: 16px 20px;
  background-color: var(--acent-color);
  border-radius: 15px;
  margin-right: 6px;
  width: 47px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.pagination .page-numbers:hover {
  background-color: var(--light-color);
}

.pagination .page-numbers.current {
  background-color: var(--light-color);
}


.blog-card {
  max-width: 292.5px;
  margin: 0 auto;
  background-color: var(--light-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.blog-card__img img {
  width: 100%;
  height: 180px;

}

.blog-card__bottom {
  padding: 20px;
  background-color: var(--light-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.blog-card__title {
  margin: 0;
  margin-bottom: 10px;
  color: var(--acent-color);
  font-size: 18px;
  font-weight: 600;
}

.blog-card__descr p {
  margin: 0;
}


@media (max-width: 576px) {
  .blog-card__descr p {
    font-size: 14px;
  }
}


.single-blog__img {
  display: block;
  margin-bottom: 50px;
  width: 100%;
}

.single-blog__title {
 text-align: left;
 margin-bottom: 30px;
}

.single-blog__content p {
  color: var(--light-color);
}

.single-blog__content p strong {
  color: var(--acent-color);
}

.nav-subtitle {
  color: var(--dark-color);
}

.nav-title {
  color: var(--dark-color);
}

.nav-previous {
  margin-bottom: 20px;
}

.nav-previous, .nav-next {
  background-color: var(--acent-color);
  max-width: 320px;
  padding: 15px 10px;
  border-radius: 20px;
  text-align: center;
}

#jvLabelWrap {
  right: 90px !important;
}

#jcont {
  right: 90px !important;
}


.related.products h2 {
  display: none;
}

.related.products {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}


@media (max-width: 1024px) {
  .related.products {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width: 768px) {
  .related.products {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 576px) {
  .related.products {
    grid-template-columns: repeat(1,1fr);
  }
}


.product__botom form {
  width: 100%;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  background-color: #4b4b4b4a;
  line-height: 37px;
  border: 1px solid #1b1b1b;
  border-radius: 5px;
}


.select2-container--default .select2-selection--single {
  margin-bottom: 20px;
  border: none;
  background-color: inherit;
}

.select2-search--dropdown, .select2-results__option {
  background-color: #444;
  color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--acent-color);
}

#shipping_method {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.for-price {
  font-size: 16px;
  color: var(--light-color);
  font-weight: 400;
}
.for-price span {
  color: var(--acent-color);
  margin-left: 5px;
}

.wc-item-meta {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-left: -5px;
  margin-top: 10px;
}

.wc-item-meta p {
  margin: 0;
}

.wc-item-meta li {
  display: flex;
}

.wc-item-meta li strong {
  margin-left: 5px;
}

.order_item {
  border-bottom: 1px solid var(--acent-color);
}

/* .thankyou .product-name {
  display: flex;
  align-items: center;
} */

.summary .minus {
color: var(--light-color);
}

.product_type_simple  {
  display: block;
  width: 100%;
  z-index: 1;
  position: relative;
  padding: 15px 46px;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 20px;
  background-color: var(--acent-color);
}

.xoo-wsc-container {
  z-index: 999999999999999 !important; 
}

.woocommerce-NoticeGroup {
  width: 100%;
  padding-bottom: 40px;
}

.woocommerce-error {
  margin: 0;
  padding: 0;
  color: var(--acent-color);
  list-style-type: none;
}



@media (max-width: 576px) {
  .woocommerce-cart-form__contents .product-subtotal {
    width: auto;
  }
  .page-checkout__title {
    display: none;
  }

  .checkout__title {
    margin-bottom: 30px;
  }
  .details-item {
    padding: 0 6px;
    font-size: 14px;
  }

  .woocommerce-table__product-name {
    width: 100%;
  }
}

.woocommerce-table--custom-fields {
  display: none;
}

.wc-item-meta {
  display: none;
}


.variations_button.woocommerce-variation-add-to-cart-enabled .quantity {
  display: none;
}
.variations_button.woocommerce-variation-add-to-cart-disabled .quantity {
  display: none;
}

@media(max-width:1024px) {
  .sub-menu__all {
    display: none;
  }
}

@media(max-width:576px) {
 

  .gribnaya__cart-table td {
    font-size: 14px;
  }

  .product-quantity .quantity input {
    font-size: 14px !important;
  }

  .main-bg::before {
    width: 320px;
    height: 563px;
  }

  .main-bg::after {
    right: 0;
    top: 0;
    width: 320px;
  }

  .sub-menu-container {
    top: 15px;
  }

}

.blog__back {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--light-color);
  font-weight: 500;
  transition: color 0.3s ease-in;
}

.blog__back:hover {
  color: var(--acent-color);
}