@charset "UTF-8";
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
:root {
  --black: #000000;
  --color1: #00572d;
  --color2: #e83c2a;
  --color3: #82c341;
  --color-red: #e83c2a;
  --gray: #8a8a8a;
  --light-gray: #e6e6e6;
  --medium-gray: #cacaca;
  --white: #ffffff;
  --medium-black: #454545;
  --background-color: #ffffff;
  --body-font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Ubuntu, Arial, sans-serif;
  --font-awesome: Font Awesome 6 Pro, Font Awesome 6 Brands, Font Awesome 6 Free, sans-serif;
}

::placeholder {
  color: #8a8a8a;
}

::-webkit-scrollbar-track {
  background-color: #e6e6e6;
}

::-webkit-scrollbar-thumb {
  background-color: #8a8a8a;
}

::-webkit-scrollbar {
  height: 0.25rem;
  width: 0.25rem;
}

/** */
html {
  font-family: sans-serif;
  font-variant-ligatures: no-common-ligatures;
  -webkit-tap-highlight-color: transparent;
  /*user-select: none;*/
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
}

body {
  background: #ffffff;
  font-size: 0.9375rem;
  font-weight: 400;
  scroll-behavior: smooth;
}

input:focus, textarea:focus, main:focus {
  outline: none;
}

.relative, .p-relative {
  position: relative !important;
}

.absolute, .p-absolute {
  position: absolute !important;
}

.block, .d-block {
  display: block !important;
}

.inline-block, .d-inline-block {
  display: inline-block !important;
}

.flex, .d-flex {
  display: flex !important;
}

.inline-flex, .d-inline-flex {
  display: inline-flex !important;
}

.inline, .d-inline {
  display: inline !important;
}

.grid, .d-grid {
  display: grid !important;
}

.inline-grid, .d-inline-grid {
  display: inline-grid !important;
}

* > p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
}

img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
img[alt] {
  font-size: 0;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignleft {
  display: block;
  float: left;
  margin-right: 1rem;
}
img.alignright {
  display: block;
  float: right;
  margin-left: 1rem;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  display: block;
}
h1 p, h2 p, h3 p, h4 p, h5 p, h6 p, .h1 p, .h2 p, .h3 p, .h4 p, .h5 p, .h6 p {
  color: currentColor;
  line-height: inherit;
  margin-bottom: 0;
}

.screen-reader-text, .submenu-toggle-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: -10000em;
  width: 1px;
}

.skip-link {
  height: 0 !important;
  overflow: hidden;
  position: absolute;
}

button[type=submit],
button[type=reset],
button[type=button] {
  cursor: pointer;
}

.draggable {
  touch-action: none;
  -webkit-user-select: none;
          user-select: none;
}

/** */
.vertical.nested.menu {
  display: none;
}

.tabs-panel {
  display: none;
  padding: 0;
}

[data-tab-content] {
  display: none;
}

.hide, .hidden {
  display: none !important;
}

form.wpcf7-form br {
  display: none;
}

/** */
[data-ico-fa]::before {
  content: attr(data-ico-fa);
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
}

/** */
.clearfix::after, .clearfix::before {
  display: table;
  content: "";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

.after-overlay, .custom-logo-link {
  position: relative;
}
.after-overlay::after, .custom-logo-link::after {
  content: "";
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.overlay {
  position: relative;
}
.overlay .link-overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: transparent;
}

.underline {
  position: relative;
  display: inline-block;
}
.underline::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #8a8a8a;
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(1, 0, 0, 1);
}
.underline:hover::before {
  transform-origin: left center;
  transform: scaleX(1);
}

.mx-auto, .ml-auto {
  margin-left: auto;
}

.mx-auto, .mr-auto {
  margin-right: auto;
}

.white {
  color: #ffffff;
}

.color1 {
  color: #00572d;
}

.color2 {
  color: #e83c2a;
}

.color3 {
  color: #82c341;
}

.heading-color {
  color: #000000;
}

.light, .f-light {
  font-weight: 300 !important;
}

.regular, .f-regular {
  font-weight: 400 !important;
}

.medium, .f-medium {
  font-weight: 500 !important;
}

.semi-bold, .f-semi-bold {
  font-weight: 600 !important;
}

.bold, .f-bold {
  font-weight: 700 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.grid-container {
  /*position: relative;*/
}
@media (max-width: 95.9875rem) {
  .grid-container {
    /*1536px*/
    max-width: 71.25rem;
  }
}

.extra-container {
  max-width: 85rem;
}
@media (max-width: 95.9875rem) {
  .extra-container {
    /*1536px*/
    max-width: 85rem;
  }
}

/** */
.effect1 {
  box-shadow: 0 0 0 2.5em #000000 inset;
  background-color: transparent;
  transition: all 300ms ease;
  color: #ffffff;
}
.effect1:hover {
  box-shadow: 0 0 0 0 #000000 inset, 0 3px 10px rgba(0, 0, 0, 0.3);
  color: #000000;
  background-color: #ffffff;
}

.effect2 {
  position: relative;
}
.effect2::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  content: "";
  background-color: #000000;
  transition: 0.5s;
  opacity: 0;
}
.effect2:hover::before {
  width: 100%;
  opacity: 0.1;
}

.effect3 {
  position: relative;
  overflow: hidden;
}
.effect3::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  z-index: 10;
}
.effect3:hover {
  opacity: 1;
}
.effect3:hover::before {
  animation: circle 0.75s;
}

/** */
.cover {
  display: block;
  overflow: hidden;
  position: relative;
}

.res {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.res > img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: unset;
  min-width: 100%;
}
.res.auto > img {
  height: auto !important;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-width: 100%;
  max-height: 100%;
  min-width: 90%;
  min-height: 90%;
}
.res.scale {
  transform: scale(1.0001);
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
}
.res.scale:hover {
  transform: scale(1.06);
  opacity: 0.9;
}

