/* animation */
@-webkit-keyframes shine {
  100% {
    left: 150%;
  }
}
@keyframes shine {
  100% {
    left: 150%;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  25% {
    -webkit-transform: translate(-50%, -50%) scale(0.25);
            transform: translate(-50%, -50%) scale(0.25);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.4;
  }
  75% {
    -webkit-transform: translate(-50%, -50%) scale(0.75);
            transform: translate(-50%, -50%) scale(0.75);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  25% {
    -webkit-transform: translate(-50%, -50%) scale(0.25);
            transform: translate(-50%, -50%) scale(0.25);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
  75% {
    -webkit-transform: translate(-50%, -50%) scale(0.75);
            transform: translate(-50%, -50%) scale(0.75);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
/* fonts */
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro.eot');
  src: local('Gotham Pro'), local('GothamPro'), url('../fonts/GothamPro.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro.woff') format('woff'), url('../fonts/GothamPro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro-Medium.eot');
  src: local('Gotham Pro Medium'), local('GothamPro-Medium'), url('../fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Medium.woff') format('woff'), url('../fonts/GothamPro-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro-Bold.eot');
  src: local('Gotham Pro Bold'), local('GothamPro-Bold'), url('../fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Bold.woff') format('woff'), url('../fonts/GothamPro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* common */
body {
  font-family: 'Gotham Pro', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #494d5c;
  scroll-behavior: smooth;
}
section {
  position: relative;
}
a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
a:focus,
input:focus,
button:focus,
video:focus,
.slick-slide:focus {
  outline: none;
}
p {
  margin-bottom: 0;
}
.button,
a.button,
input[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 360px;
  height: 60px;
  position: relative;
  overflow: hidden;
  border: none;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  background-color: #ffb400;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover,
a.button:hover,
input[type=submit]:hover,
.button:focus,
a.button:focus,
input[type=submit]:focus,
.button:active,
a.button:active,
input[type=submit]:active {
  outline: none;
  text-decoration: none;
}
.button::before,
a.button::before,
input[type=submit]::before {
  position: absolute;
  top: 0;
  left: -3000%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: shine 5s infinite;
          animation: shine 5s infinite;
}
.button.button-small,
a.button.button-small,
input[type=submit].button-small {
  max-width: 200px;
}
::-webkit-input-placeholder {
  color: #323642;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #323642;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #323642;
  opacity: 1;
}
::placeholder {
  color: #323642;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #323642;
}
::-ms-input-placeholder {
  color: #323642;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto 20px auto;
  width: 100%;
  max-width: 360px;
  height: 60px;
  padding: 10px;
  background-color: #f8fff0;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #7ab532;
}
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:active,
input[type="tel"]:active,
input[type="email"]:active,
input[type="text"].active,
input[type="tel"].active,
input[type="email"].active {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f8fff0;
  margin: 10px auto 10px auto;
  width: 100%;
  padding: 10px;
  text-align: left;
  max-width: 360px;
  border: 1px solid #7ab532;
  border-radius: 6px;
  font-size: 16px;
}
input[type=checkbox] {
  display: none;
  width: 0;
}
input[type=checkbox] + span {
  text-align: left;
  font-size: 12px;
  color: #fff;
}
input[type=checkbox] + span a {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
}
input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #67883e;
  border-radius: 2px;
  position: static;
  margin-right: 8px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
input[type=checkbox]:checked + span::before {
  background: #67883e url('../img/checkbox.png') center center no-repeat;
  background-size: 8px 8px;
}
strong,
.bold {
  font-weight: bold;
}
.small {
  font-size: 12px;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.green {
  color: #7ab532;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* typography */
.h1 {
  color: #fff;
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
}
.h2 {
  font-size: 40px;
  font-weight: bold;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
  font-weight: bold;
}
.podheader {
  font-size: 22px;
  color: #919aa6;
  margin: 30px auto 50px;
}
/* header */
.header {
  padding-top: 8px;
  background: #fff;
}
.logo {
  display: block;
  max-width: 310px;
  color: #494d5c !important;
}
.logo:hover {
  text-decoration: none;
}
.logo img {
  max-width: 70px;
}
.logo-text {
  margin-left: 15px;
}
.logo .bold {
  display: block;
  line-height: 1;
  font-size: 26px;
  margin-top: 5px;
  /* margin-bottom: 5px; */
}
.logo .small {
  font-size: 21px;
  font-weight: bold;
}
.contact-item-data {
  padding-left: 30px;
  margin-top: 0px;
  color: #494d5c;
}
.contact-item-address {
  margin-top: 3px;
  padding-left: 24px;
  background: url(../img/placeholder-icon.png) left top no-repeat;
  background-size: 14px 20px;
  font-size: 14px;
}
.contact-item-mail {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: url(../img/mail-icon.png) left center no-repeat;
  background-size: 19px 14px;
  font-size: 14px;
}
.contact-item-mail a {
  display: inline-block;
  margin-left: 5px;
  color: #0072ce;
  text-decoration: underline;
}
.contact-item-phone {
  display: block;
  font-weight: bold;
  font-size: 18px;
  background: url(../img/phone-icon.png) left center no-repeat;
  background-size: 19px 20px;
}
.contact-item-phone:hover {
  text-decoration: none;
  color: #494d5c;
}
.contact-item-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.contact-item-social a {
  display: block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
/* navbar */
.navbar {
  margin-top: 20px;
  background-color: #7ab532;
  padding: 0 15px;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}
.navbar-expand-xl .navbar-nav {
  width: calc(100% - 200px);
  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;
}
.navbar-expand-xl .navbar-nav .nav-item:before {
  display: none;
}
.navbar-expand-xl .navbar-nav .nav-link {
  color: #fff;
  padding: 12px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-expand-xl .navbar-nav .nav-link:hover {
  color: #eee;
}
.navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle {
  background-color: #67883e;
  color: #fff;
  width: 295px;
  padding: 12px 45px 12px 80px;
  position: relative;
}
.navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle:before {
  content: "";
  display: block;
  margin: 0;
  border: none;
  width: 31px;
  height: 22px;
  background: url(../img/menu.png) center no-repeat;
  background-size: contain;
  position: absolute;
  left: 25px;
  top: 13px;
}
.navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle:after {
  content: "";
  display: block;
  margin: 0;
  vertical-align: auto;
  border: none;
  width: 16px;
  height: 8px;
  background: url(../img/down-arrow.png) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 18px;
  top: 22px;
}
.navbar-brand {
  color: #fff;
}
.dropdown-menu {
  padding: 0;
  margin-top: 0;
  border-radius: 0;
  border: 1px solid #f5f8f9;
  border-top: none;
  background-color: #fff;
  top: 100%;
  -webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.05);
}
.dropdown-menu .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: 1px solid #f5f8f9;
  width: 293px;
  height: 60px;
  font-size: 14px;
  color: #494d5c;
  font-weight: bold;
  line-height: 1.2;
  white-space: normal;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item.active {
  background-color: #f5f8f9;
  color: #494d5c;
}
.dropdown-menu .dropdown .dropdown-item:after {
  content: "";
  display: block;
  margin: 0;
  vertical-align: auto;
  border: none;
  width: 10px;
  height: 15px;
  background: url(../img/left.png) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 22px;
}
.dropdown-menu .dropdown-menu {
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 0;
  border: 1px solid #f5f8f9;
  border-top: none;
  background-color: #fff;
  min-width: 293px;
  display: none;
}
.dropdown-menu .dropdown-menu .dropdown-item:after {
  display: none;
}
.dropdown-menu .dropdown-menu .dropdown-item {
  font-weight: 500;
}
#searchform {
  position: relative;
  width: 200px;
  height: 40px;
  margin-left: 50px;
}
#searchform input[type=text].search-input {
  display: block;
  position: absolute;
  width: 200px;
  height: 40px;
  margin: 0;
  padding-left: 40px;
  border: 1px solid #7ab532;
  border-radius: 3px;
  font-size: 15px;
  text-align: left;
}
#searchform .search-button {
  display: block;
  padding: 0;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.no-results #searchform {
  margin-left: 0;
  margin-top: 30px;
}
/* main */
.main-page {
  background-color: #fafafa;
  padding-bottom: 60px;
}
.main-block {
  padding: 40px 15px 60px;
}
.main-banner {
  height: 580px;
  margin-bottom: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.main-banner-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #494d5c;
  opacity: 0.4;
}
.main-banner-text {
  position: absolute;
  top: 40px;
  left: 40px;
}
.main .podheader {
  color: #f2f2f2;
  font-weight: 500;
  font-size: 32px;
}
/* sidebar */
.sidebar-catalog .dropdown-menu {
  display: block;
  position: relative;
  margin-bottom: 40px;
  top: 0;
  float: none;
}
.sidebar-catalog .dropdown-menu .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: 1px solid #f5f8f9;
  padding: 0.25rem 1.5rem;
  height: 60px;
  font-size: 14px;
  color: #494d5c;
  font-weight: bold;
  line-height: 1.2;
  white-space: normal;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar-catalog .dropdown-menu .nav-link:hover,
.sidebar-catalog .dropdown-menu .nav-link:focus,
.sidebar-catalog .dropdown-menu .nav-link:active,
.sidebar-catalog .dropdown-menu .nav-link.active {
  background-color: #f5f8f9;
  color: #494d5c;
}
.sidebar-catalog .dropdown-menu .dropdown .nav-link:after {
  content: "";
  display: block;
  margin: 0;
  vertical-align: auto;
  border: none;
  width: 10px;
  height: 15px;
  background: url(../img/left.png) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 22px;
}
.sidebar-catalog .dropdown-menu .dropdown-menu {
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 0;
  border: 1px solid #f5f8f9;
  border-top: none;
  background-color: #fff;
  min-width: 293px;
  display: none;
}
.sidebar-catalog .dropdown-menu .dropdown-menu .dropdown-item:after {
  display: none;
}
.quickform {
  padding: 30px;
  border-radius: 4px;
  background-color: #7ab532;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.quickform.sticky-top {
  top: 186px;
}
.quickform h4 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
}
.quickform label {
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
}
.quickform input[type="text"],
.quickform input[type="tel"],
.quickform input[type="email"] {
  margin: 5px auto 10px auto;
  font-size: 14px;
  max-width: 300px;
}
.quickform .button {
  font-size: 12px;
  margin: 20px auto;
}
/* forma */
.forma {
  padding: 70px 0;
  position: relative;
  border-top: 1px solid #d5f1b6;
}
.forma:before {
  content: '';
  width: 355px;
  height: 222px;
  background: url(../img/pshenica.png) center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.forma:after {
  content: '';
  width: 280px;
  height: 196px;
  background: url(../img/kukuruza.png) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50px;
}
.forma h2,
.forma .podheader {
  text-align: center;
}
.forma-block {
  max-width: 760px;
  margin: 0 auto;
}
.forma .button {
  margin: 0 auto;
}
/* contacts */
.contacts {
  padding: 60px 0;
  background-color: #fafafa;
}
.contacts h2,
.contacts .podheader {
  text-align: center;
}
/* pages */
.search-results .post {
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #ededed;
}
.catalog-page {
  padding-top: 0;
}
.catalog-page .main-cat-img {
  height: 220px;
}
.catalog-page .main-cat-text {
  font-weight: normal;
}
.breadcrumbs,
.woocommerce-breadcrumb {
  margin-bottom: 40px;
}
.breadcrumbs span,
.woocommerce-breadcrumb span,
.breadcrumbs a,
.woocommerce-breadcrumb a {
  color: #b2b4b8;
}
.breadcrumbs span:hover,
.woocommerce-breadcrumb span:hover,
.breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumbs span.breadcrumb_last,
.woocommerce-breadcrumb span.breadcrumb_last,
.breadcrumbs a.breadcrumb_last,
.woocommerce-breadcrumb a.breadcrumb_last {
  color: #494d5c;
}
.site-main {
  margin-bottom: 60px;
}
.entry-header {
  margin-bottom: 40px;
}
.entry-footer {
  margin-top: 30px;
}
.contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-page {
  padding-top: 40px;
  padding-bottom: 80px;
}
.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid #dedede;
  padding-bottom: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.news-item-img {
  display: block;
  width: 200px;
  height: 150px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  margin-right: 30px;
}
.news-item-text {
  width: calc(100% - 240px);
}
.news-item-header {
  font-size: 20px;
  color: #494d5c;
}
.news-item-header:hover,
.news-item-header:visited,
.news-item-header:focus {
  text-decoration: none;
  color: #494d5c;
}
.excerpt {
  margin-top: 20px;
  margin-bottom: 15px;
}
.more {
  font-weight: bold;
  color: #ffb400;
}
.more:hover,
.more:visited,
.more:focus {
  text-decoration: none;
  color: #ffb400;
}
.post-thumbnail {
  margin-top: 30px;
  margin-bottom: 30px;
}
table {
  width: 100%;
  max-width: 100%;
}
table td,
table th {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid #dee2e6;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-spinner {
  display: none;
}
.widget-vendors ul li {
  margin-bottom: 8px;
}
.widget-vendors ul li a {
  font-size: 14px;
  color: #c3c4c7;
  display: block;
  line-height: 1;
}
.mdf_shortcode_container {
  background-color: #fff;
  color: #c4c5c6;
  padding: 30px 20px;
  border-radius: 6px;
  margin-bottom: 50px;
  font-size: 13px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}
.mdf_shortcode_container h5.data-filter-section-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #494d5c;
  font-style: normal;
}
.mdf_shortcode_container label {
  display: inline;
}
.mdf_shortcode_container ul.mdf_taxonomy_check_list li {
  margin-bottom: 10px;
}
.mdf_shortcode_container .mdf_shortcode_submit_button {
  float: left;
}
.mdf_shortcode_container .mdf_shortcode_reset_button {
  float: right;
}
.mdf_shortcode_container .mdf_button {
  padding: 10px;
  width: 100px;
  font-size: 10px;
}
.mdf_shortcode_container .mdf_button.mdf_reset_button {
  background-color: transparent;
  border: 1px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #494d5c;
}
.mdf_shortcode_container .mdf_button.mdf_reset_button:hover {
  -webkit-transform: none;
          transform: none;
}
.mdf_shortcode_container .mdf_tax_filter_section {
  width: 100%;
}
.mdf_shortcode_container .mdf_tax_filter_section::-webkit-scrollbar {
  width: 7px;
  background-color: #edeff3;
}
.mdf_shortcode_container .mdf_tax_filter_section::-webkit-scrollbar-thumb {
  background-color: #d8dcdf;
}
.pagination {
  margin-top: 40px;
  margin-left: 30px;
  font-size: 18px;
}
.pagination a {
  display: inline-block;
  font-weight: bold;
  color: #c3c4c7;
  margin-right: 6px;
}
.pagination a:hover {
  color: #494d5c;
  text-decoration: none;
}
.pagination span {
  display: inline-block;
  font-weight: bold;
  color: #c3c4c7;
  margin-right: 6px;
}
.pagination span.current {
  color: #ffb400;
}
.filter-mobile {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ffb400;
  max-width: 100px;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
}
ul.sub_categories li a {
  display: block;
  margin-bottom: 6px;
  color: #c4c5c6;
  font-size: 15px;
}
/* woocommerce */
.cart-contents {
    display: block;
    width: 35px;
    height: 33px;
    background: url(../img/cart.svg) center no-repeat;
    background-size: contain;
    color: #fff;
    position: relative;
}
.cart-contents .count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    position: absolute;
    top: -10px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 12px;
    background-color: #f15a29;
}
.cart-contents:hover, .cart-contents:visited {
    color: #fff;
    text-decoration: none;
}
#fixed-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 160px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 9999;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding-top: 6px;
    padding-right: 6px;
}
#fixed-cart.show {
  opacity: 1;
  visibility: visible;
}
.woocommerce ul.products.columns-3,
.woocommerce-page ul.products.columns-3,
.woocommerce ul.wc-block-grid__products,
.woocommerce-page ul.wc-block-grid__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product,
.woocommerce ul.wc-block-grid__products li.product,
.woocommerce-page ul.wc-block-grid__products li.product,
.woocommerce ul.products.columns-3 li.wc-block-grid__product,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product {
  padding: 15px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 30%;
  margin: 15px 4% 15px 0;
}
.woocommerce ul.products.columns-3 li.product.last,
.woocommerce-page ul.products.columns-3 li.product.last,
.woocommerce ul.wc-block-grid__products li.product.last,
.woocommerce-page ul.wc-block-grid__products li.product.last,
.woocommerce ul.products.columns-3 li.wc-block-grid__product.last,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product.last,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product.last,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product.last {
  margin-right: 0;
}
.woocommerce ul.products.columns-3 li.product a:hover,
.woocommerce-page ul.products.columns-3 li.product a:hover,
.woocommerce ul.wc-block-grid__products li.product a:hover,
.woocommerce-page ul.wc-block-grid__products li.product a:hover,
.woocommerce ul.products.columns-3 li.wc-block-grid__product a:hover,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product a:hover,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product a:hover,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product a:hover {
  text-decoration: none;
}
.woocommerce ul.products.columns-3 li.product .woocommerce-loop-category__title,
.woocommerce-page ul.products.columns-3 li.product .woocommerce-loop-category__title,
.woocommerce ul.wc-block-grid__products li.product .woocommerce-loop-category__title,
.woocommerce-page ul.wc-block-grid__products li.product .woocommerce-loop-category__title,
.woocommerce ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-category__title,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-category__title,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-category__title,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-category__title,
.woocommerce ul.products.columns-3 li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products.columns-3 li.product .woocommerce-loop-product__title,
.woocommerce ul.wc-block-grid__products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.wc-block-grid__products li.product .woocommerce-loop-product__title,
.woocommerce ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-product__title,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-product__title,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-product__title,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-product__title {
  display: block;
  font-size: 16px;
  color: #494d5c;
  font-weight: 500;
  height: 60px;
  margin-top: 15px;
  overflow: hidden;
}
.woocommerce ul.products.columns-3 li.product .woocommerce-loop-category__title:hover,
.woocommerce-page ul.products.columns-3 li.product .woocommerce-loop-category__title:hover,
.woocommerce ul.wc-block-grid__products li.product .woocommerce-loop-category__title:hover,
.woocommerce-page ul.wc-block-grid__products li.product .woocommerce-loop-category__title:hover,
.woocommerce ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-category__title:hover,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-category__title:hover,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-category__title:hover,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-category__title:hover,
.woocommerce ul.products.columns-3 li.product .woocommerce-loop-product__title:hover,
.woocommerce-page ul.products.columns-3 li.product .woocommerce-loop-product__title:hover,
.woocommerce ul.wc-block-grid__products li.product .woocommerce-loop-product__title:hover,
.woocommerce-page ul.wc-block-grid__products li.product .woocommerce-loop-product__title:hover,
.woocommerce ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-product__title:hover,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product .woocommerce-loop-product__title:hover,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-product__title:hover,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-loop-product__title:hover {
  color: #494d5c;
}
.woocommerce ul.products.columns-3 li.product img,
.woocommerce-page ul.products.columns-3 li.product img,
.woocommerce ul.wc-block-grid__products li.product img,
.woocommerce-page ul.wc-block-grid__products li.product img,
.woocommerce ul.products.columns-3 li.wc-block-grid__product img,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product img,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product img,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product img {
  margin: 0 auto;
}
.woocommerce ul.products.columns-3 li.product .button,
.woocommerce-page ul.products.columns-3 li.product .button,
.woocommerce ul.wc-block-grid__products li.product .button,
.woocommerce-page ul.wc-block-grid__products li.product .button,
.woocommerce ul.products.columns-3 li.wc-block-grid__product .button,
.woocommerce-page ul.products.columns-3 li.wc-block-grid__product .button,
.woocommerce ul.wc-block-grid__products li.wc-block-grid__product .button,
.woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product .button {
  display: none;
}
.woocommerce nav.woocommerce-pagination,
.woocommerce-page nav.woocommerce-pagination {
  margin-top: 40px;
  font-size: 20px;
}
.woocommerce nav.woocommerce-pagination ul,
.woocommerce-page nav.woocommerce-pagination ul {
  border: none;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-page nav.woocommerce-pagination ul li {
  padding: 5px;
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page nav.woocommerce-pagination ul li span.current {
  font-weight: bold;
  background-color: transparent;
  color: #7ab532;
}
.woocommerce h1.product_title,
.woocommerce-page h1.product_title {
  font-size: 24px;
  margin-bottom: 30px;
}
.woocommerce .price,
.woocommerce-page .price {
  margin: 10px auto 25px;
  font-size: 18px;
  color: #7ab532;
  font-weight: bold;
}
.woocommerce .flex-viewport,
.woocommerce-page .flex-viewport {
  max-width: 300px;
  margin: 0 auto;
}
.woocommerce .form-row,
.woocommerce-page .form-row {
  display: block;
}
.woocommerce-checkout label,
.woocommerce-page-checkout label {
  min-width: 160px;
}
.woocommerce-checkout input,
.woocommerce-page-checkout input {
  min-width: 280px;
  margin-bottom: 10px;
}
.woocommerce-checkout input[type=checkbox],
.woocommerce-page-checkout input[type=checkbox],
.woocommerce-checkout input[type=radio],
.woocommerce-page-checkout input[type=radio] {
  min-width: auto;
}
.woocommerce-checkout h3,
.woocommerce-page-checkout h3 {
  margin: 20px 0;
}
.woocommerce-products-header {
  margin-bottom: 40px;
}
.product_meta {
  margin-top: 30px;
}
.product_meta .posted_in {
  font-size: 15px;
}
.product_meta a {
  color: #7ab532;
}
.product_meta .sku_wrapper {
  display: block;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
  padding: 15px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  margin-right: 10px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:visited,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:visited,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:visited,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:visited,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:visited,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:visited,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:visited,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:visited {
  color: #fff;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:active,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:active,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:active,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:active,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:active,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:active,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:active,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:active {
  color: #fff;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.wc-forward,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.wc-forward,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.wc-forward,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.wc-forward,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.wc-forward,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.wc-forward,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.wc-forward,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.wc-forward {
  width: auto;
  height: auto;
  padding: 5px;
}
.wc-block-components-button:not(.is-link) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #7ab532;
  color: #fff;
  border: none;
  outline: 0;
  height: 60px !important;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#price_calculator {
  max-width: 220px;
}
.summary form.cart {
  display: block;
  /*
    .button-light {
      font-size: 13px;
      height: 78px;
      transform: translateY(3px);
    }*/
}
.summary form.cart .quantity {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}
.summary form.cart .button {
  display: inline-block;
  max-width: 210px;
  margin: 0 30px 0 0;
}
.summary form.cart .header-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 210px;
}
.woocommerce-tabs {
  margin-top: 50px;
}
.woocommerce-tabs ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.woocommerce-tabs ul.tabs li {
  min-width: 120px;
  text-align: center;
  padding: 5px 15px;
  border: 1px solid #ddd;
  border-bottom: 1px solid transparent;
  font-weight: bold;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.woocommerce-tabs ul.tabs li a {
  color: #494d5c;
}
.woocommerce-tabs ul.tabs li.additional_information_tab {
  -webkit-transform: translate(-1px, 1px);
          transform: translate(-1px, 1px);
}
.woocommerce-tabs ul.tabs li.active {
  border-bottom: 1px solid #fff;
}
.woocommerce-tabs table tbody tr td,
.woocommerce-tabs table tbody tr th {
  padding: 0.5rem;
  border: 1px solid #ddd;
}
.woocommerce-tabs .entry-content {
  margin-top: 0;
  border-top: 1px solid #ddd;
  padding: 40px 0;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  background-color: #fff !important;
  border: 2px solid #0f834d;
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px 10px 15px 10px;
  margin-bottom: 30px;
}
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-noreviews .button,
p.no-comments .button {
  margin: 0 10px 0 0;
  font-size: 10px;
  letter-spacing: normal;
  width: 180px;
  height: 50px;
}
.wc-proceed-to-checkout .button {
  margin-right: 0;
}
.woocommerce-checkout input[type=text],
.woocommerce-checkout input[type=tel],
.woocommerce-checkout input[type=email] {
  margin-left: 0;
  max-width: 100%;
  text-align: left;
}
.woocommerce-checkout .form input[type=text],
.woocommerce-checkout .form input[type=tel],
.woocommerce-checkout .form input[type=email] {
  text-align: center;
}
.woocommerce-shipping-methods {
  margin-left: 0;
  list-style: none;
}
.woocommerce-shipping-methods label {
  margin-left: 10px;
}
.product-subcats {
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-subcats a {
  display: block;
  padding: 15px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 23%;
  margin: 15px 2.5% 15px 0;
  color: #494d5c;
}
.product-subcats a:hover,
.product-subcats a:focus {
  text-decoration: none;
}
.woocommerce-result-count,
.woocommerce-ordering {
  display: none;
}
.woocommerce-MyAccount-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.woocommerce-MyAccount-navigation ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-width: 100px;
  border: 1px solid #7ab532;
  border-radius: 3px;
  padding: 8px;
  margin: 10px;
  font-size: 16px;
  font-weight: bold;
}
.woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.4;
  color: #888;
  margin-bottom: 30px;
}
.wc-block-checkout .wc-block-components-product-metadata__description {
  display: none;
}
.wc-block-grid__product-add-to-cart {
  display: none;
}
section.related {
  padding: 0;
}
/* footer */
.footer {
  padding: 60px 0 40px;
  background-color: #313131;
  font-size: 14px;
}
.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer p {
  color: #919aa6;
  margin-bottom: 20px;
}
.footer a {
  color: #919aa6;
  display: block;
  margin-bottom: 20px;
}
.footer a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-social a {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footer .grey {
  color: #919aa6;
}
/* up button */
#up {
  display: block;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #d2d2d2;
  text-align: center;
  position: fixed;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 9999;
  cursor: pointer;
}
#up:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/up.svg) center no-repeat;
  background-size: contain;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#up.show {
  opacity: 0.5;
}
#up.show:hover {
  opacity: 1;
}
/* modal */
.modal-content {
  border-radius: 8px;
  border: none;
}
.modal-body {
  border-radius: 6px;
  background-color: #7ab532;
  color: #fff;
  padding: 40px 20px;
}
.modal h4 {
  margin-bottom: 25px;
}
.modal label {
  display: block;
  font-size: 12px;
  margin-bottom: 0;
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.modal input[type="text"],
.modal input[type="tel"],
.modal input[type="email"] {
  height: 70px;
}
.modal .button {
  height: 70px;
  margin: 10px auto 20px;
}
/* media */
@media (max-width: 1400px) {
  .forma:before,
  .forma:after {
    display: none;
  }
}
@media (min-width: 1360px) {
  .container {
    max-width: 1300px;
  }
  .quickform {
    padding: 30px 20px;
  }
  .quickform h4 {
    font-size: 17px;
  }
  .quickform .button {
    font-size: 13px;
    padding: 20px 10px;
  }
}
@media (max-width: 1359px) {
  .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle {
    width: 255px;
    padding: 12px 45px;
  }
  .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle:before {
    display: none;
  }
  .dropdown-menu .dropdown-item {
    width: 253px;
  }
  .sidebar-catalog .dropdown-menu .dropdown-menu {
    min-width: 253px;
  }
  .h1,
  h1 {
    font-size: 2.3rem;
  }
  .quickform {
    padding: 25px 15px;
  }
  .podheader {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .header {
    padding-top: 0;
  }
  .contact-item-phone {
    font-size: 16px;
  }
  .logo .bold {
    font-size: 23px;
    margin-bottom: 0;
  }
  .logo .small {
    font-size: 15px;
  }
  .navbar {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-top: 0;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    background-color: #fff;
  }
  .navbar-collapse {
    width: 100%;
    padding: 20px 0;
  }
  .navbar-brand {
    color: #494d5c;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 0;
    margin-right: 0;
  }
  .navbar-brand img {
    max-width: 60px;
  }
  .navbar-toggler {
    width: 55px;
    height: 45px;
    position: relative;
  }
  .navbar-toggler .burger {
    position: absolute;
    display: block;
    width: 55px;
    height: 4px;
    border-radius: 2px;
    background-color: transparent;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .navbar-toggler .burger:focus {
    outline: none;
  }
  .navbar-toggler .burger:before {
    content: '';
    display: block;
    width: 55px;
    height: 4px;
    border-radius: 2px;
    background-color: #ffb400;
    position: absolute;
    right: 0;
    top: -19px;
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .navbar-toggler .burger:after {
    content: '';
    display: block;
    width: 55px;
    height: 4px;
    border-radius: 2px;
    background-color: #ffb400;
    position: absolute;
    right: 0;
    bottom: -19px;
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navbar-toggler.collapsed {
    width: 55px;
    height: 45px;
    position: relative;
  }
  .navbar-toggler.collapsed .burger {
    position: absolute;
    display: block;
    width: 55px;
    height: 4px;
    border-radius: 2px;
    background-color: #ffb400;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .navbar-toggler.collapsed .burger:focus {
    outline: none;
  }
  .navbar-toggler.collapsed .burger:before {
    content: '';
    display: block;
    width: 55px;
    height: 4px;
    border-radius: 2px;
    background-color: #ffb400;
    position: absolute;
    right: 0;
    top: -15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .navbar-toggler.collapsed .burger:after {
    content: '';
    display: block;
    width: 55px;
    height: 4px;
    border-radius: 2px;
    background-color: #ffb400;
    position: absolute;
    right: 0;
    bottom: -15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .navbar-expand-xl .navbar-nav {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    color: #494d5c;
  }
  .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle {
    background-color: #fff;
    color: #494d5c;
    padding: 12px;
    width: 225px;
    margin: 0;
  }
  .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle:before {
    display: none;
    width: 100%;
  }
  .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle:after {
    width: 10px;
    height: 15px;
    top: 18px;
    background: url(../img/left.png) center no-repeat;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .navbar .dropdown-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 100%;
  }
  .navbar .dropdown-menu .dropdown-item {
    height: 50px;
  }
  .navbar .dropdown-menu .submenu {
    position: relative;
    left: 0;
  }
  .navbar .dropdown-menu .submenu a {
    font-weight: normal;
  }
  .dropdown-menu .dropdown-item {
    width: 280px;
  }
  #searchform {
    width: 100%;
    max-width: 300px;
    margin-top: 30px;
    margin-left: 0;
  }
  #searchform input[type=text].search-input {
    border: 1px solid #7ab532;
    max-width: 100%;
    width: 100%;
  }
  .h2 {
    font-size: 30px;
  }
  .main-page {
    background-color: #fff;
    padding-bottom: 60px;
  }
  .sidebar-catalog .dropdown-menu {
    display: none;
    width: 280px;
  }
  .sidebar-catalog .dropdown-menu.show {
    display: block;
  }
  .sidebar-catalog .dropdown-menu .dropdown-menu {
    width: 280px;
    position: relative;
    left: 0;
    top: 0;
  }
  .quickform {
    display: none;
  }
  .footer-item {
    width: 50%;
  }
  .footer-info {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .entry-summary {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .main-banner {
    height: 420px;
  }
  .dropdown-menu .dropdown .dropdown-item::after {
    display: none;
  }
  .podheader {
    font-size: 14px;
  }
  .contact-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-container .contact-item {
    margin-top: 30px;
  }
  .breadcrumbs,
  .woocommerce-breadcrumb {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
    #fixed-cart {
        top: 70px;
        right: 10px;
    }
  .logo-text {
    display: none;
  }
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-brand img {
    max-width: 45px;
  }
  .button.button-small,
  a.button.button-small,
  input[type=submit].button-small {
    font-size: 10px;
    height: 50px;
    max-width: 170px;
  }
  .dropdown-menu .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
  }
  .dropdown-menu .dropdown-item.dropdown-toggle:after {
    top: 18px;
  }
  .h1,
  h1 {
    font-size: 1.6rem;
  }
  .h2,
  h2 {
    font-size: 1.6rem;
  }
  .main .podheader {
    font-size: 17px;
  }
  .main-banner {
    padding: 20px;
    height: 240px;
  }
  .main-banner-text {
    position: relative;
    top: 0;
    left: 0;
  }
  .contact-item-phone {
    white-space: nowrap;
  }
  .main-block {
    padding: 30px 20px;
  }
  .footer {
    text-align: center;
  }
  .footer-item {
    width: 100%;
  }
  .footer-info {
    margin-top: 30px;
  }
  .news-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news-item-text {
    width: 100%;
    margin-top: 30px;
  }
  .catalog-page .main-cat-img {
    height: 140px;
  }
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .woocommerce ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-3 li.product {
    width: 90%;
    margin: 15px auto;
  }
  .woocommerce ul.products.columns-3 li.product.last,
  .woocommerce-page ul.products.columns-3 li.product.last {
    margin: 15px auto;
  }
  .woocommerce ul.products.columns-3 li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products.columns-3 li.product .woocommerce-loop-product__title {
    font-size: 14px;
  }
  .woocommerce h1.product_title,
  .woocommerce-page h1.product_title {
    font-size: 20px;
  }
  .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product, .woocommerce ul.wc-block-grid__products li.product, .woocommerce-page ul.wc-block-grid__products li.product, .woocommerce ul.products.columns-3 li.wc-block-grid__product, .woocommerce-page ul.products.columns-3 li.wc-block-grid__product, .woocommerce ul.wc-block-grid__products li.wc-block-grid__product, .woocommerce-page ul.wc-block-grid__products li.wc-block-grid__product {
    width: 90%;  
  }
}
@media (max-width: 379px) {
  .h1,
  h1 {
    font-size: 1.3rem;
  }
  .main-banner {
    padding: 20px 10px;
    height: 200px;
  }
}
