@keyframes slideinFirst {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes slideinSecond {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes slideinThird {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 203, 121, 0.5), 0 0 0 0 rgba(77, 203, 121, 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 0, 64, 0), 0 0 0 20px rgba(255, 0, 64, 0);
  }
}
@keyframes ani {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 576px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 767px) {
  .container-md, .container-sm, .container {
    max-width: 730px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1224px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
} 
@font-face {
  font-family: "DIN Pro";
  src: url("DINPro.eot");
  src: url("DINPro.eot?#iefix") format("embedded-opentype"), url("DINPro.woff") format("woff"), url("DINPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "DIN Pro Medium";
  src: url("DINPro-Medium.eot");
  src: url("DINPro-Medium.eot?#iefix") format("embedded-opentype"), url("DINPro-Medium.woff") format("woff"), url("DINPro-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "DIN Pro Condensed Bold";
  src: url("DINPro-CondensedBold.eot");
  src: url("DINPro-CondensedBold.eot?#iefix") format("embedded-opentype"), url("DINPro-CondensedBold.woff") format("woff"), url("DINPro-CondensedBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "DIN Condensed";
  src: url("DINCondensed-Regular.eot");
  src: url("DINCondensed-Regular.eot?#iefix") format("embedded-opentype"), url("DINCondensed-Regular.woff2") format("woff2"), url("DINCondensed-Regular.woff") format("woff"), url("DINCondensed-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-family: "DIN Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #111111;
  background: #F6F9F6;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.content {
  flex: 1 1 auto;
  min-height: 100%;
  overflow: hidden;
  margin-top: 100px;
}
.content.blur_page {
  filter: blur(10px);
}

button {
  outline: none !important;
}

.btn-close {
  outline: none;
  box-shadow: none;
}

input:focus {
  box-shadow: none !important;
  outline: none !important;
}

.slick-slide {
  outline: none !important;
}

/* bootstrap hack: fix content width inside hidden tabs */
.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: block;
  /* undo display:none          */
  height: 0;
  /* height:0 is also invisible */
}

.tab-content > .active,
.pill-content > .active {
  height: auto;
  /* let the content decide it  */
}

/* bootstrap hack end */
/*header*/
.home .content {
  margin-top: 0;
}

header {
  background: rgba(17, 17, 17, 0.9);
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 2;
}
header.bg {
  background: #121212;
}
@media (max-width: 991.98px) {
  header {
    height: 52px;
  }
}
header .row {
  align-items: center;
}
@media (max-width: 991.98px) {
  header .logo img {
    max-width: 168px;
  }
}
@media (max-width: 991.98px) {
  header .nav {
    display: none;
  }
}
header .nav ul {
  display: flex;
  justify-content: center;
}
header .nav ul li {
  margin: 0px 20px;
}
header .nav ul li a {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
}
header .header-cart-wrap {
  display: flex;
  justify-content: end;
}
@media (max-width: 991.98px) {
  header .header-cart-wrap {
    display: none;
  }
}
header .header-cart-wrap a {
  position: relative;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #82A24E;
}
header .header-cart-wrap a .header-cart-total {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-family: Instrument Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background: #393939;
  top: -2px;
  right: -6px;
}
@media (max-width: 991.98px) {
  header .mobile_navigation {
    display: flex !important;
    justify-content: end;
  }
}
header .mobile_navigation .icon_nav {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: end;
  align-items: center;
}
header .mobile_navigation .icon_nav.active svg path {
  stroke: #82A24E;
}
header .mobile_nav {
  position: absolute;
  top: 52px;
  background: #121212;
  width: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
header .mobile_nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  display: flex;
  justify-content: end;
  padding: 0;
}
header .mobile_nav ul {
  width: 100%;
  border-top: 1px solid #282016;
  padding-top: 14px;
}
header .mobile_nav ul li {
  margin-bottom: 16px;
  text-align: right;
}
header .mobile_nav ul li a {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

/*footer*/
footer {
  padding: 100px 0px;
  background: #282016;
}
@media (max-width: 767.98px) {
  footer {
    padding: 30px 0px;
  }
}
footer .logo {
  margin-bottom: 61px;
}
@media (max-width: 991.98px) {
  footer .logo {
    margin-bottom: 25px;
  }
}
footer .contact a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
}
@media (max-width: 991.98px) {
  footer .contact a {
    font-size: 12px;
    margin-bottom: 16px;
  }
}
footer .navigation {
  display: flex;
  justify-content: center;
}
@media (max-width: 767.98px) {
  footer .navigation {
    justify-content: start;
  }
}
footer .navigation ul li {
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  footer .navigation ul li {
    margin-bottom: 16px;
  }
}
footer .navigation ul li a {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 991.98px) {
  footer .navigation ul li a {
    font-size: 12px;
  }
}
footer .social {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 991.98px) {
  footer .social {
    align-items: start;
  }
}
footer .social .list {
  display: flex;
  margin-bottom: 44px;
}
footer .social .list .item {
  margin-left: 25px;
}
@media (max-width: 991.98px) {
  footer .social .list .item {
    margin-left: 0px;
    margin-right: 25px;
  }
}
footer .social .copyright {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #fff;
}
@media (max-width: 991.98px) {
  footer .social .copyright {
    text-align: left;
    font-size: 12px;
  }
}

.footer_info, .products_info {
  background: #82A24E;
  height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .footer_info, .products_info {
    height: auto;
    padding: 19px 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer_info, .products_info {
    height: auto;
    padding: 19px 0px;
  }
}
.footer_info .text, .products_info .text {
  font-family: DIN Condensed;
  font-size: 25px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
@media (max-width: 991.98px) {
  .footer_info .text, .products_info .text {
    font-size: 16px;
  }
}
.footer_info .text a, .products_info .text a {
  color: #fff;
}

/**/
/**/
.breadcrumb {
  display: flex;
  list-style: none;
  align-items: center;
  margin-top: 26px;
}
.breadcrumb li {
  font-family: Mulish;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #6A6A6A;
  margin-right: 10px;
}
.breadcrumb li a {
  color: #111111;
  text-decoration: none;
}

.woocommerce-breadcrumb {
  display: flex;
  list-style: none;
  align-items: center;
  margin-top: 26px;
  font-family: Mulish;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #6A6A6A;
  margin-right: 10px;
}
.woocommerce-breadcrumb a {
  color: #111111;
  text-decoration: none;
  flex-shrink: 0;
}

.breadcrumb {
  display: flex;
  list-style: none;
  align-items: center;
  margin-top: 26px;
}
.breadcrumb span {
  font-family: Mulish;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #6A6A6A;
  margin-right: 10px;
}
.breadcrumb span a {
  color: #111111;
  text-decoration: none;
}

/**/
/**/
.promo .mySwiper_promo .item .image {
  text-align: center;
}
.promo .mySwiper_promo .item .image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  min-height: 1000px;
}
@media (max-width: 575.98px) {
  .promo .mySwiper_promo .item .image img {
    max-height: 600px;
  }
}
@media (max-width: 991.98px) {
  .promo .mySwiper_promo .item .image img {
    min-height: 600px;
  }
}
.promo .mySwiper_promo .item .info {
  position: absolute;
  top: 233px;
}
@media (max-width: 991.98px) {
  .promo .mySwiper_promo .item .info {
    top: 118px;
    left: 12px;
    right: 12px;
    width: auto;
  }
}
.promo .mySwiper_promo .item .info .title {
  font-family: DIN Condensed;
  font-size: 100px;
  line-height: 95px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 19px;
  max-width: 644px;
}
@media (max-width: 991.98px) {
  .promo .mySwiper_promo .item .info .title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
.promo .mySwiper_promo .item .info .sub_title {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 91px;
  max-width: 457px;
}
@media (max-width: 991.98px) {
  .promo .mySwiper_promo .item .info .sub_title {
    font-size: 18px;
    margin-bottom: 112px;
  }
}
.promo .mySwiper_promo .item .info .link a {
  width: 377px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #82A24E;
  font-family: DIN Condensed;
  font-size: 25px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .promo .mySwiper_promo .item .info .link a {
    width: 100%;
  }
}
.promo .mySwiper_promo .item .info .link a:focus {
  background: #000000;
}
.promo .mySwiper_promo .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 30px;
}
@media (max-width: 991.98px) {
  .promo .mySwiper_promo .swiper-pagination {
    display: none;
  }
}
.promo .mySwiper_promo .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.promo .mySwiper_promo .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
}

.block_head .title {
  font-family: DIN Condensed;
  font-size: 60px;
  line-height: 95px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #616769;
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .block_head .title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

.product-grid-container {
  background: linear-gradient(180deg, #3B342D 0%, #312E2C 100%);
  padding: 100px 0px;
  margin-top: -4px;
}
@media (max-width: 767.98px) {
  .product-grid-container {
    padding: 30px 0px;
  }
}
.product-grid-container .tabs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 110px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .product-grid-container .tabs {
    justify-content: start;
    margin-bottom: 26px;
  }
}
.product-grid-container .tabs .block_head {
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .product-grid-container .tabs .block_head {
    width: 100%;
  }
}
.product-grid-container .tabs .block_head .title {
  margin-bottom: 0;
  color: #7B7771;
}
@media (max-width: 991.98px) {
  .product-grid-container .tabs .block_head .title {
    margin-bottom: 20px;
  }
}
.product-grid-container .tabs .block_head .sub_title_products {
  color: #fff;
}
@media (max-width: 991.98px) {
  .product-grid-container .tabs .block_head .sub_title_products {
    margin-bottom: 10px;
  }
}
.product-grid-container .tabs .tab-button {
  height: 43px;
  font-family: DIN Condensed;
  font-size: 25px;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding: 0px 40px;
  background: #4E4944;
  border-radius: 5px;
  border: none;
  margin-left: 8px;
  color: #7B7771;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .product-grid-container .tabs .tab-button {
    margin-left: 0;
    margin-right: 6px;
    padding: 0px 23px;
    font-size: 16px;
    height: 24px;
  }
}
.product-grid-container .tabs .tab-button.active {
  background: #82A24E;
  color: #fff;
}
.product-grid-container .products-grid .product_items {
  display: flex;
  justify-content: end;
  margin-bottom: 48px;
}
.product-grid-container .products-grid .product_item {
  border-radius: 10px;
  background: #FFFFFF;
  width: calc(100% - 24px);
  display: flex;
  position: relative;
  min-height: 560px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item {
    width: 100%;
    min-height: auto;
  }
}
.product-grid-container .products-grid .product_item .product-thumb {
  margin-left: -24px;
  margin-top: -24px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-thumb {
    position: absolute;
    margin-left: -4px;
    margin-top: -8px;
  }
}
.product-grid-container .products-grid .product_item .product-thumb img {
  max-height: 555px;
  filter: drop-shadow(15px 30px 5px rgba(0, 0, 0, 0.1));
  height: 100%;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-thumb img {
    max-height: 240px;
  }
}
.product-grid-container .products-grid .product_item .product-content {
  padding: 56px;
  padding-left: 54px;
  padding-top: 50px;
  padding-right: 30px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content {
    padding: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-grid-container .products-grid .product_item .product-content {
    padding-left: 10px;
    padding-right: 16px;
  }
}
.product-grid-container .products-grid .product_item .product-content .category {
  font-family: DIN Condensed;
  font-size: 32px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #484848;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .category {
    font-size: 18px;
    padding-left: 66px;
  }
}
.product-grid-container .products-grid .product_item .product-content .product-title {
  font-family: DIN Condensed;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #484848;
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .product-title {
    font-size: 20px;
    padding-left: 66px;
  }
}
.product-grid-container .products-grid .product_item .product-content .product-attrs {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .product-attrs {
    margin-bottom: 20px;
    padding-left: 66px;
    flex-direction: column;
  }
}
.product-grid-container .products-grid .product_item .product-content .product-attrs .product-attr {
  font-family: DIN Pro;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0%;
  color: #AAAAAA;
  margin-right: 24px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .product-attrs .product-attr {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-grid-container .products-grid .product_item .product-content .product-attrs .product-attr {
    margin-right: 10px;
  }
}
.product-grid-container .products-grid .product_item .product-content .sale_price {
  margin-bottom: 10px;
}
.product-grid-container .products-grid .product_item .product-content .sale_price .discount {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .sale_price .discount {
    padding-left: 66px;
  }
}
.product-grid-container .products-grid .product_item .product-content .sale_price .discount .discount_price {
  color: #484848;
  font-family: DIN Condensed;
  font-size: 20px;
  margin-left: 5px;
}
.product-grid-container .products-grid .product_item .product-content .sale_price .discount .discount_precent {
  color: #82A24E;
  font-family: DIN Condensed;
  font-size: 20px;
  margin-left: 4px;
}
.product-grid-container .products-grid .product_item .product-content .sale_price .members_discount {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .sale_price .members_discount {
    padding-left: 66px;
  }
}
.product-grid-container .products-grid .product_item .product-content .sale_price .members_discount .members_discount_price {
  color: #484848;
  font-family: DIN Condensed;
  font-size: 20px;
  margin-left: 5px;
}
.product-grid-container .products-grid .product_item .product-content .sale_price .members_discount .members_discount_precent {
  color: #82A24E;
  font-family: DIN Condensed;
  font-size: 20px;
  margin-left: 4px;
}
.product-grid-container .products-grid .product_item .product-content .group_action {
  display: flex;
  position: relative;
  align-items: center;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .group_action {
    padding-left: 66px;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-grid-container .products-grid .product_item .product-content .group_action {
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .group_action .product-price {
    order: 2;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-grid-container .products-grid .product_item .product-content .group_action .product-price {
    order: 2;
  }
}
.product-grid-container .products-grid .product_item .product-content .group_action .price {
  font-family: DIN Condensed;
  font-size: 48px;
  letter-spacing: 0%;
  line-height: 1;
  text-transform: uppercase;
  color: #484848;
  margin-right: 26px;
  display: flex;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .group_action .price {
    font-size: 38px;
  }
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .add_cart {
    margin-right: 0;
    order: 2;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-grid-container .products-grid .product_item .product-content .add_cart {
    margin-right: 0;
    order: 2;
  }
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity {
  display: flex;
  /* Hide the spin buttons in WebKit browsers */
  /* Hide spin buttons in Firefox */
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity button {
  width: 34px;
  height: 34px;
  border: 1px solid #CFCFCF;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .add_cart .quantity button {
    width: 30px;
    height: 30px;
  }
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity .minus {
  border-radius: 5px 0px 0px 5px;
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity .plus {
  border-radius: 0px 5px 5px 0px;
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity .minus svg path, .product-grid-container .products-grid .product_item .product-content .add_cart .quantity .plus svg path {
  fill: #000000;
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity input::-webkit-outer-spin-button,
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity input[type=number] {
  -moz-appearance: textfield;
}
.product-grid-container .products-grid .product_item .product-content .add_cart .quantity input {
  width: 45px;
  height: 34px;
  text-align: center;
  border: none;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .add_cart .quantity input {
    width: 40px;
    height: 30px;
  }
}
.product-grid-container .products-grid .product_item .product-content .add_cart .single_add_to_cart_button {
  height: 50px;
  font-size: 25px;
  position: absolute;
  width: 100%;
  left: 0;
  cursor: pointer;
  background: #877763;
  border-radius: 5px;
  font-family: DIN Condensed;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FFFFFF;
  border: none;
  margin-top: 40px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  transition: all 0.4ms;
  padding: 12px 16px;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .product-grid-container .products-grid .product_item .product-content .add_cart .single_add_to_cart_button {
    height: 40px;
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .add_cart .single_add_to_cart_button {
    margin-top: 20px;
  }
}
.product-grid-container .products-grid .product_item .product-content .add_cart .single_add_to_cart_button:hover {
  background: #82A24E;
}
.product-grid-container .products-grid .product_item .product-content .add_cart .single_add_to_cart_button:focus {
  background: #000000;
}
.product-grid-container .products-grid .product_item .product-content .add_cart .added_to_cart {
  display: none;
}
.product-grid-container .products-grid .product_item .product-content .stock {
  height: 34px;
  padding: 0px 16px;
  border-radius: 5px;
  background: #82A24E;
  font-family: DIN Condensed;
  font-size: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  vertical-align: middle;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 7px;
  padding-bottom: 7px;
  line-height: 1.1;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-content .stock {
    order: 1;
    height: 24px;
    font-size: 12px;
    padding: 0px 14.5px;
    margin-right: 100%;
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-grid-container .products-grid .product_item .product-content .stock {
    order: 1;
    margin-right: 100%;
    margin-bottom: 20px;
  }
}
.product-grid-container .products-grid .product_item .product-desc {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  margin-top: 120px;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .product_item .product-desc {
    margin-top: 80px;
  }
}
.product-grid-container .products-grid .form {
  margin-bottom: 48px;
  display: flex;
  justify-content: end;
}
.product-grid-container .products-grid .form .item {
  border-radius: 10px;
  background: #282016;
  width: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  padding: 56px;
  height: 100%;
  position: relative;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .form .item {
    width: 100%;
    padding: 20px;
  }
}
.product-grid-container .products-grid .form .item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.product-grid-container .products-grid .form .item .image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.product-grid-container .products-grid .form .item .sub_title {
  font-family: DIN Condensed;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .form .item .sub_title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.product-grid-container .products-grid .form .item .title {
  font-family: DIN Condensed;
  line-height: 1;
  font-size: 47px;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 288px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .form .item .title {
    font-size: 35px;
    margin-bottom: 24px;
  }
}
.product-grid-container .products-grid .form .item .data {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 32px;
  max-width: 260px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .form .item .data {
    font-size: 14px;
  }
}
.product-grid-container .products-grid .form .item .front_form {
  margin-top: auto;
  z-index: 1;
}
.product-grid-container .products-grid .form .item .front_form .form-status {
  margin-top: 15px;
  color: #fff;
}
.product-grid-container .products-grid .form .item .front_form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-grid-container .products-grid .form .item .front_form form .item {
  width: 100%;
  padding: 0;
  margin-bottom: 8px;
}
.product-grid-container .products-grid .form .item .front_form form .item input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: none;
  padding: 0px 20px;
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .form .item .front_form form .item input {
    height: 46px;
  }
}
.product-grid-container .products-grid .form .item .front_form form .submit {
  height: 50px;
  font-size: 25px;
  width: 100%;
  border-radius: 5px;
  background: #82A24E;
  font-family: DIN Condensed;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-top: 16px;
  border: none;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .product-grid-container .products-grid .form .item .front_form form .submit {
    height: 40px;
    font-size: 18px;
  }
}
.product-grid-container .products-grid .form .item .front_form form .submit:focus {
  background: #000000;
}
@media (max-width: 991.98px) {
  .product-grid-container .products-grid .form .item .front_form form .submit {
    height: 46px;
  }
}

.about_us {
  background: #F3F1EC;
  padding: 100px 0px;
}
@media (max-width: 767.98px) {
  .about_us {
    padding: 30px 0px;
  }
}
.about_us .info .data {
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 95px 86.5px;
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  display: flex;
}
@media (max-width: 991.98px) {
  .about_us .info .data {
    padding: 20px;
    flex-direction: column;
    font-size: 12px;
  }
  .about_us .info .data img {
    margin-bottom: 24px;
    max-width: 83px;
  }
}
.about_us .pluses {
  display: flex;
  margin-top: 80px;
  justify-content: space-around;
}
@media (max-width: 991.98px) {
  .about_us .pluses {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
  }
}
.about_us .pluses .item {
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .about_us .pluses .item {
    max-width: 50%;
    margin-bottom: 20px;
  }
}
.about_us .pluses .item .image {
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .about_us .pluses .item .image {
    margin-bottom: 36px;
  }
}
.about_us .pluses .item .data {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}
@media (max-width: 991.98px) {
  .about_us .pluses .item .data {
    font-size: 14px;
  }
}
.about_us .subscribe {
  margin-top: 80px;
  background: #282016;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .about_us .subscribe {
    margin-top: 30px;
  }
}
.about_us .subscribe .membership-section {
  position: relative;
  display: flex;
}
.about_us .subscribe .membership-left {
  padding-left: 53px;
  padding-top: 65px;
  padding-bottom: 54px;
  padding-right: 53px;
}
@media (max-width: 767.98px) {
  .about_us .subscribe .membership-left {
    padding: 20px;
    z-index: 1;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .about_us .subscribe .membership-left {
    padding: 20px;
  }
}
.about_us .subscribe .membership-left .sub_title {
  font-family: DIN Condensed;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .about_us .subscribe .membership-left .sub_title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.about_us .subscribe .membership-left .title {
  font-family: DIN Condensed;
  line-height: 1;
  font-size: 47px;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .about_us .subscribe .membership-left .title {
    font-size: 35px;
    margin-bottom: 24px;
  }
}
.about_us .subscribe .membership-left .data {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .about_us .subscribe .membership-left .data {
    font-size: 14px;
  }
}
.about_us .subscribe .membership-left .front_form .form-status {
  margin-top: 15px;
  color: #fff;
}
.about_us .subscribe .membership-left .front_form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_us .subscribe .membership-left .front_form form .item {
  width: calc(50% - 4px);
}
@media (max-width: 991.98px) {
  .about_us .subscribe .membership-left .front_form form .item {
    width: 100%;
    margin-bottom: 8px;
  }
}
.about_us .subscribe .membership-left .front_form form .item input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: none;
  padding: 0px 20px;
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}
@media (max-width: 991.98px) {
  .about_us .subscribe .membership-left .front_form form .item input {
    height: 46px;
  }
}
.about_us .subscribe .membership-left .front_form form .submit {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #82A24E;
  font-family: DIN Condensed;
  font-size: 25px;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-top: 16px;
  border: none;
  cursor: pointer;
}
.about_us .subscribe .membership-left .front_form form .submit:focus {
  background: #000000;
}
@media (max-width: 991.98px) {
  .about_us .subscribe .membership-left .front_form form .submit {
    height: 46px;
  }
}
.about_us .subscribe .membership-right {
  position: relative;
}
@media (max-width: 767.98px) {
  .about_us .subscribe .membership-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}
.about_us .subscribe .membership-right img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .about_us .subscribe .membership-right img {
    border-radius: 10px;
  }
}

.retail_store {
  padding: 100px 0px;
  background: #E4E0D3;
}
@media (max-width: 767.98px) {
  .retail_store {
    padding: 30px 0px;
  }
}
.retail_store .map {
  display: flex;
  border-radius: 10px;
  height: 413px;
}
@media (max-width: 991.98px) {
  .retail_store .map {
    flex-direction: column;
    height: auto;
  }
}
.retail_store .map .data {
  background: #82A24E;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: DIN Condensed;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  border-radius: 10px 0px 0px 10px;
}
@media (max-width: 991.98px) {
  .retail_store .map .data {
    border-radius: 10px 10px 0px 0px;
    padding: 15px;
    font-size: 24px;
    line-height: 24px;
  }
}
.retail_store .map .data .sub_title {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-transform: none;
  margin-bottom: auto;
}
@media (max-width: 991.98px) {
  .retail_store .map .data .sub_title {
    font-size: 14px;
  }
}
.retail_store .map .data .adress {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 25px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 991.98px) {
  .retail_store .map .data .adress {
    font-size: 14px;
    margin-top: 12px;
  }
}
.retail_store .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 991.98px) {
  .retail_store .map iframe {
    height: 385px;
    border-radius: 0px 0px 10px 10px;
  }
}

.page_title h1 {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Mulish;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  color: #111111;
}
@media (max-width: 575.98px) {
  .page_title h1 {
    font-size: 26px;
    line-height: 30px;
    margin-top: 14px;
    margin-bottom: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .page_title h1 {
    font-size: 26px;
    line-height: 30px;
    margin-top: 14px;
    margin-bottom: 16px;
  }
}

.age-verification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  max-width: 604px;
  max-height: 615px;
  width: 100%;
  padding: 59px 50px;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .age-verification {
    padding: 20px;
    width: calc(100% - 16px);
  }
}
.age-verification .logo {
  text-align: center;
  margin-bottom: 47px;
}
@media (max-width: 991.98px) {
  .age-verification .logo {
    margin-bottom: 20px;
  }
}
.age-verification .logo img {
  max-width: 122px;
}
.age-verification .title {
  text-align: center;
  font-family: DIN Condensed;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 47px;
}
@media (max-width: 991.98px) {
  .age-verification .title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.age-verification .age-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 47px;
}
@media (max-width: 991.98px) {
  .age-verification .age-buttons {
    margin-bottom: 20px;
  }
}
.age-verification .age-buttons .btn {
  border: none;
  height: 50px;
  border-radius: 5px;
  background: #877763;
  font-family: DIN Condensed;
  font-size: 25px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  width: calc(50% - 8px);
  cursor: pointer;
}
.age-verification .remember {
  margin-bottom: 17px;
}
.age-verification .remember label {
  font-family: DIN Pro;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}
.age-verification .policy-text {
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}
.age-verification .policy-text a {
  text-decoration: none;
  font-family: DIN Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}

.wc-block-components-button {
  background: #877763;
  padding: 0 !important;
  border: none;
  border-radius: 5px;
  height: 50px !important;
  min-height: 20px !important;
  text-decoration: none;
  font-family: DIN Condensed;
  font-size: 25px;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  transition: all 0.4ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-block-components-button:hover {
  background: #82A24E;
}
.wc-block-components-button:focus {
  background: #000000;
}
.wc-block-components-button.xoo-wsc-ft-btn-continue {
  background: #82A24E;
}

.xoo-wsc-modal .xoo-wsc-header .xoo-wsch-basket {
  display: none;
}
.xoo-wsc-modal .xoo-wsc-body .xoo-wsc-qtb-square {
  border: none;
  max-width: 100px;
}
.xoo-wsc-modal .xoo-wsc-body .xoo-wsc-qtb-square .xoo-wsc-minus {
  border-radius: 5px 0px 0px 5px;
  width: 30px;
  height: 30px;
  border: 1px solid #CFCFCF;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xoo-wsc-modal .xoo-wsc-body .xoo-wsc-qtb-square .xoo-wsc-qty {
  width: 40px;
  height: 30px;
  text-align: center;
  border: none;
}
.xoo-wsc-modal .xoo-wsc-body .xoo-wsc-qtb-square .xoo-wsc-plus {
  width: 30px;
  height: 30px;
  border: 1px solid #CFCFCF;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 5px 5px 0px;
}
.xoo-wsc-modal .xoo-wsc-footer .xoo-wsc-ft-btn-cart {
  display: none !important;
}
.xoo-wsc-modal .xoo-wsc-footer .xoo-wsc-ft-btn {
  background: #877763;
  border-radius: 5px;
  height: 50px;
  text-decoration: none;
  font-family: DIN Condensed;
  font-size: 25px;
  color: #fff;
  letter-spacing: 0%;
  text-transform: uppercase;
  grid-column: 1/-1;
  transition: all 0.4ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xoo-wsc-modal .xoo-wsc-footer .xoo-wsc-ft-btn:hover {
  background: #82A24E;
}
.xoo-wsc-modal .xoo-wsc-footer .xoo-wsc-ft-btn:focus {
  background: #000000;
}
.xoo-wsc-modal .xoo-wsc-footer .xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue {
  background: #82A24E;
}

/**/
/*-------------------------------------*/
.not_found_page .data {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 96px;
  margin-bottom: 180px;
}
.not_found_page .data .title h1 {
  font-family: Mulish;
  font-size: 56px;
  font-weight: 900;
  line-height: 56px;
  color: #EA4B55;
  margin-bottom: 30px;
}
.not_found_page .data .sub_title {
  font-family: Mulish;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  color: #111111;
  margin-bottom: 6px;
}
.not_found_page .data .desc {
  font-family: Mulish;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #111111;
  max-width: 357px;
  margin-bottom: 54px;
}
.not_found_page .data .link a {
  background: #19AD47;
  border-radius: 4px;
  width: 357px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.08px;
  color: #FFFFFF;
}

.page-template-page_comparison {
  background: #fff;
}

.woocommerce-checkout .woocommerce-message {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .info {
  background: #fff;
  padding: 40px;
  margin-bottom: 4px;
}
.woocommerce-checkout .bag_page .info_bag .payment {
  background: #fff;
  padding: 40px;
}
.woocommerce-checkout .bag_page .info_bag .title {
  font-family: Mulish;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.59px;
  color: #111111;
  margin-bottom: 16px;
  padding-left: 10px;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row {
  width: calc(50% - 6px);
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row {
    width: calc(100% - 6px);
  }
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row#billing_phone_field .wpcf7-form-control-wrap select {
  height: 48px;
  background: #F1F8F3;
  border-radius: 4px;
  padding: 0px 16px;
  border-color: transparent;
  width: 95px;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row#billing_phone_field input {
  width: calc(100% - 100px);
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row label {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row input {
  height: 48px;
  background: #F1F8F3;
  border-radius: 4px;
  padding: 0px 16px;
  border-color: transparent;
  width: 100%;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #111111;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row input::-moz-placeholder {
  color: #6A6A6A;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row input::placeholder {
  color: #6A6A6A;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .form-row .select2-container {
  height: 48px;
  background: #F1F8F3;
  border-radius: 4px;
  padding: 0px 16px;
  border-color: transparent;
  width: 100%;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields .select2-container--default .select2-selection--single {
  background: transparent;
  border: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields #billing_company_field {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .delivery_fields #billing_country_field {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .wcus-checkout-fields h3 {
  font-size: 1rem;
  line-height: 1.125rem;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-billing-fields .wcus-checkout-fields .zen-ui-select__value {
  height: 64px;
  background: #EDEDED;
  border-radius: 0.5rem;
  padding: 1rem;
  border-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .select2-container--default .select2-selection--single {
  background: transparent;
  border: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping h3 {
  font-size: 0.75rem;
  line-height: 0.875rem;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .woocommerce-shipping-fields__field-wrapper .form-row {
  width: calc(50% - 6px);
  position: relative;
  margin-bottom: 15px;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .woocommerce-shipping-fields__field-wrapper .form-row label {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .woocommerce-shipping-fields__field-wrapper .form-row input {
  height: 48px;
  background: #F1F8F3;
  border-radius: 0.5rem;
  padding: 1rem;
  border-color: transparent;
  width: 100%;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .woocommerce-shipping-fields__field-wrapper .form-row .select2-container {
  height: 48px;
  background: #F1F8F3;
  border-radius: 0.5rem;
  padding: 1rem;
  border-color: transparent;
  width: 100%;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .woocommerce-shipping-fields__field-wrapper #shipping_company_field {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .woocommerce-shipping-fields__field-wrapper #shipping_country_field {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .wcus-checkout-fields h3 {
  font-size: 1rem;
  line-height: 1.125rem;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce_checkout_shipping .wcus-checkout-fields .zen-ui-select__value {
  height: 48px;
  background: #EDEDED;
  border-radius: 0.5rem;
  padding: 1rem;
  border-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-additional-fields .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-additional-fields .form-row textarea {
  height: 64px;
  background: #F1F8F3;
  border-radius: 4px;
  padding: 16px;
  border-color: transparent;
  width: 100%;
  height: 80px;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #111111;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-additional-fields .form-row textarea::-moz-placeholder {
  color: #6A6A6A;
}
.woocommerce-checkout .bag_page .info_bag .woocommerce-additional-fields .form-row textarea::placeholder {
  color: #6A6A6A;
}
.woocommerce-checkout .bag_page .info_bag .payment ul {
  list-style: none;
  padding-left: 0;
}
.woocommerce-checkout .bag_page .info_bag .payment ul img {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .payment ul li {
  margin-bottom: 16px;
}
.woocommerce-checkout .bag_page .info_bag .payment ul li input {
  display: none;
}
.woocommerce-checkout .bag_page .info_bag .payment ul li label {
  cursor: pointer;
  display: flex;
}
.woocommerce-checkout .bag_page .info_bag .payment ul li label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #E0E0E0;
  border-radius: 40px;
  display: flex;
  margin-right: 15px;
}
.woocommerce-checkout .bag_page .info_bag .payment ul li input:checked ~ label::before {
  content: "";
  border: 6px solid #4CA429;
  width: 8px;
  height: 8px;
}
.woocommerce-checkout .bag_page .info_bag .payment #place_order {
  display: none;
}
.woocommerce-checkout .bag_page .data_bag {
  background: #fff;
  padding: 1.25rem;
}
.woocommerce-checkout .bag_page .data_bag .block_head {
  font-family: Mulish;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.59px;
  color: #111111;
  margin-bottom: 15px;
}
.woocommerce-checkout .bag_page .data_bag .product_list {
  margin-bottom: 1.25rem;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item {
  display: flex;
  border-bottom: 1px solid #C9C9C9;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  flex-wrap: wrap;
  width: 100%;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .image {
  width: 80px;
  margin-right: 5px;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .image img {
  max-width: 100%;
  height: auto;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product_data {
  width: calc(100% - 186px);
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity .quantity {
  display: flex;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity input {
  width: 30px;
  border: 0;
  text-align: center;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
  font-family: Mulish;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.59px;
  color: #111111;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity input::-webkit-outer-spin-button, .woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity input[type=number] {
  -moz-appearance: textfield;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity button {
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E0E1E0;
  border: 0;
  cursor: pointer;
  transition: all 0.4ms;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product-quantity button:hover {
  background: #19AD47;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .price_info {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .price_info .price {
  font-family: Mulish;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  color: #111111;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product_title a {
  text-decoration: none;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.08px;
  color: #0C0D0D;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product_title .variation .variation- {
  margin: 0;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .product_title .variation .variation- p {
  margin: 0;
}
.woocommerce-checkout .bag_page .data_bag .product_list .item .delete_product a {
  font-family: Mulish;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #19AD47;
}
.woocommerce-checkout .bag_page .data_bag .delivery {
  font-size: 0;
}
.woocommerce-checkout .bag_page .data_bag .delivery .title {
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  color: #202020;
  margin-bottom: 15px;
}
.woocommerce-checkout .bag_page .data_bag .delivery ul {
  list-style: none;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: #202020;
}
.woocommerce-checkout .bag_page .data_bag .delivery ul li {
  margin-bottom: 16px;
}
.woocommerce-checkout .bag_page .data_bag .delivery ul li input {
  display: none;
}
.woocommerce-checkout .bag_page .data_bag .delivery ul li label {
  cursor: pointer;
  display: flex;
}
.woocommerce-checkout .bag_page .data_bag .delivery ul li label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #E0E0E0;
  border-radius: 40px;
  display: flex;
  margin-right: 15px;
}
.woocommerce-checkout .bag_page .data_bag .delivery ul li input:checked ~ label::before {
  content: "";
  border: 6px solid #4CA429;
  width: 8px;
  height: 8px;
}
.woocommerce-checkout .bag_page .data_bag .delivery ul li .shipping-method-description {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  margin-top: 5px;
}
.woocommerce-checkout .bag_page .data_bag .total {
  margin-bottom: 8px;
}
.woocommerce-checkout .bag_page .data_bag .total .order-total {
  text-align: end;
}
.woocommerce-checkout .bag_page .data_bag .confirm .btn_style {
  text-transform: uppercase;
  background: #19AD47;
  color: #fff;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.08px;
  border-radius: 4px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
}

.wc-block-checkout__payment-method {
  display: none;
}

.privacy-policy .page_title {
  margin-bottom: 20px;
}
.privacy-policy .wp-content-style {
  line-height: 1.6;
}
.privacy-policy p {
  margin: 1em 0;
}
.privacy-policy ul, .privacy-policy ol {
  margin: 1em 0;
  padding-left: 2em;
}
.privacy-policy blockquote {
  border-left: 4px solid #ccc;
  padding: 0.5em 1em;
  background-color: #f9f9f9;
  font-style: italic;
  margin: 1em 0;
}
.privacy-policy table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}
.privacy-policy table th,
.privacy-policy table td {
  border: 1px solid #ddd;
  padding: 8px;
}
.privacy-policy iframe {
  max-width: 100%;
}
.privacy-policy img {
  max-width: 100%;
  height: auto;
}
.privacy-policy .alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.privacy-policy .alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.privacy-policy .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}/*# sourceMappingURL=style.css.map */