.ratio, .ratio-1v1 {
  height: 0;
  padding-bottom: 100%;
  aspect-ratio: auto 1 / 1;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.ratio-3v2 {
  height: 0;
  padding-bottom: 66.6666666667%;
  aspect-ratio: auto 3 / 2;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.ratio-2v3 {
  height: 0;
  padding-bottom: 150%;
  aspect-ratio: auto 2 / 3;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.ratio-4v3 {
  height: 0;
  padding-bottom: 75%;
  aspect-ratio: auto 4 / 3;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.ratio-3v4 {
  height: 0;
  padding-bottom: 133.3333333333%;
  aspect-ratio: auto 3 / 4;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.ratio-16v9 {
  height: 0;
  padding-bottom: 56.25%;
  aspect-ratio: auto 16 / 9;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.ratio-9v16 {
  height: 0;
  padding-bottom: 177.7777777778%;
  aspect-ratio: auto 9 / 16;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

/** */
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes image-animation {
  1% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  4% {
    opacity: 0.1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  22% {
    opacity: 0.9;
    transform: scale(1.15) rotate(-2deg);
  }
  44% {
    opacity: 1;
    transform: scale(1.1) rotate(1deg);
  }
  96% {
    opacity: 0.2;
    transform: scale(1.05);
    animation-timing-function: ease-in;
  }
  99% {
    opacity: 0.1;
    animation-timing-function: ease-in;
  }
  100% {
    opacity: 0;
  }
}
@keyframes image-animation2 {
  1% {
    animation-timing-function: ease-in;
  }
  4% {
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  22% {
    transform: scale(1.15) rotate(-2deg);
  }
  44% {
    transform: scale(1.1) rotate(1deg);
  }
  96% {
    transform: scale(1.05);
    animation-timing-function: ease-in;
  }
  99% {
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1.001);
    animation-timing-function: ease-out;
  }
}
@keyframes gradient-animation {
  0% {
    background-position: 0 13%;
  }
  50% {
    background-position: 100% 88%;
  }
  100% {
    background-position: 0 13%;
  }
}
@keyframes ng-circle-anim {
  0% {
    transform: rotate(0) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.4;
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@keyframes ng-circle-fill-anim {
  0% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes ng-circle-icon-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
/** */
/** Elementor */
/** */
.elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default {
  max-width: 74.375rem;
}
@media (max-width: 95.9875rem) {
  .elementor-section.elementor-section-boxed > .elementor-container.elementor-column-gap-default {
    /*1536px*/
    max-width: 70.625rem;
  }
}

.section._h1, .elementor-element._h1 {
  margin-bottom: 0;
}
.section._h1 .heading-title, .elementor-element._h1 .heading-title {
  font-size: 2.25rem;
}
@media (min-width: 40rem) {
  .section._h1 .heading-title, .elementor-element._h1 .heading-title {
    /*640px*/
    font-size: 2.625rem;
  }
}
.section._h2, .elementor-element._h2 {
  margin-bottom: 0;
}
.section._h2 .heading-title, .elementor-element._h2 .heading-title {
  font-size: 1.9375rem;
}
@media (min-width: 40rem) {
  .section._h2 .heading-title, .elementor-element._h2 .heading-title {
    /*640px*/
    font-size: 2.25rem;
  }
}
.section._h3, .elementor-element._h3 {
  margin-bottom: 0;
}
.section._h3 .heading-title, .elementor-element._h3 .heading-title {
  font-size: 1.5625rem;
}
@media (min-width: 40rem) {
  .section._h3 .heading-title, .elementor-element._h3 .heading-title {
    /*640px*/
    font-size: 1.8125rem;
  }
}
.section._h4, .elementor-element._h4 {
  margin-bottom: 0;
}
.section._h4 .heading-title, .elementor-element._h4 .heading-title {
  font-size: 1.3125rem;
}
@media (min-width: 40rem) {
  .section._h4 .heading-title, .elementor-element._h4 .heading-title {
    /*640px*/
    font-size: 1.5rem;
  }
}
.section._h5, .elementor-element._h5 {
  margin-bottom: 0;
}
.section._h5 .heading-title, .elementor-element._h5 .heading-title {
  font-size: 1.125rem;
}
@media (min-width: 40rem) {
  .section._h5 .heading-title, .elementor-element._h5 .heading-title {
    /*640px*/
    font-size: 1.25rem;
  }
}
.section._h6, .elementor-element._h6 {
  margin-bottom: 0;
}
.section._h6 .heading-title, .elementor-element._h6 .heading-title {
  font-size: 1rem;
}
@media (min-width: 40rem) {
  .section._h6 .heading-title, .elementor-element._h6 .heading-title {
    /*640px*/
    font-size: 1.0625rem;
  }
}

/** */
/* @todo pagination */
.pagination {
  text-align: center;
  border: 0;
  padding: 5px 0;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .current {
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #00572d 0%, #00573e 100%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 16px;
}
.pagination li.current {
  display: inline-flex;
}
.pagination li:not(:last-child) {
  margin-right: 8px;
}
.pagination a, .pagination button {
  font-weight: 500;
  color: #000000;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
}
.pagination a:hover, .pagination button:hover {
  background: linear-gradient(135deg, #00572d 0%, #00573e 100%);
  color: #ffffff;
  border: none;
}
.pagination a:hover svg, .pagination a:hover i, .pagination button:hover svg, .pagination button:hover i {
  fill: #ffffff;
  color: #ffffff;
}
.pagination a {
  /*display: inline-block;*/
}
.pagination a i {
  font-weight: 400;
  font-size: 14px;
}
.pagination a i:hover {
  color: #ffffff;
}
.pagination a svg {
  fill: #000000;
  width: 9px;
  position: absolute;
}
.pagination a svg:hover {
  fill: #ffffff;
}

/** */
/* @todo .hotline-mobile*/
.hotline-mobile {
  position: fixed;
  background-color: transparent;
  cursor: pointer;
  z-index: 99999;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
  transition: visibility 0.5s;
  bottom: 5%;
  left: 5%;
  width: 90px;
  height: 90px;
  opacity: 1;
  animation: fadeIn ease-in-out 8s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media (max-width: 39.9875rem) {
  .hotline-mobile {
    /*640px*/
    width: 90px;
    height: 90px;
  }
}
.hotline-mobile .hl-circle {
  width: 90px;
  height: 90px;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #e83c2a;
  animation: ng-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 39.9875rem) {
  .hotline-mobile .hl-circle {
    /*640px*/
    width: 90px;
    height: 90px;
  }
}
.hotline-mobile .hl-circle-fill {
  width: 56px;
  height: 56px;
  top: 17px;
  left: 17px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: ng-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  background: linear-gradient(90deg, #e83c2a 0%, #e8622a 100%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 39.9875rem) {
  .hotline-mobile .hl-circle-fill {
    /*640px*/
    width: 56px;
    height: 56px;
    top: 17px;
    left: 17px;
  }
}
.hotline-mobile .hl-circle-icon {
  width: 46px;
  height: 46px;
  animation: ng-circle-icon-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
  background: linear-gradient(90deg, #e83c2a 0%, #e8622a 100%);
  position: absolute;
  top: 22px;
  left: 22px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 39.9875rem) {
  .hotline-mobile .hl-circle-icon {
    /*640px*/
    width: 46px;
    height: 46px;
    top: 22px;
    left: 22px;
  }
}
.hotline-mobile .hl-circle-icon i, .hotline-mobile .hl-circle-icon svg {
  color: #ffffff;
  font-size: 24px;
  fill: #ffffff;
  width: 24px;
  height: 24px;
}
@media (max-width: 39.9875rem) {
  .hotline-mobile .hl-circle-icon i, .hotline-mobile .hl-circle-icon svg {
    /*640px*/
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
}
.hotline-mobile .has-tip {
  cursor: default;
  border-bottom: none;
  font-weight: inherit;
}

/** */
/* @todo .upseo-list*/
.upseo-list {
  list-style: none;
  margin: 0 1% 30px 1%;
  color: #000000;
}
.upseo-list li {
  border-bottom: 1px solid rgba(230, 230, 230, 0.41);
  padding-bottom: 7px;
  padding-top: 7px;
  display: flex;
  align-items: baseline;
}
.upseo-list li:last-child {
  border-bottom: none;
}
.upseo-list li::before {
  content: "";
  font-weight: 700;
  display: block;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  background: url(../img/svg/bxs-tag-alt.svg);
  opacity: 0.8;
  background-size: 16px;
  position: relative;
  top: 2px;
}
.upseo-list li .thumb {
  display: none;
}
.upseo-list li .post-title {
  color: currentColor;
  font-size: 14px;
}
.upseo-list li .post-title:hover {
  color: #e83c2a;
}
.upseo-list li .post-date {
  display: none;
}

/** */
/* @todo .toTop*/
.toTop {
  width: 32px;
  height: 32px;
  font-size: 17px;
  color: #8a8a8a;
  position: fixed;
  right: 15px;
  bottom: 60px;
  z-index: 9998;
  transition: opacity 0.3s ease-in-out;
  line-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toTop::before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #ffffff;
  outline: 1px solid #8a8a8a;
  background-color: rgba(255, 255, 255, 0.8);
}
.toTop > #toTopHover {
  display: none;
}
.toTop > svg {
  font-weight: 400;
  transform: rotate(-90deg);
  width: 24px;
  height: 24px;
}
.toTop:hover, .toTop:focus {
  color: #00572d;
}
.toTop:hover::before, .toTop:focus::before {
  outline: 1px solid #00572d;
  background-color: rgba(230, 230, 230, 0.8);
}

/** */
/* @todo .menu-lines*/
.menu-lines {
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  color: #00572d;
  cursor: pointer;
  display: block;
  outline: none;
  padding: 0;
  position: relative;
  transition: color 0.3s ease;
}
.menu-lines .menu-txt {
  color: #00572d;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  display: none;
  /*@include mobile {
      display: none;
  }*/
}
.menu-lines .line {
  background-color: currentColor;
  border-radius: 0;
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease;
  width: 100%;
}
.menu-lines .line-1 {
  top: 0;
  width: 30px;
}
.menu-lines .line-2 {
  top: calc(50% - 1px);
  width: 30px;
}
.menu-lines .line-3 {
  bottom: 0;
  width: 30px;
}
.menu-lines:hover, .menu-lines:focus {
  background: none;
  color: #e83c2a;
  outline: none;
}
.menu-lines:hover .line {
  width: 30px;
}

/** */
/* @todo .inline-share*/
.inline-share {
  align-items: baseline;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: row nowrap;
  font-size: 12px;
  margin-top: 20px;
  padding: 15px 15px 17px 15px;
}
.inline-share .title {
  align-items: center;
  display: flex;
  font-size: inherit;
  font-weight: 500;
  margin-right: 15px;
  position: relative;
  top: 3px;
}
.inline-share .title svg, .inline-share .title i {
  height: auto;
  margin-right: 5px;
  width: 16px;
}
.inline-share .inline-share-groups {
  align-items: flex-end;
  display: flex;
}
.inline-share .inline-share-groups > * {
  margin-left: 10px;
}
.inline-share .inline-share-groups .zalo-follow-only-button {
  max-height: 20px;
}

/** */
/* @todo .share-icon*/
.share-icon {
  background: #ffffff;
  border: 1px solid #8a8a8a;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  padding: 0;
  position: relative;
}
.share-icon::before {
  background-repeat: no-repeat;
  width: 60%;
  height: 60%;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.share-icon.icon-facebook::before {
  background-image: url(/images/facebook-f.svg);
}
.share-icon.icon-twitter::before {
  background-image: url(/images/twitter.svg);
}
.share-icon.icon-telegram::before {
  background-image: url(/images/telegram-plane.svg);
}
.share-icon.icon-send-email::before, .share-icon.icon-mail::before {
  background-image: url(/images/envelope.svg);
}
.share-icon.icon-web-share::before, .share-icon.icon-share::before {
  background-image: url(/images/share-alt.svg);
}

/** */
/* @todo .sharing_toolbox*/
.sharing_toolbox .share-title {
  align-items: center;
  bottom: 35px;
  color: black;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.sharing_toolbox .share-title::before {
  background: #000000;
  content: "";
  height: 1px;
  margin-right: 3px;
  width: 10px;
}
.sharing_toolbox .social-share > .share-label {
  display: none;
}
.sharing_toolbox .social-share ul.share-actions {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
}
.sharing_toolbox .social-share ul.share-actions > li.share-action {
  display: flex;
  margin-bottom: 15px;
}
.sharing_toolbox .social-share ul.share-actions > li.share-action > button.share-button {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}
.sharing_toolbox .social-share ul.share-actions > li.share-action > button.share-button:hover {
  opacity: 0.9;
}
.sharing_toolbox .social-share ul.share-actions > li.share-action > button.share-button > .share-icon.icon-facebook::before {
  left: 60%;
}

/** */
/* @todo off-canvas*/
.position-top {
  transform: translateY(-100%);
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.position-bottom {
  transform: translateY(100%);
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.js-off-canvas-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out, z-index 0.2s ease-in-out;
  visibility: hidden;
  z-index: 0;
}
.js-off-canvas-overlay.is-visible {
  z-index: 9998;
}

.off-canvas {
  background-color: rgba(0, 87, 45, 0.95);
  box-shadow: -3px 0 3px rgba(0, 87, 45, 0.05);
  padding: 0;
  text-align: left;
  transition: transform 0.6s ease-in-out;
}
.off-canvas.is-transition-overlap {
  z-index: 1000001;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: -3px 0 3px rgba(0, 87, 45, 0.1);
}
.off-canvas .menu-lines {
  color: #ffffff;
  position: absolute;
  top: 20px;
  right: 30px;
  display: block;
  z-index: 9999;
  height: 30px;
  opacity: 0;
  transition: 0.6s 0.5s ease-in-out;
}
.off-canvas .menu-lines .menu-txt {
  color: currentColor;
  transition: 0.6s 0.5s ease-in-out;
}
.off-canvas .menu-lines .line {
  position: absolute;
  top: 14px;
  left: 3px;
  height: 2px;
  background-color: currentColor;
  border-radius: 0;
  transition: 0.6s 0.5s ease-in-out;
  transform: rotate(0deg);
}
.off-canvas.is-open .menu-lines {
  opacity: 1;
}
.off-canvas.is-open .menu-lines .line-1 {
  transform: rotate(135deg);
}
.off-canvas.is-open .menu-lines .line-2 {
  transform: rotate(-135deg);
}
.off-canvas.position-top.is-open, .off-canvas.position-bottom.is-open {
  transform: translateY(0);
}
.off-canvas .title-bar-title {
  display: none;
  font-weight: 500;
  margin-bottom: 30px;
}
.off-canvas .title-bar-title > a {
  color: #ffffff;
  display: block;
}
.off-canvas .title-bar-title > a > img {
  display: block;
  max-height: 48px;
  width: auto;
}
.off-canvas .title-bar-title > a > img + span {
  display: none;
}
.off-canvas .title-bar-title > a > span {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.off-canvas-content {
  /*margin-left: 70px !important;
  margin-right: 15px;*/
  /*@include desktop {
      display: none;
  }*/
}
@media (max-width: 39.9875rem) {
  .off-canvas-content {
    /*640px*/
    margin-left: 15px !important;
  }
}

/** */
/** @todo swipers slides*/
.swiper-controls .swiper-button {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
  margin-top: 0;
}
@media (max-width: 39.9875rem) {
  .swiper-controls .swiper-button {
    /*640px*/
    width: 32px;
    height: 32px;
  }
}
.swiper-controls .swiper-button svg {
  fill: #ffffff;
  color: #ffffff;
  font-size: 18px;
}
.swiper-controls .swiper-button.swiper-button-prev svg {
  transform: rotate(180deg);
}
.swiper-controls .swiper-button:focus {
  outline: none;
}
.swiper-controls .swiper-pagination {
  position: relative;
  white-space: nowrap;
  margin-top: 30px;
}
.swiper-controls .swiper-pagination.swiper-pagination-fraction {
  padding: 0;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  opacity: 0.6;
  margin: 5px;
  transition: 0.3s;
  background-color: #595959;
  box-shadow: 0 0 0 2px #595959;
}
@media (max-width: 39.9875rem) {
  .swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    /*640px*/
    width: 4px;
    height: 4px;
  }
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:focus {
  outline: none;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: #e83c2a;
  box-shadow: 0 0 0 2px #e83c2a;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 15px;
  background-color: #ed6658;
  box-shadow: 0 0 0 2px #ed6658;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
  background-color: #e83c2a;
  box-shadow: 0 0 0 2px #e83c2a;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  opacity: 0.3;
  border-radius: 50%;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 5px;
  opacity: 1;
}
.swiper-controls .swiper-pagination.swiper-pagination-progressbar {
  padding: 0;
  position: absolute;
  bottom: 0;
  top: auto;
  right: auto;
  left: 50%;
  width: 300px;
  transform: translateX(-50%);
  max-width: 90vw;
  height: 2px;
  border-radius: 8px;
  background: #eee;
}
.swiper-controls .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 8px;
  background-image: linear-gradient(90deg, #008a47 0%, #ed6658 100%);
}
.swiper-controls .swiper-progress {
  height: 2px;
  background-color: #ffffff;
  border-radius: 8px;
}
.swiper-controls .swiper-progress::after {
  content: "";
  width: 0;
  transition: width 0s;
  background-image: linear-gradient(90deg, #008a47 0%, #ed6658 100%);
  height: 2px;
  position: absolute;
}
.swiper-controls .swiper-progress.progress::after {
  width: 100%;
  transition: width 6s linear;
}
.swiper-controls.normal-controls .swiper-button {
  opacity: 1;
  border: none !important;
  width: 12px;
  height: 12px;
}
.swiper-controls.normal-controls .swiper-button::before, .swiper-controls.normal-controls .swiper-button::after {
  display: none;
}

/** */
.swiper-section {
  position: relative;
}

.swiper-marquee .swiper-wrapper {
  transition-timing-function: linear !important;
  touch-action: manipulation;
}

.swiper .swiper-slide {
  height: auto;
  overflow: unset;
}
.swiper .swiper-slide .item {
  position: relative;
  height: 100%;
}
.swiper.swiper-initialized {
  z-index: 3;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button {
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 100%;
  z-index: 99;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-prev {
  left: 15px;
}
@media (min-width: 64.0625rem) {
  .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-prev {
    /*1024px*/
    left: 30px;
  }
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-next {
  right: 15px;
}
@media (min-width: 64.0625rem) {
  .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-next {
    /*1024px*/
    right: 30px;
  }
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button:hover {
  opacity: 0.8;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button:after {
  display: none;
}
.swiper.swiper-initialized:hover ~ .swiper-controls .swiper-button {
  opacity: 0.8;
}

/** */
.horizontal-menu.menu > li {
  align-items: center;
  display: flex;
  position: relative;
}
.horizontal-menu.menu > li > a {
  align-items: center;
  display: flex;
  line-height: normal;
  padding: 0;
  position: relative;
}
.horizontal-menu.menu > li > a:hover {
  background-color: unset;
}
.horizontal-menu.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 20px;
}
.horizontal-menu.menu > li.is-dropdown-submenu-parent > a::after {
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  margin-top: -2px;
  padding: 2px;
  right: 6px;
  transform: rotate(45deg) translateY(-2px);
  width: 6px;
}
.horizontal-menu.menu > li > .menu.is-dropdown-submenu {
  top: 100%;
}
.horizontal-menu.menu > li .menu.vertical {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.horizontal-menu.menu > li .menu.is-dropdown-submenu {
  background-color: unset;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
  max-width: unset;
  min-width: 240px;
  width: auto;
  z-index: 999;
}
.horizontal-menu.menu > li .menu li {
  position: relative;
}
.horizontal-menu.menu > li .menu li > a {
  background: none;
  color: #000000;
  position: relative;
}
.horizontal-menu.menu > li .menu li > a:hover {
  background: #f9f9f9;
  color: #e83c2a;
}
.horizontal-menu.menu > li .menu li:hover {
  transition: all 0.15s linear;
}
.horizontal-menu.menu > li .menu .is-active,
.horizontal-menu.menu > li .menu .active {
  transition: all 0.15s linear;
}
.horizontal-menu.menu > li .menu .is-active > a,
.horizontal-menu.menu > li .menu .active > a {
  background: none;
}
.horizontal-menu.menu > li:hover .menu.is-dropdown-submenu {
  opacity: 1;
  transition: all 0.2s ease 0s;
  visibility: visible;
}
.horizontal-menu.menu > li:hover > a {
  background-color: unset;
}
.horizontal-menu.menu > li.is-active > a, .horizontal-menu.menu > li.active > a {
  background-color: unset;
}
.horizontal-menu .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  border: none;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  margin-top: 0;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.horizontal-menu .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  border: none;
  border-right: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  width: 7px;
  height: 7px;
  left: auto;
  margin-top: 0;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
}

/** */
.terms-menu.menu {
  padding: 10px 0;
}
.terms-menu.menu > li {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  line-height: normal;
  position: relative;
}
.terms-menu.menu > li:not(:last-child)::after {
  color: currentColor;
  content: "/";
  margin: 0 8px;
  opacity: 0.8;
}
.terms-menu.menu > li > a {
  color: currentColor;
  display: block;
  line-height: normal;
  padding: 0;
}

/** */
.mobile-menu.menu {
  padding-bottom: 50px;
  padding-top: 50px;
}
.mobile-menu.menu .active > a,
.mobile-menu.menu a:hover {
  background: none;
  color: #ccc;
}
.mobile-menu.menu .submenu-toggle {
  border-color: #e6e6e6;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 15px;
  top: 15px;
}
.mobile-menu.menu .submenu-toggle::after {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  position: absolute;
  transform: rotate(45deg) translateY(-7px) translateX(4px);
  width: 7px;
}
.mobile-menu.menu .submenu-toggle[aria-expanded=true]::after {
  transform: rotate(225deg) translateY(4px) translateX(-7px);
}
.mobile-menu.menu > li {
  position: relative;
}
.mobile-menu.menu > li.lang-item a {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 300;
  padding-bottom: 0;
  padding-top: 0;
}
.mobile-menu.menu > li.lang-item a img {
  display: block;
}
.mobile-menu.menu > li.lang-item a span {
  display: block;
}
.mobile-menu.menu > li > a {
  color: #ffffff;
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
  padding-left: 30px;
}
.mobile-menu.menu .submenu.nested {
  padding-left: 15px;
}
.mobile-menu.menu .submenu > li > a {
  color: #eee;
  font-size: 15px;
  font-weight: 300;
}
.mobile-menu.menu .submenu > li > a:hover {
  color: #ccc;
}
.mobile-menu.menu .submenu > li.active a {
  color: #ccc;
}

/** */
.desktop-menu.menu {
  height: 100%;
}
.desktop-menu.menu > li {
  padding: 0;
}
.desktop-menu.menu > li.hide-text > a {
  text-indent: -999999px;
}
.desktop-menu.menu > li.home-icon {
  position: relative;
}
.desktop-menu.menu > li.home-icon > a {
  height: 16px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 0;
  position: relative;
  width: 20px;
}
.desktop-menu.menu > li.home-icon > a::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%2349484b" d="M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z"></path></svg>');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.desktop-menu.menu > li.home-icon > a:hover::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%2300B38F" d="M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z"></path></svg>');
}
.desktop-menu.menu > li.home-icon.is-active > a::after, .desktop-menu.menu > li.home-icon.active > a::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%2300B38F" d="M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z"></path></svg>');
}
.desktop-menu.menu > li > a {
  color: #00572d;
  font-size: 16px;
  padding: 0 12px;
  position: relative;
  transition: all 0.25s ease;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 95.9875rem) {
  .desktop-menu.menu > li > a {
    /*1536px*/
    font-size: 15px;
  }
}
.desktop-menu.menu > li > a::before {
  background-color: transparent;
  bottom: -9px;
  content: "";
  height: 1px;
  left: 12px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s cubic-bezier(0.345, 0, 0.145, 0.995);
  width: calc(100% - 24px);
}
.desktop-menu.menu > li > a:hover, .desktop-menu.menu > li > a:active {
  color: #e83c2a;
}
.desktop-menu.menu > li > a:hover::before, .desktop-menu.menu > li > a:active::before {
  transform: scaleX(1);
}
.desktop-menu.menu > li.is-active > a, .desktop-menu.menu > li.active > a {
  color: #e83c2a;
}
.desktop-menu.menu > li.is-active > a::before, .desktop-menu.menu > li.active > a::before {
  transform: scaleX(1);
}
.desktop-menu.menu > li.support-menu a, .desktop-menu.menu > li.contact-menu a {
  border-radius: 25px;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  height: 45px;
  padding: 0 20px;
  white-space: nowrap;
}
.desktop-menu.menu > li.support-menu a:hover, .desktop-menu.menu > li.contact-menu a:hover {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.05), 0 16px 16px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
.desktop-menu.menu > li.support-menu a::before, .desktop-menu.menu > li.contact-menu a::before {
  height: 0 !important;
}
@media (max-width: 64.05rem) {
  .desktop-menu.menu > li.support-menu a, .desktop-menu.menu > li.contact-menu a {
    /*1025px*/
    font-size: 13px;
    font-weight: 500;
  }
}
.desktop-menu.menu > li.support-menu a {
  box-shadow: inset 0 0 0 1px rgba(0, 87, 45, 0.2);
  background: linear-gradient(135deg, rgba(0, 87, 45, 0.8) 0%, rgba(0, 87, 62, 0.8) 100%);
}
@media (max-width: 39.9875rem) {
  .desktop-menu.menu > li.support-menu a {
    /*640px*/
    display: none;
  }
}
@media (max-width: 39.9875rem) {
  .desktop-menu.menu > li.contact-menu a {
    /*640px*/
    display: none;
  }
}
.desktop-menu.menu > li.contact-menu a:hover {
  box-shadow: 0 1px 1px rgba(130, 195, 65, 0.05), 0 2px 2px rgba(130, 195, 65, 0.05), 0 4px 4px rgba(130, 195, 65, 0.05), 0 8px 8px rgba(130, 195, 65, 0.05), 0 16px 16px rgba(130, 195, 65, 0.05);
}
.desktop-menu.menu > li .menu li > a {
  font-weight: 500;
}

/** */
.social-menu {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  z-index: 9999;
}
.social-menu li {
  margin-right: 10px;
}
.social-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.social-menu li a:hover {
  color: #e83c2a;
}
.social-menu li svg {
  color: currentColor;
  fill: currentColor;
  width: 22px;
  height: 22px;
}
.social-menu li:last-child {
  margin-right: 0;
}

/** */
.search-dropdown--wrap .trigger-s {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-dropdown--wrap .trigger-s svg {
  background-color: var(--white);
  border-radius: 99px;
  fill: #00572d;
  flex: 0 0 30px;
  height: 30px;
  max-width: 30px;
  padding: 3px;
}
.search-dropdown--wrap .trigger-s > span {
  display: none;
}
.search-dropdown--wrap .trigger-s:hover svg {
  fill: #e83c2a;
}
.search-dropdown--wrap .dropdown-pane {
  background-color: #f6f5f7;
  border: none;
  bottom: auto;
  opacity: 0;
  padding: 12px 0;
  position: absolute;
  transition: all 0.15s linear;
  width: 100%;
  z-index: 10001;
}
.search-dropdown--wrap .dropdown-pane.is-open {
  opacity: 1;
  transition: all 0.2s linear;
}
@media (max-width: 64.05rem) {
  .search-dropdown--wrap .dropdown-pane {
    /*1025px*/
    left: unset !important;
    max-width: calc(100vw - 30px);
    right: 0 !important;
  }
}
@media (max-width: 39.9875rem) {
  .search-dropdown--wrap .dropdown-pane {
    /*640px*/
    width: calc(100vw - 20px);
  }
}
@media (min-width: 64.0625rem) {
  .search-dropdown--wrap .dropdown-pane {
    /*1024px*/
    left: 0 !important;
  }
}
.search-dropdown--wrap .dropdown-pane .frm-container {
  /*flex: 0 0 280px;*/
  margin-left: auto;
  margin-right: 0;
  /*max-width: 280px;*/
  position: relative;
}
@media (min-width: 64.0625rem) {
  .search-dropdown--wrap .dropdown-pane .frm-container {
    /*1024px*/
    margin-right: -6px;
  }
}
.search-dropdown--wrap .dropdown-pane .frm-container::before {
  border-color: transparent transparent #f6f5f7 transparent;
  border-style: solid;
  border-width: 0 13px 15px;
  content: "";
  right: 55px;
  position: absolute;
  top: -20px;
}
.search-dropdown--wrap .dropdown-pane .frm-container input[type=search] {
  border-radius: 30px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  height: 34px;
  margin-bottom: 0;
  outline: none;
  padding: 0 30px 0 10px;
  max-width: 100%;
  width: 270px;
}
.search-dropdown--wrap .dropdown-pane .frm-container .btn-s {
  background-color: #82c341;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  padding: 3px;
  position: absolute;
  right: 3px;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-dropdown--wrap .dropdown-pane .frm-container .btn-s > span {
  display: none;
}
.search-dropdown--wrap .dropdown-pane .frm-container .btn-s svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.search-dropdown--wrap .dropdown-pane .frm-container .trigger-s-close {
  display: none;
}

/** */
.iconbox {
  list-style: none;
  margin: 0;
}
.iconbox li span.img {
  display: block;
}
.iconbox li span.img img {
  max-width: 100%;
  display: block;
}

/** */
/** */
/** */
.top-header {
  background-color: #00572d;
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-header .left-column {
  display: flex;
  align-items: center;
}
.top-header .col-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.top-header .col-item i {
  margin-right: 5px;
  color: #fff;
}
.top-header .col-item a {
  display: block;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}
.top-header .col-item:last-child {
  margin-right: 0;
}
@media (max-width: 39.9875rem) {
  .top-header .right-column {
    /*640px*/
    display: none;
  }
}
.top-header .social-menu li a {
  color: #fff;
}
.top-header .social-menu li a:hover {
  color: #ddd;
}

/** */
.inside-header {
  background-color: #fff;
}
.inside-header .grid-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inside-header .logo {
  margin-bottom: 0;
}
.inside-header .custom-logo-link {
  display: block;
}
.inside-header .custom-logo {
  display: block;
  height: 74px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.inside-header .site-navigation {
  display: flex;
  align-items: center;
}
.inside-header .site-navigation .desktop-menu.menu {
  height: 90px;
}
.inside-header .site-navigation .desktop-menu.menu li .menu.is-dropdown-submenu {
  background-color: #fff;
}
@media (max-width: 64.05rem) {
  .inside-header .site-navigation {
    /*1025px*/
    display: none;
  }
}
.inside-header .widget-group {
  display: flex;
  align-items: center;
}
.inside-header .widget-group > * {
  margin-left: 15px;
}
.inside-header .widget-group > *:first-child {
  margin-left: 0;
}

.images_carousel.home-slides article.item .overlay img {
  width: 100%;
}
.images_carousel.home-slides .content-wrap {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media (max-width: 95.9875rem) {
  .images_carousel.home-slides .content-wrap {
    /*1536px*/
    max-width: 71.25rem;
  }
}
@media (min-width: 40rem) {
  .images_carousel.home-slides .content-wrap {
    /*640px*/
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.images_carousel.home-slides .content-wrap .content-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.images_carousel.home-slides .content-wrap .inner {
  opacity: 0;
  padding: 0 15px;
  position: relative;
  transform: translateX(100px);
  width: 580px;
  max-width: 100%;
}
.images_carousel.home-slides .content-wrap .sub-title {
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}
.images_carousel.home-slides .content-wrap .html-title {
  color: #00572d;
  margin-bottom: 20px;
  opacity: 0;
  position: relative;
  text-transform: capitalize;
  transform: translateY(-20px);
  transition: all 0.8s ease;
  visibility: hidden;
  text-align: left;
}
.images_carousel.home-slides .content-wrap .html-desc {
  color: #454545;
  font-size: 15px;
  font-weight: 300;
  opacity: 0;
  position: relative;
  transform: translateX(-50px);
  transition: all 0.8s ease;
  visibility: hidden;
  text-align: left;
}
.images_carousel.home-slides .content-wrap .html-desc p {
  font-weight: 300;
  margin-bottom: 0;
}
.images_carousel.home-slides .content-wrap .btn-link {
  margin: 0 -10px;
  padding-top: 20px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.8s ease;
  transition-delay: 1000ms;
}
.images_carousel.home-slides .content-wrap .btn-link .button {
  position: relative;
  margin: 0 10px 10px;
  padding: 16px 32px;
  text-transform: uppercase;
  transition: 0.5s ease;
  background-color: #82c341;
  font-weight: 500;
  font-size: 16px;
}
.images_carousel.home-slides .content-wrap .btn-link .button::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  content: "";
  background-color: #000000;
  transition: 0.5s;
  opacity: 0;
}
.images_carousel.home-slides .content-wrap .btn-link .button:hover::before {
  width: 100%;
  opacity: 0.1;
}
@media (max-width: 39.9875rem) {
  .images_carousel.home-slides .content-wrap {
    /*640px*/
    display: none;
  }
}
.images_carousel.home-slides .swiper-slide-active .content-wrap .inner {
  opacity: 1;
  transform: translateX(0px);
  transition: all 500ms ease;
}
.images_carousel.home-slides .swiper-slide-active .content-wrap .html-title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 400ms;
  visibility: visible;
}
.images_carousel.home-slides .swiper-slide-active .content-wrap .html-desc {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 800ms;
  visibility: visible;
}
@media (max-width: 48.8625rem) {
  .images_carousel.home-slides .swiper-slide-active .content-wrap .html-desc {
    /*782px*/
    display: none;
  }
}
.images_carousel.home-slides .swiper-slide-active .content-wrap .btn-link {
  transform: scale(1);
}

/** */
section.section .sub-title {
  text-align: center;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #454545;
}
section.section .heading-title {
  text-align: center;
  position: relative;
  color: #00572d;
}
section.section .desc, section.section .html-desc {
  text-align: center;
  color: #454545;
}

/** */
.section.home-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 39.9875rem) {
  .section.home-padding {
    /*640px*/
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/** */
.section.home-aboutus .heading-title {
  display: flex;
  flex-direction: column;
}
.section.home-aboutus .heading-title::after {
  content: "";
  background-image: url(../img/below-heading.png);
  width: auto;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section.home-aboutus .iconbox {
  list-style: none;
  margin: 50px -15px 0 -15px;
  display: flex;
  align-items: flex-start;
}
.section.home-aboutus .iconbox li {
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 25%;
  max-width: 25%;
}
.section.home-aboutus .iconbox li span.img img {
  width: 160px;
}
.section.home-aboutus .iconbox li .iconbox-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}
.section.home-aboutus .iconbox li .iconbox-title .title {
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 39.9875rem) {
  .section.home-aboutus .iconbox {
    /*640px*/
    flex-wrap: wrap;
    margin-top: 0;
  }
  .section.home-aboutus .iconbox li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30px;
  }
}

/** */
.section.home-images-text {
  background-color: #f7f7f7;
}
.section.home-images-text .grid-container {
  display: flex;
  align-items: flex-start;
}
.section.home-images-text .grid-container .col {
  flex: 0 0 55%;
  max-width: 55%;
}
.section.home-images-text .grid-container .col.content-col {
  padding-left: 70px;
  flex: 1 1 0;
  min-width: 0;
}
.section.home-images-text .grid-container .col.content-col > * {
  text-align: left;
}
.section.home-images-text .grid-container .col.content-col .heading-title {
  display: flex;
  flex-direction: column;
}
.section.home-images-text .grid-container .col.content-col .heading-title::after {
  content: "";
  background-image: url(../img/below-heading.png);
  width: auto;
  height: 22px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 48.8625rem) {
  .section.home-images-text .grid-container {
    /*782px*/
    flex-wrap: wrap;
  }
  .section.home-images-text .grid-container .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .section.home-images-text .grid-container .col.content-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
.section.home-images-text .iconbox {
  margin-top: 30px;
}
.section.home-images-text .iconbox li {
  display: flex;
  align-items: flex-start;
}
.section.home-images-text .iconbox li span.img {
  width: 60px;
  margin-right: 15px;
}
.section.home-images-text .iconbox li .iconbox-title .title {
  margin-bottom: 10px;
  color: #00572d;
  font-size: 16px;
}
.section.home-images-text .iconbox li .iconbox-title > p {
  color: #454545;
  font-weight: 300;
  line-height: 1.5;
}
.section.home-images-text .iconbox li:not(:last-child) {
  margin-bottom: 25px;
}

.section.home-productcat .heading-title {
  display: flex;
  flex-direction: column;
}
.section.home-productcat .heading-title::after {
  content: "";
  background-image: url(../img/below-heading.png);
  width: auto;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section.home-productcat .swiper-section {
  margin-top: 30px;
}
.section.home-productcat .swiper-section .swiper-slide figure figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section.home-productcat .swiper-section .swiper-slide figure figcaption .num {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 80px;
  font-weight: 700;
}
@media (max-width: 39.9875rem) {
  .section.home-productcat .swiper-section .swiper-slide figure figcaption .num {
    /*640px*/
    margin-bottom: 0;
    font-size: 60px;
  }
}
.section.home-productcat .swiper-section .swiper-slide figure figcaption h6 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  text-shadow: 1px 0 0 rgba(24, 27, 49, 0.1), -1px 0 0 rgba(24, 27, 49, 0.1), 0 1px 0 rgba(24, 27, 49, 0.1), 0 -1px 0 rgba(24, 27, 49, 0.1), 1px 1px rgba(24, 27, 49, 0.1), -1px -1px 0 rgba(24, 27, 49, 0.1), 1px -1px 0 rgba(24, 27, 49, 0.1), -1px 1px 0 rgba(24, 27, 49, 0.1);
}

/** */
.section.home-videobox {
  position: relative;
}
.section.home-videobox .parallax-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section.home-videobox .grid-container {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
  align-items: center;
}
@media (max-width: 39.9875rem) {
  .section.home-videobox .grid-container {
    /*640px*/
    flex-wrap: wrap;
  }
}
.section.home-videobox .title-group {
  padding-right: 20px;
  flex: 0 0 45%;
  max-width: 45%;
}
.section.home-videobox .title-group > * {
  text-align: left;
}
.section.home-videobox .title-group .heading-title {
  display: flex;
  flex-direction: column;
}
.section.home-videobox .title-group .heading-title::after {
  content: "";
  background-image: url(../img/below-heading.png);
  width: auto;
  height: 22px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section.home-videobox .title-group .button-text a {
  position: relative;
  position: relative;
  padding: 12px 24px;
  text-transform: uppercase;
  transition: 0.5s ease;
  background-color: #82c341;
  font-weight: 500;
  color: #fff;
  margin-top: 25px;
}
.section.home-videobox .title-group .button-text a::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  content: "";
  background-color: #000000;
  transition: 0.5s;
  opacity: 0;
}
.section.home-videobox .title-group .button-text a:hover::before {
  width: 100%;
  opacity: 0.1;
}
@media (max-width: 39.9875rem) {
  .section.home-videobox .title-group {
    /*640px*/
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section.home-videobox .content-group {
  flex: 1 1 0;
  padding-left: 20px;
  min-width: 0;
}
.section.home-videobox .content-group .video-box .cover .cover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section.home-videobox .content-group .video-box .cover .cover-icon i {
  font-size: 60px;
  opacity: 0.9;
  color: #999;
  font-weight: 300;
  text-shadow: 0 0 12px #eee;
  transition: 0.3s;
}
.section.home-videobox .content-group .video-box:hover {
  opacity: 0.8;
}
.section.home-videobox .content-group .video-box:hover .cover-icon i {
  color: #e83c2a;
}
@media (max-width: 39.9875rem) {
  .section.home-videobox .content-group {
    /*640px*/
    padding-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
.section.home-videobox .galleries {
  list-style: none;
  margin: 8px -4px 0 -4px;
  display: flex;
  align-items: center;
}
.section.home-videobox .galleries li {
  padding-left: 4px;
  padding-right: 4px;
}
/** */
.section.home-galleries .heading-title {
  display: flex;
  flex-direction: column;
}
.section.home-galleries .heading-title::after {
  content: "";
  background-image: url(../img/below-heading.png);
  width: auto;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section.home-galleries .galleries {
  column-count: 4;
  column-gap: 0;
  margin-top: 30px;
}
@media (max-width: 39.9875rem) {
  .section.home-galleries .galleries {
    /*640px*/
    /*margin-top: 30px;*/
    column-count: 2;
  }
}
.section.home-galleries .galleries .gallery-item {
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  break-inside: avoid;
}
.section.home-galleries .galleries .gallery-item a {
  display: block;
  grid-row: 1/-1;
  grid-column: 1;
}
.section.home-galleries .galleries .gallery-item a img {
  transform: scale(1.0001);
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
  width: 100%;
  padding: 1px;
}
.section.home-galleries .galleries .gallery-item a:hover img {
  /*transform: scale(1.06);*/
  opacity: 0.8;
}

/** */
.section.posts_list article.item {
  box-shadow: inset 0 0 0 1px hsla(0deg, 0%, 100%, 0.5);
}
.section.posts_list article.item .cover-content {
  background-color: #fff;
  padding: 20px;
  height: 100%;
}
.section.posts_list article.item .cover-content .meta {
  margin-bottom: 15px;
}
.section.posts_list article.item .cover-content .meta .time {
  display: none;
}
.section.posts_list article.item .cover-content .meta .terms a {
  margin-right: 10px;
  font-size: 12px;
  background-color: rgba(130, 195, 65, 0.9);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
}
.section.posts_list article.item .cover-content .meta .terms a:hover {
  background-color: rgba(232, 60, 42, 0.9);
}
.section.posts_list article.item .cover-content h5 a {
  color: #000000;
  line-height: 1.4;
}
.section.posts_list article.item .cover-content h5 a:hover {
  color: #82c341;
}
.section.posts_list article.item .cover-content .excerpt {
  color: var(--medium-black);
  margin-bottom: 0;
  font-size: 14px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section.posts_list article.item .cover-content .view-more {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-top: 10px;
  color: #e83c2a;
}
.section.posts_list article.item .cover-content .view-more span {
  color: currentColor;
}
.section.posts_list article.item .cover-content .view-more svg {
  fill: currentColor;
  color: currentColor;
  width: 20px;
}

/** */
.section.home-news {
  background-color: #f7f7f7;
}
.section.home-news .heading-title {
  display: flex;
  flex-direction: column;
}
.section.home-news .heading-title::after {
  content: "";
  background-image: url(../img/below-heading.png);
  width: auto;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section.home-news .swiper-section {
  margin-top: 30px;
}

.section.home-partners {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section.home-partners article.item .content-wrap {
  display: none;
}

.section.home-newsletters {
  background-color: #82c341;
  padding-top: 30px;
  padding-bottom: 30px;
}
.section.home-newsletters .grid-container {
  display: flex;
  align-items: center;
}
@media (max-width: 39.9875rem) {
  .section.home-newsletters .grid-container {
    /*640px*/
    flex-wrap: wrap;
  }
}
.section.home-newsletters .title-section {
  flex: 0 0 40%;
  max-width: 40%;
}
.section.home-newsletters .title-section .heading-title {
  text-align: left;
  color: #fff;
  margin-bottom: 10px;
  font-size: 200%;
}
.section.home-newsletters .title-section > p {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 39.9875rem) {
  .section.home-newsletters .title-section {
    /*640px*/
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section.home-newsletters .wpcf7 {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 39.9875rem) {
  .section.home-newsletters .wpcf7 {
    /*640px*/
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
  }
}
.section.home-newsletters .newsletter {
  display: flex;
  align-items: center;
  padding-left: 60px;
}
@media (max-width: 64.05rem) {
  .section.home-newsletters .newsletter {
    /*1025px*/
    padding-left: 30px;
  }
}
@media (max-width: 39.9875rem) {
  .section.home-newsletters .newsletter {
    /*640px*/
    padding-left: 0;
  }
}
.section.home-newsletters .newsletter .wpcf7-form-control-wrap {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}
.section.home-newsletters .newsletter .wpcf7-form-control-wrap input {
  margin-bottom: 0;
  height: 40px;
}
.section.home-newsletters .newsletter .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 12px;
  top: 2px;
  right: 2px;
}
.section.home-newsletters .newsletter button[type=submit] {
  flex: 0 0 100px;
  height: 40px;
  background-color: #00572d;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
.section.home-newsletters .newsletter button[type=submit]:hover {
  background-color: #e83c2a;
}
.section.home-newsletters .newsletter + .wpcf7-response-output {
  font-size: 13px;
  font-weight: 300;
}

.footer-widgets {
  padding-top: 60px;
  padding-bottom: 50px;
}
.footer-widgets .footer-widget {
  flex: 0 0 25%;
  max-width: 25%;
}
.footer-widgets .footer-widget .footer-border {
  border: 4px solid rgba(130, 195, 65, 0.7);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*background-image: url("../img/footer_4_bg.png");*/
  position: relative;
}
.footer-widgets .footer-widget .footer-border::after {
  content: "";
  background-image: url("../img/footer_4_left.png");
  position: absolute;
  right: -20px;
  bottom: -26px;
  width: 45%;
  height: 65px;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.footer-widgets .footer-widget .footer-border::before {
  content: "";
  background-image: url("../img/footer-4-right.png");
  position: absolute;
  left: -20px;
  bottom: -26px;
  width: 45%;
  height: 65px;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.footer-widgets .footer-widget .site-logo img {
  width: 100px;
  max-width: 100%;
  margin: 0 auto;
}
.footer-widgets .footer-widget .footer-text {
  color: #454545;
  font-weight: 300;
  font-size: 13px;
  margin-top: 10px;
}
.footer-widgets .footer-widget h6 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}
.footer-widgets .footer-widget .iconbox li {
  display: flex;
  align-items: baseline;
}
.footer-widgets .footer-widget .iconbox li i {
  top: 2px;
  position: relative;
  flex: 0 0 25px;
  max-width: 25px;
  font-size: 18px;
  color: #e83c2a;
}
.footer-widgets .footer-widget .iconbox li .iconbox-title {
  font-weight: 400;
}
.footer-widgets .footer-widget .iconbox li .iconbox-title .title {
  line-height: 1.5;
}
.footer-widgets .footer-widget .iconbox li .iconbox-title > p {
  line-height: 1.5;
}
.footer-widgets .footer-widget .iconbox li:not(:last-child) {
  margin-bottom: 5px;
}
.footer-widgets .footer-widget ul.menu {
  flex-direction: column;
}
.footer-widgets .footer-widget ul.menu li a {
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
  color: #454545;
}
.footer-widgets .footer-widget ul.menu li a:hover {
  color: #e83c2a;
}
.footer-widgets .footer-widget ul.menu li.active a {
  background: none;
  color: #e83c2a;
}
.footer-widgets .footer-widget.footer-widget-1 {
  flex: 0 0 35%;
  max-width: 35%;
  padding-right: 30px;
}
@media (max-width: 64.05rem) {
  .footer-widgets .footer-widget.footer-widget-1 {
    /*1025px*/
    flex: 0 0 60%;
    max-width: 60%;
  }
}
@media (max-width: 39.9875rem) {
  .footer-widgets .footer-widget.footer-widget-1 {
    /*640px*/
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
.footer-widgets .footer-widget.footer-widget-2 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 64.05rem) {
  .footer-widgets .footer-widget.footer-widget-2 {
    /*1025px*/
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 39.9875rem) {
  .footer-widgets .footer-widget.footer-widget-2 {
    /*640px*/
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30px;
  }
}
.footer-widgets .footer-widget.footer-widget-3 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 64.05rem) {
  .footer-widgets .footer-widget.footer-widget-3 {
    /*1025px*/
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 30px;
  }
}
@media (max-width: 39.9875rem) {
  .footer-widgets .footer-widget.footer-widget-3 {
    /*640px*/
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 64.05rem) {
  .footer-widgets .footer-widget.footer-widget-4 {
    /*1025px*/
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 30px;
  }
}
@media (max-width: 39.9875rem) {
  .footer-widgets .footer-widget.footer-widget-4 {
    /*640px*/
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.footer-credit {
  background-color: #82c341;
  color: #eee;
  font-size: 14px;
  padding-top: 14px;
  padding-bottom: 10px;
}
@media (max-width: 39.9875rem) {
  .footer-credit {
    /*640px*/
    font-size: 13px;
  }
}
.footer-credit a {
  color: currentColor;
}

.archives.archive-posts {
  background-color: #F9F9F9;
  padding-bottom: 60px;
  padding-top: 50px;
}

/** */
.breadcrumbs {
  margin-bottom: 10px;
}
.breadcrumbs li {
  text-transform: unset;
}
.breadcrumbs li a {
  font-size: 13px;
  margin-bottom: 0;
  position: relative;
  text-transform: unset;
  z-index: 99;
}

/** */
.section.section-title {
  overflow: hidden;
  padding: 60px 0 50px 0;
  position: relative;
}
@media (max-width: 39.9875rem) {
  .section.section-title {
    /*640px*/
    padding: 30px 0;
  }
}
.section.section-title .title-bg {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.section.section-title .grid-container {
  position: relative;
}
.section.section-title .title {
  /*color: #ffffff;*/
  font-weight: 700;
  max-width: 720px;
  position: relative;
  text-transform: capitalize;
}
.section.section-title .breadcrumbs li, .section.section-title .breadcrumbs a {
  /*color: #eee;*/
}
.section.section-title .title-parallax {
  bottom: -60px;
  color: transparent;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -4px;
  position: absolute;
  right: 15px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  -webkit-text-stroke-width: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  display: none;
}

/** */
.section.single-post .sharing_toolbox {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 40px;
  margin-top: 110px;
  padding-right: 15px;
  position: sticky;
  top: 220px;
}
@media (max-width: 39.9875rem) {
  .section.single-post .sharing_toolbox {
    /*640px*/
    display: none;
  }
}
.section.single-post .grid-container {
  align-items: flex-start;
  display: flex;
}
.section.single-post .col-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 900px;
}
.section.single-post .col-content .terms {
  margin: 0;
  padding-bottom: 30px;
  padding-top: 50px;
}
.section.single-post .col-content .terms a {
  border: 1px solid #e83c2a;
  border-radius: 10px;
  color: #e83c2a;
  font-size: 14px;
  margin-right: 15px;
  padding: 5px 10px;
  transition: 0.3s;
}
.section.single-post .col-content .terms a:last-child {
  margin-right: 0;
}
.section.single-post .col-content .terms a:hover {
  border-color: #e83c2a;
  color: #e83c2a;
}
.section.single-post .col-content .excerpt blockquote {
  background-color: rgba(177, 177, 177, 0.1);
  border-left: none;
  box-shadow: inset 0 0 0 1px rgba(177, 177, 177, 0.1);
  box-sizing: border-box;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 300;
  height: auto;
  margin-bottom: 30px;
  max-width: 100%;
  padding: 30px 30px 30px 80px;
  position: relative;
}
.section.single-post .col-content .excerpt blockquote::first-letter {
  font-size: 18px;
  font-weight: 600;
  margin-right: 1px;
}
.section.single-post .col-content .excerpt blockquote::before {
  color: #ed6658;
  content: "“";
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 150px;
  font-style: normal;
  left: 10px;
  line-height: 1;
  position: absolute;
  top: -16px;
}
.section.single-post .col-content .content {
  margin-bottom: 50px;
}

.section.single-page {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section.single-contact {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.single-contact .heading-title {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.section.single-contact .heading-title::after {
  content: "";
  background-image: url(../img/below-heading.png);
  width: auto;
  height: 22px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section.single-contact .desc {
  text-align: left;
  font-size: 14px;
  color: #454545;
}
.section.single-contact ul.infomation {
  list-style: none;
  margin: 30px 0 0 0;
}
.section.single-contact ul.infomation li {
  margin-bottom: 10px;
  display: flex;
}
.section.single-contact ul.infomation li i {
  position: relative;
  top: -2px;
  flex: 0 0 30px;
  max-width: 30px;
  font-size: 18px;
  color: #e83c2a;
}
.section.single-contact ul.infomation li .title {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 500;
}
.section.single-contact ul.infomation li .title a {
  font-weight: 500;
}
.section.single-contact ul.infomation li .title a:hover {
  color: #e83c2a;
}

/** */
.woocommerce-sorting {
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  margin-top: 40px;
  padding: 10px 15px;
}
@media (max-width: 39.9875rem) {
  .woocommerce-sorting {
    /*640px*/
    margin-bottom: 20px;
  }
}
.woocommerce-sorting::before, .woocommerce-sorting::after {
  display: none;
}
.woocommerce-sorting .woocommerce-ordering {
  order: 0;
  float: none;
  padding: 0;
  margin: 0 15px 0 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.woocommerce-sorting .woocommerce-ordering label {
  font-size: 14px;
  margin-right: 10px;
  letter-spacing: 0.3px;
  /* text-transform: uppercase; */
  font-weight: 400;
}
.woocommerce-sorting .woocommerce-ordering select {
  margin: 0;
  height: 33px;
  line-height: 1.5;
  padding: 0 30px 0 10px;
  text-overflow: ellipsis;
  width: 150px;
  font-size: 14px;
  outline: none;
  border: 1px solid #f5f5f5;
  font-weight: 300;
}
.woocommerce-sorting .woocommerce-ordering select:focus {
  box-shadow: none;
}
.woocommerce-sorting .woocommerce-result-count {
  margin: 0;
  line-height: 30px;
  white-space: nowrap;
  float: none;
  padding: 0;
  order: 2;
  flex: 1 1 0;
  text-align: right;
  font-size: 15px;
  font-weight: 300;
}
.woocommerce-sorting .meta-terms {
  order: 1;
  flex: 0 0 auto;
}

/** */
.site-header-cart {
  position: relative;
  margin: 0;
  padding: 0;
}

.site-header-cart .header-cart-contents {
  color: #58585a;
  padding: 0;
  outline: none;
  position: relative;
  display: table-cell;
  vertical-align: middle;
  line-height: 1;
  transition: all 0s ease-in-out;
}

.site-header-cart .header-cart-contents .amount {
  display: none;
}

.site-header-cart .header-cart-contents .count {
  position: absolute;
  top: 0;
  transform: translate(50%, -50%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -1px;
  right: 0;
  background-color: #e83c2a;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  color: #fff;
}

.site-header-cart .header-cart-contents .icon {
  position: relative;
  display: inline-block;
}

.site-header-cart .header-cart-contents .icon i {
  font-weight: 400;
  font-size: 20px;
}

.site-header-cart .header-cart-contents .icon svg {
  width: 23px;
  fill: #000;
}

.site-header-cart .header-cart-contents:hover .icon svg {
  fill: #000;
}

.site-header-cart .header-cart-contents:hover .count {
  color: #fff;
}

.site-header-cart .widget_shopping_cart {
  left: auto !important;
  position: absolute;
  top: 105%;
  right: 0;
  width: 270px;
  background-color: transparent;
  text-align: left;
  z-index: 1499;
  opacity: 0;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.53, 0.01, 0.18, 1);
  font-size: 14px;
  margin-bottom: 0;
  visibility: hidden;
  padding-top: 5px;
}

.site-header-cart .widget_shopping_cart_content {
  padding: 7px 15px 15px 15px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 40rem) {
  /*640px*/
  .site-header-cart:hover .widget_shopping_cart,
.site-header-cart.hover .widget_shopping_cart {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .site-header-cart .widget_shopping_cart .widget_shopping_cart_content {
    overflow: hidden;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget {
    height: auto;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li {
    padding: 8px 0 8px 0;
    margin: 0;
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    border-bottom: none;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-image-holder {
    flex: 0 0 25%;
    max-width: 25%;
    margin-right: 10px;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-image-holder a {
    outline: none;
    display: block;
    padding: 0;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-image-holder img {
    display: block;
    margin: 0;
    float: none;
    width: 100%;
    height: auto;
    max-width: unset;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder {
    padding-right: 15px;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .product-title {
    margin-bottom: 0;
    font-size: 13px;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .product-title > a {
    outline: none;
    padding: 0;
    line-height: 1.3;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .variation {
    margin: 5px 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 5px;
    display: flex;
    flex-wrap: wrap;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .variation dt {
    margin-bottom: 0;
    font-weight: 700;
    flex: 0 0 40%;
    max-width: 40%;
    margin-right: 5px;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .variation dd {
    margin-bottom: 0;
    flex: 0 0 calc(60% - 5px);
    max-width: calc(60% - 5px);
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .variation dd > * {
    margin-bottom: 0;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .quantity {
    font-size: 13px;
    margin-top: 5px;
    display: block;
    letter-spacing: -0.2px;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder .quantity .amount {
    font-weight: 500;
    color: #e83c2a;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder a.remove {
    position: absolute;
    top: 8px;
    right: 0;
    left: auto;
    padding: 0;
    width: 12px;
    height: 12px;
    text-indent: 0;
    font-size: 18px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header-cart .widget_shopping_cart .product_list_widget li .item-info-holder a.remove::before {
    display: none;
  }

  .site-header-cart .widget_shopping_cart p.total {
    background: none;
    border: none;
    padding: 10px 0 0 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .site-header-cart .widget_shopping_cart p.total .amount {
    color: #e83c2a;
  }

  .site-header-cart .widget_shopping_cart p.buttons {
    background: none;
    padding: 0;
  }

  .site-header-cart .widget_shopping_cart a.button {
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0 26px;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    transition: color 0.2s ease-out, background-color 0.2s ease-out;
    border: 1px solid #00572d;
    color: #58585a;
    background-color: #fff;
    margin-bottom: 0;
    font-weight: 500;
  }

  .site-header-cart .widget_shopping_cart a.button:hover {
    color: #fff;
    background-color: #00572d;
  }

  .site-header-cart .widget_shopping_cart a.button::after {
    display: none;
  }

  .site-header-cart .widget_shopping_cart a.button.checkout {
    margin-top: 10px;
    color: #fff;
    background-color: #00572d;
    border-color: #00572d;
  }

  .site-header-cart .widget_shopping_cart a.button.checkout:hover {
    color: #58585a;
    background-color: #fff;
  }

  .site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
    margin: 8px 0 0 0;
  }

  .woocommerce-active .site-header .site-header-cart {
    margin: 0 10px;
    width: auto;
    float: none;
  }
}
/** */
.list-product-wrapper .swiper-slide {
  padding-top: 3px;
  padding-bottom: 3px;
}
.list-product-wrapper article.product {
  position: relative;
  border: 1px solid #eee;
}
.list-product-wrapper article.product .onsale {
  position: absolute;
  top: 0;
  margin: 5px 0 0 5px;
  padding: 0 5px;
  font-size: 9px;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-align: center;
  /*z-index: 9;*/
  font-weight: 400;
  transform: translateZ(0);
  text-transform: uppercase;
  left: 0;
  border: none;
  color: #ffffff;
  background-color: rgba(232, 60, 42, 0.6);
  min-height: unset;
  min-width: unset;
  border-radius: 5px;
}
.list-product-wrapper article.product .hidden-feature-img {
  position: absolute;
  top: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
}
.list-product-wrapper article.product .cover-content {
  padding: 15px;
  position: unset;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 39.9875rem) {
  .list-product-wrapper article.product .cover-content {
    /*640px*/
    padding: 10px 10px 15px 10px;
  }
}
.list-product-wrapper article.product .cover-content .star-rating {
  color: #8a8a8a;
  -webkit-font-smoothing: antialiased;
  font-size: 10px;
  letter-spacing: 3px;
  width: auto;
  display: flex;
  height: auto;
  overflow-y: hidden;
  margin: 0 0 10px 0;
  line-height: 1;
  overflow-x: visible;
  float: none;
}
.list-product-wrapper article.product .cover-content .star-rating::before {
  position: inherit;
  float: none;
}
.list-product-wrapper article.product .cover-content .star-rating span {
  padding-top: 11px;
  display: block;
  overflow-y: hidden;
  overflow-x: visible;
}
.list-product-wrapper article.product .cover-content .star-rating span .rating {
  position: absolute;
  top: 0;
  z-index: 9;
  left: 75px;
  font-size: 11px;
  color: #454545;
}
.list-product-wrapper article.product .cover-content > h6, .list-product-wrapper article.product .cover-content > h5 {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}
.list-product-wrapper article.product .cover-content > h6 a, .list-product-wrapper article.product .cover-content > h5 a {
  color: #000000;
  display: block;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 42px;
}
.list-product-wrapper article.product .cover-content .price {
  display: block;
  margin: 10px 0 0;
  line-height: 1;
  transition: all 0.4s ease-in-out;
  letter-spacing: -0.5px;
}
.list-product-wrapper article.product .cover-content .price del {
  display: inline-block;
  opacity: 0.8;
  font-weight: 400;
}
.list-product-wrapper article.product .cover-content .price ins, .list-product-wrapper article.product .cover-content .price > .amount {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #e83c2a;
}
.list-product-wrapper article.product .cover-content .price ins .woocommerce-Price-currencySymbol, .list-product-wrapper article.product .cover-content .price > .amount .woocommerce-Price-currencySymbol {
  font-weight: initial;
}
.list-product-wrapper article.product .cover-content .price .woocommerce-Price-currencySymbol {
  margin: 0 2px;
  font-size: 90%;
}
.list-product-wrapper article.product .product-button {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
.list-product-wrapper article.product .product-button a {
  font-weight: 300;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background-color: var(--color1);
  color: var(--white);
  display: inline-flex;
  transition: 0.3s;
}
.list-product-wrapper article.product .product-button a:hover {
  background-color: var(--color2);
}
.list-product-wrapper article.product .product-button a.loading {
  opacity: 0.6;
}
.list-product-wrapper article.product .product-button a.loading::after {
  font-size: 18px;
  top: 5px;
}
.list-product-wrapper article.product .product-button a.added_to_cart.wc-forward {
  display: none;
}
.list-product-wrapper article.product .product-button a.add_to_cart_button.added {
  background-color: var(--color3);
}

.list-product-columns > .cell {
  margin-bottom: 30px;
}
.list-product-columns .product {
  height: 100%;
}

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-ordering,
.woocommerce-page .woocommerce-result-count {
  float: none;
}

.single-product--wrap .heading-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 25px;
}
.single-product--wrap .navigation-bar {
  background: #f6f6f6;
  padding: 15px 0;
  margin-bottom: 35px;
  display: block;
}
.single-product--wrap .navigation-bar .breadcrumbs {
  margin-bottom: 0;
}
.single-product--wrap .navigation-bar .breadcrumbs li {
  font-size: 14px;
  text-transform: unset;
  font-weight: 400;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: #f6f6f6;
  color: #454545;
  border-top: 3px solid #82c341;
  margin-bottom: 30px;
  font-size: 14px;
}

.woocommerce-message {
  border-top-color: #00572d;
}
.woocommerce-message::before {
  color: #00572d;
}

.woocommerce-info {
  border-top-color: #82c341;
}
.woocommerce-info::before {
  color: #82c341;
}

.woocommerce-error {
  border-top-color: #e83c2a;
}
.woocommerce-error::before {
  color: #e83c2a;
}

.woocommerce a.button.wc-forward {
  background: none;
  font-size: 15px;
  font-weight: 400;
  padding: 0;
}
.woocommerce a.button.wc-forward::after {
  filter: invert(0.5);
  margin-left: 10px;
  vertical-align: -20%;
  width: 15px;
  height: 15px;
}

@media (min-width: 768.2px) {
  .woocommerce.single-product .product.product-detail .woocommerce-product-gallery {
    width: 40%;
    float: left;
    margin-right: 4%;
    margin-bottom: 40px;
  }
  .woocommerce.single-product .product.product-detail .summary {
    width: 56%;
    float: right;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.woocommerce.single-product .product.product-detail .woocommerce-product-rating {
  margin-top: 0;
  margin-bottom: 30px;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-rating .star-rating {
  font-size: 10px;
  width: 68px;
  margin-top: 10px;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-rating a {
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  color: var(--medium-black);
}
@media (min-width: 768.2px) {
  .woocommerce.single-product .product.product-detail > span.onsale {
    position: relative;
    left: unset;
    top: 0;
    border-radius: 5px;
    font-weight: 400;
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid var(--color2);
    background: none;
    color: var(--global-color3);
    margin-bottom: 15px;
    display: inline-block;
    line-height: normal;
    min-height: unset;
    min-width: unset;
  }
}
.woocommerce.single-product .product.product-detail p.price {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 22px;
}
.woocommerce.single-product .product.product-detail p.price del {
  margin-right: 10px;
  color: #454545;
}
.woocommerce.single-product .product.product-detail p.price ins {
  text-decoration: none;
  color: #e83c2a;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-details__short-description {
  font-size: 14px;
  color: #454545;
  margin-bottom: 1rem;
}
.woocommerce.single-product .product.product-detail .stock.in-stock {
  color: var(--color1);
  font-weight: 500;
  font-size: 15px;
}
.woocommerce.single-product .product.product-detail form.cart {
  margin-bottom: 15px;
  padding: 15px 0;
}
.woocommerce.single-product .product.product-detail form.cart .quantity {
  margin-right: 10px;
}
.woocommerce.single-product .product.product-detail form.cart .quantity .qty {
  height: 40px;
  font-weight: 500;
  padding-right: 0;
  padding-left: 0;
}
.woocommerce.single-product .product.product-detail form.cart .button {
  line-height: normal;
  padding: 0 20px;
  height: 40px;
  background-color: var(--color3);
  border: none;
  transition: all 0.4s;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 13px;
}
.woocommerce.single-product .product.product-detail .product_meta {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce.single-product .product.product-detail .product_meta > * {
  color: var(--medium-black);
}
.woocommerce.single-product .product.product-detail .product_meta .sku {
  color: var(--color2);
  font-weight: 500;
}
.woocommerce.single-product .product.product-detail .product_meta a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color2);
}
.woocommerce.single-product .product.product-detail .inline-share {
  border: none;
  padding: 0;
  margin-top: 30px;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 20px;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-gallery .flex-control-thumbs {
  margin-left: -4px;
  margin-right: -4px;
  display: flex;
  flex-flow: row wrap;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-gallery .flex-control-thumbs li {
  float: none;
  padding-left: 4px;
  padding-right: 4px;
  margin: 0;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-gallery .flex-control-thumbs li img {
  opacity: 0.8;
  display: block;
  border: 1px solid #fefefe;
  border-radius: 0;
  margin-right: 0;
  width: 100%;
}
.woocommerce.single-product .product.product-detail .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border-color: var(--color2);
}
.woocommerce.single-product .product.product-detail .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
  flex: 0 0 20%;
  max-width: 20%;
}
.woocommerce.single-product .product.product-detail .woocommerce-tabs ul.tabs {
  text-align: center;
  padding: 0;
}
.woocommerce.single-product .product.product-detail .woocommerce-tabs ul.tabs li {
  background-color: #eee;
}
.woocommerce.single-product .product.product-detail .woocommerce-tabs ul.tabs li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--medium-black);
}
.woocommerce.single-product .product.product-detail .woocommerce-tabs ul.tabs li.active a {
  color: var(--color2);
}
.woocommerce.single-product .product.product-detail .woocommerce-tabs .panel h2:first-of-type {
  font-size: 20px;
  margin-bottom: 1em;
}
.woocommerce.single-product .product.product-detail .woocommerce-tabs .short-description {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 30px;
}
@media (min-width: 48.9375rem) {
  .woocommerce.single-product .product.product-detail .woocommerce-tabs {
    /*783px*/
  }
  .woocommerce.single-product .product.product-detail .woocommerce-tabs .panel {
    width: 1000px;
    float: none;
    margin-bottom: 0;
    padding-top: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.woocommerce table.shop_attributes {
  font-size: 15px;
}
.woocommerce table.shop_attributes th {
  font-weight: 600;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
  font-size: 10px;
  width: 68px;
}

@media (min-width: 64.0625rem) {
  .woocommerce-Reviews {
    /*1024px*/
    display: flex;
    flex-flow: row wrap;
  }
  .woocommerce-Reviews #comments {
    flex: 1 1 0;
    min-width: 0;
  }
  .woocommerce-Reviews #review_form_wrapper {
    flex: 0 0 35%;
    max-width: 35%;
    margin-left: 30px;
  }
  .woocommerce-Reviews .clear {
    display: none;
  }
}
.woocommerce-Reviews #review_form {
  background: #f5f5f5;
  padding: 20px;
}
.woocommerce-Reviews #review_form #reply-title {
  display: none;
}
.woocommerce-Reviews #review_form #commentform .form-submit {
  margin-bottom: 0;
}
.woocommerce-Reviews #review_form #commentform .form-submit [type=submit] {
  border: 1px solid var(--color2);
  background: var(--color2);
  color: #fff;
  font-weight: normal;
  font-size: 15px;
}

.single-product-section {
  margin-bottom: 50px;
}

/** */
/** */
.woocommerce-cart-form table.cart {
  margin-bottom: 40px;
  border: 1px solid #f1f1f1;
}

.woocommerce-cart-form table.cart thead tr th {
  padding: 12px;
  font-size: 15px;
  color: #666;
  background-color: #fdfdfd;
  font-weight: 500;
}

.woocommerce-cart-form table.cart thead tr th.product-remove {
  border-right: none;
  width: 50px;
}

.woocommerce-cart-form table.cart thead tr th.product-thumbnail {
  width: 110px;
}

.woocommerce-cart-form table.cart tbody tr td {
  background-color: #fefefe;
  padding: 12px;
  margin-bottom: 0;
  border-top: 1px solid #f1f1f1;
  text-align: left !important;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-remove {
  border-right: none;
  border-top: 1px solid #f1f1f1;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-remove a.remove:hover::before {
  color: var(--global-color3);
}

.woocommerce-cart-form table.cart tbody .cart_item .product-thumbnail a {
  display: block;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-thumbnail img {
  display: block;
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-name > a {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-name .variation {
  /* border-top: 1px solid #f1f1f1; */
  /* margin-top: 10px; */
  padding-top: 10px;
  display: flex;
  align-items: baseline;
  flex-flow: row wrap;
  font-size: 13px;
  margin-bottom: 0;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-name .variation dt {
  flex: 0 0 110px;
  max-width: 110%;
  font-weight: 400;
  margin-bottom: 4px;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-name .variation dd {
  flex: 0 0 calc(100% - 110px);
  max-width: calc(100% - 110px);
  margin-bottom: 4px;
  font-weight: 700;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-price .amount {
  font-weight: 500;
  font-size: 15px;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-quantity .quantity .qty {
  padding: 0;
  height: 30px;
}

.woocommerce-cart-form table.cart tbody .cart_item .product-subtotal .amount {
  font-weight: 700;
  color: var(--global-color3);
}

.woocommerce-cart-form table.cart tbody tr td.actions {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #fafafa;
}

.woocommerce-cart-form table.cart tbody tr td.actions .coupon {
  display: flex;
  align-items: center;
}

.woocommerce-cart-form table.cart tbody tr td.actions .coupon label {
  display: none;
}

.woocommerce-cart-form table.cart tbody tr td.actions .coupon input {
  height: 40px;
  width: 120px;
  font-size: 14px;
}

.woocommerce-cart-form table.cart tbody tr td.actions .coupon button {
  margin-bottom: 0;
  font-size: 13px;
  height: 40px;
  border: none;
  background-color: var(--color1);
  margin-left: 10px;
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
}

.woocommerce-cart-form table.cart tbody tr td.actions .coupon button:hover {
  background-color: var(--color2);
}

.woocommerce-cart-form table.cart tbody tr td.actions button[name=update_cart] {
  margin-bottom: 0;
  background-color: var(--color1);
  border: none;
  height: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.woocommerce-cart-form table.cart tbody tr td.actions button[name=update_cart]:hover {
  background-color: var(--color2);
  color: #fff;
}

.cart-collaterals {
  margin-bottom: 30px;
}

.cart-collaterals .cart_totals > h4 {
  margin-bottom: 15px;
}

.cart-collaterals .cart_totals .shop_table {
  margin-bottom: 30px;
  border: 1px solid #f1f1f1;
}

.cart-collaterals .cart_totals .shop_table tr th {
  background-color: #fdfdfd;
  padding: 12px;
  font-size: 15px;
  color: #666;
}

.cart-collaterals .cart_totals .shop_table tr td {
  background-color: #fefefe;
  padding: 12px;
}

.cart-collaterals .cart_totals .shop_table tr.cart-subtotal .amount {
  font-weight: 700;
  color: var(--color2);
}

.cart-collaterals .cart_totals .shop_table tr.shipping .woocommerce-shipping-destination {
  font-size: 14px;
  color: var(--color3);
  margin-bottom: 0;
}

.cart-collaterals .cart_totals .shop_table tr.order-total .amount {
  font-size: 110%;
  color: var(--color2);
}

.cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-bottom: 0;
}

.cart-collaterals .cart_totals .wc-proceed-to-checkout .button.checkout-button {
  margin-bottom: 0;
  background-color: var(--color1);
  border: none;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 10px;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout .button.checkout-button::after {
  display: none;
}

.cart-collaterals .cart_totals .wc-proceed-to-checkout .button.checkout-button:hover {
  background-color: var(--color2);
}

.cart-collaterals .cart_totals .wc-proceed-to-checkout .button.checkout-button::after {
  font-size: 0;
}

.product-thumbnail::before {
  display: none;
}

/************************/
ul#shipping_method li {
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  flex-flow: row wrap;
}

ul#shipping_method li > input {
  margin: 0 5px 0 0;
}

.woocommerce-shipping-calculator .shipping-calculator-button {
  font-size: 13px;
  text-decoration: underline !important;
  color: var(--global-color1);
}

.woocommerce-shipping-calculator .shipping-calculator-form p:last-child {
  margin-bottom: 0;
}

.woocommerce-shipping-calculator .shipping-calculator-form button[name=calc_shipping] {
  border: none;
  background-color: var(--color3);
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: normal;
  font-size: 13px;
}

.woocommerce-shipping-calculator .shipping-calculator-form button[name=calc_shipping]:hover {
  background-color: var(--color2);
}

.checkout_coupon {
  margin-bottom: 30px;
}

.checkout_coupon .form-row-first {
  margin-bottom: 0;
}

.checkout_coupon .form-row-last {
  margin-bottom: 0;
}

.checkout_coupon .form-row-first input {
  margin-bottom: 0;
}

.checkout_coupon .form-row-last button {
  background-color: var(--color1);
  margin-bottom: 0;
  font-size: inherit;
  padding: 0 15px;
  height: 40px;
  color: #fff;
  font-weight: 400;
}

.checkout_coupon .form-row-last button:hover {
  background-color: var(--color2);
  color: #fff;
}

/************************/
#order_review .shop_table {
  margin-bottom: 30px;
  font-size: 15px;
  border: 1px solid #f1f1f1;
}

#order_review .shop_table .shipping th {
  display: none;
}

#order_review .shop_table .shipping td[data-title]::before {
  content: attr(data-title) ": ";
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

#order_review .shop_table .product-title {
  font-weight: 700;
  padding: 10px;
  /* border-bottom: 1px solid #f1f1f1; */
}

#order_review .shop_table .cart_item {
  background: #fff;
}

#order_review .shop_table .cart_item .product-name {
  width: 100%;
}

#order_review .shop_table .cart_item .product-name h6 {
  color: var(--color1);
  font-weight: 400;
  line-height: normal;
  font-size: 15px;
  margin-bottom: 4px;
}

#order_review .shop_table .cart_item .product-name > span {
  display: flex;
  align-items: center;
}

#order_review .shop_table .cart_item .product-name .product-quantity {
  margin-right: 15px;
  font-size: 13px;
}

#order_review .shop_table .cart_item .product-name .product-total {
  margin-top: 0;
  font-size: 14px;
  color: #e83c2a;
}

#order_review .shop_table .cart_item .variation {
  padding-top: 5px;
  display: flex;
  align-items: baseline;
  flex-flow: row wrap;
  font-size: 13px;
  margin-bottom: 0;
}

#order_review .shop_table .cart_item .variation dt {
  flex: 0 0 110px;
  max-width: 110%;
  font-weight: 400;
  margin-bottom: 0;
}

#order_review .shop_table .cart_item .variation dd {
  flex: 0 0 calc(100% - 110px);
  max-width: calc(100% - 110px);
  margin-bottom: 0;
  font-weight: 700;
}

#order_review .shop_table .cart_item .product-total {
  font-weight: 700;
  margin-top: auto;
  display: block;
}

/************************/
.form-row label {
  margin-bottom: 4px;
}

/************************/
.one-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.one-col > label {
  font-weight: 700;
  margin-right: 15px;
}

.one-col .amount {
  color: #e83c2a;
}

/************************/
#order_comments {
  font-size: 15px;
}

.select2-selection.select2-selection--single {
  height: 2.4375rem;
  line-height: 1.5;
  padding: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.4375rem;
}

#customer_details .woocommerce-billing-fields .billing-heading,
#order_review_heading {
  position: relative;
  /*margin-bottom: 30px;*/
  /*color: #333;*/
}

#customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p {
  margin-bottom: 0;
  /*width: 48%;*/
}
@media (max-width: 39.9875rem) {
  #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper p {
    /*640px*/
    width: 100%;
  }
}

#ship-to-different-address {
  margin-bottom: 15px;
}

#ship-to-different-address label {
  display: flex;
  align-items: baseline;
  flex-flow: row nowrap;
}

#ship-to-different-address label > span {
  color: var(--global-color3);
}

#ship-to-different-address .woocommerce-form__input-checkbox {
  margin-bottom: 0;
  margin-right: 10px;
}

/************************/
#payment .payment_methods {
  font-size: 14px;
}

#payment .place-order {
  margin-top: 30px;
  padding: 15px;
}

#payment .place-order .woocommerce-privacy-policy-text {
  font-size: 14px;
}

#payment .payment_methods li .payment_box {
  padding: 15px;
}

/************************/
table.shop_table_responsive tr td[data-title]::before {
  font-size: 15px;
  color: #666;
  font-weight: 700;
  margin-right: 10px;
}

p.form-row {
  margin-bottom: 0;
}

.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 var(--global-color1);
  background-color: #fdfdfd;
}

#payment .place-order .button {
  border: none;
  background-color: var(--color1);
  font-size: 19px;
}

#payment .place-order .button:hover,
#payment .place-order .button:focus {
  border: none;
  outline: none;
  background-color: var(--color2);
}

#payment .payment_methods > .woocommerce-PaymentMethod > label::before,
#payment .payment_methods > .wc_payment_method > label::before {
  content: "\f111";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 300;
  width: 14px;
  height: 14px;
  line-height: 14px;
  border-radius: 50%;
  background-color: #fff;
  display: none;
}

#payment .payment_methods li.woocommerce-PaymentMethod > input[type=radio]:first-child:checked + label::before,
#payment .payment_methods li.wc_payment_method > input[type=radio]:first-child:checked + label::before {
  content: "\f192";
  font-weight: 700;
  color: var(--color3);
  display: none;
}

#payment .payment_methods > .woocommerce-PaymentMethod > label,
#payment .payment_methods > .wc_payment_method > label {
  margin: 0;
  padding: 15px 15px 15px 0;
}

/************************/
body.woocommerce-cart article.page,
body.woocommerce-checkout article.page {
  width: 1100px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/************************/
@media (max-width: 767px) {
  .cart-collaterals .cart_totals .shop_table tr td {
    padding: 12px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
  }

  .cart-collaterals .cart_totals .shop_table tr.shipping td::before {
    display: block;
    float: none;
    text-align: left;
    margin-bottom: 10px;
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }

  ul#shipping_method,
.woocommerce-shipping-calculator {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .woocommerce-cart-form table.cart tbody .cart_item td {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    border-right: none;
  }

  .woocommerce-cart-form table.cart tbody .cart_item .product-name::before,
.woocommerce-cart-form table.cart tbody .cart_item .product-name > a {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .woocommerce-cart-form table.cart tbody .cart_item .product-name::before {
    margin-bottom: 5px;
  }

  .woocommerce-cart-form table.cart tbody .cart_item .product-thumbnail {
    border-top: none;
  }

  .woocommerce-cart-form table.cart tbody .cart_item .product-remove {
    border-bottom: none;
    padding: 0;
  }

  .woocommerce-cart-form table.cart tbody .cart_item .product-thumbnail img {
    max-height: 300px;
    width: auto;
    max-width: 100%;
  }

  table.shop_table_responsive tr td[data-title]::after {
    font-size: 0;
  }
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .cart-collaterals .cart_totals {
    width: 65%;
  }

  .woocommerce-cart-form table.cart tbody tr td.actions {
    text-align: right !important;
  }

  .checkout_coupon .form-row-first {
    margin-right: 15px;
    width: 50%;
  }

  .checkout_coupon .form-row-last {
    width: calc(50% - 15px);
  }

  #ship-to-different-address .woocommerce-form__input-checkbox {
    position: static;
    transform: none;
    top: unset;
  }
}
.single-product--wrap .sharing_toolbox {
  margin-top: 25px;
}
.single-product--wrap .sharing_toolbox .share-title {
  display: none;
}
.single-product--wrap .sharing_toolbox .social-share .share-actions {
  flex-direction: row;
}
.single-product--wrap .sharing_toolbox .social-share .share-actions li.share-action {
  margin-bottom: 0;
  margin-right: 10px;
}

.woocommerce .woocommerce-checkout .col2-set .col-1,
.woocommerce .woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
}

.woocommerce .woocommerce-checkout input, .woocommerce .woocommerce-checkout select, .woocommerce .woocommerce-checkout textarea {
  font-size: 14px;
}
@media (max-width: 39.9875rem) {
  .woocommerce .woocommerce-checkout input, .woocommerce .woocommerce-checkout select, .woocommerce .woocommerce-checkout textarea {
    /*640px*/
    font-size: 13px;
  }
}
.woocommerce .woocommerce-checkout .form-row label {
  display: block;
  margin-top: 10px;
}

/** */
.sidebar--wrap {
  margin-top: 40px;
}
.sidebar--wrap .sidebar {
  margin: 0 0 40px;
  padding: 0;
}
.sidebar--wrap .sidebar .sidebar-title {
  position: relative;
  line-height: 1.6em;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--color3);
  padding: 10px 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.sidebar--wrap .sidebar .sidebar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  background: #82c341;
  width: 60px;
  display: none;
}
.sidebar--wrap .sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0;
}
.sidebar--wrap .sidebar ul li {
  margin: 0;
  position: relative;
  padding: 0;
  font-size: 15px;
  display: block;
  line-height: 22px;
  color: #454545;
}
.sidebar--wrap .sidebar ul li::before {
  font-size: 0;
  width: 0;
  position: absolute;
  margin: 0;
  padding: 0;
  float: none;
  opacity: 0.4;
}
.sidebar--wrap .sidebar ul li > a {
  color: #454545;
  margin: 0;
  position: relative;
  display: block;
  padding: 0;
  line-height: 22px;
  background: none;
}
.sidebar--wrap .sidebar ul li > a :hover {
  color: var(--global-color3);
}
.sidebar--wrap .sidebar ul li > .count {
  font-size: 12px;
}
.sidebar--wrap .sidebar ul.product-categories li > a {
  display: inline-block;
  margin-bottom: 20px;
}
.sidebar--wrap .sidebar ul.woocommerce-widget-layered-nav-list li::before {
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  top: 5px;
}
.sidebar--wrap .sidebar ul.woocommerce-widget-layered-nav-list li > a {
  margin-left: 25px;
}
.sidebar--wrap .sidebar .recent-post-list li {
  margin-bottom: 30px;
  overflow: hidden;
}
.sidebar--wrap .sidebar .recent-post-list li .thumb {
  float: left;
  width: 27%;
}
.sidebar--wrap .sidebar .recent-post-list li .post-title {
  display: block;
  padding-left: calc(27% + 15px);
  font-weight: 600;
  line-height: 1.4;
}
.sidebar--wrap .sidebar .recent-post-list li .post-date {
  display: block;
  padding-left: calc(27% + 15px);
  font-size: 12px;
  color: #8a8a8a;
  margin-top: 2px;
}
.sidebar--wrap .sidebar ul.product_list_widget li {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
}
.sidebar--wrap .sidebar ul.product_list_widget li .star-rating {
  font-size: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  width: 66px;
}
.sidebar--wrap .sidebar ul.product_list_widget li img {
  max-width: 50px;
  width: auto;
}
.sidebar--wrap .sidebar ul.product_list_widget li .product-title {
  display: inline-block;
  font-weight: 500;
  width: calc(100% - 60px);
  margin-bottom: 5px;
}
.sidebar--wrap .sidebar .price_slider_wrapper .ui-widget-content {
  padding: 0;
  color: inherit;
  border: 0;
  border-radius: 0;
  position: relative;
  height: 3px;
  background: #8a8a8a 0 0;
  margin-bottom: 0;
}
.sidebar--wrap .sidebar .price_slider_wrapper .ui-widget-content .ui-slider-range {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: initial;
  border: 0;
  border-radius: 0;
  position: absolute;
  display: block;
  height: 100%;
  background: #454545 0 0;
  z-index: 1;
}
.sidebar--wrap .sidebar .price_slider_wrapper .ui-widget-content .ui-slider-handle {
  position: absolute;
  top: -4px;
  height: 11px;
  width: 11px;
  border-radius: 11px;
  background-color: #454545;
  margin: 0 0 0 -1px;
  cursor: pointer;
  outline: 0;
  z-index: 2;
}
.sidebar--wrap .sidebar .price_slider_wrapper .ui-widget-content .ui-slider-handle:hover, .sidebar--wrap .sidebar .price_slider_wrapper .ui-widget-content .ui-slider-handle.ui-state-active {
  box-shadow: none;
}
.sidebar--wrap .sidebar .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-child {
  transform: translateX(-50%);
}
.sidebar--wrap .sidebar .price_slider_wrapper .price_slider_amount {
  margin: 33px 0 0;
}
.sidebar--wrap .sidebar .price_slider_wrapper .price_slider_amount input {
  height: 0;
  visibility: hidden;
}
.sidebar--wrap .sidebar .price_slider_wrapper .price_slider_amount .button {
  position: relative;
  width: auto;
  margin: 0;
  line-height: 22px;
  font-weight: 700;
  outline: 0;
  transition: background-color 0.35s, border-color 0.35s, color 0.1s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 5px 22px;
  font-size: 12px;
  color: #ffffff;
  background-color: #8a8a8a;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  z-index: 3;
  float: right;
}
.sidebar--wrap .sidebar .price_slider_wrapper .price_slider_amount .button:hover {
  background-color: #e83c2a;
}
.sidebar--wrap .sidebar .price_slider_wrapper .price_slider_amount .price_label {
  font-size: 12px;
  color: #454545;
  float: left;
}

.product_list_widget ins {
  color: #e83c2a;
}

@media (max-width: 64.05rem) {
  .archive-products .sidebar-col {
    /*1025px*/
    order: 1;
  }
}

.section.archive-products .woocommerce-info {
  margin-top: 40px;
}

/** */
#arcontactus {
  touch-action: none;
  -webkit-user-select: none;
          user-select: none;
}
#arcontactus .arcontactus-message-button {
  background-color: unset !important;
  background: linear-gradient(135deg, #e83c2a 0%, #e8622a 100%);
  box-shadow: 3px 1px 12px rgba(232, 60, 42, 0.2);
}
#arcontactus .arcontactus-message-button p {
  font-weight: 300;
  letter-spacing: 1px;
}

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