@charset "UTF-8";
/** $string - svg */
/** add unique id image url */
/** https://webdesign.tutsplus.com/tutorials/an-introduction-to-error-handling-in-sass--cms-19996 */
/** get breakpoint */
/** font size */
/** keyframe */
:root {
  --body-color: #000000;
  --body-bg: #ffffff;
  --link-color: #0000FF;
  --link-hover-color: #0000cc;
  --gutter: 14px;
  --gutter-xs: 10px;
  --gap: 28px;
  --gap-xs: 20px;
  --Primary-01: #3cb44a;
  --Primary-02: #036608;
  --Primary-03: #115718;
  --Primary-04: #3cb44a;
  --img-path: "../img";
  --font-path: "../fonts";
}

@media only screen and (min-width: 64rem) {
  ::-webkit-scrollbar-track {
    background-color: #e9ecef;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #adb5bd;
    border-radius: 4px;
  }
  ::-webkit-scrollbar {
    width: 10px;
    height: 5px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: #000000;
  background: #ffffff;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-optical-sizing: auto;
}
body {
  font-size: 0.9375rem;
  line-height: 1.516875rem;
}
@media screen and (min-width: 40rem) {
  body {
    font-size: calc(0.9375rem + 0.0011160714 * (100vw - 40rem));
    line-height: calc(1.516875rem + 0.0018058036 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  body {
    font-size: 1rem;
    line-height: 1.618rem;
  }
}

:is(input, select, textarea, button, main):focus {
  outline: none;
}

:is(a, button, [role=button], input, select, textarea) {
  transition: 0.3s;
}

:is(a, area, button, [role=button], input, label, select, summary, textarea) {
  touch-action: manipulation;
}

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

*:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

* > p {
  margin-top: 0;
  line-height: inherit;
}
* > p:not(:last-child) {
  margin-bottom: 16px;
}
* > p:last-child {
  margin-bottom: 0;
}

code, kbd, pre, samp {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-size: 1rem;
}

sup {
  line-height: 1;
  top: -4px;
  color: #ff0000;
  font-size: 14px;
  padding-left: 2px;
}

.cite-block::before, cite::before {
  content: "";
  font-style: normal;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  font-optical-sizing: auto;
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: 700;
}
:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a {
  text-decoration: none;
  display: inline-block;
  color: currentColor;
}
:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) p {
  color: currentColor;
  line-height: inherit;
  margin-bottom: 0;
}

:is(h1, .h1) {
  font-size: 1.5rem;
  line-height: 1.95rem;
}
@media screen and (min-width: 40rem) {
  :is(h1, .h1) {
    font-size: calc(1.5rem + 0.0267857143 * (100vw - 40rem));
    line-height: calc(1.95rem + 0.0348214286 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h1, .h1) {
    font-size: 3rem;
    line-height: 3.9rem;
  }
}

:is(h2, .h2) {
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media screen and (min-width: 40rem) {
  :is(h2, .h2) {
    font-size: calc(1.25rem + 0.015625 * (100vw - 40rem));
    line-height: calc(1.625rem + 0.0203125 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h2, .h2) {
    font-size: 2.125rem;
    line-height: 2.7625rem;
  }
}

:is(h3, .h3) {
  font-size: 1.1875rem;
  line-height: 1.54375rem;
}
@media screen and (min-width: 40rem) {
  :is(h3, .h3) {
    font-size: calc(1.1875rem + 0.0122767857 * (100vw - 40rem));
    line-height: calc(1.54375rem + 0.0159598214 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h3, .h3) {
    font-size: 1.875rem;
    line-height: 2.4375rem;
  }
}

:is(h4, .h4) {
  font-size: 1.125rem;
  line-height: 1.4625rem;
}
@media screen and (min-width: 40rem) {
  :is(h4, .h4) {
    font-size: calc(1.125rem + 0.0078125 * (100vw - 40rem));
    line-height: calc(1.4625rem + 0.01015625 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h4, .h4) {
    font-size: 1.5625rem;
    line-height: 2.03125rem;
  }
}

:is(h5, .h5) {
  font-size: 1.0625rem;
  line-height: 1.38125rem;
}
@media screen and (min-width: 40rem) {
  :is(h5, .h5) {
    font-size: calc(1.0625rem + 0.0033482143 * (100vw - 40rem));
    line-height: calc(1.38125rem + 0.0043526786 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h5, .h5) {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}

:is(h6, .h6) {
  font-size: 1rem;
  line-height: 1.3rem;
}
@media screen and (min-width: 40rem) {
  :is(h6, .h6) {
    font-size: calc(1rem + 0.0022321429 * (100vw - 40rem));
    line-height: calc(1.3rem + 0.0029017857 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h6, .h6) {
    font-size: 1.125rem;
    line-height: 1.4625rem;
  }
}

.body-font {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-optical-sizing: auto;
}

.heading-font {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  font-optical-sizing: auto;
}

:is(span, label) > a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #0000FF;
}
a:hover {
  color: #0000cc;
  text-decoration: none;
}
a :where(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  color: currentColor;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
img:not([src]) {
  visibility: hidden;
}
img:where(.aligncenter, .align-center) {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

figure {
  max-width: 100% !important;
}
figure:where(.wp-caption, .caption) {
  display: block;
}
figure:where(.wp-caption, .caption) img {
  display: inline-block;
}
figure:where(.wp-caption, .caption):where(.wp-caption-text, .caption-text) {
  padding-top: 10px;
  color: #495057;
}
figure:where(.wp-caption, .caption):where(.aligncenter, .align-center) {
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

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

@media only screen and (max-width: 47.99875rem) {
  .md\:show {
    display: none;
  }
}

@media only screen and (max-width: 47.99875rem) {
  .\!md\:show {
    display: none !important;
  }
}

@media only screen and (max-width: 63.99875rem) {
  .lg\:show {
    display: none;
  }
}

@media only screen and (max-width: 63.99875rem) {
  .\!lg\:show {
    display: none !important;
  }
}

.hidden {
  display: none;
}

.\!hidden {
  display: none !important;
}

@media only screen and (min-width: 48rem) {
  .md\:hidden {
    display: none;
  }
}

@media only screen and (min-width: 48rem) {
  .\!md\:hidden {
    display: none !important;
  }
}

@media only screen and (min-width: 64rem) {
  .lg\:hidden {
    display: none;
  }
}

@media only screen and (min-width: 64rem) {
  .\!lg\:hidden {
    display: none !important;
  }
}

@media only screen and (min-width: 83.75rem) {
  .xl\:hidden {
    display: none;
  }
}

@media only screen and (min-width: 83.75rem) {
  .\!xl\:hidden {
    display: none !important;
  }
}

.flex {
  display: flex;
}

.\!flex {
  display: flex !important;
}

.flex-x {
  flex-flow: row wrap;
}
.flex-x > :where(.auto, .shrink) {
  width: auto;
}
@media only screen and (min-width: 48rem) {
  .flex-x > :where(.md-auto, .md-shrink) {
    width: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .flex-x > :where(.lg-auto, .lg-shrink) {
    width: auto;
  }
}

.flex-y {
  flex-flow: column nowrap;
}
.flex-y > .cell {
  height: auto;
  max-height: none;
}

.flex-padding-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media only screen and (min-width: 48rem) {
  .flex-padding-x {
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }
}
.flex-padding-x > .cell {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  .flex-padding-x > .cell {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}

.flex-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media only screen and (min-width: 48rem) {
  .flex-padding-y {
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }
}
.flex-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  .flex-padding-y > .cell {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}

.grid {
  display: grid;
}

.\!grid {
  display: grid !important;
}

.block {
  display: block;
}

.\!block {
  display: block !important;
}

.inline-block {
  display: inline-block;
}

.\!inline-block {
  display: inline-block !important;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.gap-10 {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}

.gap-15 {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}

.gap-20 {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.gap-25 {
  grid-gap: 1.5625rem;
  gap: 1.5625rem;
}

.gap-30 {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.cell {
  flex: 0 0 auto;
  max-width: 100%;
  min-width: 0;
}
.cell.auto {
  flex: 1 1 0;
  max-width: 100%;
  min-width: 0;
  width: auto;
}
.cell.stretch {
  width: 100%;
}
@media only screen and (min-width: 48rem) {
  .cell.md-auto {
    flex: 1 1 0;
    max-width: 100%;
    min-width: 0;
    width: auto;
  }
  .cell.md-stretch {
    width: 100%;
  }
}
@media only screen and (min-width: 64rem) {
  .cell.lg-auto {
    flex: 1 1 0;
    max-width: 100%;
    min-width: 0;
    width: auto;
  }
  .cell.lg-stretch {
    width: 100%;
  }
}

:is(.grid-gap, .flex-gap, .gap) {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  :is(.grid-gap, .flex-gap, .gap) {
    grid-gap: 1.75rem;
    gap: 1.75rem;
  }
}

:is(.container, .flex-container, .grid-container) {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
:is(.container, .flex-container, .grid-container):not(.full) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    max-width: 768px;
  }
}
@media only screen and (min-width: 64rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    max-width: 1024px;
  }
}
@media only screen and (min-width: 83.75rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    max-width: 1340px;
  }
}
@media only screen and (min-width: 96rem) {
  :is(.container, .flex-container, .grid-container):not(.full).xxl {
    max-width: 1536px;
  }
}
:is(.container, .flex-container, .grid-container).full {
  /*max-width: 100%;*/
  padding-left: 0;
  padding-right: 0;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-1 > .cell {
  width: 100%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-1 {
  width: 8.3333333333%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-1 {
  width: 8.3333333333% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-1 > .cell {
  width: 100%;
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-1 {
  width: calc(8.3333333333% - 1.1458333333rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-1 {
  width: calc(8.3333333333% - 1.1458333333rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-2 > .cell {
  width: 50%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-2 {
  width: 16.6666666667%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-2 {
  width: 16.6666666667% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-2 > .cell {
  width: calc(50% - 0.625rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-2 {
  width: calc(16.6666666667% - 1.0416666667rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-2 {
  width: calc(16.6666666667% - 1.0416666667rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-3 > .cell {
  width: 33.3333333333%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-3 {
  width: 25%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-3 {
  width: 25% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-3 > .cell {
  width: calc(33.3333333333% - 0.8333333333rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-3 {
  width: calc(25% - 0.9375rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-3 {
  width: calc(25% - 0.9375rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-4 > .cell {
  width: 25%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-4 {
  width: 33.3333333333%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-4 {
  width: 33.3333333333% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-4 > .cell {
  width: calc(25% - 0.9375rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-4 {
  width: calc(33.3333333333% - 0.8333333333rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-4 {
  width: calc(33.3333333333% - 0.8333333333rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-5 > .cell {
  width: 20%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-5 {
  width: 41.6666666667%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-5 {
  width: 41.6666666667% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-5 > .cell {
  width: calc(20% - 1rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-5 {
  width: calc(41.6666666667% - 0.7291666667rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-5 {
  width: calc(41.6666666667% - 0.7291666667rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-6 > .cell {
  width: 16.6666666667%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-6 {
  width: 50%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-6 {
  width: 50% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-6 > .cell {
  width: calc(16.6666666667% - 1.0416666667rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-6 {
  width: calc(50% - 0.625rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-6 {
  width: calc(50% - 0.625rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-7 > .cell {
  width: 14.2857142857%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-7 {
  width: 58.3333333333%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-7 {
  width: 58.3333333333% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-7 > .cell {
  width: calc(14.2857142857% - 1.0714285714rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-7 {
  width: calc(58.3333333333% - 0.5208333333rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-7 {
  width: calc(58.3333333333% - 0.5208333333rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-8 > .cell {
  width: 12.5%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-8 {
  width: 66.6666666667%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-8 {
  width: 66.6666666667% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-8 > .cell {
  width: calc(12.5% - 1.09375rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-8 {
  width: calc(66.6666666667% - 0.4166666667rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-8 {
  width: calc(66.6666666667% - 0.4166666667rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-9 > .cell {
  width: 11.1111111111%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-9 {
  width: 75%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-9 {
  width: 75% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-9 > .cell {
  width: calc(11.1111111111% - 1.1111111111rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-9 {
  width: calc(75% - 0.3125rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-9 {
  width: calc(75% - 0.3125rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-10 > .cell {
  width: 10%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-10 {
  width: 83.3333333333%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-10 {
  width: 83.3333333333% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-10 > .cell {
  width: calc(10% - 1.125rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-10 {
  width: calc(83.3333333333% - 0.2083333333rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-10 {
  width: calc(83.3333333333% - 0.2083333333rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-11 > .cell {
  width: 9.0909090909%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-11 {
  width: 91.6666666667%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-11 {
  width: 91.6666666667% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-11 > .cell {
  width: calc(9.0909090909% - 1.1363636364rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-11 {
  width: calc(91.6666666667% - 0.1041666667rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-11 {
  width: calc(91.6666666667% - 0.1041666667rem) !important;
}

:is(.flex, .\!flex):not(.gap):not(.flex-gap).sm-up-12 > .cell {
  width: 8.3333333333%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.sm-12 {
  width: 100%;
}
:is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!sm-12 {
  width: 100% !important;
}
:is(.flex, .\!flex):where(.gap, .flex-gap).sm-up-12 > .cell {
  width: calc(8.3333333333% - 1.1458333333rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-12 {
  width: 100%;
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-12 {
  width: 100% !important;
}

@media only screen and (min-width: 48rem) {
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-1 > .cell {
    width: 100%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-1 {
    width: 8.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-1 {
    width: 8.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-1 > .cell {
    width: 100%;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-1 {
    width: calc(8.3333333333% - 1.6041666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-1 {
    width: calc(8.3333333333% - 1.6041666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-2 > .cell {
    width: 50%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-2 {
    width: 16.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-2 {
    width: 16.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-2 > .cell {
    width: calc(50% - 0.875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-2 {
    width: calc(16.6666666667% - 1.4583333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-2 {
    width: calc(16.6666666667% - 1.4583333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-3 > .cell {
    width: 33.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-3 {
    width: 25%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-3 {
    width: 25% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-3 > .cell {
    width: calc(33.3333333333% - 1.1666666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-3 {
    width: calc(25% - 1.3125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-3 {
    width: calc(25% - 1.3125rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-4 > .cell {
    width: 25%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-4 {
    width: 33.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-4 {
    width: 33.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-4 > .cell {
    width: calc(25% - 1.3125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-4 {
    width: calc(33.3333333333% - 1.1666666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-4 {
    width: calc(33.3333333333% - 1.1666666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-5 > .cell {
    width: 20%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-5 {
    width: 41.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-5 {
    width: 41.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-5 > .cell {
    width: calc(20% - 1.4rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-5 {
    width: calc(41.6666666667% - 1.0208333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-5 {
    width: calc(41.6666666667% - 1.0208333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-6 > .cell {
    width: 16.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-6 {
    width: 50%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-6 {
    width: 50% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-6 > .cell {
    width: calc(16.6666666667% - 1.4583333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-6 {
    width: calc(50% - 0.875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-6 {
    width: calc(50% - 0.875rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-7 > .cell {
    width: 14.2857142857%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-7 {
    width: 58.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-7 {
    width: 58.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-7 > .cell {
    width: calc(14.2857142857% - 1.5rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-7 {
    width: calc(58.3333333333% - 0.7291666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-7 {
    width: calc(58.3333333333% - 0.7291666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-8 > .cell {
    width: 12.5%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-8 {
    width: 66.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-8 {
    width: 66.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-8 > .cell {
    width: calc(12.5% - 1.53125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-8 {
    width: calc(66.6666666667% - 0.5833333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-8 {
    width: calc(66.6666666667% - 0.5833333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-9 > .cell {
    width: 11.1111111111%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-9 {
    width: 75%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-9 {
    width: 75% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-9 > .cell {
    width: calc(11.1111111111% - 1.5555555556rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-9 {
    width: calc(75% - 0.4375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-9 {
    width: calc(75% - 0.4375rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-10 > .cell {
    width: 10%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-10 {
    width: 83.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-10 {
    width: 83.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-10 > .cell {
    width: calc(10% - 1.575rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-10 {
    width: calc(83.3333333333% - 0.2916666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-10 {
    width: calc(83.3333333333% - 0.2916666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-11 > .cell {
    width: 9.0909090909%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-11 {
    width: 91.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-11 {
    width: 91.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-11 > .cell {
    width: calc(9.0909090909% - 1.5909090909rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-11 {
    width: calc(91.6666666667% - 0.1458333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-11 {
    width: calc(91.6666666667% - 0.1458333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-12 > .cell {
    width: 8.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-12 {
    width: 100%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-12 {
    width: 100% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-12 > .cell {
    width: calc(8.3333333333% - 1.6041666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-12 {
    width: 100%;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-12 {
    width: 100% !important;
  }
}
@media only screen and (min-width: 64rem) {
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-1 > .cell {
    width: 100%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-1 {
    width: 8.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-1 {
    width: 8.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-1 > .cell {
    width: 100%;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-1 {
    width: calc(8.3333333333% - 1.6041666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-1 {
    width: calc(8.3333333333% - 1.6041666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-2 > .cell {
    width: 50%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-2 {
    width: 16.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-2 {
    width: 16.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-2 > .cell {
    width: calc(50% - 0.875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-2 {
    width: calc(16.6666666667% - 1.4583333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-2 {
    width: calc(16.6666666667% - 1.4583333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-3 > .cell {
    width: 33.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-3 {
    width: 25%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-3 {
    width: 25% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-3 > .cell {
    width: calc(33.3333333333% - 1.1666666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-3 {
    width: calc(25% - 1.3125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-3 {
    width: calc(25% - 1.3125rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-4 > .cell {
    width: 25%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-4 {
    width: 33.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-4 {
    width: 33.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-4 > .cell {
    width: calc(25% - 1.3125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-4 {
    width: calc(33.3333333333% - 1.1666666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-4 {
    width: calc(33.3333333333% - 1.1666666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-5 > .cell {
    width: 20%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-5 {
    width: 41.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-5 {
    width: 41.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-5 > .cell {
    width: calc(20% - 1.4rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-5 {
    width: calc(41.6666666667% - 1.0208333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-5 {
    width: calc(41.6666666667% - 1.0208333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-6 > .cell {
    width: 16.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-6 {
    width: 50%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-6 {
    width: 50% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-6 > .cell {
    width: calc(16.6666666667% - 1.4583333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-6 {
    width: calc(50% - 0.875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-6 {
    width: calc(50% - 0.875rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-7 > .cell {
    width: 14.2857142857%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-7 {
    width: 58.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-7 {
    width: 58.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-7 > .cell {
    width: calc(14.2857142857% - 1.5rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-7 {
    width: calc(58.3333333333% - 0.7291666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-7 {
    width: calc(58.3333333333% - 0.7291666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-8 > .cell {
    width: 12.5%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-8 {
    width: 66.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-8 {
    width: 66.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-8 > .cell {
    width: calc(12.5% - 1.53125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-8 {
    width: calc(66.6666666667% - 0.5833333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-8 {
    width: calc(66.6666666667% - 0.5833333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-9 > .cell {
    width: 11.1111111111%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-9 {
    width: 75%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-9 {
    width: 75% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-9 > .cell {
    width: calc(11.1111111111% - 1.5555555556rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-9 {
    width: calc(75% - 0.4375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-9 {
    width: calc(75% - 0.4375rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-10 > .cell {
    width: 10%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-10 {
    width: 83.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-10 {
    width: 83.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-10 > .cell {
    width: calc(10% - 1.575rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-10 {
    width: calc(83.3333333333% - 0.2916666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-10 {
    width: calc(83.3333333333% - 0.2916666667rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-11 > .cell {
    width: 9.0909090909%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-11 {
    width: 91.6666666667%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-11 {
    width: 91.6666666667% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-11 > .cell {
    width: calc(9.0909090909% - 1.5909090909rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-11 {
    width: calc(91.6666666667% - 0.1458333333rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-11 {
    width: calc(91.6666666667% - 0.1458333333rem) !important;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).lg-up-12 > .cell {
    width: 8.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.lg-12 {
    width: 100%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!lg-12 {
    width: 100% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).lg-up-12 > .cell {
    width: calc(8.3333333333% - 1.6041666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-12 {
    width: 100%;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-12 {
    width: 100% !important;
  }
}
.overlay {
  position: relative;
}
.overlay :where(.bg-overlay, .link-overlay) {
  background: transparent;
  -webkit-user-select: none;
          user-select: none;
}
.overlay :where(.bg-overlay, .link-overlay) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.cover {
  display: block;
  overflow: hidden;
  position: relative;
}
.cover :where(.bg-cover, .link-cover) {
  background: transparent;
  -webkit-user-select: none;
          user-select: none;
}
.cover :where(.bg-cover, .link-cover) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.cover.after-overlay::after {
  background: transparent;
  content: "";
  -webkit-user-select: none;
          user-select: none;
  z-index: 1;
}
.cover.after-overlay::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.cover.after-overlay > img {
  width: 100%;
  display: block;
  -webkit-user-select: none;
          user-select: none;
}

.res {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.res > img:first-child {
  display: block;
}
.res > img:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.res:not(.auto) > img:first-child {
  height: 100% !important;
  width: 100%;
  max-width: unset;
  object-fit: cover;
  object-position: center;
}
.res.auto > img {
  height: auto !important;
  width: auto !important;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}
.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: 1;
}
.res :where(iframe, embed, object, video) {
  border: 0;
}
.res :where(iframe, embed, object, video) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.res.after-overlay::after {
  background: transparent;
  content: "";
  -webkit-user-select: none;
          user-select: none;
  z-index: 1;
}
.res.after-overlay::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.res.after-overlay > img {
  -webkit-user-select: none;
          user-select: none;
}

@supports (aspect-ratio: 1) {
  :is(.ar-1, .ar-1-1, .ar\[1-1\]) {
    aspect-ratio: 1 / 1;
  }
}
@supports not (aspect-ratio: 1) {
  :is(.ar-1, .ar-1-1, .ar\[1-1\]) {
    height: 0;
    padding-bottom: 100%;
  }
}

@supports (aspect-ratio: 1) {
  :is(.ar-2-1, .ar\[2-1\]) {
    aspect-ratio: 2 / 1;
  }
}
@supports not (aspect-ratio: 1) {
  :is(.ar-2-1, .ar\[2-1\]) {
    height: 0;
    padding-bottom: 50%;
  }
}

@supports (aspect-ratio: 1) {
  :is(.ar-3-2, .ar\[3-2\]) {
    aspect-ratio: 3 / 2;
  }
}
@supports not (aspect-ratio: 1) {
  :is(.ar-3-2, .ar\[3-2\]) {
    height: 0;
    padding-bottom: 66.6666666667%;
  }
}

@supports (aspect-ratio: 1) {
  :is(.ar-4-3, .ar\[4-3\]) {
    aspect-ratio: 4 / 3;
  }
}
@supports not (aspect-ratio: 1) {
  :is(.ar-4-3, .ar\[4-3\]) {
    height: 0;
    padding-bottom: 75%;
  }
}

@supports (aspect-ratio: 1) {
  :is(.ar-16-9, .ar\[16-9\]) {
    aspect-ratio: 16 / 9;
  }
}
@supports not (aspect-ratio: 1) {
  :is(.ar-16-9, .ar\[16-9\]) {
    height: 0;
    padding-bottom: 56.25%;
  }
}

@supports (aspect-ratio: 1) {
  :is(.ar-21-9, .ar\[21-9\]) {
    aspect-ratio: 21 / 9;
  }
}
@supports not (aspect-ratio: 1) {
  :is(.ar-21-9, .ar\[21-9\]) {
    height: 0;
    padding-bottom: 42.8571428571%;
  }
}

/*@while $count <= $count_max {
    :is(.mt-0, .mt\[0px\]) {
        margin-top: func.fs($count);
    }

    :is(.\!mt-0, .\!mt\[0px\]) {
        margin-top: func.fs($count) !important;
    }

    :is(.mb-0, .mb\[0px\]) {
        margin-bottom: func.fs($count);
    }

    :is(.\!mb-0, .\!mb\[0px\]) {
        margin-bottom: func.fs($count) !important;
    }

    :is(.pt-0, .pt\[0px\]) {
        padding-top: func.fs($count);
    }

    :is(.\!pt-0, .\!pt\[0px\]) {
        padding-top: func.fs($count) !important;
    }

    :is(.pb-0, .pb\[0px\]) {
        padding-bottom: func.fs($count);
    }

    :is(.\!pb-0, .\!pb\[0px\]) {
        padding-bottom: func.fs($count) !important;
    }

    $count: $count + $step;
}*/
:is(.fs-16, .fs\[16px\]) {
  font-size: 1rem;
}

:is(.\!fs-16, .\!fs\[16px\]) {
  font-size: 1rem !important;
}

:is(.fs-17, .fs\[17px\]) {
  font-size: 1.0625rem;
}

:is(.\!fs-17, .\!fs\[17px\]) {
  font-size: 1.0625rem !important;
}

:is(.fs-18, .fs\[18px\]) {
  font-size: 1.125rem;
}

:is(.\!fs-18, .\!fs\[18px\]) {
  font-size: 1.125rem !important;
}

:is(.fs-19, .fs\[19px\]) {
  font-size: 1.1875rem;
}

:is(.\!fs-19, .\!fs\[19px\]) {
  font-size: 1.1875rem !important;
}

:is(.fs-20, .fs\[20px\]) {
  font-size: 1.25rem;
}

:is(.\!fs-20, .\!fs\[20px\]) {
  font-size: 1.25rem !important;
}

:is(.fw-400, .fw\[400\]) {
  font-weight: 400;
}

:is(.\!fw-400, .\!fw\[400\]) {
  font-weight: 400 !important;
}

:is(.fw-500, .fw\[500\]) {
  font-weight: 500;
}

:is(.\!fw-500, .\!fw\[500\]) {
  font-weight: 500 !important;
}

:is(.fw-600, .fw\[600\]) {
  font-weight: 600;
}

:is(.\!fw-600, .\!fw\[600\]) {
  font-weight: 600 !important;
}

:is(.fw-700, .fw\[700\]) {
  font-weight: 700;
}

:is(.\!fw-700, .\!fw\[700\]) {
  font-weight: 700 !important;
}

[id^=gallery-] {
  display: flex;
  flex-flow: row wrap;
}
[id^=gallery-] {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
[id^=gallery-] > .gallery-item {
  flex: 0 0 auto;
  max-width: 100%;
  min-width: 0;
}
[id^=gallery-].gallery-columns-1 > .gallery-item {
  width: 100%;
}
[id^=gallery-].gallery-columns-2 > .gallery-item {
  width: calc(50% - 0.3125rem);
}
[id^=gallery-].gallery-columns-3 > .gallery-item {
  width: calc(33.3333333333% - 0.4166666667rem);
}
[id^=gallery-].gallery-columns-4 > .gallery-item {
  width: calc(25% - 0.46875rem);
}
[id^=gallery-].gallery-columns-5 > .gallery-item {
  width: calc(20% - 0.5rem);
}
[id^=gallery-].gallery-columns-6 > .gallery-item {
  width: calc(16.6666666667% - 0.5208333333rem);
}
[id^=gallery-].gallery-columns-7 > .gallery-item {
  width: calc(14.2857142857% - 0.5357142857rem);
}
[id^=gallery-].gallery-columns-8 > .gallery-item {
  width: calc(12.5% - 0.546875rem);
}
[id^=gallery-].gallery-columns-9 > .gallery-item {
  width: calc(11.1111111111% - 0.5555555556rem);
}

.site-header {
  position: relative;
  z-index: 99;
}

#top-header {
  background-color: #3cb44a;
  padding: 5px 0;
}
#top-header .wrapper {
  justify-content: space-between;
  font-size: 12px;
  color: #ffffff;
}
#top-header .wrapper .cell.cell-left {
  display: flex;
  align-items: center;
}
#top-header .wrapper .cell.cell-left .menu li {
  position: relative;
}
#top-header .wrapper .cell.cell-left .menu li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.6);
}
#top-header .wrapper .cell.cell-left .menu li:last-child::after {
  content: none;
}
#top-header .wrapper .cell.cell-left .menu li a {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 12px;
  color: #ffffff;
  line-height: normal;
}
@media only screen and (max-width: 39.99875rem) {
  #top-header .wrapper .cell.cell-left .menu li a {
    padding: 0 6px;
  }
}
#top-header .wrapper .cell.cell-right .top-lang {
  padding-right: 0.375rem;
}
@media only screen and (min-width: 64rem) {
  #top-header .wrapper .cell.cell-right .top-lang {
    padding-right: 1rem;
  }
}
#top-header .wrapper .cell.cell-right .top-lang::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.6);
}
#top-header .wrapper .cell.cell-right .top-lang .widget_polylang {
  position: relative;
}
#top-header .wrapper .cell.cell-right .top-lang .widget_polylang::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAhCAYAAACfiCi5AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAARNSURBVHgB1VhNbxtFGH5mZtd2art2QxClacomadQEDonFBYFECEiAhJCCxKUSElx7SoEfkOYEN1J+QXoCxKV/AIXckRKERSGl6SIiQiFNNk3w13p3eGfXNnVqu8561KaP5GR2d3b3eb+eeWeBJxys24mrVjabNJOzAJ8G5BQDsySQhQYQCUdC2jRao8OVf9396znbcbq8tzNujJ+2RNWcYwwf6SLcJZY8112YsP+yO01qa4DyeMo8OU+euYzHi0WKyEK7iLQ0IPC6Zy7T0MLxgE3RmGkVDX74xPrY4NQxI69gCdNczhO3wxeaIqDd87LVW3rCA5FoPDpUmfQqNHqeGTJ4hfTwvzG9w6aayNVropFCqmChM22IcPqdItLvFiB96IRFjp6vHwQRqKXObWiE+7fAyHdbkGSI/foZGKer0AlKpWGVSkEEiPw8NENWORIvltFHP9+DdjBhBPLObltW1jW9XWhGYrKCoW/vBOM/3n8GpZ9iOutAwaFaGOZEfhaa4f4jMPBpbd0h0k99vIfqHQHNyCZFctagwTQigHGJ6j0Bf4c/sJq4roG+l8q1icCJV0qoFEzIzUN6SsaJkx5EvwyV6qjgfNogkZuSEYS6elfg2S93kLm4T/nOmrVejVXNGvXJwGT5t2Y1kqHM7n2VxtZcP0Q2ilRRU3lzbGg3UpNGXvfuchhnPJxf2wTU+7vNEvK2lAy3coOUWgaMU9XgOAIcHrnDJMLiFP0pM+TFeRR/iDfOd7pHobgaRz4xAuky8rwXlbxClqNHqLRIXChhg7T+z0sDYT20Uht1jq5tXXoaG68Oom+s3NnYLsHVZgI9QnoMscEqnK/TcJbSrXsf9SK6tvtNErEhN7hHAxzyidoJ6YF/jyHzwUHb65mLB/D3ucb1QNrcB/sROkAOTZJchg0cwkKl+ggUqiaRLC6RermksTtla5RC/vfQAKVIA5/shXlNNlR+N3Gjfxg/Z4ZR2TBrk8JFzXN6Lr3641a46ZrXddRBdUcg9XYhKNTtz7P49cI5xJ6rIE6/9efPYfuzbCCzybcKqO7qWZVLtPnnw7btSF9eQy+opw+lyPo4kb2aQd9IJUgf9YvTePuLDG6+cBY8IZHUk0ZLak8QxNIzjUX0AP+AIfVmEfnYqNq+UHvgB210A6ploJWWkfLk46NIvVGCPOjNAs8VC+p/4ynro2cXSVTnEAU8NEKk/YfKo+qhPFIikZLNRh4Bvi+vjt/avFx7dQjTM66ovQeigAqXn5Bdabv0GXgyOnnFsUhc68cNA1Qt+ELMRDbiEUBx810xkyOu9XNNejbxi21TIrx3HI1QnBS3Cdu27z/f5sOWZXHPW2bH5NtQ3fOHySu0XFFUJGKuyIGKBY8ZqmALxKUVeYUuPu4G0bhCEz/Eo4NDxK9Jz1hsR7yOI3xet7IJ2j9TyF5jUk6CMQv6vlY7JEs2PXPNg79Sou7g/kLthP8A2dnR3GoVnM0AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 16px;
  border-radius: 25px;
}
#top-header .wrapper .cell.cell-right .top-lang .widget_polylang::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAgCAYAAABU1PscAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAewSURBVHgB1VgLUFTXGf7u3ZVngbXiBkHgLiJCnOhikhlIeC3F1HQaGzqxrSaOmNYZQ5N0SdpMH5NImrTpZNIibWrS6bRoS0w1nWhmnGk6Iiui4kxGFqMVCQLXJTwEdBeQ12b3nv7n7mNYWBDTDdP8wNzLPef85/v+/zv3/PcIWKhJZh0w+agoioWMwQgwiZ7qeBNzKTDlrUH9wQpM9fSjaWU6InWrAoZPODqQ230V4SsTULy1CpYzbRC0oq/ZAQiyIKBFUZQGIOIo5L2OhcDS3raHtFsSIfyICVNlNImOEfovwCgQzMgDIwhCGTBVI6SV7ycyL0N+W55voDi3yzKdmPZUFTnsYgLM8EZ7sYwCVcbn1hIGT/aDW1ACXX12Kd90t1XpvGYWSR4C/Sy2EXgIbgWuLpu5+N5EKxGSgvWbRYA5ncYUfZzl1Ps/kXqvv4Oc+9KgdF2DsEhEOHCRgPM5C7IlDN48hLqacunyN5+0WBBtxHwE7NZWCUuWHBEFSPz/u+LjcPr9F/Bpfy0e+IKJ+CLO53jQaMDQzcOo//vTGHjyOdTHLsNwQ5PE4D5i3fQ9KSgBCyRdS/Z9FquxRJpo6/Q0enGu0MehkYj0UEYeDDGR6cDzjJ6In6x9Gtd3VhDweAwfbySQIiLSk5Db3ioZ//WuheSkm0VgxXce2aNgSpr6pAfnstbDuqEEE21dAZ0S4mNxihPpq0XudCKfgwcf45NKvh/4MxTx52HhEa9rpPBw4IkcOLKtdYhISyGNQ1IU7AkgkLPpNSn2rdfMxWPDiP16AfWZwtQVTmQdmrO/hpkZSdB7pNVznaR1bxqYzQYQkYWai4Czbi4ViaRyCJbaaVI53uAH/oAfeLI6juec/96w3zJLmbslP4FzH3fuSVz2GPIeq0Lsn99A8cQIYh7KV4k423rRlLWWiBRh/HK7J3q+jCwnaR15Abaed3DP2hQs1IyZiRi48U9YDpSjf+ezBHwphv99SpVKuEcqAcDd3q1n8OYtFGz+DfTxW2Ab/cysYpGKKnWGhFg7T6nicsN2tQfbthXhlR9/Cy77MDp2/xzu0XEIGhHjtqvQ5eZj1VuvYLpu+ObGtezmr73+gXl3Yu0KPTTkq29fLXqq/ojIjNUQxTC4JyeQ/uariFhjICCUTTHwBflS1TH87cAJpGckQ9FSjgTBEaPXGQS+YVB7zcwouYm2RmCzHHlyqQR/TuakUuLsbUoJEFFogoznu3yQBUU7Mk0XdL6dWqett5DNAcaFOzf38AhJbHaFIkADt2METrpjCE05QvEtFCz4ipUcGhEi40Cj9RlQnM6A52JYGMYG2gn65wnLXHMJLcI53To7FrnOCZWR2BxcO19K8NxIiDoRX3LjBBb04fD/aFxC2glHp4wQLmL+jRSlX82r2sDJaBGPD3xCd26E0GRtzrUrF0RRExoCFBKXfQQf3XM/InRSQNM4vYHuv/gRluhiETJjaNFGpCSdpNsdM9sUhdHmEaRKm2Oz8W1uTPUbLMouaJfGIiwpAcHBzOXX400jBq0YG7SlFfuPjg44qpjCdLys7aBqdPsOE35Z8UhQgJPtXbha/iI0ERHk+zOMt7Uj6blyJJZvV4u0eY1BLTd4KeErP/xG9x1P/QKOs6cRlZKu7r7a6Cis+tOviLgOL77xAQ4ebEAq1Ur8MIDz7eofOaqOFZN27QU2sYLNv2b9g8OMm8vlVq/M7blOtMuseX0Jq0cka4rOZHXQskuPfp+57cNs4OYt9sxL76r9Jj/tY/TlxGh/Cfjjzya7+9Q+z1YeZt29dq97Rb0q3uvYxTZ23lhI/sNZU2QmO8Hn2byLsfExZhscZXnfeJWgP8yQuEstf9TXaEpM9N6BocNo+OBnWL4sRiWl8QZnsqsbzcYSNK3OwlRHD5W0CmIfKkDxiB0JNb+Hacc+6JdtwYXWHizULv7HhuTErcgvfR3Xh0Z8yVEtau1qbLCeRO7lSwjLoGgjHKP0bVAfFYfRHzyPxvcq0Dv0HnLWJb3sJyBf2SsvjYuu5l5E77HJZKfNAzw9C86OXmoi4BvzCfgN6P9aBdMTbyL+q1twpkWGkJwCjfYOthSSkJCSirPNnUi863HkEZH+QQ8RxcskKnMVNrTUIaf1Y4StWakSGTl+CvXRcXD88KfV5z6slP0EuGm1YiX1kie7bLAaN1LE71aB84jHleTDpAL/HQq3/wHLCXgjARcNEhSNR493anwMo7GiIRVNRCQp4XEUfJtnZDSASCSV1xuajxORCwjPSORE5KlDxyp9fvwEaEE5rjy81UQRl/1S2cilMgR9TRWKnuDAv4szVg9w5l2I/6vxytRH5Mx5npFtqrRmZiRyTRp95JyQc62XTNmQHbMIcMv68B8yVZOlMYW5skcqv4Vpu0cqp9WIp4YM+HxEznozMn2NEBGZLqWR2QZ5+rhZwjVhrGXtsb+YSnbuk3nET4c44rez6USavGukoPR12TYwbCKVtMzsH3TlUUe5/nxvtmhIrlYWCfhM40T43GJaanXjydZsw4qlcrB+c7866HRY6XzbTOAN9HcAi2sOmrOaz6107jPDsX/OgvP2p9Oe0+EyJpnN/Hid7osoR+sFz+ldqL4lCDBpXCSJ3OHx+n8BFGm+/9R3sVYAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 16px;
  border-radius: 25px;
}
#top-header .wrapper .cell.cell-right .top-lang select {
  background-color: transparent;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
#top-header .wrapper .cell.cell-right .top-lang select option {
  color: #000000;
}
#top-header .wrapper .cell.cell-right .top-branch {
  position: relative;
  line-height: normal;
}
#top-header .wrapper .cell.cell-right .top-branch {
  padding-left: 0.375rem;
}
@media only screen and (min-width: 64rem) {
  #top-header .wrapper .cell.cell-right .top-branch {
    padding-left: 1rem;
  }
}
#top-header .wrapper .cell.cell-right .top-branch a {
  color: #ffffff;
}
#top-header .wrapper .cell.cell-right .top-branch a:hover {
  color: #036608;
}
#top-header .wrapper .cell.cell-right .top-branch img {
  margin-right: 5px;
}
#top-header .wrapper .cell.cell-right .top-branch img {
  width: 0.875rem;
  height: 0.875rem;
}

body.lang-vi #top-header .widget_polylang::after {
  content: none !important;
}
body.lang-en #top-header .widget_polylang::before {
  content: none !important;
}

#inside-header {
  background-color: #ffffff;
  padding: 8px 0;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header {
    padding: 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .container {
    padding-top: 5px;
    padding-bottom: 5px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#inside-header .cell {
  padding: 0 15px;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell {
    padding: 0 10px;
  }
}
#inside-header .cell.cell-logo {
  width: 18%;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-logo {
    order: 2;
    width: 40%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-logo img {
    height: 60px;
    object-fit: contain;
  }
}
#inside-header .cell.cell-search {
  width: 65%;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-search {
    width: 30%;
    order: 1;
  }
  #inside-header .cell.cell-search .main-search {
    display: none;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-search .dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp {
    padding: 10px 0;
    margin-top: -5px;
  }
}
#inside-header .cell.cell-search .dgwt-wcas-search-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 10px 48px 10px 24px;
  background: transparent;
  border: 1px solid #C7C7C7;
  color: #959D96;
  font-style: italic;
}
#inside-header .cell.cell-search .dgwt-wcas-search-wrapp button.dgwt-wcas-search-submit {
  left: inherit;
  right: 24px;
  top: 17px;
}
#inside-header .cell.cell-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-right {
    width: 30%;
    order: 3;
    padding-right: 0;
  }
}
#inside-header .cell.cell-right .btn-phone {
  align-items: center;
  background-color: #ffffff;
  border-radius: 100px;
  border: 1px solid rgba(17, 87, 24, 0.2);
  height: 36px;
  padding: 2px 20px 2px 2px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  color: #3cb44a;
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-right .btn-phone {
    display: none;
  }
}
#inside-header .cell.cell-right .btn-phone .ic {
  background-color: #3cb44a;
  border-radius: 50%;
}
#inside-header .cell.cell-right .btn-phone .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell.cell-right .btn-phone .ic {
  width: 1.875rem;
  height: 1.875rem;
}
#inside-header .cell.cell-right .btn-phone .ic img {
  object-fit: contain;
}
#inside-header .cell.cell-right .btn-phone .ic img {
  width: 1rem;
  height: 1rem;
}
#inside-header .cell.cell-right .btn-phone span {
  padding-left: 10px;
}
#inside-header .cell.cell-right .search-mb .btn-search {
  color: #036608;
  font-size: 16px;
  transform: translateY(2px);
}
#inside-header .cell.cell-right .search-mb .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell.cell-right .search-mb .main-search {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  background: #ffffff;
  box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
#inside-header .cell.cell-right .search-mb .main-search::before {
  content: "";
  position: absolute;
  right: 30px;
  top: -15px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #eeeeee;
}
#inside-header .cell.cell-right .search-mb .main-search.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}
#inside-header .cell.cell-right .search-mb .main-search .title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.5px;
  margin: 0 0 5px;
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid #ededed;
}
#inside-header .cell.cell-right .search-mb .main-search .dgwt-wcas-search-form input[type=search].dgwt-wcas-search-input {
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 0;
}
#inside-header .cell.cell-right .search-mb .main-search .dgwt-wcas-search-form .dgwt-wcas-search-submit {
  display: none;
}
#inside-header .cell.cell-right .dropdown-search .trigger-s {
  color: #ffffff;
  line-height: normal;
}
#inside-header .cell.cell-right .dropdown-search .trigger-s {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-right .dropdown-search .trigger-s {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-right .dropdown-search .trigger-s {
    background: #3cb44a;
    border-radius: 50%;
    color: #ffffff;
  }
  #inside-header .cell.cell-right .dropdown-search .trigger-s {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  #inside-header .cell.cell-right .dropdown-search .trigger-s {
    width: 1.875rem;
    height: 1.875rem;
  }
}
#inside-header .cell.cell-right .dropdown-search .trigger-s span {
  display: none;
}
#inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
  left: 15px !important;
  right: 15px !important;
  width: calc(100% - 30px);
  padding: 0;
  font-size: 15px;
  border: none;
  background: none;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
    left: -200px !important;
    right: 0px !important;
    width: 300px;
  }
}
#inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container {
  position: relative;
  background-color: #fff;
  border: 1px solid #D9DBF5;
  box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.2);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
#inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 768px;
  }
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1024px;
  }
}
@media only screen and (min-width: 83.75rem) {
  #inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1340px;
  }
}
#inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
}
#inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
#inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] > span {
  display: none;
}
#inside-header .cell.cell-right .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container .trigger-s-close {
  display: none;
}

#bottom-header {
  background-color: #3cb44a;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 63.99875rem) {
  #bottom-header {
    display: none;
  }
}
#bottom-header.w-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  -moz-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
#bottom-header.w-sticky.hide-header {
  transform: translateY(-100%);
}
#bottom-header nav ul.menu {
  justify-content: center;
}
#bottom-header nav ul.menu li.is-dropdown-submenu-parent a::after {
  border-color: #ffffff transparent transparent;
}
#bottom-header nav ul.menu li.is-dropdown-submenu-parent ul.sub-menu li a {
  color: #3cb44a;
  line-height: 1.4;
}
#bottom-header nav ul.menu li a {
  color: #ffffff;
  position: relative;
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  padding-top: 13px;
  padding-bottom: 13px;
}
#bottom-header nav ul.menu li a {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  #bottom-header nav ul.menu li a {
    font-size: 0.9375rem;
  }
}
#bottom-header nav ul.menu li a::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #ffffff;
}
#bottom-header nav ul.menu li a[aria-current=page] {
  font-weight: 600;
}
#bottom-header nav ul.menu li a[aria-current=page]::before {
  width: 40%;
}
#bottom-header nav ul.menu li a.mega-menu + ul.sub-menu {
  width: 600px;
  left: -20%;
  transform: translateX(-50%);
  grid-template-columns: repeat(3, 1fr);
}
#bottom-header nav ul.menu li a.mega-menu + ul.sub-menu.js-dropdown-active {
  display: grid;
}
#bottom-header nav ul.menu li a.mega-menu + ul.sub-menu li a {
  text-align: center;
  color: #000000;
  font-weight: 500;
  padding: 8px 10px;
}
#bottom-header nav ul.menu li a.mega-menu + ul.sub-menu li a::before {
  content: none;
}
#bottom-header nav ul.menu li a.mega-menu + ul.sub-menu li a:hover {
  color: #036608;
}
#bottom-header nav ul.menu li a.mega-menu + ul.sub-menu li a img {
  margin-bottom: 5px;
}
#bottom-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#bottom-header .container .header-print {
  background-color: #036608;
  width: 15%;
  transform: skew(-19deg);
  padding: 7px 15px;
  margin-left: 10px;
}
#bottom-header .container .header-print a {
  color: #ffffff;
  display: block;
}
#bottom-header .container .header-print a .header-print-wrapper {
  display: flex;
  font-style: italic;
}
#bottom-header .container .header-print a .header-print-wrapper .ic {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#bottom-header .container .header-print a .header-print-wrapper .ic .line-top {
  position: absolute;
  width: 2px;
  height: 30px;
  background: #fff;
  top: -7px;
  left: 22%;
}
#bottom-header .container .header-print a .header-print-wrapper .ic .line-bot {
  position: absolute;
  width: 1px;
  height: 32px;
  background: #fff;
  bottom: -7px;
  left: 28%;
}
#bottom-header .container .header-print a .header-print-wrapper .content {
  width: 70%;
  padding-left: 15px;
}
#bottom-header .container .header-print a .header-print-wrapper .content span {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.6;
}
#bottom-header .container .header-print a .header-print-wrapper .content span.text {
  font-size: 14px;
}
#bottom-header .container .header-print a .header-print-wrapper .content span.sub {
  font-size: 8px;
}

@media only screen and (max-width: 63.99875rem) {
  #mini-cart_wrapper {
    margin-left: 20px;
  }
}
#mini-cart_wrapper:hover .widget_shopping_cart {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
#mini-cart_wrapper .woocommerce-Price-amount.amount {
  display: none;
}
#mini-cart_wrapper .icon {
  color: #ffffff;
}
#mini-cart_wrapper .icon {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  #mini-cart_wrapper .icon {
    font-size: 1.25rem;
  }
}
#mini-cart_wrapper .icon img {
  width: 1.375rem;
  height: 1.375rem;
}
#mini-cart_wrapper .count {
  display: inline-block;
  position: absolute;
  top: -7px;
  right: -15px;
  border-radius: 50%;
  background-color: #CB1313;
  color: #ffffff;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  transition: 0.2s all;
}
#mini-cart_wrapper .count {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#mini-cart_wrapper .count {
  width: 0.9375rem;
  height: 0.9375rem;
}
@media only screen and (max-width: 47.99875rem) {
  #mini-cart_wrapper .count {
    right: -8px;
  }
}
#mini-cart_wrapper .widget_shopping_cart {
  position: absolute;
  left: auto;
  top: 105%;
  right: 0;
  width: 290px;
  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: 1rem;
  margin-bottom: 0;
  visibility: hidden;
  padding-top: 5px;
}
#mini-cart_wrapper .widget_shopping_cart .widget_shopping_cart_content {
  padding: 5px 10px 10px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 500;
}
#mini-cart_wrapper .widget_shopping_cart .widget_shopping_cart_content img {
  width: 60px !important;
}
#mini-cart_wrapper .widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.wc-forward {
  width: 100%;
  margin: 0;
  background-color: #036608;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}
#mini-cart_wrapper .widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout {
  display: none;
}

.site-footer {
  position: relative;
  padding-bottom: 50px;
}
@media only screen and (max-width: 47.99875rem) {
  .site-footer {
    padding-bottom: 62px;
  }
}

#footer-columns {
  padding-bottom: 30px;
  color: #ffffff;
  font-size: 14px;
  background-color: #3cb44a;
  position: relative;
}
#footer-columns .top-footer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .top-footer {
    margin-bottom: 20px;
  }
}
#footer-columns .top-footer .wrapper {
  padding: 35px 0;
  gap: 60px;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .top-footer .wrapper {
    gap: 30px;
  }
}
#footer-columns .top-footer .wrapper .cell {
  padding: 0 15px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .top-footer .wrapper .cell {
    padding: 0;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-form {
  width: 40%;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-form {
    width: 100%;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-form .title {
  font-weight: 500;
}
#footer-columns .top-footer .wrapper .cell.cell-form .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .top-footer .wrapper .cell.cell-form .title {
    font-size: 1.25rem;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-form .title span {
  font-weight: 800;
}
#footer-columns .top-footer .wrapper .cell.cell-form form {
  position: relative;
}
#footer-columns .top-footer .wrapper .cell.cell-form form input {
  width: 100%;
  height: 46px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6980392157);
  border-radius: 100px;
  padding: 0 20px;
  color: #ffffff;
}
#footer-columns .top-footer .wrapper .cell.cell-form form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}
#footer-columns .top-footer .wrapper .cell.cell-form form input::placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}
#footer-columns .top-footer .wrapper .cell.cell-form form .form-submit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  border-radius: 100px;
  background-color: #ffffff;
  border: none;
  padding: 0 20px;
  position: absolute;
  top: 3px;
  right: 4px;
}
#footer-columns .top-footer .wrapper .cell.cell-form form .form-submit input {
  background-color: transparent;
  color: #ffffff;
  height: 42px;
  padding: 0;
  position: absolute;
  left: 0;
  opacity: 0;
}
#footer-columns .top-footer .wrapper .cell.cell-form form .form-submit img {
  width: 1.5rem;
  height: 1.5rem;
}
#footer-columns .top-footer .wrapper .cell.cell-form form .form-submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#footer-columns .top-footer .wrapper .cell.cell-form form .wpcf7-not-valid-tip {
  padding-top: 5px;
  font-size: 14px;
  padding-left: 5px;
}
#footer-columns .top-footer .wrapper .cell.cell-form form .wpcf7-response-output {
  margin: 5px 0 0;
  padding: 5px 15px;
  font-size: 15px;
}
#footer-columns .top-footer .wrapper .cell.cell-contact {
  position: relative;
  width: calc(35% - 60px);
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-contact {
    width: 50%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-contact {
    width: 100%;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-contact::before, #footer-columns .top-footer .wrapper .cell.cell-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-contact::before, #footer-columns .top-footer .wrapper .cell.cell-contact::after {
    content: none;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-contact::before {
  left: -30px;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-contact::before {
    content: none;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-contact::after {
  right: -30px;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item:last-child {
  margin-bottom: 0;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item img {
  width: 2.5rem;
  height: 2.5rem;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-contact .list .item img {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content {
  width: calc(100% - 40px);
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content {
  padding-left: 0.625rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content {
    padding-left: 0.9375rem;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content .label {
  line-height: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content .link {
  display: flex;
  gap: 20px;
  position: relative;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content .link a {
  position: relative;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content .link a::after {
  content: "-";
  position: absolute;
  right: -16px;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item .content .link a:last-child::after {
  content: none;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item a {
  color: #ffffff;
  font-weight: 500;
  line-height: 1.2;
}
#footer-columns .top-footer .wrapper .cell.cell-contact .list .item a {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .top-footer .wrapper .cell.cell-contact .list .item a {
    font-size: 1.25rem;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-social {
  width: calc(25% - 60px);
  text-align: center;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-social {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .top-footer .wrapper .cell.cell-social {
    width: 100%;
    text-align: left;
  }
}
#footer-columns .top-footer .wrapper .cell.cell-social .title {
  font-size: 16px;
  margin-bottom: 10px;
}
#footer-columns .top-footer .wrapper .cell.cell-social ul.menu {
  gap: 10px;
  justify-content: center;
}
#footer-columns .top-footer .wrapper .cell.cell-social ul.menu li a {
  padding: 0;
  color: #ffffff;
  font-size: 35px;
}
#footer-columns .top-footer .wrapper .cell.cell-social ul.menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer-columns .top-footer .wrapper .cell.cell-social ul.menu li img, #footer-columns .top-footer .wrapper .cell.cell-social ul.menu li svg {
  width: 2.1875rem;
  height: 2.1875rem;
}
#footer-columns .row {
  gap: 60px;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row {
    gap: 10px;
  }
}
#footer-columns .row .cell {
  padding: 0 15px;
  padding-top: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .row .cell {
    margin-bottom: 30px;
    width: 100%;
    padding: 0;
  }
  #footer-columns .row .cell:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .row .cell {
    padding: 0;
  }
}
#footer-columns .row .cell.footer-contact {
  width: 41%;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row .cell.footer-contact {
    width: 100%;
  }
}
#footer-columns .row .cell.footer-contact .name-comp {
  font-weight: 600;
}
#footer-columns .row .cell.footer-contact .name-comp {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .row .cell.footer-contact .name-comp {
    font-size: 1.1875rem;
  }
}
#footer-columns .row .cell.footer-contact .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#footer-columns .row .cell.footer-contact .list .item {
  margin-bottom: 15px;
  font-weight: 400;
}
#footer-columns .row .cell.footer-contact .list .item::before {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAdCAYAAAC5UQwxAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFbSURBVHgB7ZbtUYQwEIYXG5AOpIQr4TrQEuhASqADrwOwAu0AreC0gtgBWsHr7rCMkSEhH/y7e2Z2uIPdfUk2G0J0ZWeKUEcAJV8ObPdspd7+ZnsviuKV9oTFHtlGuDFsNe0BJ+oQzhPlIAkQT5qoTBHSOVIsHDQgnYFi8SWTEai9ePzKGLHKkcQs/Eq4V+/dWu4biuPT/sP9J334Rrnom68xLqcKUw/mTelGIqnbXMPB4XOmWDjohHQ6V15fDXP2x2dKAWm9mNSDB70eEU+lsVWIkKzOef9s9F4broVWY+ZtsYNrtaqYsYJH621DRE/zyBZ5zquiWN+sTaBo6xD793wp2DuSGUu0svxkBgbol8EjJnShI7RFa3LXfutEULsCe/gxbA2m1fugv4eNmJ58YKqVQT4y4oZCwFSPGomNj2nkq+2weUzE3/FQrGK7Xbj8sH2xfYjpJ+uC+QWkPC4McNOxwQAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-size: contain;
  padding-right: 5px;
  display: inline-block;
  transform: translateY(3px);
  margin-right: 5px;
}
#footer-columns .row .cell.footer-contact .list .item::before {
  width: 1rem;
  height: 1rem;
}
#footer-columns .row .cell.footer-contact .list .item:last-child {
  margin-bottom: 0;
}
#footer-columns .row .cell.footer-contact .list .item .label {
  font-weight: 500;
  text-decoration: underline;
  padding-right: 5px;
}
#footer-columns .row .cell.cell-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: calc(59% - 60px);
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row .cell.cell-menu {
    width: 100%;
    gap: 20px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .row .cell.cell-menu {
    grid-template-columns: repeat(1, 1fr);
  }
}
#footer-columns .row .cell .footer-menu ul.menu {
  flex-direction: column;
  margin-top: 10px;
}
#footer-columns .row .cell .footer-menu ul.menu li a {
  color: #ffffff;
  font-weight: 300;
  padding-left: 0;
  padding-right: 0;
  line-height: 1.3;
  transform: translateX(0);
  transition: all 0.3s;
}
#footer-columns .row .cell .footer-menu ul.menu li a::before {
  content: "\f324";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-weight: 500;
  font-size: 10px;
  display: inline-block;
  margin-right: 8px;
  transform: translateY(-1px);
}
#footer-columns .row .cell .footer-menu ul.menu li a:hover {
  color: #37ff41;
  transform: translateX(5px);
}
#footer-columns .row .cell .widget_nav_menu > span {
  color: #ffffff;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
#footer-columns .row .cell .widget_nav_menu > span {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .row .cell .widget_nav_menu > span {
    font-size: 0.9375rem;
  }
}
#footer-columns .row .cell .widget_nav_menu > span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background-color: #ffffff;
}

#footer-credit {
  background-color: #036608;
  border-top: 1px solid #036608;
}
#footer-credit .copyright {
  color: #ffffff;
  font-size: 14px;
  padding: 12px 0;
  font-weight: 400;
  text-align: center;
}
#footer-credit .copyright a {
  color: #ffffff;
}
#footer-credit .copyright a:hover {
  color: #036608;
}

#footer-fixed {
  background-color: #3cb44a;
  position: fixed;
  bottom: 0;
  z-index: 999;
  left: 0;
  width: 100%;
  height: 50px;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
@media only screen and (max-width: 47.99875rem) {
  #footer-fixed {
    display: none;
  }
}
#footer-fixed .container {
  height: 100%;
}
#footer-fixed .container .wrapper {
  height: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#footer-fixed .container .wrapper .item {
  width: 28%;
  border-right: 1px solid #ffffff;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-fixed .container .wrapper .item {
    width: 50%;
  }
}
#footer-fixed .container .wrapper .item:last-child {
  border-right: none;
}
#footer-fixed .container .wrapper .item .link {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
#footer-fixed .container .wrapper .item .link i {
  transform: translateY(2px);
  font-size: 24px;
}

.add-this.contact-link {
  position: fixed;
  bottom: 20%;
  right: 15px;
  margin: 0;
  list-style: none;
  border-radius: 10px;
  padding: 15px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
  box-shadow: 0 0 12px rgba(105, 105, 105, 0.33);
  -webkit-filter: drop-shadow(0 0 6px rgba(60, 180, 74, 0));
          filter: drop-shadow(0 0 6px rgba(60, 180, 74, 0));
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  .add-this.contact-link {
    flex-direction: row;
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
    bottom: 0;
    top: unset;
    justify-content: space-evenly;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 0 5px;
  }
}
.add-this.contact-link li a {
  transition: 0.3s;
  color: #3cb44a;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-this.contact-link li a > svg, .add-this.contact-link li a > i {
  background-color: #3cb44a;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #3cb44a;
  padding: 3px;
  font-size: 22px;
  font-weight: 600;
}
.add-this.contact-link li a > svg, .add-this.contact-link li a > i {
  width: 2.625rem;
  height: 2.625rem;
}
.add-this.contact-link li a > svg, .add-this.contact-link li a > i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .add-this.contact-link li a > svg, .add-this.contact-link li a > i {
    font-size: 21px;
  }
  .add-this.contact-link li a > svg, .add-this.contact-link li a > i {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.add-this.contact-link li a > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
@media only screen and (max-width: 47.99875rem) {
  .add-this.contact-link li a > span {
    line-height: 16px;
  }
}
.add-this.contact-link li a.messenger > i {
  border: none;
  font-size: 42px;
  padding: 0;
  background: none;
  color: #3cb44a;
}
@media only screen and (max-width: 47.99875rem) {
  .add-this.contact-link li a.messenger > i {
    font-size: 36px;
  }
}
.add-this.contact-link li a.messenger > svg {
  border: none;
  padding: 0;
}
.add-this.contact-link li a.messenger > img {
  display: block;
  width: 42px;
  height: auto;
}
.add-this.contact-link li a:hover {
  transition: 0.3s;
}
.add-this.contact-link li a:hover > svg, .add-this.contact-link li a:hover > i {
  background-color: #3cb44a;
  color: #fff;
}
.add-this.contact-link li a:hover.messenger > i {
  background: none;
  color: #3cb44a;
}

/** Poppins fonts */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../img/SVN-Poppins-Light.woff2?v=umdfonj") format("woff2"), url("../img/SVN-Poppins-Light.ttf?v=umdfonj") format("truetype"), url("../img/SVN-Poppins-Light.otf?v=umdfonj") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../img/SVN-Poppins-LightItalic.woff2?v=umdfoo1") format("woff2"), url("../img/SVN-Poppins-LightItalic.ttf?v=umdfoo1") format("truetype"), url("../img/SVN-Poppins-LightItalic.otf?v=umdfoo1") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../img/SVN-Poppins-Regular.woff2?v=umdfooo") format("woff2"), url("../img/SVN-Poppins-Regular.ttf?v=umdfooo") format("truetype"), url("../img/SVN-Poppins-Regular.otf?v=umdfooo") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../img/SVN-Poppins-RegularItalic.woff2?v=umdfoos") format("woff2"), url("../img/SVN-Poppins-RegularItalic.ttf?v=umdfoos") format("truetype"), url("../img/SVN-Poppins-RegularItalic.otf?v=umdfoos") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../img/SVN-Poppins-Medium.woff2?v=umdfoou") format("woff2"), url("../img/SVN-Poppins-Medium.ttf?v=umdfoou") format("truetype"), url("../img/SVN-Poppins-Medium.otf?v=umdfoou") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../img/SVN-Poppins-SemiBold.woff2?v=umdfooy") format("woff2"), url("../img/SVN-Poppins-SemiBold.ttf?v=umdfooy") format("truetype"), url("../img/SVN-Poppins-SemiBold.otf?v=umdfooy") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../img/SVN-Poppins-Bold.woff2?v=umdfop6") format("woff2"), url("../img/SVN-Poppins-Bold.ttf?v=umdfop6") format("truetype"), url("../img/SVN-Poppins-Bold.otf?v=umdfop6") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/SVN-Poppins/WOFF2/SVN-Poppins-ExtraBold.woff2?v=umdfopf") format("woff2"), url("../img/SVN-Poppins-ExtraBold.ttf?v=umdfopf") format("truetype"), url("../img/SVN-Poppins-ExtraBold.otf?v=umdfopf") format("opentype");
}
:is(.ajax-loading, .ajax-loader) {
  position: relative;
}
:is(.ajax-loading, .ajax-loader)::before {
  z-index: 99998;
  content: "";
  background-color: rgba(0, 0, 0, 0.05);
}
:is(.ajax-loading, .ajax-loader)::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
:is(.ajax-loading, .ajax-loader)::after {
  content: "";
  z-index: 99999;
  border: 2px solid;
  border-color: #000000 #f3f3f3 #000000 #f3f3f3;
  border-radius: 50%;
  animation: spin 2.5s linear infinite;
  position: absolute;
  top: calc(50% - 17px);
  left: calc(50% - 17px);
  width: 30px;
  height: 30px;
}

@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
body.ajax-loader {
  height: 100vh;
}
body.ajax-loader::after {
  top: calc(50vh - 0.9375rem);
}

@media only screen and (max-width: 47.99875rem) {
  html {
    overflow-x: hidden;
  }
}

body {
  overflow-x: hidden;
}

.sharing-toolbox {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sharing-toolbox {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media only screen and (max-width: 47.99875rem) {
  .sharing-toolbox {
    display: none;
  }
}
.sharing-toolbox .share-title {
  display: none;
}
.sharing-toolbox .social-share {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}
.sharing-toolbox .social-share > .share-label {
  display: none;
}
.sharing-toolbox .social-share ul.share-actions {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.sharing-toolbox .social-share ul.share-actions {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action {
  border: 1px solid #EDF2EE;
  border-radius: 50%;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action {
  width: 2rem;
  height: 2rem;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action > button.share-button {
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
}
.sharing-toolbox .social-share.share-vertical ul.share-actions {
  flex-wrap: nowrap;
}

.share-icon {
  display: block;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
}
.share-icon::before {
  content: "";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  margin: 0;
  font-weight: 400;
  color: #606961;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.share-icon::before {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.share-icon.icon-print::before {
  content: "\f02f";
}
.share-icon.icon-facebook::before {
  content: "\f39e";
}
.share-icon.icon-x::before {
  content: "\e61b";
}
.share-icon.icon-whatsapp::before {
  content: "\f232";
}
.share-icon.icon-messenger::before {
  content: "\f39f";
}
.share-icon.icon-snapchat::before {
  content: "\f2ab";
}
.share-icon.icon-line::before {
  content: "\f3c0";
}
.share-icon.icon-viber::before {
  content: "\f409";
}
.share-icon.icon-skype::before {
  content: "\f17e";
}
.share-icon.icon-telegram::before {
  content: "\f2c6";
}
.share-icon.icon-linkedin::before {
  content: "\f0e1";
}
.share-icon.icon-quora::before {
  content: "\f2c4";
}
.share-icon.icon-mastodon::before {
  content: "\f4f6";
}
.share-icon.icon-reddit::before {
  content: "\f1a1";
}
.share-icon.icon-bluesky::before {
  content: "\e671";
}
.share-icon.icon-threads::before {
  content: "\e618";
}
.share-icon.icon-copy-link::before {
  content: "\f0c5";
}
.share-icon.icon-send-email::before {
  content: "\f0e0";
}
.share-icon.icon-web-share::before {
  content: "\f1e0";
}
.share-icon:hover {
  color: #3cb44a;
}

.stars-rating {
  overflow: hidden;
  position: relative;
  font-size: 14px;
  display: inline-flex;
}
.stars-rating > ul {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  list-style: none;
  margin: 0;
  line-height: 22px;
}
.stars-rating > ul li::before {
  color: #fd7e14;
  display: block;
  font-size: inherit;
  font-weight: 300;
  letter-spacing: 5px;
}
.stars-rating > ul li.active::before {
  font-weight: 700;
}
.stars-rating > ul li.active ~ li::before {
  font-weight: 700;
}
.stars-rating > span {
  display: block;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0.03125rem;
  transition: 0.2s;
}
.stars-rating > span::before {
  color: #fd7e14;
  content: "\f005\f005\f005\f005\f005";
  display: block;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 22px;
}
.stars-rating.clicked > span {
  width: 0 !important;
}
.stars-rating:not(.selected) ul:hover li:hover::before {
  font-weight: 700;
}
.stars-rating:not(.selected) ul:hover li:hover ~ li::before {
  font-weight: 700;
}
.stars-rating:not(.selected) ul:hover + span {
  width: 0 !important;
  transition: 0.1s;
}

.comment-form-rating p.stars {
  margin-bottom: 0;
}
.comment-form-rating p.stars > span {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.comment-form-rating p.stars > span > a {
  font-size: 0;
  width: auto;
  height: auto;
  text-indent: -999em;
}
.comment-form-rating p.stars > span > a::before {
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  content: "\f005";
  color: #fd7e14;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  display: block;
  padding-left: 2.5px;
  padding-right: 2.5px;
  position: static;
  width: auto;
  height: auto;
}
.comment-form-rating p.stars > span:hover > a::before {
  font-weight: 700;
}
.comment-form-rating p.stars > span:hover > a:hover ~ a::before {
  font-weight: 300;
}
.comment-form-rating p.stars.selected > span > a::before {
  font-weight: 700;
}
.comment-form-rating p.stars.selected > span > a.active ~ a::before {
  font-weight: 300;
}
.comment-form-rating p.stars.selected > span:hover > a::before {
  font-weight: 700 !important;
}
.comment-form-rating p.stars.selected > span:hover > a:hover ~ a::before {
  font-weight: 300 !important;
}
.comment-form-rating select#rating {
  border: 0;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  white-space: nowrap;
}

/** reset */
.woocommerce p.stars:hover a::before,
.woocommerce p.stars.selected a:not(.active)::before,
.woocommerce p.stars.selected a.active ~ a::before,
.woocommerce p.stars.selected a.active::before,
.woocommerce p.stars a:hover ~ a::before {
  content: "\f005";
}

.loop-stars-rating {
  overflow: hidden;
  position: relative;
  font-size: 12px;
  display: inline-flex;
}
.loop-stars-rating::before {
  color: #fd7e14;
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-weight: 300;
  letter-spacing: 5px;
  line-height: 20px;
}
.loop-stars-rating > span {
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.loop-stars-rating > span::before {
  color: #fd7e14;
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 20px;
  display: block;
}

nav.nav-pagination {
  text-align: center;
  width: 100%;
  margin-top: 30px;
}
nav.nav-pagination ul.pagination {
  margin: 0;
  flex-wrap: wrap;
}
nav.nav-pagination ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
nav.nav-pagination ul.pagination {
  grid-gap: 0.3125rem;
  gap: 0.3125rem;
}
nav.nav-pagination ul.pagination li {
  font-weight: 500;
  height: 28px;
  padding: 0;
  min-width: 28px;
  width: auto;
  line-height: normal;
  overflow: hidden;
  border-radius: 50%;
}
nav.nav-pagination ul.pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
nav.nav-pagination ul.pagination li a, nav.nav-pagination ul.pagination li .current {
  height: 100%;
  width: 100%;
  line-height: inherit;
  aspect-ratio: 1/1;
  padding: 0;
}
nav.nav-pagination ul.pagination li a, nav.nav-pagination ul.pagination li .current {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
nav.nav-pagination ul.pagination li a:hover, nav.nav-pagination ul.pagination li .current:hover {
  background: transparent;
}
nav.nav-pagination ul.pagination li svg {
  height: 20px;
}
nav.nav-pagination ul.pagination li i {
  font-style: normal;
}
nav.nav-pagination ul.pagination li.current, nav.nav-pagination ul.pagination li .current, nav.nav-pagination ul.pagination li:hover {
  color: #2F2F2F;
  text-decoration: underline;
  font-weight: 600;
  background: transparent;
}

:is(span, label) > a {
  color: #3cb44a;
}
:is(span, label) > a:hover {
  color: #3cb44a;
  text-decoration: underline;
}

.form-error {
  display: none;
  margin-top: 5px;
  font-weight: 400;
  font-size: 14px;
  color: #ff0000;
}
.form-error.is-visible {
  display: block;
}

.is-invalid-input ~ .form-error[id] {
  display: block;
}

.simplebar-scrollable-y {
  padding-right: 12px;
}

.simplebar-track.simplebar-vertical {
  width: 10px;
}
.simplebar-track.simplebar-horizontal {
  height: 10px;
}

.simplebar-scrollbar:before {
  background-color: #cccccc;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

.back-to-top {
  opacity: 0;
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  border: 1px solid #3cb44a;
  border-radius: 4px;
  background-color: #ffffff;
}
.back-to-top {
  width: 2.125rem;
  height: 2.125rem;
}
.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .back-to-top {
    bottom: 100px;
  }
}
.back-to-top.back-to-top__show {
  opacity: 1;
  transition: 0.3s;
}
.back-to-top > svg {
  position: relative;
  transform: rotate(-90deg);
  display: block;
  color: #3cb44a;
}
.back-to-top > svg {
  width: 1.75rem;
  height: 1.75rem;
}
.back-to-top:hover {
  border-color: #115718;
}
.back-to-top:hover > svg {
  color: #115718;
}

.menu .active > a {
  background: none;
}
.menu .sub-menu:not(.is-dropdown-submenu) {
  display: none;
}

.off-canvas.is-transition-overlap {
  z-index: 999999;
}

.js-off-canvas-overlay.is-overlay-fixed {
  background: rgba(0, 0, 0, 0.4);
}

.off-canvas-content .menu-lines {
  transition: 0.3s;
  padding-left: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  /*@include hamburger($Primary-01, $Primary-02, 22px, 18px, 2px, 3);*/
}
.off-canvas-content .menu-lines {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .off-canvas-content .menu-lines {
    padding-left: 0;
  }
}
.off-canvas-content .menu-lines .menu-txt {
  font-size: 16px;
  font-weight: 400;
  order: 1;
  display: none !important;
}
@media only screen and (max-width: 47.99875rem) {
  .off-canvas-content .menu-lines .menu-txt {
    display: none;
  }
}
.off-canvas-content .menu-lines .line {
  justify-content: space-between;
}
.off-canvas-content .menu-lines .line {
  width: 1.875rem;
  height: 1.25rem;
}
.off-canvas-content .menu-lines .line {
  display: flex;
  flex-flow: column nowrap;
}
.off-canvas-content .menu-lines .line > span {
  position: relative;
  width: 100%;
}
.off-canvas-content .menu-lines .line > span::before {
  content: "";
  height: 3px;
  width: 100%;
  background-color: #3cb44a;
  position: absolute;
  right: 0;
}
.off-canvas-content .menu-lines .line > span.line-2::before {
  width: 100%;
  transition: 0.3s;
}
.off-canvas-content .menu-lines:hover .menu-txt {
  color: #3cb44a;
}
.off-canvas-content .menu-lines:hover .line > span::before {
  background-color: #3cb44a;
}
.off-canvas-content .menu-lines:hover .line > span.line-2::before {
  width: 100%;
}

.off-canvas {
  background-color: rgba(60, 180, 74, 0.9490196078);
}
.off-canvas.is-open {
  transform: translate(0) translateZ(3px);
}
.off-canvas .menu-lines {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  z-index: 9999;
  opacity: 0;
  transition: 0.6s 0.5s ease-in-out;
  transform: translateZ(3px);
  padding: 0;
  color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
}
.off-canvas .menu-lines {
  width: 1.75rem;
  height: 1.75rem;
}
.off-canvas .menu-lines .menu-txt {
  color: currentColor;
  transition: 0.6s 0.5s ease-in-out;
  display: none !important;
}
.off-canvas .menu-lines .line {
  position: absolute;
  top: 14px;
  left: 6px;
  height: 2px;
  background-color: currentColor;
  border-radius: 0;
  transition: 0.5s 0.4s ease-in-out;
  transform: rotate(0deg);
  width: 20px;
  display: block;
}
.off-canvas.is-open .menu-lines {
  opacity: 1;
  transform: translateZ(3px);
}
.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 {
  height: 100%;
  transform: translateY(0) translateZ(3px);
}
.off-canvas .title-bar-title {
  font-weight: 500;
  position: relative;
  top: 15px;
  z-index: 9999;
  left: 15px;
  transform: translateZ(3px);
  max-width: 50%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.off-canvas .title-bar-title > a {
  color: #fff;
  display: block;
}
.off-canvas .title-bar-title > a > img {
  display: block;
  height: auto;
  width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.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 .menu-outer {
  margin-top: 30px;
}
.off-canvas .menu-outer .header-lang {
  padding: 10px 0 0 15px;
}
.off-canvas .menu-outer .inline-search {
  display: none;
}
.off-canvas .menu-outer .inline-search .frm-search {
  border: none;
  border-radius: 0;
  background: none;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] {
  position: absolute;
  background: none;
  left: 2px;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] span {
  display: none;
}
.off-canvas ul.vertical.menu {
  position: relative;
  z-index: 9998;
  height: 100%;
  overflow: hidden;
  transform: translateZ(3px);
}
.off-canvas ul.vertical.menu li.active .submenu-toggle::after {
  border-color: #ffffff transparent transparent;
}
.off-canvas ul.vertical.menu li .submenu-toggle {
  right: 10px;
}
.off-canvas ul.vertical.menu li .submenu-toggle::after {
  border-color: #ffffff transparent transparent;
  content: "+";
  border-width: 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  width: 100%;
  height: 100%;
}
.off-canvas ul.vertical.menu li .submenu-toggle::after {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.off-canvas ul.vertical.menu li .submenu-toggle[aria-expanded=true]::after {
  content: "-";
}
.off-canvas ul.vertical.menu li .submenu-toggle .submenu-toggle-text {
  width: 100% !important;
  height: 100% !important;
}
.off-canvas ul.vertical.menu li a {
  font-size: 15px;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 24px;
  display: block;
  text-transform: capitalize;
  color: #ffffff;
}
.off-canvas ul.vertical.menu li a[aria-current=page] {
  font-weight: 700;
}
.off-canvas ul.vertical.menu li a.mega-menu + button + ul.sub-menu li a::before {
  content: none;
}
.off-canvas ul.vertical.menu li a.mega-menu + button + ul.sub-menu li a:hover {
  color: #036608;
}
.off-canvas ul.vertical.menu li a.mega-menu + button + ul.sub-menu li a img {
  display: none;
}
.off-canvas.is-transition-overlap {
  z-index: 1000001 !important;
}
.off-canvas.is-transition-overlap.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap.is-open {
  visibility: visible;
  box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
}

.off-canvas.position-left {
  width: 320px;
  transform: translateX(-320px);
}
.off-canvas.position-left.is-open {
  transform: translate(0) translateZ(3px);
}

.off-canvas.position-right {
  width: 320px;
  transform: translateX(320px);
}

.dropdown-search .trigger-s.hover::before {
  content: "\f00d";
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
  left: 1px !important;
  right: 1px !important;
  width: calc(100% - 2px);
  padding: 0;
  font-size: 15px;
  border: none;
  background: none;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container {
  position: relative;
  border: 1px solid #9a9a9a;
  background-color: #fff;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 768px;
  }
}
@media only screen and (min-width: 64rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1024px;
  }
}
@media only screen and (min-width: 83.75rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1340px;
  }
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container input {
  width: 100%;
  border: none;
  height: 40px;
  padding-left: 25px;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] > span {
  display: none;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container .trigger-s-close {
  display: none;
}

/** other */
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.tabs-panel {
  display: none;
}
.tabs-panel.active {
  display: block;
}

.section-banner-title {
  margin-bottom: 5rem;
}
@media only screen and (min-width: 64rem) {
  .section-banner-title {
    margin-bottom: 6.25rem;
  }
}
.section-banner-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
}
.section-banner-title img {
  width: 100%;
}
.section-banner-title .container {
  position: absolute;
  bottom: -40px;
  max-width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 47.99875rem) {
  .section-banner-title .container {
    max-width: 100%;
    width: 100%;
    bottom: -30px;
  }
}
.section-banner-title .container .banner-title {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
.section-banner-title .container .banner-title {
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 64rem) {
  .section-banner-title .container .banner-title {
    margin-bottom: 1.25rem;
  }
}
.section-banner-title .container .banner-title {
  font-size: 1.75rem;
}
@media only screen and (min-width: 48rem) {
  .section-banner-title .container .banner-title {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-banner-title .container .banner-title {
    font-size: 3.125rem;
  }
}
.section-banner-title .container nav ul.breadcrumbs {
  list-style-type: none;
  margin: 0 auto;
  padding: 0 30px;
  background-color: #ffffff;
  box-shadow: 0px 9px 18px 0px rgba(0, 0, 0, 0.1411764706);
  border-radius: 14px;
  max-width: -webkit-max-content;
  max-width: max-content;
  height: 80px;
  gap: 30px;
}
.section-banner-title .container nav ul.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .section-banner-title .container nav ul.breadcrumbs {
    gap: 0 20px;
    height: 60px;
    padding: 0 20px;
  }
}
.section-banner-title .container nav ul.breadcrumbs li {
  color: #4E4E4E;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  position: relative;
}
.section-banner-title .container nav ul.breadcrumbs li {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .section-banner-title .container nav ul.breadcrumbs li {
    font-size: 1.4375rem;
  }
}
.section-banner-title .container nav ul.breadcrumbs li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: #3cb44a;
}
@media only screen and (max-width: 47.99875rem) {
  .section-banner-title .container nav ul.breadcrumbs li::after {
    right: -10px;
  }
}
.section-banner-title .container nav ul.breadcrumbs li:last-child::after {
  content: none;
}
.section-banner-title .container nav ul.breadcrumbs li a {
  color: #3cb44a;
}

.section-padding {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .section-padding {
    padding-top: 3.75rem;
  }
}
.section-padding {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .section-padding {
    padding-bottom: 3.75rem;
  }
}

.bg-color {
  background-color: rgba(25, 34, 77, 0.0509803922);
}

.heading-title {
  color: #3cb44a;
  font-weight: 600;
  text-transform: uppercase;
  line-height: normal;
}
.heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .heading-title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .heading-title {
    font-size: 2.25rem;
  }
}
.heading-title {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  .heading-title {
    margin-bottom: 1.25rem;
  }
}

.group-title {
  position: relative;
  text-align: center;
}
.group-title {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .group-title {
    padding-top: 3.125rem;
  }
}
.group-title {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .group-title {
    margin-bottom: 3.125rem;
  }
}
.group-title .sub-title {
  display: inline-block;
  width: 100%;
  line-height: 1;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.031372549);
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.group-title .sub-title {
  font-size: 3.75rem;
}
@media only screen and (min-width: 64rem) {
  .group-title .sub-title {
    font-size: 11.875rem;
  }
}
.group-title .heading-title {
  margin-bottom: 0;
}

.heading-custom {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}
.heading-custom .heading-title {
  margin-bottom: 5px;
}
.heading-custom .divider {
  width: 380px;
  margin: 0 auto;
}
@media only screen and (max-width: 39.99875rem) {
  .heading-custom .divider {
    width: 300px;
  }
}
.heading-custom .divider::before, .heading-custom .divider::after {
  content: "";
  height: 2px;
  width: 182px;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 50%;
  z-index: -1;
}
.heading-custom .divider::before {
  left: 0;
}
.heading-custom .divider::after {
  right: 0;
}
.heading-custom .divider .square {
  border: 3px solid #3cb44a;
  position: relative;
  transform: rotate(45deg);
  margin: 0 auto;
}
.heading-custom .divider .square {
  width: 0.9375rem;
  height: 0.9375rem;
}

.btn-main {
  margin-top: 20px;
  height: 40px;
  color: #ffffff;
  background-color: #3cb44a;
  padding: 0 24px;
  border-radius: 100px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: fit-content;
  position: relative;
  line-height: 1.2;
}
.btn-main {
  font-size: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  .btn-main {
    font-size: 1rem;
  }
}
.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 63.99875rem) {
  .btn-main {
    height: 38px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .btn-main {
    height: 36px;
    padding: 5px 20px;
  }
}
.btn-main:hover {
  background-color: #036608;
  color: #ffffff;
}
.btn-main:hover svg {
  transition: 0.3s;
  width: 25px;
}
.btn-main i {
  margin-left: 10px;
}
.btn-main.bg-white {
  border: 1px solid #115718;
  background-color: #ffffff;
  color: #115718;
}
.btn-main.bg-white:hover {
  background-color: #115718;
  color: #ffffff;
}

.section-breadcrumb {
  background-color: #F6F6F6 !important;
}
.section-breadcrumb.has-background {
  background-color: transparent !important;
  position: relative;
}
@media only screen and (max-width: 39.99875rem) {
  .section-breadcrumb.has-background {
    padding-bottom: 35px;
  }
}
.section-breadcrumb.has-background .top-breadcrumb .container {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.section-breadcrumb.has-background .top-breadcrumb .container .breadcrumb-title {
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.25);
}
.section-breadcrumb.has-background .top-breadcrumb .container .breadcrumb-title {
  margin-bottom: 0.125rem;
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb.has-background .top-breadcrumb .container .breadcrumb-title {
    margin-bottom: 0.3125rem;
  }
}
.section-breadcrumb.has-background .top-breadcrumb .container .breadcrumb-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .section-breadcrumb.has-background .top-breadcrumb .container .breadcrumb-title {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb.has-background .top-breadcrumb .container .breadcrumb-title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb.has-background .top-breadcrumb .container .breadcrumb-title {
    line-height: 1.1;
  }
}
.section-breadcrumb.has-background .top-breadcrumb .container .name-comp {
  font-weight: 400;
  text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.25);
}
.section-breadcrumb.has-background .top-breadcrumb .container .name-comp {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb.has-background .top-breadcrumb .container .name-comp {
    font-size: 1.25rem;
  }
}
.section-breadcrumb.has-background .top-breadcrumb .container #breadcrumbs {
  padding-bottom: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb.has-background .top-breadcrumb .container #breadcrumbs {
    padding-top: 0;
  }
}
.section-breadcrumb.has-background .bottom-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(29, 61, 32, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #ffffff;
}
@media only screen and (max-width: 39.99875rem) {
  .section-breadcrumb.has-background .bottom-breadcrumb {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
  }
  .section-breadcrumb.has-background .bottom-breadcrumb #breadcrumbs li {
    color: #7C7C7C;
  }
  .section-breadcrumb.has-background .bottom-breadcrumb #breadcrumbs li a {
    color: #062D0A;
  }
}
.section-breadcrumb.has-background .bottom-breadcrumb.no-banner {
  position: relative;
  bottom: inherit;
  left: inherit;
}
.section-breadcrumb .breadcrumb-bg {
  height: 100%;
  max-height: 640px;
  display: block;
}
.section-breadcrumb .breadcrumb-bg img {
  max-height: 640px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-breadcrumb #breadcrumbs {
  padding: 12px 0;
  margin: 0;
  display: flex;
  list-style-type: none;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-size: 16px;
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb #breadcrumbs {
    font-size: 13px;
    flex-wrap: wrap;
    padding: 6px 0;
  }
}
.section-breadcrumb #breadcrumbs li {
  font-weight: 400;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}
.section-breadcrumb #breadcrumbs li:not(:first-child)::before {
  content: "/";
  padding: 0 12px;
}
.section-breadcrumb #breadcrumbs li:first-child {
  margin-left: 0;
}
.section-breadcrumb #breadcrumbs li:last-child {
  margin-right: 0;
}
.section-breadcrumb #breadcrumbs li a {
  color: #3cb44a;
}
.section-breadcrumb #breadcrumbs li .home {
  color: #ffffff;
  font-weight: 600;
}

.swiper-controls .swiper-button {
  width: 36px !important;
  height: 36px;
}
@media only screen and (max-width: 47.99875rem) {
  .swiper-controls .swiper-button {
    width: 32px !important;
    height: 32px;
  }
}
.swiper-controls .swiper-button:hover::before {
  background-color: #3cb44a !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}
.swiper-controls .swiper-button::before {
  opacity: 1 !important;
  background-color: transparent !important;
  color: #124B18 !important;
  border: 1px solid rgba(17, 87, 24, 0.6980392157) !important;
  font-size: 18px !important;
}
@media only screen and (max-width: 47.99875rem) {
  .swiper-controls .swiper-button::before {
    font-size: 16px !important;
  }
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet {
  transform: scale(1);
  background: #DFDFDF;
  opacity: 1;
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #124B18;
  position: relative;
  margin: 0 6px !important;
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid #124B18;
  transform: translate(-50%, -50%);
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 0.875rem;
  height: 0.875rem;
}

.page-description h2, .page-description h3, .page-description h4, .page-description h5, .page-description h6, .woocommerce-Tabs-panel h2, .woocommerce-Tabs-panel h3, .woocommerce-Tabs-panel h4, .woocommerce-Tabs-panel h5, .woocommerce-Tabs-panel h6,
.archive-post .excerpt h2,
.archive-post .excerpt h3,
.archive-post .excerpt h4,
.archive-post .excerpt h5,
.archive-post .excerpt h6, .single-post .content h2, .single-post .content h3, .single-post .content h4, .single-post .content h5, .single-post .content h6 {
  line-height: 1.2;
}
.page-description h2, .woocommerce-Tabs-panel h2,
.archive-post .excerpt h2, .single-post .content h2 {
  font-size: 21px;
}
.page-description h3, .woocommerce-Tabs-panel h3,
.archive-post .excerpt h3, .single-post .content h3 {
  font-size: 19px;
  line-height: normal;
}
.page-description h4, .woocommerce-Tabs-panel h4,
.archive-post .excerpt h4, .single-post .content h4 {
  line-height: normal;
  font-size: 17px;
}
.page-description h5, .woocommerce-Tabs-panel h5,
.archive-post .excerpt h5, .single-post .content h5 {
  line-height: normal;
  font-size: 16px;
}
.page-description a, .woocommerce-Tabs-panel a,
.archive-post .excerpt a, .single-post .content a {
  font-weight: 600;
  color: #115718;
}
.page-description a:hover, .woocommerce-Tabs-panel a:hover,
.archive-post .excerpt a:hover, .single-post .content a:hover {
  text-decoration: underline;
}
.page-description iframe, .woocommerce-Tabs-panel iframe,
.archive-post .excerpt iframe, .single-post .content iframe {
  width: 100%;
}

.archive-post .title-archive-post {
  text-align: center;
  text-transform: uppercase;
  color: #3cb44a;
  font-weight: 600;
  line-height: normal;
}
.archive-post .title-archive-post {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .title-archive-post {
    margin-bottom: 2.5rem;
  }
}
.archive-post .title-archive-post {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .title-archive-post {
    font-size: 1.75rem;
  }
}
.archive-post .feature-posts {
  position: relative;
}
.archive-post .feature-posts {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .feature-posts {
    margin-bottom: 3.75rem;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-left {
  width: 60%;
}
.archive-post .feature-posts .wrapper .cell.cell-left {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .archive-post .feature-posts .wrapper .cell.cell-left {
    padding-right: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .feature-posts .wrapper .cell.cell-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-left .item {
  background-color: #F7F7F7;
  border-radius: 12px;
  padding: 12px;
  height: 100%;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .cover {
  border-radius: 8px;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .cover img {
  border-radius: 8px;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content {
  padding-top: 15px;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .meta {
  font-weight: 500;
  color: #036608;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .title {
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .title {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .feature-posts .wrapper .cell.cell-left .item .content .title {
    font-size: 1.5rem;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .title a {
  color: #1E1E1E;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .feature-posts .wrapper .cell.cell-left .item .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .title a:hover {
  color: #3cb44a;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .excerpt {
  font-weight: 400;
  color: #7C7C7C;
  margin-bottom: 0;
  margin-top: 15px;
}
.archive-post .feature-posts .wrapper .cell.cell-left .item .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .archive-post .feature-posts .wrapper .cell.cell-left .item .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-right {
  width: 40%;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .feature-posts .wrapper .cell.cell-right {
    width: 100%;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-right .item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #E5E5E5;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .cover {
  display: block;
  width: 35%;
  border-radius: 8px;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .cover img {
  border-radius: 8px;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .content {
  width: 65%;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .content {
  padding-left: 0.75rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .feature-posts .wrapper .cell.cell-right .item .content {
    padding-left: 1.25rem;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .content .meta {
  font-weight: 500;
  font-size: 14px;
  color: #036608;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .content .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 10px 0;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .feature-posts .wrapper .cell.cell-right .item .content .title {
    margin: 5px 0;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .content .title a {
  color: #1E1E1E;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .feature-posts .wrapper .cell.cell-right .item .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .btn-link {
  display: flex;
  align-items: center;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .btn-link:hover .ic {
  background-color: #0F4214;
  color: #ffffff;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .btn-link .ic {
  border: 1px solid #0F4214;
  border-radius: 50%;
  color: #0F4214;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .btn-link .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .btn-link .ic {
  width: 1.75rem;
  height: 1.75rem;
}
.archive-post .feature-posts .wrapper .cell.cell-right .item .btn-link .text {
  padding-left: 12px;
  color: #0F4214;
  text-decoration: underline;
}
.archive-post .grid-posts .title-archive-post {
  background-color: #F7F7F7;
  border-radius: 4px;
  padding: 20px;
}
.archive-post .grid-posts .posts-list {
  margin: 0 -10px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .grid-posts .posts-list {
    margin: 0 -5px;
  }
}
.archive-post .grid-posts .posts-list .cell {
  width: 25%;
  padding: 0 8px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .grid-posts .posts-list .cell {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .grid-posts .posts-list .cell {
    padding: 0 5px;
    width: 100%;
  }
}
.archive-post .grid-posts .posts-list .cell .item .cover {
  border-radius: 8px;
}
.archive-post .grid-posts .posts-list .cell .item .cover .scale.res {
  aspect-ratio: unset;
  padding-top: 65%;
}
.archive-post .grid-posts .posts-list .cell .item .cover img {
  border-radius: 8px;
}
.archive-post .grid-posts .posts-list .cell .item .content {
  background-color: #ffffff;
  width: 95%;
  margin: -30px auto;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
}
.archive-post .grid-posts .posts-list .cell .item .content .title {
  line-height: 1.3;
  font-size: 16px;
  font-weight: 500;
}
.archive-post .grid-posts .posts-list .cell .item .content .title a {
  color: #2B2B2B;
}
.archive-post .grid-posts .posts-list .cell .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .grid-posts .posts-list .cell .item .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .grid-posts .posts-list .cell .item .content .title a:hover {
  color: #3cb44a;
}
.archive-post .grid-posts .posts-list .cell .item .content .meta {
  display: flex;
  gap: 16px;
  color: #115718;
  font-weight: 500;
  margin-bottom: 5px;
}
.archive-post .grid-posts .posts-list .cell .item .content .meta {
  font-size: 0.8125rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .grid-posts .posts-list .cell .item .content .meta {
    font-size: 0.875rem;
  }
}
.archive-post .grid-posts .posts-list .cell .item .content .excerpt {
  color: #1D1D1D;
}
.archive-post .grid-posts .posts-list .cell .item .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .archive-post .grid-posts .posts-list .cell .item .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .grid-posts .posts-list .cell .item .content .btn-link {
  display: flex;
  align-items: center;
}
.archive-post .grid-posts .posts-list .cell .item .content .btn-link:hover .ic {
  background-color: #0F4214;
  color: #ffffff;
}
.archive-post .grid-posts .posts-list .cell .item .content .btn-link .ic {
  border: 1px solid #0F4214;
  border-radius: 50%;
  color: #0F4214;
}
.archive-post .grid-posts .posts-list .cell .item .content .btn-link .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.archive-post .grid-posts .posts-list .cell .item .content .btn-link .ic {
  width: 1.75rem;
  height: 1.75rem;
}
.archive-post .grid-posts .posts-list .cell .item .content .btn-link .text {
  padding-left: 12px;
  color: #0F4214;
  text-decoration: underline;
}
.archive-post .excerpt {
  margin: 30px 0 20px;
}
.archive-post.categories-service .posts-list .cell {
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell {
    width: 100%;
  }
}
.archive-post.categories-service .posts-list .cell .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 15px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell .item {
    flex-direction: column;
  }
}
.archive-post.categories-service .posts-list .cell .item .cover {
  width: 200px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell .item .cover {
    width: 100%;
  }
}
.archive-post.categories-service .posts-list .cell .item .cover img {
  border-radius: 4px;
}
.archive-post.categories-service .posts-list .cell .item .content {
  padding-top: 0;
  width: calc(100% - 200px);
}
.archive-post.categories-service .posts-list .cell .item .content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .archive-post.categories-service .posts-list .cell .item .content {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell .item .content {
    padding-top: 10px;
    width: 100%;
  }
}

.single-post .section-page {
  margin: 30px 0;
}
.single-post #ez-toc-container {
  width: 100%;
}
.single-post aside.sidebar {
  flex: 0 0 35%;
  max-width: 35%;
}
.single-post aside.sidebar {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post aside.sidebar {
    padding-left: 0.9375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post aside.sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.single-post aside.sidebar .sidebar-form {
  margin-bottom: 20px;
}
.single-post aside.sidebar .sidebar-form .sidebar-title {
  color: #062D0A;
  line-height: normal;
}
.single-post aside.sidebar .sidebar-form .sidebar-title {
  font-size: 1.375rem;
}
@media only screen and (min-width: 64rem) {
  .single-post aside.sidebar .sidebar-form .sidebar-title {
    font-size: 1.75rem;
  }
}
.single-post aside.sidebar .sidebar-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}
.single-post aside.sidebar .widget_media_image {
  margin-top: 20px;
}
.single-post aside.sidebar .widget_media_image img {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0 !important;
}
.single-post .content {
  width: 65%;
}
.single-post .content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .content {
    padding-right: 0.9375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content {
    width: 100%;
  }
}
.single-post .content .heading-title {
  line-height: normal;
  text-transform: uppercase;
  color: #1E1E1E;
  margin-bottom: 20px;
}
.single-post .content .heading-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .content .heading-title {
    font-size: 1.5rem;
  }
}
.single-post .content .meta-single {
  justify-content: space-between;
  margin-bottom: 15px;
}
.single-post .content .meta-single .meta {
  display: flex;
  align-items: center;
}
.single-post .content .meta-single .meta > div {
  color: #828C83;
  display: flex;
  align-items: center;
  line-height: 1;
  border-right: 1px solid #E0E0E0;
  padding-right: 10px;
  margin-right: 10px;
}
.single-post .content .meta-single .meta > div:last-child {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .meta-single .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #101210;
}
.single-post .content .meta-single .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content .meta-single .meta ._author {
  text-transform: capitalize;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta-single .meta ._date {
    border-right: unset;
    padding-right: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta-single .meta ._time {
    display: none;
  }
}
.single-post .content .hashtags {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .hashtags .hashtag-links {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    gap: 10px 0;
    grid-gap: 10px 0;
  }
}
.single-post .content .hashtags .hashtag-links i {
  margin-right: 20px;
  font-style: normal;
}
.single-post .content .hashtags .hashtag-links i::before {
  content: "Từ khoá:";
  font-family: "Inter", sans-serif;
  line-height: 21px;
  font-weight: 500;
  color: #000914;
}
.single-post .content .hashtags .hashtag-links i::before {
  font-size: 0.875rem;
}
.single-post .content .hashtags .hashtag-links a {
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #EFEFEF;
  color: #2A3645;
  line-height: 21px;
  font-weight: 500;
}
.single-post .content .hashtags .hashtag-links a {
  font-size: 0.875rem;
}
.single-post .content .hashtags .hashtag-links a:hover {
  background: #3cb44a;
  color: #ffffff;
}
.single-post .content .bottom-inf-single {
  background-color: #F7F7F7;
}
.single-post .section-related-post {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post {
    padding-top: 3.75rem;
  }
}
.single-post .section-related-post {
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post {
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.single-post .section-related-post .related-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
}
.single-post .section-related-post .related-title {
  font-size: 1.375rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post .related-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .related-title {
    padding-left: 15px;
  }
}
.single-post .section-related-post .swiper-container .w-swiper {
  padding: 50px 0;
}
.single-post .section-related-post .swiper-container .swiper-slide {
  width: 25%;
  padding: 0 10px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-container .swiper-slide {
    width: 50%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-container .swiper-slide {
    width: 100%;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .cover {
  border-radius: 8px;
}
.single-post .section-related-post .swiper-container .swiper-slide .cover .scale.res {
  aspect-ratio: unset;
  padding-top: 65%;
}
.single-post .section-related-post .swiper-container .swiper-slide .cover img {
  border-radius: 8px;
}
.single-post .section-related-post .swiper-container .swiper-slide .content {
  background-color: #ffffff;
  width: 95%;
  margin: -30px auto;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title {
  line-height: 1.3;
  font-size: 16px;
  font-weight: 500;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a {
  color: #2B2B2B;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a:hover {
  color: #3cb44a;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta {
  display: flex;
  gap: 16px;
  color: #115718;
  font-weight: 500;
  margin-bottom: 5px;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta {
  font-size: 0.8125rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .meta {
    font-size: 0.875rem;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
  color: #1D1D1D;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-link {
  display: flex;
  align-items: center;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-link:hover .ic {
  background-color: #0F4214;
  color: #ffffff;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-link .ic {
  border: 1px solid #0F4214;
  border-radius: 50%;
  color: #0F4214;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-link .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-link .ic {
  width: 1.75rem;
  height: 1.75rem;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-link .text {
  padding-left: 12px;
  color: #0F4214;
  text-decoration: underline;
}
.single-post .section-related-post .swiper-controls .swiper-button {
  top: 45%;
}
.single-post .section-related-post .swiper-controls .swiper-button.swiper-button-prev {
  left: -10px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-prev {
    left: 5px;
  }
}
.single-post .section-related-post .swiper-controls .swiper-button.swiper-button-next {
  right: -10px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-next {
    right: 5px;
  }
}
.single-post .section-related-post .swiper-controls .swiper-pagination {
  bottom: -80px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-pagination {
    bottom: -30px;
  }
}

.sidebar-title {
  color: #ffffff;
  line-height: normal;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sidebar-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .sidebar-title {
    font-size: 1.75rem;
  }
}

.sidebar-form {
  background: #F7F7F7;
  padding: 30px 20px;
  border-radius: 12px;
}
@media only screen and (max-width: 63.99875rem) {
  .sidebar-form {
    display: none;
  }
}
.sidebar-form .sidebar-title {
  color: #484848;
}
.sidebar-form .desc {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #4F6061;
}
.sidebar-form form input {
  width: 100%;
  padding: 0 12px;
  height: 42px;
  border: 1px solid #BABABA;
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #243F40;
  border-radius: 8px;
  font-weight: 500;
}
.sidebar-form form input::-webkit-input-placeholder {
  font-weight: 400;
  color: #7C7C7C;
}
.sidebar-form form input::placeholder {
  font-weight: 400;
  color: #7C7C7C;
}
.sidebar-form form .btn-submit {
  position: relative;
  margin: 5px auto 0;
  width: 100%;
  background-color: #07480A;
  border-radius: 8px;
  border: 1px solid #ffffff;
  padding: 0 20px;
  text-transform: uppercase;
  text-align: center;
}
.sidebar-form form .btn-submit:hover {
  background-color: #036608;
}
.sidebar-form form .btn-submit i {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 65%;
  z-index: 0;
  color: #ffffff;
}
.sidebar-form form .btn-submit input[type=submit] {
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 15px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  margin-bottom: 0;
  padding: 0;
  padding-left: 0px;
  z-index: 1;
  color: #ffffff;
  position: relative;
}
.sidebar-form form .btn-submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  bottom: 8px;
  left: -50px;
}
.sidebar-form form .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #dcc932;
  margin-top: -5px;
  margin-bottom: 5px;
}
.sidebar-form form .wpcf7-response-output {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 0;
  border-radius: 4px;
  color: #ffffff;
}

.sidebar-posts {
  background: #F7F7F7;
  padding: 30px 20px;
  border-radius: 12px;
  margin-top: 20px;
}
.sidebar-posts .sidebar-title {
  color: #3cb44a;
  margin-bottom: 20px !important;
}
.sidebar-posts .sidebar-content .news-list article.item {
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(22, 26, 71, 0.1019607843);
}
.sidebar-posts .sidebar-content .news-list article.item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: unset;
}
.sidebar-posts .sidebar-content .news-list article.item a.d-block {
  flex: 0 0 auto;
  width: 35%;
}
.sidebar-posts .sidebar-content .news-list article.item a.d-block .cover {
  border-radius: 4px;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content {
  flex: 1 1 0;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content .terms {
  display: none;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content .h6 {
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content .date {
  color: #5C5C5C;
  font-size: 13px;
  font-weight: 400;
}

.section-page {
  margin: 30px auto;
}

.page-video .video-content .wrapper .cell {
  width: 33.3333333333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-video .video-content .wrapper .cell {
    width: 50%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-video .video-content .wrapper .cell {
    width: 100%;
    padding: 0 5px;
  }
}
.page-video .video-content .wrapper .cell .fcy-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.page-video .video-content .wrapper .cell .img {
  border-radius: 10px;
}
.page-video .video-content .wrapper .cell .img::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.page-video .video-content .wrapper .cell .img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.page-video .video-content .wrapper .cell .icon-play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.page-video .video-content .wrapper .cell .icon-play::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  background: rgba(255, 255, 255, 0.5215686275);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  z-index: -1;
}
.page-video .video-content .wrapper .cell .icon-play::before {
  width: 4.375rem;
  height: 4.375rem;
}
@media only screen and (max-width: 39.99875rem) {
  .page-video .video-content .wrapper .cell .icon-play::before {
    width: 3.8125rem;
    height: 3.8125rem;
  }
}
.page-video .video-content .wrapper .cell .icon-play .icon {
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
}
.page-video .video-content .wrapper .cell .icon-play .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-video .video-content .wrapper .cell .icon-play .icon {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .page-video .video-content .wrapper .cell .icon-play .icon {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-video .video-content .wrapper .cell .icon-play .icon {
    font-size: 1.375rem;
  }
}
.page-video .video-content .wrapper .cell .icon-play .icon {
  width: 3.375rem;
  height: 3.375rem;
}
@media only screen and (max-width: 39.99875rem) {
  .page-video .video-content .wrapper .cell .icon-play .icon {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.page-gallery-image .gallery-wrapper .item {
  width: 25%;
  padding: 0 15px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery-image .gallery-wrapper .item {
    width: 50%;
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-gallery-image .gallery-wrapper .item {
    padding: 0 5px;
    margin-bottom: 15px;
  }
}
.page-gallery-image .gallery-wrapper .item .img a::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.page-gallery-image .gallery-wrapper .item .img a img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-gallery-image .gallery-wrapper .item .content {
  padding-top: 10px;
}
.page-gallery-image .gallery-wrapper .item .content .title {
  margin-bottom: 0;
  font-weight: 500;
}
.page-gallery-image .gallery-wrapper .item .content .title {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .page-gallery-image .gallery-wrapper .item .content .title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-gallery-image .gallery-wrapper .item .content .title {
    font-size: 1.25rem;
  }
}

.home-about-us {
  background-color: #F7F7F7;
  position: relative;
}
.home-about-us::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 450px;
  height: 330px;
  background-image: url("../img/decor-about.png");
  background-repeat: no-repeat;
}
@media only screen and (max-width: 47.99875rem) {
  .home-about-us::after {
    width: 80%;
    right: 15px;
  }
}
.home-about-us .wrapper .cell {
  width: 50%;
}
@media only screen and (max-width: 63.99875rem) {
  .home-about-us .wrapper .cell {
    width: 100%;
  }
}
.home-about-us .wrapper .cell.cell-content {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 60px;
  position: relative;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
}
@media only screen and (max-width: 63.99875rem) {
  .home-about-us .wrapper .cell.cell-content {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .home-about-us .wrapper .cell.cell-content {
    padding-right: 0px;
    margin-bottom: 5px;
  }
}
.home-about-us .wrapper .cell.cell-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  transform: skewX(-8deg);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #fff;
}
@media only screen and (max-width: 47.99875rem) {
  .home-about-us .wrapper .cell.cell-content::before {
    content: none;
  }
}
.home-about-us .wrapper .cell.cell-content::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -4px;
  width: 200%;
  height: 101%;
  border-radius: 30px;
  background-color: #158220;
  transform: skewX(-8deg);
  z-index: -1;
}
@media only screen and (max-width: 47.99875rem) {
  .home-about-us .wrapper .cell.cell-content::after {
    content: none;
  }
}
.home-about-us .wrapper .cell.cell-content .heading-title {
  position: relative;
}
.home-about-us .wrapper .cell.cell-content .heading-title span {
  display: block;
}
.home-about-us .wrapper .cell.cell-content .content {
  position: relative;
  font-size: 15px;
  color: #1E1E1E;
  text-align: justify;
}
.home-about-us .wrapper .cell.cell-img img {
  width: 100%;
}

.page-template-page-about-us .sc-number .counter-section {
  background-color: #F7F7F7;
  padding: 30px 20px 20px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-number .counter-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.page-template-page-about-us .sc-number .counter-section .counter-box {
  text-align: center;
}
.page-template-page-about-us .sc-number .counter-section .counter-box .counter {
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 2px #2e5230;
  text-shadow: none;
  line-height: 60px;
}
.page-template-page-about-us .sc-number .counter-section .counter-box .counter {
  font-size: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-number .counter-section .counter-box .counter {
    font-size: 5.625rem;
  }
}
.page-template-page-about-us .sc-number .counter-section .counter-box .plus {
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #2e5230;
  text-shadow: none;
}
.page-template-page-about-us .sc-number .counter-section .counter-box .plus {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-number .counter-section .counter-box .plus {
    font-size: 2.375rem;
  }
}
.page-template-page-about-us .sc-number .counter-section .counter-box .title {
  padding-top: 12px;
  font-weight: 400;
  color: #3cb44a;
}
.page-template-page-about-us .sc-number .counter-section .counter-box .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-number .counter-section .counter-box .title {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .sc-vision-mission .wrapper {
  gap: 180px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .wrapper {
    gap: 30px;
  }
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell {
  width: calc(50% - 90px);
  border: 1px solid #3cb44a;
  padding: 60px;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .wrapper .cell {
    width: 100%;
    padding: 40px 15px;
  }
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #869587;
  border-radius: 50%;
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell::before {
  width: 0.625rem;
  height: 0.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .wrapper .cell::before {
    content: none;
  }
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(100% + 15px);
  width: 154px;
  height: 2px;
  border: 1px solid #3cb44a;
  border-radius: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .wrapper .cell::after {
    content: none;
  }
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell:last-child::after {
  content: none;
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell .heading-title {
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-vision-mission .wrapper .cell .heading-title {
    font-size: 1.75rem;
  }
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell .heading-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 60%;
  transform: translateY(-50%);
  border-radius: 8px;
  background-color: #3cb44a;
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell .content {
  text-align: justify;
  color: #1E1E1E;
}
.page-template-page-about-us .sc-vision-mission .wrapper .cell.cell-vission::before {
  right: initial;
  left: -15px;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl {
    margin-top: 3.125rem;
  }
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .head-title .heading-title {
  width: -webkit-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .head-title .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl .head-title .heading-title {
    font-size: 1.75rem;
  }
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .head-title .heading-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 60%;
  transform: translateY(-50%);
  border-radius: 8px;
  background-color: #3cb44a;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .head-title .desc {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl .head-title .desc {
    width: 100%;
  }
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core {
  list-style-type: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl .list-core {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item {
  position: relative;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item:last-child .line {
  display: none;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item:last-child::before, .page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item:last-child::after {
  content: none;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #869587;
  top: 23%;
  right: 20px;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item::before {
  width: 0.625rem;
  height: 0.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item::before {
    content: none;
  }
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #869587;
  top: 23%;
  right: -60px;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item::after {
  width: 0.625rem;
  height: 0.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item::after {
    content: none;
  }
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .line {
  position: absolute;
  top: 25%;
  right: -55px;
  width: 80px;
  height: 2px;
  background-color: #869587;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .line {
    display: none;
  }
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .icon {
  margin: 0 auto 20px;
  background-color: #3cb44a;
  border-radius: 50%;
  position: relative;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .icon {
  width: 7.5rem;
  height: 7.5rem;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #ffffff;
  border-radius: 50%;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .icon img {
  object-fit: contain;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .icon img {
  width: 2.5rem;
  height: 2.5rem;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .title {
  color: #3cb44a;
  text-transform: uppercase;
  line-height: normal;
}
.page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-vision-mission .group-core-vl .list-core .item .title {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .sc-history .heading-title {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-history .heading-title {
    margin-bottom: 3.125rem;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .history-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #869587;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .history-line {
    left: 0;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .history-line::before, .page-template-page-about-us .sc-history .sc-history-wrapper .history-line::after {
  content: "";
  position: absolute;
  background-color: #869587;
  border-radius: 50%;
  left: calc(50% - 8px);
}
.page-template-page-about-us .sc-history .sc-history-wrapper .history-line::before, .page-template-page-about-us .sc-history .sc-history-wrapper .history-line::after {
  width: 1rem;
  height: 1rem;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .history-line::before {
  top: -8px;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .history-line::after {
  bottom: -8px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper {
    margin-bottom: 30px;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper:nth-child(2n) {
  flex-direction: row-reverse;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper:nth-child(2n) .cell-content {
  padding-right: 0 !important;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper:nth-child(2n) .cell-content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper:nth-child(2n) .cell-content {
    padding-left: 3.75rem;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper:nth-child(2n) .cell-content::before {
  right: inherit;
  left: 0;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper:nth-child(2n) .cell-content::after {
  right: inherit;
  left: -8px;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell {
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell {
    width: 100%;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content {
  position: relative;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content {
    padding-right: 3.75rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content {
    padding-left: 30px;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::before, .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background-color: #869587;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::before, .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::after {
    width: 30px;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::before {
  right: 0px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::before {
    right: inherit;
    left: 0;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::after {
  right: -8px;
  border-radius: 50%;
  background-color: #869587;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::after {
  width: 1rem;
  height: 1rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::after {
    right: inherit;
    left: -6px;
  }
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner {
  background-color: #3cb44a;
  padding: 40px;
  border-radius: 20px;
  color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner {
    padding: 30px 15px;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .years {
  color: #3cb44a;
  -webkit-text-stroke: 2px #ffffff;
  text-shadow: none;
  line-height: 60px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1490196078);
  margin-bottom: 15px;
  padding-bottom: 20px;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .years {
  font-size: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .years {
    font-size: 4.125rem;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .title {
  line-height: 1.4;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .title {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .desc {
  text-align: justify;
}
.page-template-page-about-us .sc-history .sc-history-wrapper .wrapper .cell.cell-content .inner .desc ul {
  padding-left: 20px;
}
.page-template-page-about-us .sc-team {
  padding-bottom: 5rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-team {
    padding-bottom: 7.5rem;
  }
}
.page-template-page-about-us .sc-team .group-ceo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.page-template-page-about-us .sc-team .group-ceo {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-team .group-ceo {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-team .group-ceo {
    gap: 30px;
    flex-direction: column;
  }
}
.page-template-page-about-us .sc-team .group-ceo .heading-title {
  margin-bottom: 0;
}
.page-template-page-about-us .sc-team .group-ceo .group-inf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-team .group-ceo .group-inf {
    gap: 30px;
    flex-direction: column;
  }
}
.page-template-page-about-us .sc-team .group-ceo .group-inf .avt {
  position: relative;
  z-index: 2;
}
.page-template-page-about-us .sc-team .group-ceo .group-inf .avt::before {
  content: "";
  position: absolute;
  top: -5%;
  right: -5%;
  background-image: url("../img/layer-round.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.page-template-page-about-us .sc-team .group-ceo .group-inf .avt::before {
  width: 16.25rem;
  height: 16.25rem;
}
.page-template-page-about-us .sc-team .group-ceo .group-inf .avt img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.page-template-page-about-us .sc-team .group-ceo .group-inf .avt img {
  width: 20.625rem;
  height: 20.625rem;
}
.page-template-page-about-us .sc-team .group-ceo .content {
  text-align: center;
}
.page-template-page-about-us .sc-team .group-ceo .content .name {
  font-size: 20px;
  color: #115718;
  margin-bottom: 0;
}
.page-template-page-about-us .sc-team .group-ceo .content .position {
  color: #1E1E1E;
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide {
  width: 25%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-team .swiper-container .swiper-slide {
    width: 50%;
  }
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item {
  padding: 0 25px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .sc-team .swiper-container .swiper-slide .item {
    padding: 0 12px;
  }
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .avt {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .avt::before {
  content: "";
  display: block;
  padding-bottom: 120%;
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .avt::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 24.07%, #115718 100%);
  border-radius: 50%;
  z-index: -1;
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .avt::after {
  width: 16.25rem;
  height: 16.25rem;
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .avt img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .item-inf {
  padding-top: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .item-inf {
    padding-top: 1.25rem;
  }
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .item-inf .name {
  color: #3cb44a;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: normal;
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .item-inf .name {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .item-inf .name {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .sc-team .swiper-container .swiper-slide .item .item-inf .position {
  font-weight: 400;
  color: #7C7C7C;
}
.page-template-page-about-us .sc-team .swiper-controls .swiper-pagination {
  bottom: -60px;
}
.page-template-page-about-us .sc-team .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
}
.page-template-page-about-us .sc-team .swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #124B18;
}
.page-template-page-about-us .bottom-inf-single {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .bottom-inf-single {
    padding-top: 3.75rem;
  }
}
.page-template-page-about-us .bottom-inf-single {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .bottom-inf-single {
    padding-bottom: 3.75rem;
  }
}
.page-template-page-about-us .bottom-inf-single .container {
  padding: 50px 30px;
  border-radius: 12px;
  background-color: #F7F7F7;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .bottom-inf-single .container {
    padding: 30px 15px;
  }
}

.page-template-page-contact .site-content .top-contact {
  width: 60%;
  text-align: justify;
}
.page-template-page-contact .site-content .top-contact {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .site-content .top-contact {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .top-contact {
    width: 100%;
  }
}
.page-template-page-contact .site-content .wrapper .cell {
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell {
    width: 100%;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-inf {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-inf {
    padding-right: 3.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-inf {
    margin-bottom: 30px;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner {
  background-color: #3cb44a;
  border-radius: 12px;
  padding: 20px;
  color: #ffffff;
  text-align: center;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .logo {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 15px;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .logo img {
  width: 60%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-inf .inner .logo img {
    width: 70%;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .name-comp {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .name-comp {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-inf .inner .name-comp {
    font-size: 1.5rem;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .inf-bottom {
  font-weight: 400;
  margin-bottom: 15px;
  color: #E5E5E5;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .content-comp {
  background-color: #19431D;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .content-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-inf .inner .content-social {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-inf .inner .content-social .menu {
    margin-top: 5px;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .content-social .menu li a {
  padding: 0 6px;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .content-social .menu li a i {
  color: #ffffff;
  font-size: 32px;
}
.page-template-page-contact .site-content .wrapper .cell.col-inf .inner .content-social .menu li a img {
  width: 2rem;
  height: 2rem;
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper {
  padding: 30px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.0784313725);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper {
    padding: 25px 15px;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form {
  position: relative;
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form .form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form .form-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form label {
  color: #1E1E1E;
  font-weight: 600;
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form input, .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form textarea, .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form select {
  padding: 0 12px;
  width: 100%;
  border: none;
  height: 44px;
  background-color: #ffffff;
  color: #1D1D1D;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #BABABA;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form input, .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form textarea, .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form select {
    height: 50px;
    padding: 0 15px;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form input[type=submit], .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form textarea[type=submit], .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form select[type=submit] {
  display: flex;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: fit-content;
  color: #ffffff;
  font-size: 600;
  background: #3cb44a;
  border-radius: 100px;
  border: none;
  padding: 0;
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form textarea {
  padding: 20px;
  height: 160px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form textarea {
    padding: 15px;
  }
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form .wpcf7-spinner {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 8px);
  margin: 0;
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper form .wpcf7-response-output {
  margin: 15px 0 5px;
  color: #990F0F;
}
.page-template-page-contact .site-content .wrapper .cell.col-form .wrapper .form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  height: 50px;
  background: #3cb44a;
  border-radius: 100px;
  padding: 0 30px;
  gap: 10px;
  color: #fff;
}
.page-template-page-contact .site-content .contact-map {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .site-content .contact-map {
    margin-top: 3.125rem;
  }
}
.page-template-page-contact .site-content .contact-map .iframe-map {
  position: relative;
  border-radius: 16px;
  border: 3px solid #3cb44a;
  max-width: 90%;
  height: 400px;
  margin: 0 auto;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .contact-map .iframe-map {
    max-width: 100%;
    height: 300px;
  }
}
.page-template-page-contact .site-content .contact-map .iframe-map iframe {
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.page-template-page-contact .site-content .contact-map .link-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .contact-map .link-map {
    top: 50%;
  }
}
.page-template-page-contact .site-content .contact-map .link-map a {
  height: 70px;
  background-color: #ffffff;
  color: #0058AA;
  border: 1px solid #fff;
  border-radius: 10px;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
}
.page-template-page-contact .site-content .contact-map .link-map a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .contact-map .link-map a {
    width: 220px;
    height: 55px;
  }
}
.page-template-page-contact .site-content .contact-map .link-map a i {
  color: #FF1A05;
}
.page-template-page-contact .site-content .contact-map .link-map a i {
  font-size: 1.5625rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .site-content .contact-map .link-map a i {
    font-size: 1.875rem;
  }
}
.page-template-page-contact .site-content .contact-map .link-map a span {
  text-decoration: underline;
  font-weight: 700;
}
.page-template-page-contact .site-content .contact-map .link-map a span {
  font-size: 1.375rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .site-content .contact-map .link-map a span {
    font-size: 1.625rem;
  }
}
.page-template-page-contact .site-content .list-address {
  list-style-type: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .site-content .list-address {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
.page-template-page-contact .site-content .list-address .item {
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  color: #1E1E1E;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1019607843);
  position: relative;
}
.page-template-page-contact .site-content .list-address .item .label {
  font-weight: 600;
  text-transform: uppercase;
  color: #243F40;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.page-template-page-contact .site-content .list-address .item .label {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .site-content .list-address .item .label {
    font-size: 1.25rem;
  }
}
.page-template-page-contact .site-content .list-address .item .label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #115718 0%, #1DB42C 100%);
}

.sc-contact .container {
  border: 1px solid #4E4E4E;
  padding: 60px 80px;
  background-color: #151213;
  color: #ffffff;
  border-radius: 100px;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-contact .container {
    padding: 40px 20px;
    border-radius: 50px;
  }
}
.sc-contact .container .heading-title {
  text-transform: none;
  color: #036608;
}
.sc-contact .container .wrapper {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper {
    margin-top: 3.125rem;
  }
}
.sc-contact .container .wrapper .cell.cell-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sc-contact .container .wrapper .cell.cell-left {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-left {
    padding-right: 3.125rem;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .sc-contact .container .wrapper .cell.cell-left {
    padding-bottom: 30px;
    width: 100%;
  }
}
.sc-contact .container .wrapper .cell.cell-left .group-content {
  width: -webkit-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.sc-contact .container .wrapper .cell.cell-left .group-content::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -30px;
  background-image: url("../../resources/img/decor.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.sc-contact .container .wrapper .cell.cell-left .group-content::before {
  width: 3.375rem;
  height: 3.375rem;
}
.sc-contact .container .wrapper .cell.cell-left .group-content .slogan {
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}
.sc-contact .container .wrapper .cell.cell-left .group-content .slogan {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-left .group-content .slogan {
    font-size: 1.5rem;
  }
}
.sc-contact .container .wrapper .cell.cell-left .group-content .title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}
.sc-contact .container .wrapper .cell.cell-left .group-content .title {
  font-size: 1.625rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-left .group-content .title {
    font-size: 2.25rem;
  }
}
.sc-contact .container .wrapper .cell.cell-left .group-content .title span {
  color: #115718;
}
.sc-contact .container .wrapper .cell.cell-left .list-social {
  margin: 30px 0 0;
  padding: 0;
  list-style-type: none;
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item {
  margin-bottom: 30px;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(105.71deg, rgba(213, 112, 108, 0.6) 0%, rgba(18, 56, 147, 0.6) 102.69%);
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item {
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item {
    flex-wrap: wrap;
  }
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .group {
  display: flex;
  align-items: center;
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .group .icon img {
  width: 90px;
  object-fit: contain;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item .group .icon img {
    width: 80px;
  }
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .group .content {
  padding-left: 0.75rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item .group .content {
    padding-left: 1.25rem;
  }
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .group .content .name {
  font-weight: 700;
  line-height: 1.3;
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .group .content .name {
  font-size: 1.625rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item .group .content .name {
    font-size: 2rem;
  }
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .group .content .note {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item .group .content .note {
    font-size: 1rem;
  }
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .btn-link {
  text-transform: uppercase;
  color: #ffffff;
  height: 40px;
  border-radius: 30px;
  background-color: #FF0002;
  border-bottom: 3px solid #941314;
  padding: 0 30px;
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item .btn-link {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .sc-contact .container .wrapper .cell.cell-left .list-social .item .btn-link {
    margin-top: 12px;
    margin-left: 80px;
    padding: 0 20px;
  }
}
.sc-contact .container .wrapper .cell.cell-left .list-social .item .btn-link:hover {
  background-color: #941314;
}
.sc-contact .container .wrapper .cell.cell-right {
  width: 45%;
}
.sc-contact .container .wrapper .cell.cell-right {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-right {
    padding-left: 3.125rem;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .sc-contact .container .wrapper .cell.cell-right {
    width: 100%;
  }
}
.sc-contact .container .wrapper .cell.cell-right .item {
  width: 85%;
  margin: 0 auto 20px;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  background: linear-gradient(105.71deg, rgba(213, 112, 108, 0.2) 0%, rgba(18, 56, 147, 0.2) 102.69%);
}
@media only screen and (max-width: 47.99875rem) {
  .sc-contact .container .wrapper .cell.cell-right .item {
    width: 100%;
  }
}
.sc-contact .container .wrapper .cell.cell-right .item .icon img {
  width: 90px;
  object-fit: contain;
}
.sc-contact .container .wrapper .cell.cell-right .item .content {
  padding-left: 0.75rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-right .item .content {
    padding-left: 1.25rem;
  }
}
.sc-contact .container .wrapper .cell.cell-right .item .content .name {
  font-weight: 700;
  line-height: 1.3;
}
.sc-contact .container .wrapper .cell.cell-right .item .content .name {
  font-size: 1.625rem;
}
@media only screen and (min-width: 64rem) {
  .sc-contact .container .wrapper .cell.cell-right .item .content .name {
    font-size: 2rem;
  }
}
.sc-contact .container .wrapper .cell.cell-right .iframe img {
  border-radius: 30px;
  width: 100%;
}

.popup-content {
  display: none;
}
.popup-content .cell-title {
  text-align: center;
  margin-bottom: 10px;
}
.popup-content .cell-title .title {
  margin-bottom: 5px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: capitalize;
}
.popup-content .cell-title .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .popup-content .cell-title .title {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .popup-content .cell-title .title {
    font-size: 1.375rem;
  }
}
.popup-content .cell-title .desc {
  font-size: 14px;
}
.popup-content form {
  position: relative;
}
.popup-content form label {
  display: block;
  font-size: 14px;
  padding-bottom: 2px;
}
.popup-content form input, .popup-content form select, .popup-content form textarea {
  width: 100%;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 14px;
  margin-bottom: 15px;
}
.popup-content form select:not([data-wform-field=select-multiple]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='34' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 50%;
  background-color: #fff;
  min-width: 70px;
  width: 100%;
}
.popup-content form textarea {
  height: 80px;
}
.popup-content form input[type=submit] {
  background-color: #3cb44a;
  color: #ffffff;
  font-weight: 700;
  height: 40px;
  border: none;
  text-transform: capitalize;
  font-size: 15px;
}
.popup-content form input[type=submit]:hover {
  background-color: #036608;
}
.popup-content form span.wpcf7-not-valid-tip {
  padding-top: 5px;
  font-size: 14px;
  font-weight: 600;
}
.popup-content form .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
}
.popup-content form .wpcf7-response-output {
  margin: 15px 0 0;
  font-size: 14px;
}

#popup-contact-form {
  width: 50%;
  padding: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  #popup-contact-form {
    width: 85%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #popup-contact-form {
    width: 95%;
  }
}
#popup-contact-form .form-submit i {
  display: none;
}

.product-item {
  background-color: #ffffff;
  padding: 6px 6px 10px;
  border-radius: 8px;
}
.product-item:hover a.img img {
  transform: scale(1.03);
  transition: all 0.3s;
}
@media only screen and (max-width: 47.99875rem) {
  .product-item:hover a.img img {
    transform: scale(1.01);
  }
}
.product-item a.img img {
  transform: scale(1);
  transition: all 0.3s;
  margin-bottom: 0 !important;
}
.product-item .product-inf {
  padding-top: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  .product-item .product-inf {
    padding-top: 1.25rem;
  }
}
.product-item .product-inf .title {
  font-size: 16px !important;
  line-height: 1.3;
  margin-bottom: 10px !important;
  text-align: center;
  font-weight: 500;
  padding: 0 !important;
}
.product-item .product-inf .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .product-item .product-inf .title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.product-item .product-inf .title a {
  color: #1E1E1E;
}
.product-item .product-inf .title a:hover {
  color: #3cb44a;
}
.product-item .product-inf .price {
  display: flex !important;
  gap: 12px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.product-item .product-inf .price ins {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: #990F0F;
}
.product-item .product-inf .price del {
  color: #7C7C7C !important;
  opacity: 1 !important;
  font-weight: 400;
}

body.archive.tax-product_cat .section-breadcrumb .breadcrumb-bg, body.archive.tax-product_cat .section-breadcrumb .top-breadcrumb, body.single-product .section-breadcrumb .breadcrumb-bg, body.single-product .section-breadcrumb .top-breadcrumb,
body.single-post .section-breadcrumb .breadcrumb-bg,
body.single-post .section-breadcrumb .top-breadcrumb {
  display: none;
}
body.archive.tax-product_cat .section-breadcrumb .bottom-breadcrumb, body.single-product .section-breadcrumb .bottom-breadcrumb,
body.single-post .section-breadcrumb .bottom-breadcrumb {
  position: relative;
  background: rgba(29, 61, 32, 0.2);
}
body.archive.tax-product_cat .section-breadcrumb #breadcrumbs, body.single-product .section-breadcrumb #breadcrumbs,
body.single-post .section-breadcrumb #breadcrumbs {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  body.archive.tax-product_cat .section-breadcrumb #breadcrumbs, body.single-product .section-breadcrumb #breadcrumbs,
  body.single-post .section-breadcrumb #breadcrumbs {
    padding-left: 0.625rem;
  }
}
body.archive.tax-product_cat .section-breadcrumb #breadcrumbs li, body.single-product .section-breadcrumb #breadcrumbs li,
body.single-post .section-breadcrumb #breadcrumbs li {
  color: #7C7C7C;
}
body.archive.tax-product_cat .section-breadcrumb #breadcrumbs li .home, body.single-product .section-breadcrumb #breadcrumbs li .home,
body.single-post .section-breadcrumb #breadcrumbs li .home {
  color: #062D0A;
}

.bottom-inf-single {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-inf-single {
    padding: 30px 15px;
  }
}
.bottom-inf-single .logo {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .bottom-inf-single .logo {
    margin-bottom: 1.875rem;
  }
}
.bottom-inf-single .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-inf-single .logo {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.bottom-inf-single .name-comp {
  text-align: center;
  font-weight: 700;
  color: #3cb44a;
  line-height: 1.4;
}
.bottom-inf-single .name-comp {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .bottom-inf-single .name-comp {
    font-size: 2rem;
  }
}
.bottom-inf-single .inf-bottom {
  margin-top: 20px;
  color: #1E1E1E;
}
.bottom-inf-single .social-menu {
  justify-content: center;
  gap: 20px;
}
.bottom-inf-single .social-menu {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .bottom-inf-single .social-menu {
    margin-top: 1.875rem;
  }
}
.bottom-inf-single .social-menu li {
  flex: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .bottom-inf-single .social-menu li {
    width: 100%;
  }
}
.bottom-inf-single .social-menu li:nth-child(2), .bottom-inf-single .social-menu li:nth-child(5) {
  display: none;
}
.bottom-inf-single .social-menu li a {
  border-radius: 30px;
  background: #3cb44a;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.bottom-inf-single .social-menu li a:hover {
  background: #036608;
}
.bottom-inf-single .social-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 30px;
  border: 1px solid #ffffff;
}
.bottom-inf-single .social-menu li a.instagram, .bottom-inf-single .social-menu li a.zalo {
  display: none;
}
.bottom-inf-single .social-menu li a i {
  font-size: 30px;
}
.bottom-inf-single .social-menu li a img {
  object-fit: contain;
}
.bottom-inf-single .social-menu li a img {
  width: 1.875rem;
  height: 1.875rem;
}
.bottom-inf-single .social-menu li a .sr-only {
  display: block;
  -webkit-clip-path: inset(0%);
  clip-path: inset(0%);
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
  opacity: 1;
  position: relative;
  text-decoration: underline;
  font-weight: 600;
}
.bottom-inf-single .social-menu li a .sr-only {
  padding-left: 0.625rem;
}
@media only screen and (min-width: 64rem) {
  .bottom-inf-single .social-menu li a .sr-only {
    padding-left: 0.9375rem;
  }
}

@media only screen and (max-width: 47.99875rem) {
  .home-customer {
    overflow-x: hidden;
  }
}
.home-customer .gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.home-customer .gallery-wrapper .gallery-moving {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 20px 0;
  animation: 80s linear infinite slide-left-right;
}
.home-customer .gallery-wrapper .gallery-moving.gallery-moving-bot {
  animation: 80s linear infinite slide-right-left;
}
.home-customer .gallery-wrapper .gallery-moving .lists-logo {
  display: flex;
  align-items: center;
  width: 100%;
}
.home-customer .gallery-wrapper .gallery-moving .lists-logo .logo {
  flex: none;
  padding: 10px 60px;
}
@media only screen and (max-width: 47.99875rem) {
  .home-customer .gallery-wrapper .gallery-moving .lists-logo .logo {
    padding: 5px 30px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .home-customer .gallery-wrapper .gallery-moving .lists-logo .logo {
    padding: 5px 20px;
  }
}
.home-customer .gallery-wrapper .gallery-moving .lists-logo .logo img {
  transition: all 0.4s linear;
  width: 150px;
  height: 100px;
  object-fit: contain;
}
@media only screen and (max-width: 39.99875rem) {
  .home-customer .gallery-wrapper .gallery-moving .lists-logo .logo img {
    width: 120px;
    height: 80px;
  }
}

@keyframes slide-right-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-left-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}