@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: #000000;
  --link-hover-color: black;
  --gutter: 14px;
  --gutter-xs: 10px;
  --gap: 28px;
  --gap-xs: 20px;
  --Primary-01: #FF7709;
  --Primary-02: #46FFF3;
  --Primary-03: #D02028;
  --Primary-04: #D77525;
  --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: #46FFF3;
}
a:hover {
  color: #FF7709;
  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: 82.5rem) {
  .xl\:hidden {
    display: none;
  }
}

@media only screen and (min-width: 82.5rem) {
  .\!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: 82.5rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    max-width: 1320px;
  }
}
@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;
}

#inside-header {
  background: linear-gradient(91deg, #B66515 -30.17%, #B14411 48.64%, #B66515 124.48%);
  padding: 28px 0 30px 0;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1882352941);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header {
    padding: 12px 0;
  }
}
#inside-header.w-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  padding: 20px 0;
}
#inside-header.w-sticky .header-logo-contact {
  display: none;
}
#inside-header.w-sticky .wrapper-search-header {
  margin-top: 0;
}
#inside-header.w-sticky.hide-header {
  transform: translateY(-100%);
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .container {
    justify-content: space-between;
  }
}
#inside-header .cell.cell-logo {
  flex: 0 0 13%;
  max-width: 13%;
  display: flex;
  align-items: center;
}
#inside-header .cell.cell-logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-logo {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #inside-header .cell.cell-logo {
    flex: 0 0 32%;
    max-width: 32%;
  }
}
#inside-header .cell.cell-search {
  flex: auto;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-search {
    display: none;
  }
}
#inside-header .cell.cell-search .inline-search form {
  position: relative;
}
#inside-header .cell.cell-search .inline-search form input {
  border: none;
  display: flex;
  width: 414px;
  height: 34px;
  padding: 2px 2px 2px 12px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.32);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  color: #ffffff;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}
#inside-header .cell.cell-search .inline-search form input::-webkit-input-placeholder {
  color: #ffffff;
}
#inside-header .cell.cell-search .inline-search form input::placeholder {
  color: #ffffff;
}
#inside-header .cell.cell-search .inline-search form button {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  border-radius: 24px;
  background: #0A2F2C;
  width: 40px;
  height: 30px;
  padding: 4px;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  color: #ffffff;
}
#inside-header .cell.cell-search .inline-search form button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell.cell-search .inline-search form button img {
  width: 1.25rem;
  height: 1.25rem;
}
#inside-header .cell.cell-phone a.ic-phone {
  display: inline-flex;
  padding: 6px 21px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 32px;
  background-color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-phone a.ic-phone {
    display: none;
  }
}
#inside-header .cell.cell-phone a.ic-phone img {
  width: 1.25rem;
  height: 1.25rem;
}
#inside-header .cell.cell-phone a.ic-phone span {
  background: var(--btn, linear-gradient(92deg, #D02028 21.82%, #D77525 106.44%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  line-height: 22px;
}
#inside-header .cell.cell-phone a.ic-phone span {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-phone a.ic-phone span {
    font-size: 1rem;
  }
}
#inside-header .cell.cell-phone .dropdown-search {
  padding: 0 25px;
  display: none;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-phone .dropdown-search {
    display: block;
    padding: 0 20px 0 0;
  }
}
#inside-header .cell.cell-phone .dropdown-search .trigger-s {
  font-size: 15px;
  color: #FF7709;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-phone .dropdown-search .trigger-s {
    background: #FF7709;
    border-radius: 50%;
    color: #ffffff;
  }
  #inside-header .cell.cell-phone .dropdown-search .trigger-s {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  #inside-header .cell.cell-phone .dropdown-search .trigger-s {
    width: 1.875rem;
    height: 1.875rem;
  }
}
#inside-header .cell.cell-phone .dropdown-search .trigger-s span {
  display: none;
}
#inside-header .cell.cell-phone .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-phone .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px);
  }
}
#inside-header .cell.cell-phone .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-phone .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-phone .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-phone .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1024px;
  }
}
@media only screen and (min-width: 82.5rem) {
  #inside-header .cell.cell-phone .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1320px;
  }
}
#inside-header .cell.cell-phone .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-phone .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-phone .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] > span {
  display: none;
}
#inside-header .cell.cell-phone .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container .trigger-s-close {
  display: none;
}
#inside-header .wrapper-search-header {
  margin-top: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  #inside-header .wrapper-search-header {
    margin-top: 1.5625rem;
  }
}
#inside-header .wrapper-search-header form {
  display: flex;
  gap: 5px;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .wrapper-search-header form {
    flex-wrap: wrap;
  }
}
#inside-header .wrapper-search-header form select {
  width: 16.6666666667%;
  height: 36px;
  padding: 0 20px;
  border-radius: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid #FFCA96;
  background: rgba(255, 255, 255, 0.1);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAANCAYAAABYWxXTAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAC2SURBVHgBtZLRDYMwDEQ9AiNkBEboJmUENiAb0A3oJozACBmBEdxEdVRzEsjU8CQ+IL474RxRhpmb/DzoJrJ3WzLqy8JfRrqY7DmJ91w/zPyjBAdyIttatG89CHCQPIHil+AHGhx6QWBLJ5H7WZXP+2g48paejOTZJ2ijRdSDaDBoBtB0ZEXWkZR4PJid1Nz6z/r3Ljqoc2xcYk+TeaepbGmcIxSbamucIxCbWoh0F7xtandG+wF0qqW7CI1ubgAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}
#inside-header .wrapper-search-header form select {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .wrapper-search-header form select {
    width: calc(33.3333333333% - 5px);
  }
}
@media only screen and (max-width: 39.99875rem) {
  #inside-header .wrapper-search-header form select {
    width: calc(50% - 5px);
    padding: 0 15px;
    background-position: right 10px center;
    background-size: 10px;
    font-size: 14px;
  }
}
#inside-header .wrapper-search-header form select option {
  color: #000000;
}
#inside-header .wrapper-search-header form button {
  padding: 0 18px;
  height: 36px;
  border-radius: 24px;
  background: #0A2F2C;
  color: #ffffff;
  font-weight: 500;
  flex: auto;
}
#inside-header .wrapper-search-header form button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 39.99875rem) {
  #inside-header .wrapper-search-header form button {
    padding: 0 12px;
  }
}
#inside-header .wrapper-search-header form button img {
  margin-left: 5px;
}
#inside-header .wrapper-search-header form button img {
  width: 1.125rem;
  height: 1.125rem;
}
@media only screen and (max-width: 39.99875rem) {
  #inside-header .wrapper-search-header form button img {
    margin-left: 7px;
    font-size: 14px;
  }
  #inside-header .wrapper-search-header form button img {
    width: 1rem;
    height: 1rem;
  }
}

#bottom-header {
  background: linear-gradient(91deg, #B66515 -30.17%, #B14411 48.64%, #B66515 124.48%);
  padding: 28px 0 30px 0;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1882352941);
}

.site-footer {
  position: relative;
  background-color: #021F1C;
  background-image: url("../img/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer-columns .footer-top {
  padding: 40px 0 30px;
}
#footer-columns .footer-top .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-top .container .footer-logo {
    margin-bottom: 20px;
  }
}
#footer-columns .footer-top .container .footer-logo img {
  width: -webkit-fit-content;
  width: fit-content;
  object-fit: contain;
  height: 40px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-top .container .footer-search {
    width: 100%;
  }
}
#footer-columns .footer-top .container .footer-search .inline-search form {
  position: relative;
}
#footer-columns .footer-top .container .footer-search .inline-search form input {
  border: none;
  display: flex;
  width: 414px;
  height: 34px;
  padding: 2px 2px 2px 12px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.32);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  color: #ffffff;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}
#footer-columns .footer-top .container .footer-search .inline-search form input::-webkit-input-placeholder {
  color: #ffffff;
}
#footer-columns .footer-top .container .footer-search .inline-search form input::placeholder {
  color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-top .container .footer-search .inline-search form input {
    width: 100%;
  }
}
#footer-columns .footer-top .container .footer-search .inline-search form button {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  border-radius: 24px;
  background: #0A2F2C;
  width: 40px;
  height: 30px;
  padding: 4px;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  color: #ffffff;
}
#footer-columns .footer-top .container .footer-search .inline-search form button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer-columns .footer-top .container .footer-search .inline-search form button img {
  width: 1.25rem;
  height: 1.25rem;
}
#footer-columns .footer-center .container .lists {
  list-style-type: none;
  margin: 0;
  padding: 30px 0;
  border-top: 1px solid #1D4F4A;
  border-bottom: 1px solid #1D4F4A;
}
#footer-columns .footer-center .container .lists .inner {
  width: 25%;
  padding: 0 20px;
  border-right: 2px solid #1D4F4A;
  color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-center .container .lists .inner {
    width: 50%;
    padding-bottom: 20px;
    border-right: none;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .footer-center .container .lists .inner {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
#footer-columns .footer-center .container .lists .inner:first-child {
  padding-left: 0;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-center .container .lists .inner:nth-child(3) {
    padding-left: 0;
  }
}
#footer-columns .footer-center .container .lists .inner:last-child {
  border-right: 0;
  padding-right: 0;
}
#footer-columns .footer-center .container .lists .inner .item {
  align-items: flex-start;
  margin-bottom: 10px;
}
#footer-columns .footer-center .container .lists .inner .item:last-child {
  margin-bottom: 0;
}
#footer-columns .footer-center .container .lists .inner .item img {
  margin-right: 8px;
  transform: translateY(4px);
}
#footer-columns .footer-center .container .lists .inner .item img {
  width: 1.25rem;
  height: 1.25rem;
}
#footer-columns .footer-center .container .lists .inner .item .text {
  line-height: 1.5;
}
#footer-columns .footer-center .container .lists .inner .item .text span {
  font-weight: 700;
}
#footer-columns .footer-bottom {
  padding: 30px 0 40px;
  color: #ffffff;
}
#footer-columns .footer-bottom .container {
  justify-content: space-between;
}
#footer-columns .footer-bottom .container .cell {
  padding: 0 20px;
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .footer-bottom .container .cell {
    padding: 0;
  }
}
#footer-columns .footer-bottom .container .cell:first-child {
  padding-left: 0;
}
#footer-columns .footer-bottom .container .cell:last-child {
  padding-right: 0;
}
#footer-columns .footer-bottom .container .cell.footer-menu {
  width: 35%;
  justify-content: space-between;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-menu {
    width: 50%;
    justify-content: flex-start;
    gap: 30px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-menu {
    width: 100%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-menu .widget_nav_menu {
    width: 100%;
  }
}
#footer-columns .footer-bottom .container .cell.footer-menu .widget_nav_menu ul {
  flex-direction: column;
}
#footer-columns .footer-bottom .container .cell.footer-menu .widget_nav_menu ul li {
  margin-bottom: 20px;
}
#footer-columns .footer-bottom .container .cell.footer-menu .widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
#footer-columns .footer-bottom .container .cell.footer-menu .widget_nav_menu ul li a {
  font-size: 15px;
  color: #ffffff;
  padding: 0;
}
#footer-columns .footer-bottom .container .cell.footer-menu .widget_nav_menu ul li a:hover {
  color: #FF7709;
}
#footer-columns .footer-bottom .container .cell.footer-contact {
  width: 40%;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-contact {
    width: 50%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-contact {
    width: 100%;
    margin-top: 30px;
  }
}
#footer-columns .footer-bottom .container .cell.footer-contact .footer-title {
  text-align: center;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-contact .footer-title {
    text-align: left;
  }
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-contact .group-contact {
    gap: 20px;
    justify-content: flex-start;
  }
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .btn-phone {
  display: inline-flex;
  padding: 8px 21px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 32px;
  color: #ffffff;
  background: linear-gradient(91.67deg, #D02028 21.82%, #D77525 106.44%);
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .btn-phone img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  margin-right: 4px;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .btn-phone img {
  width: 1.125rem;
  height: 1.125rem;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .btn-phone span {
  font-weight: 600;
  line-height: 16px;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .btn-phone span {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .footer-bottom .container .cell.footer-contact .group-contact .btn-phone span {
    font-size: 1rem;
  }
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social {
  align-items: center;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social .sub {
  color: rgba(255, 255, 255, 0.6980392157);
  padding: 0 15px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social .sub {
    padding-left: 0;
  }
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social ul.social-menu {
  gap: 10px;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social ul.social-menu li a {
  background: rgba(255, 255, 255, 0.1019607843);
  padding: 0;
  border-radius: 4px;
  transition: 0.4s;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social ul.social-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social ul.social-menu li a {
  width: 2.25rem;
  height: 2.25rem;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social ul.social-menu li a i {
  color: #D56825;
}
#footer-columns .footer-bottom .container .cell.footer-contact .group-contact .footer-social ul.social-menu li a:hover {
  transition: 0.4s;
  border: 1px solid #D56825;
}
#footer-columns .footer-bottom .container .cell.footer-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 20%;
  gap: 12px;
}
#footer-columns .footer-bottom .container .cell.footer-qr {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  #footer-columns .footer-bottom .container .cell.footer-qr {
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-qr {
    width: 50%;
    padding-left: 0;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .footer-bottom .container .cell.footer-qr {
    width: 80%;
  }
}
#footer-columns .footer-bottom .container .cell.footer-qr .item {
  background-color: #0A2F2C;
  padding: 8px;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
#footer-columns .footer-bottom .container .cell.footer-qr .item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(91.67deg, #D02028 21.82%, #D77525 106.44%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
#footer-columns .footer-bottom .container .cell.footer-qr .item img {
  width: 100%;
}
#footer-columns .footer-bottom .container .cell.footer-qr .item span {
  display: inline-block;
  text-align: center;
  padding-top: 10px;
  line-height: 1.6;
  font-size: 12px;
}
#footer-columns .footer-bottom .container .widget_nav_menu span, #footer-columns .footer-bottom .container .footer-title {
  display: block;
  font-weight: 600;
  margin-bottom: 20px;
}

#footer-credit .copyright {
  font-size: 14px;
  padding: 20px 0;
  color: #ffffff;
  font-weight: 500;
  border-top: 1px solid #5EA8FF;
}

.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(255, 119, 9, 0));
          filter: drop-shadow(0 0 6px rgba(255, 119, 9, 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: #FF7709;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-this.contact-link li a > svg, .add-this.contact-link li a > i {
  background-color: #46FFF3;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #46FFF3;
  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: #46FFF3;
}
@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: #46FFF3;
  color: #fff;
}
.add-this.contact-link li a:hover.messenger > i {
  background: none;
  color: #46FFF3;
}

/** Poppins fonts */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../img/SVN-Poppins-Light.woff2?v=up6pypr") format("woff2"), url("../img/SVN-Poppins-Light.ttf?v=up6pypr") format("truetype"), url("../img/SVN-Poppins-Light.otf?v=up6pypr") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../img/SVN-Poppins-LightItalic.woff2?v=up6pyqj") format("woff2"), url("../img/SVN-Poppins-LightItalic.ttf?v=up6pyqj") format("truetype"), url("../img/SVN-Poppins-LightItalic.otf?v=up6pyqj") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../img/SVN-Poppins-Regular.woff2?v=up6pyql") format("woff2"), url("../img/SVN-Poppins-Regular.ttf?v=up6pyql") format("truetype"), url("../img/SVN-Poppins-Regular.otf?v=up6pyql") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../img/SVN-Poppins-RegularItalic.woff2?v=up6pyr5") format("woff2"), url("../img/SVN-Poppins-RegularItalic.ttf?v=up6pyr5") format("truetype"), url("../img/SVN-Poppins-RegularItalic.otf?v=up6pyr5") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../img/SVN-Poppins-Medium.woff2?v=up6pyr6") format("woff2"), url("../img/SVN-Poppins-Medium.ttf?v=up6pyr6") format("truetype"), url("../img/SVN-Poppins-Medium.otf?v=up6pyr6") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../img/SVN-Poppins-SemiBold.woff2?v=up6pyrl") format("woff2"), url("../img/SVN-Poppins-SemiBold.ttf?v=up6pyrl") format("truetype"), url("../img/SVN-Poppins-SemiBold.otf?v=up6pyrl") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../img/SVN-Poppins-Bold.woff2?v=up6pys5") format("woff2"), url("../img/SVN-Poppins-Bold.ttf?v=up6pys5") format("truetype"), url("../img/SVN-Poppins-Bold.otf?v=up6pys5") 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);
}

body {
  background-color: #0a2f2c;
  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-direction: column;
  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: #FF7709;
}

.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: #FF7709;
}
:is(span, label) > a:hover {
  color: #FF7709;
  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: 10px;
  bottom: 30px;
  border: 1px solid #46FFF3;
  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: #FF7709;
}
.back-to-top > svg {
  width: 1.75rem;
  height: 1.75rem;
}
.back-to-top:hover {
  border-color: #D02028;
}
.back-to-top:hover > svg {
  color: #D02028;
}

.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: #ffffff;
  position: absolute;
  right: 0;
}
.off-canvas-content .menu-lines .line > span.line-2::before {
  width: 90%;
  transition: 0.3s;
}
.off-canvas-content .menu-lines:hover .menu-txt {
  color: #FF7709;
}
.off-canvas-content .menu-lines:hover .line > span::before {
  background-color: #FF7709;
}
.off-canvas-content .menu-lines:hover .line > span.line-2::before {
  width: 100%;
}

.off-canvas {
  background-color: #042825;
}
.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: #FF7709;
  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 {
  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: 160px;
  height: 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 .submenu-toggle::after {
  border-color: #ffffff transparent transparent;
}
.off-canvas ul.vertical.menu li.active .submenu-toggle::after {
  border-color: #FF7709 transparent transparent;
}
.off-canvas ul.vertical.menu li a {
  font-size: 15px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 24px;
  display: block;
  text-transform: uppercase;
  color: #ffffff;
}
.off-canvas ul.vertical.menu li a[aria-current=page] {
  color: #FF7709;
}
.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: 82.5rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1320px;
  }
}
.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;
}

#site-content {
  background: #0A2F2C;
  position: relative;
  color: #ffffff;
}
#site-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, #00FFEA 0%, rgba(0, 255, 234, 0) 100%);
}

.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: #FF7709;
}
@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: #FF7709;
}

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

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.heading-title {
  color: #FF7709;
  font-weight: 900;
  text-transform: uppercase;
  line-height: normal;
}
.heading-title {
  font-size: 1.75rem;
}
@media only screen and (min-width: 48rem) {
  .heading-title {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .heading-title {
    font-size: 3.125rem;
  }
}
.heading-title {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .heading-title {
    margin-bottom: 2.1875rem;
  }
}

.group-heading {
  width: 80%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .group-heading {
    width: 100%;
  }
}
.group-heading .heading-title .desc {
  text-align: center;
  line-height: 30px;
}
.group-heading .heading-title .desc {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .group-heading .heading-title .desc {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .group-heading .heading-title .desc {
    font-size: 1.25rem;
  }
}

.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 #FF7709;
  position: relative;
  transform: rotate(45deg);
  margin: 0 auto;
}
.heading-custom .divider .square {
  width: 0.9375rem;
  height: 0.9375rem;
}

.btn-link {
  border-radius: 30px;
  width: -webkit-fit-content;
  width: fit-content;
  height: 36px;
  background: #021E1C;
  color: #46FFF3;
  font-weight: 600;
  gap: 10px;
  padding: 0 20px;
}
.btn-link {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .btn-link {
    font-size: 1rem;
  }
}
.btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-main {
  margin: 30px auto 0;
  height: 40px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 21px;
  width: -webkit-fit-content;
  width: fit-content;
  border-radius: 32px;
  background: linear-gradient(92deg, #D02028 21.82%, #D77525 106.44%);
}
.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-main img {
  margin-right: 10px;
}
.btn-main .text {
  padding-right: 8px;
}
.btn-main .arrow-wrap {
  position: relative;
}
.btn-main .arrow-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #FF0006;
  transform: translateY(-50%);
}
.btn-main .arrow-wrap::after {
  width: 1.5625rem;
  height: 1.5625rem;
}
.btn-main .arrow-wrap svg {
  transition: 0.3s;
  position: relative;
  z-index: 2;
}
.btn-main:hover {
  color: #ffffff;
  background: #D02028;
}
.btn-main:hover svg {
  transition: 0.3s;
  width: 25px;
}

.group-title {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .group-title {
    margin-bottom: 3.125rem;
  }
}
.group-title .sub-title {
  font-family: "Allura", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-weight: 400;
}
.group-title .sub-title {
  font-size: 1.375rem;
}
@media only screen and (min-width: 48rem) {
  .group-title .sub-title {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .group-title .sub-title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .group-title .sub-title {
    margin-bottom: 5px;
  }
}
.group-title .heading-title {
  margin-bottom: 0;
  color: #FF7709;
}
.group-title .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .group-title .heading-title {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .group-title .heading-title {
    font-size: 2rem;
  }
}
.group-title .heading-title span {
  color: #46FFF3;
}

.section-breadcrumb {
  background-color: transparent;
  position: relative;
}
.section-breadcrumb {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb {
    margin-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .section-breadcrumb {
    height: 250px;
  }
}
.section-breadcrumb .breadcrumb-bg {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 39.99875rem) {
  .section-breadcrumb .breadcrumb-bg {
    height: 100%;
  }
}
.section-breadcrumb .breadcrumb-bg img {
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 39.99875rem) {
  .section-breadcrumb .breadcrumb-bg img {
    height: 100%;
  }
}
.section-breadcrumb .container {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.section-breadcrumb .container .breadcrumb-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 0;
}
.section-breadcrumb .container .breadcrumb-title {
  font-size: 1.375rem;
}
@media only screen and (min-width: 48rem) {
  .section-breadcrumb .container .breadcrumb-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb .container .breadcrumb-title {
    font-size: 2.25rem;
  }
}
.section-breadcrumb #breadcrumbs {
  padding: 10px 0;
  margin: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  list-style-type: none;
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb #breadcrumbs {
    font-size: 13px;
    flex-wrap: wrap;
    padding: 5px 0;
  }
}
.section-breadcrumb #breadcrumbs li {
  color: #B5B5B5;
}
.section-breadcrumb #breadcrumbs li:not(:first-child)::before {
  content: "/";
  font-size: 14px;
  margin: 0 10px;
  color: #46FFF3;
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb #breadcrumbs li:not(:first-child)::before {
    font-size: 10px;
    margin: 0 5px;
  }
}
.section-breadcrumb #breadcrumbs li a {
  color: #46FFF3;
}
.section-breadcrumb #breadcrumbs li .home {
  color: #46FFF3;
}

.swiper-controls .swiper-button {
  width: 40px !important;
  height: 40px;
}
@media only screen and (max-width: 47.99875rem) {
  .swiper-controls .swiper-button {
    width: 38px !important;
    height: 38px;
  }
}
.swiper-controls .swiper-button:hover::before {
  background-color: #FF7709 !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}
.swiper-controls .swiper-button::before {
  content: "\f177";
  opacity: 1 !important;
  background-color: rgba(5, 57, 52, 0.5) !important;
  color: #ffffff !important;
  border: 1px solid #D02028 !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-button.swiper-button-next::before {
  content: "\f178";
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 100px;
  background: #46FFF3;
}

.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: #D02028;
}
.page-description a:hover, .woocommerce-Tabs-panel a:hover,
.archive-post .excerpt a:hover, .single-post .content a:hover {
  text-decoration: underline;
}

.archive-post .menu-category-posts {
  margin-bottom: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .menu-category-posts .widget_nav_menu {
    padding-bottom: 10px;
  }
  .archive-post .menu-category-posts .widget_nav_menu:hover {
    overflow-x: scroll;
  }
}
.archive-post .menu-category-posts ul {
  flex-wrap: nowrap;
  gap: 12px;
  width: -webkit-max-content;
  width: max-content;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .menu-category-posts ul {
    flex-wrap: wrap;
    width: -webkit-fit-content;
    width: fit-content;
    gap: 10px;
    justify-content: center;
  }
}
.archive-post .menu-category-posts ul li a {
  padding: 0;
  color: #CCC;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  padding: 0 20px;
  border-radius: 4px;
  transition: 0.3s;
  height: 36px;
}
.archive-post .menu-category-posts ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.archive-post .menu-category-posts ul li a[aria-current=page] {
  transition: 0.3s;
  color: #ffffff;
  border: 1px solid #1AE4D4;
}
.archive-post .posts-list {
  margin: 0 -10px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .posts-list {
    margin: 0;
  }
}
.archive-post .posts-list .cell {
  width: 25%;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .posts-list .cell {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .posts-list .cell {
    padding: 0 5px;
    margin-bottom: 20px;
    width: 100%;
  }
}
.archive-post .posts-list .cell .cover {
  border-radius: 8px;
}
.archive-post .posts-list .cell .cover .scale.res {
  padding-top: 87%;
  aspect-ratio: none;
}
.archive-post .posts-list .cell .cover img {
  border-radius: 8px;
}
.archive-post .posts-list .cell .content {
  padding-top: 0.75rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post .posts-list .cell .content {
    padding-top: 1.25rem;
  }
}
.archive-post .posts-list .cell .content .title {
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
}
.archive-post .posts-list .cell .content .title a {
  color: #ffffff;
}
.archive-post .posts-list .cell .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .posts-list .cell .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .posts-list .cell .content .title a:hover {
  color: #FF7709;
}
.archive-post .posts-list .cell .content .meta {
  display: flex;
  gap: 16px;
  color: #AEAEAE;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: normal;
  font-size: 12px;
}
.archive-post .posts-list .cell .content .meta a {
  color: #FF7709;
}
.archive-post .posts-list .cell .content .meta .posts-day {
  position: relative;
}
.archive-post .posts-list .cell .content .meta .posts-day::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
  height: 80%;
  width: 1px;
  background: #AEAEAE;
}
.archive-post .posts-list .cell .content .excerpt {
  margin: 0;
  font-size: 14px;
}
.archive-post .posts-list .cell .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .posts-list .cell .content .excerpt {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .posts-list .cell .content .btn-main {
  display: none;
}
.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 aside.sidebar {
  flex: 0 0 380px;
  max-width: 380px;
}
.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-posts {
  background-color: #042825;
  border-radius: 8px;
  padding: 8px;
}
.single-post aside.sidebar .sidebar-posts .sidebar-title {
  color: #ffffff;
  line-height: normal;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-align: center;
  padding: 8px 5px;
}
.single-post aside.sidebar .sidebar-posts .sidebar-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-post aside.sidebar .sidebar-posts .sidebar-title {
    font-size: 1.5rem;
  }
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover {
  flex: 0 0 35%;
  max-width: 35%;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover .scale.res {
  padding-bottom: 78%;
  border-radius: 4px;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover .scale.res img {
  border-radius: 4px;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content {
  flex: 0 0 65%;
  max-width: 65%;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content {
  padding-left: 0.5rem;
}
@media only screen and (min-width: 64rem) {
  .single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content {
    padding-left: 0.625rem;
  }
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content .title {
  font-size: 14px;
  line-height: 1.5;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content .title a {
  color: #ffffff;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content .meta {
  font-size: 12px;
  color: #B5B5B5;
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: normal;
  margin-bottom: 5px;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content .meta .terms a {
  color: #FF7709;
}
.single-post aside.sidebar .sidebar-posts .sidebar-content .item .cover-content .meta .terms a:hover {
  color: #46FFF3;
}
.single-post aside.sidebar .sidebar-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}
.single-post .content {
  width: calc(100% - 380px);
}
.single-post .content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .content {
    padding-left: 1.25rem;
  }
}
.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 .box {
  background-color: #042825;
  padding: 20px;
  border-radius: 16px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .box {
    padding: 20px 10px;
  }
}
.single-post .content .box .heading-title {
  color: #ffffff;
}
.single-post .content .box .meta {
  display: flex;
  align-items: center;
  padding: 5px 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .box .meta {
    padding: 5px 0 15px;
    flex-wrap: wrap;
    gap: 12px;
  }
}
.single-post .content .box .meta > div {
  color: #B5B5B5;
  display: flex;
  align-items: center;
  line-height: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding-right: 10px;
}
.single-post .content .box .meta > div {
  margin-right: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .content .box .meta > div {
    margin-right: 0.625rem;
  }
}
.single-post .content .box .meta > div:last-child {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .box .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #FF7709;
}
.single-post .content .box .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content .box .meta ._author {
  text-transform: capitalize;
}
.single-post .content .box .meta ._date {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .box .meta .sharing-toolbox {
  margin-left: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .box .meta .sharing-toolbox {
    margin-left: 0;
  }
}
.single-post .content .box .meta .sharing-toolbox .share-actions {
  flex-direction: row;
}
.single-post .content .box .meta .sharing-toolbox .share-actions li {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.single-post .content .box .meta .sharing-toolbox .share-actions .share-icon::before {
  color: #FF7709;
}
.single-post .content .heading-title {
  line-height: normal;
  color: #ffffff;
  margin-bottom: 10px;
}
.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;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .heading-title {
    line-height: 1.4;
  }
}
.single-post .content .meta {
  display: flex;
  align-items: center;
  padding: 5px 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta {
    padding: 5px 0 15px;
  }
}
.single-post .content .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 > div:last-child {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #101210;
}
.single-post .content .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content .meta ._author {
  text-transform: capitalize;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta ._date {
    border-right: unset;
    padding-right: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .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: #FF7709;
  color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content article {
    text-align: justify;
  }
}
.single-post .section-related-post {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post {
    padding-top: 5rem;
  }
}
.single-post .section-related-post {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post {
    padding-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .container {
    padding-left: 0;
    padding-right: 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 img {
  border-radius: 8px;
}
.single-post .section-related-post .swiper-container .swiper-slide .content {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding-top: 10px;
  padding-left: 0;
  margin-bottom: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title {
  line-height: 1.4;
  font-size: 16px;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a {
  color: #ffffff;
  font-weight: 500;
}
.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: #46FFF3;
  text-decoration: none;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta {
  display: flex;
  gap: 16px;
  color: #AEAEAE;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: normal;
  font-size: 12px;
  padding: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta a {
  color: #FF7709;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta .posts-day {
  position: relative;
  border-right: none;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta .posts-day::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
  height: 80%;
  width: 1px;
  background: #AEAEAE;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
  margin: 0;
  font-size: 14px;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-main {
  display: none;
}
.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: -60px;
  }
}

.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;
  }
}

.page-template-page-about-us .section-gallery .swiper-container {
  margin: 0 auto;
  height: 520px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container {
    height: auto;
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-wrapper {
  align-items: center;
  height: 100%;
}
.page-template-page-about-us .section-gallery .swiper-container .w-swiper {
  padding: 30px 0 80px;
  height: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .w-swiper {
    padding: 0px 0 10px;
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide {
  padding: 0 10px;
  width: 550px;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide {
    width: 100%;
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 3;
  transform: scale(1.4);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active {
    width: 100%;
    transform: scale(1);
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active img {
  transform: none !important;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active .item {
  width: 100%;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active .item .relative::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active .item .relative::before {
    padding-bottom: 75%;
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active .item .relative img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-active .item .content {
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-prev {
  opacity: 0.4;
  height: 330px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-prev {
    width: 100%;
    height: auto;
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-prev img {
  width: 100%;
  height: 340px;
  transform: rotate(-15deg) translate(190px, 115px);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-prev img {
    height: auto;
    transform: rotate(0) translate(0, 0);
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-next {
  height: 330px;
  opacity: 0.4;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-next {
    width: 100%;
    height: auto;
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-next img {
  height: 340px;
  transform: rotate(15deg) translate(-190px, 115px);
  flex-shrink: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide.swiper-slide-next img {
    height: auto;
    transform: rotate(0) translate(0, 0);
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .swiper-slide-shadow {
  display: none;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item img {
  width: 100%;
  object-fit: cover;
  border: 1px solid #72B298;
  border-radius: 12px;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content {
  color: #ffffff;
  background-color: #000000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  border-radius: 8px;
  background: rgba(3, 28, 26, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: calc(100% - 24px);
  bottom: 12px;
  left: 12px;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .title {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .title {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .title a:hover {
  color: #FF7709;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .group-price {
  display: flex;
  gap: 10px;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .group-price .price-default {
  overflow: hidden;
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-slide .item .content .group-price .price-sales {
  overflow: hidden;
  font-size: 20px;
  font-weight: 700;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-button {
  top: inherit;
  bottom: 0px;
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-button.swiper-button-prev {
  left: calc(50% - 50px);
}
.page-template-page-about-us .section-gallery .swiper-container .swiper-button.swiper-button-next {
  right: calc(50% - 50px);
}
.page-template-page-about-us .section-about-us .inner {
  max-width: 83.34%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid;
  border-image-source: linear-gradient(91.36deg, #74FFC8 0%, rgba(4, 4, 4, 0) 29.54%, rgba(4, 4, 4, 0) 66.83%, #74FFC8 100%);
  border-image-slice: 1;
  background: linear-gradient(90deg, #0A2F2C 0%, rgba(41, 114, 108, 0) 48.08%, #0A2F2C 100%);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-about-us .inner {
    max-width: 100%;
  }
}
.page-template-page-about-us .section-journey {
  padding-top: 0;
}
.page-template-page-about-us .section-journey img {
  width: 100%;
}
.page-template-page-about-us .section-banner-content {
  background-color: #042522;
  padding-bottom: 30px;
}
.page-template-page-about-us .section-banner-content img {
  width: 100%;
}
.page-template-page-about-us .section-banner-content .content {
  text-align: justify;
  padding-top: 30px;
  columns: 2;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-banner-content .content {
    columns: 1;
  }
}
.page-template-page-about-us .section-core-value img {
  width: 100%;
}
.page-template-page-about-us .section-about-follow .gallery-wrapper {
  margin: 0 -8px;
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item {
  padding: 8px;
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item a {
  height: 100%;
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item:first-child {
  width: 33.35%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-about-follow .gallery-wrapper .item:first-child {
    width: 40%;
  }
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(2) {
  width: 41.65%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(2) {
    width: 60%;
  }
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(3) {
  width: 25%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(3) {
    width: 60%;
  }
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(4) {
  width: 41.65%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(4) {
    width: 40%;
  }
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(5) {
  width: 25%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(5) {
    width: 40%;
  }
}
.page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(6) {
  width: 33.33%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-about-follow .gallery-wrapper .item:nth-child(6) {
    width: 60%;
  }
}

.page-template-page-contact .content-contact-main {
  margin-bottom: 40px;
}
.page-template-page-contact .content-contact-main {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .content-contact-main {
    padding-top: 3.125rem;
  }
}
.page-template-page-contact .content-contact-main .content {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .content-contact-main .content {
    max-width: 100%;
  }
}
.page-template-page-contact .content-contact-main .content a {
  color: #46FFF3;
  text-decoration: underline;
}
.page-template-page-contact .content-contact-main .content ul, .page-template-page-contact .content-contact-main .content ol {
  padding-left: 20px;
}
.page-template-page-contact .content-contact-main .content ul li, .page-template-page-contact .content-contact-main .content ol li {
  margin-bottom: 5px;
}
.page-template-page-contact .content-contact-main .content ul li:last-child, .page-template-page-contact .content-contact-main .content ol li:last-child {
  margin-bottom: 0;
}
.page-template-page-contact .form-contact-main {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .form-contact-main {
    padding-top: 2.5rem;
  }
}
.page-template-page-contact .form-contact-main {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .form-contact-main {
    padding-bottom: 2.5rem;
  }
}
.page-template-page-contact .form-contact-main .bg-section {
  mix-blend-mode: color-dodge;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-contact .form-contact-main .wrapper {
  z-index: 2;
  margin-top: 30px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .form-contact-main .wrapper .cell.col-inf {
    padding-right: 3.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .form-contact-main .wrapper .cell.col-inf {
    margin-bottom: 30px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .heading-title {
  color: #46FFF3;
  line-height: normal;
  text-transform: none;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .heading-title {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .form-contact-main .wrapper .cell.col-inf .heading-title {
    margin-bottom: 1.5rem;
  }
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .heading-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-page-contact .form-contact-main .wrapper .cell.col-inf .heading-title {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .form-contact-main .wrapper .cell.col-inf .heading-title {
    font-size: 1.5rem;
  }
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists .item {
  margin-bottom: 15px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists .item i {
  color: #D77525;
  margin-right: 6px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists .item a {
  color: #ffffff;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists .item span {
  font-weight: 600;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists .item .address {
  margin-bottom: 10px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists .item .address span {
  font-weight: 400;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .lists .item .address:last-child {
  margin-bottom: 0;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .title {
  margin-bottom: 10px;
  font-weight: 700;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .social-menu li {
  margin-right: 8px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .social-menu li:last-child {
  margin-right: 0;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .social-menu li a {
  padding: 0;
  border-radius: 50%;
  background-color: #FF7709;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .social-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .social-menu li a {
  width: 2rem;
  height: 2rem;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .social-menu li a i {
  color: #ffffff;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-inf .col-social .social-menu li a.zalo {
  display: none;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form {
  flex: 0 0 55%;
  max-width: 55%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .form-contact-main .wrapper .cell.col-form {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form .inner {
  border-radius: 16px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.2);
  padding: 48px 32px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .form-contact-main .wrapper .cell.col-form .inner {
    padding: 25px 15px;
  }
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form .group-title {
  margin-bottom: 30px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form {
  position: relative;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form 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 .form-contact-main .wrapper .cell.col-form form .form-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form input, .page-template-page-contact .form-contact-main .wrapper .cell.col-form form textarea, .page-template-page-contact .form-contact-main .wrapper .cell.col-form form select {
  padding: 0 12px;
  width: 100%;
  border: none;
  height: 48px;
  color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  background: #0A2F2C;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form input::-webkit-input-placeholder, .page-template-page-contact .form-contact-main .wrapper .cell.col-form form textarea::-webkit-input-placeholder, .page-template-page-contact .form-contact-main .wrapper .cell.col-form form select::-webkit-input-placeholder {
  color: #A4A4A4;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form input::placeholder, .page-template-page-contact .form-contact-main .wrapper .cell.col-form form textarea::placeholder, .page-template-page-contact .form-contact-main .wrapper .cell.col-form form select::placeholder {
  color: #A4A4A4;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form textarea {
  padding: 20px 12px;
  height: 100px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form .form-submit {
  position: relative;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto 0;
  height: 40px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 30px;
  width: fit-content;
  border-radius: 32px;
  background: linear-gradient(92deg, #D02028 21.82%, #D77525 106.44%);
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form .form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form .form-submit img {
  margin-right: 10px;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form .form-submit input {
  width: -webkit-fit-content;
  width: fit-content;
  margin-bottom: 0;
  background-color: transparent;
  height: auto;
  padding: 0;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form .wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 8px);
  margin: 0;
}
.page-template-page-contact .form-contact-main .wrapper .cell.col-form form .wpcf7-response-output {
  margin: 15px 0 5px;
}
.page-template-page-contact .contact-map {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .contact-map {
    margin-top: 3.125rem;
  }
}
.page-template-page-contact .contact-map {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .contact-map {
    padding-bottom: 3.125rem;
  }
}
.page-template-page-contact .contact-map .iframe-map {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .contact-map .iframe-map {
    max-width: 100%;
  }
}
.page-template-page-contact .contact-map .iframe-map iframe {
  border-radius: 32px;
  width: 100%;
  height: 385px;
  border: 2px solid #149187;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .contact-map .iframe-map iframe {
    height: 250px;
  }
}
.page-template-page-contact .contact-map .link-map {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .contact-map .link-map {
    top: 50%;
  }
}
.page-template-page-contact .contact-map .link-map a {
  height: 70px;
  background-color: #ffffff;
  color: #FF7709;
  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 .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 .contact-map .link-map a {
    width: 220px;
  }
}
.page-template-page-contact .contact-map .link-map a i {
  color: #FF1A05;
}
.page-template-page-contact .contact-map .link-map a i {
  font-size: 1.5625rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .contact-map .link-map a i {
    font-size: 1.875rem;
  }
}
.page-template-page-contact .contact-map .link-map a span {
  text-decoration: underline;
  font-weight: 700;
}
.page-template-page-contact .contact-map .link-map a span {
  font-size: 1.375rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .contact-map .link-map a span {
    font-size: 1.625rem;
  }
}

.page-policy .wrapper {
  padding-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-policy .wrapper {
    padding-bottom: 1.875rem;
  }
}
.page-policy .wrapper .cell.cell-toc {
  flex: 0 0 25%;
  max-width: 25%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-policy .wrapper .cell.cell-toc {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-policy .wrapper .cell.cell-toc .title {
  font-weight: 700;
}
.page-policy .wrapper .cell.cell-toc .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-policy .wrapper .cell.cell-toc .title {
    font-size: 1.5rem;
  }
}
.page-policy .wrapper .cell.cell-toc .lists-toc {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.page-policy .wrapper .cell.cell-toc .lists-toc .item {
  height: 40px;
  cursor: pointer;
  margin-bottom: 10px;
  border-radius: 32px;
  padding: 0px 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-policy .wrapper .cell.cell-toc .lists-toc .item.active {
  background: rgba(255, 255, 255, 0.2117647059);
}
.page-policy .wrapper .cell.cell-content {
  flex: 0 0 75%;
  max-width: 75%;
}
.page-policy .wrapper .cell.cell-content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-policy .wrapper .cell.cell-content {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-policy .wrapper .cell.cell-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-policy .wrapper .cell.cell-content .content-policy .content-tab {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-policy .wrapper .cell.cell-content .content-policy .content-tab.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.page-policy .wrapper .cell.cell-content .content-policy .content-tab .head .group-title {
  margin-bottom: 10px;
}
.page-policy .wrapper .cell.cell-content .content-policy .content-tab .head .group-title .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-policy .wrapper .cell.cell-content .content-policy .content-tab .head .group-title .heading-title {
    font-size: 2rem;
  }
}
.page-policy .wrapper .cell.cell-content .content-policy .content-tab .head .date {
  margin-bottom: 10px;
  color: #D3D3D3;
}
.page-policy .wrapper .cell.cell-content .content-policy .content-tab .inner {
  color: #E5E5E5;
}
.page-policy .wrapper .cell.cell-content .btn-back-home {
  background: #021E1C;
  margin: 30px auto 0;
  height: 38px;
  gap: 6px;
  color: #46FFF3;
  font-weight: 600;
  border-radius: 30px;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0 30px;
}
.page-policy .wrapper .cell.cell-content .btn-back-home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-policy .wrapper .cell.cell-content .btn-back-home:hover {
  background: #46FFF3;
  color: #021E1C;
}
.page-policy .wrapper .cell.cell-content .btn-back-home span {
  transform: translateY(-1px);
}

.post-type-archive-recruitment .heading-title {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-recruitment .heading-title {
    margin-bottom: 3.125rem;
  }
}
.post-type-archive-recruitment .heading-title {
  font-size: 1.75rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-recruitment .heading-title {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-recruitment .heading-title {
    font-size: 2.8125rem;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment {
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3490196078);
  border-radius: 25px;
  border: 1px solid #65ABFF;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: #FF7709;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div {
  text-align: center;
  padding: 20px 12px;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.3;
  border-right: 1px solid #65ABFF;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div {
  font-size: 0.9375rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div {
    padding: 20px 5px;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:first-child {
  width: 10%;
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:first-child {
    display: none;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(2) {
  width: 23%;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(2) {
    width: 62%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(2) {
    width: 70%;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(3) {
  width: 15%;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(3) {
    width: 28%;
    border-right: none;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(3) {
    width: 30%;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(4) {
  width: 12%;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(4) {
    display: none;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(5) {
  width: 22%;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(5) {
    display: none;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(6) {
  width: 18%;
  border-right: none;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .head .head-item div:nth-child(6) {
    display: none;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item {
  text-align: center;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item .content-mb {
  display: none;
  padding-left: 20px;
  margin: 10px 0 0;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item .content-mb {
    display: block;
  }
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item .content-mb .item {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
  }
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item .content-mb .item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item .content-mb .item {
    font-size: 14px;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div {
  color: #1D1D1D;
  padding: 20px 12px;
  border-right: 1px solid #65ABFF;
  border-top: 1px solid #65ABFF;
  flex-direction: column;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div {
    font-size: 1.125rem;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.number {
  width: 10%;
  font-weight: 800;
  color: #094791;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.number {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.number {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.number {
    display: none;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.title {
  width: 23%;
  font-weight: 700;
  text-align: left;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.title {
    align-items: flex-start;
    width: 62%;
  }
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.title a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.title {
    width: 70%;
  }
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.title a {
    font-size: 16px;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline {
  width: 15%;
  font-weight: 700;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline {
    width: 28%;
    border-right: none;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline {
    width: 30%;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .apply-now, .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .expired {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: fit-content;
  height: 48px;
  background-color: #FF7709;
  color: #ffffff;
  padding: 0 30px;
  border-radius: 100px;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .apply-now, .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .expired {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .apply-now, .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .expired {
    padding: 0 20px;
    font-size: 15px;
    height: 42px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .apply-now, .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .expired {
    padding: 0 12px;
    font-size: 13px;
    height: 40px;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .apply-now:hover, .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .expired:hover {
  background-color: #46FFF3;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.deadline .expired {
  background-color: #F5F5F5;
  color: #1D1D1D;
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.quantity {
  width: 12%;
  font-weight: 600;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.quantity {
    display: none;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.address {
  width: 22%;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.address {
    display: none;
  }
}
.post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.date {
  width: 18%;
  border-right: none;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .lists-recruitment .table-recruitment .body .body-item div.date {
    display: none;
  }
}
.post-type-archive-recruitment .recruitment-policy {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-recruitment .recruitment-policy {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 96rem) {
  .post-type-archive-recruitment .recruitment-policy .container {
    max-width: 1720px;
  }
}
@media only screen and (min-width: 82.5rem) {
  .post-type-archive-recruitment .recruitment-policy .container {
    max-width: 1520px;
    padding: 0;
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper {
  margin-bottom: 10px;
}
.post-type-archive-recruitment .recruitment-policy .wrapper:last-child {
  margin-bottom: 0;
}
.post-type-archive-recruitment .recruitment-policy .wrapper:nth-child(odd) {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 96rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper:nth-child(odd) .cell.cell-content {
    padding-left: 200px;
    padding-right: 80px;
  }
}
@media only screen and (min-width: 82.5rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper:nth-child(odd) .cell.cell-content {
    padding-left: 100px;
    padding-right: 80px;
    text-align: right;
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper:hover .cell.cell-content {
  transition: 0.3s;
  background-color: #FF7709;
}
.post-type-archive-recruitment .recruitment-policy .wrapper:hover .cell.cell-content .title {
  color: #ffffff;
}
.post-type-archive-recruitment .recruitment-policy .wrapper:hover .cell.cell-content .title a {
  color: #ffffff;
}
.post-type-archive-recruitment .recruitment-policy .wrapper:hover .cell.cell-content .title .ic {
  display: none;
}
.post-type-archive-recruitment .recruitment-policy .wrapper:hover .cell.cell-content .title .ic.ic-hover {
  display: inline-block;
}
.post-type-archive-recruitment .recruitment-policy .wrapper:hover .cell.cell-content .desc {
  color: #ffffff;
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-img {
  flex: 0 0 55%;
  max-width: 55%;
  width: 55%;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-img {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-img a {
  height: 100%;
  overflow: hidden;
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-img a::before {
  content: "";
  display: block;
  padding-bottom: 45%;
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-img a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s;
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-img a:hover img {
  transform: scale(1.05);
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 45%;
  max-width: 45%;
  width: 45%;
  padding: 80px;
  transition: 0.3s;
}
@media only screen and (min-width: 96rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content {
    padding-right: 200px;
  }
}
@media only screen and (min-width: 82.5rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content {
    padding-right: 100px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 30px;
    background-color: #FF7709;
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title {
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.3;
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title {
    font-size: 2.1875rem;
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title a {
  color: #FF7709;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title a {
    color: #ffffff;
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title .ic {
  padding-left: 10px;
  width: 26px;
  object-fit: contain;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title .ic {
    display: none;
    width: 22px;
    transform: translateY(-2px);
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title .ic.ic-hover {
  display: none;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .title .ic.ic-hover {
    display: inline-block;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .desc {
    color: #ffffff;
  }
}
.post-type-archive-recruitment .recruitment-policy .wrapper .cell.cell-content .img-bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 380px;
  z-index: -1;
  object-fit: contain;
}

.single-recruitment #breadcrumbs li:nth-last-child(2)::after {
  content: none;
}
.single-recruitment #breadcrumbs li:nth-last-child(2) a {
  color: #4E4E4E;
}
.single-recruitment #breadcrumbs li.current {
  display: none;
}
.single-recruitment .heading-title {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .heading-title {
    margin-bottom: 3.125rem;
  }
}
.single-recruitment .heading-title {
  font-size: 1.75rem;
}
@media only screen and (min-width: 48rem) {
  .single-recruitment .heading-title {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .heading-title {
    font-size: 2.8125rem;
  }
}
.single-recruitment .content {
  flex: 0 0 75%;
  max-width: 75%;
}
.single-recruitment .content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .content {
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.single-recruitment .content .meta {
  border-top: 1px solid #C0C0C0;
  border-bottom: 1px solid #C0C0C0;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
}
.single-recruitment .content .meta {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .content .meta {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content .meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.single-recruitment .content .meta .day-deadline {
  font-weight: 700;
  color: #363636;
}
.single-recruitment .content .meta .day-deadline {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .content .meta .day-deadline {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content .meta .day-deadline {
    margin-bottom: 5px;
  }
}
.single-recruitment .content .meta .share-post {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content .meta .share-post .sharing-toolbox {
    display: flex;
    margin-left: 10px;
  }
}
.single-recruitment .content .meta .share-post .sharing-toolbox .share-actions {
  flex-direction: row;
}
.single-recruitment .content .meta .share-post .sharing-toolbox .share-actions .share-action.share-action-print, .single-recruitment .content .meta .share-post .sharing-toolbox .share-actions .share-action.share-action-send-email {
  display: none;
}
.single-recruitment .content .center .row-item {
  padding: 25px 0;
  border-bottom: 1px solid #C0C0C0;
}
.single-recruitment .content .center .row-item:last-child {
  border-bottom: none;
}
.single-recruitment .content .center .row-item .title {
  color: #094791;
}
.single-recruitment .content .center .row-item .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-recruitment .content .center .row-item .title {
    font-size: 1.5625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .content .center .row-item .title {
    font-size: 1.875rem;
  }
}
.single-recruitment .content .center .row-item .desc {
  font-weight: 500;
  color: #303030;
}
.single-recruitment .content .center .row-item .desc ul {
  padding-left: 20px;
}
.single-recruitment .content .center .row-item .desc ul li {
  margin-bottom: 8px;
}
.single-recruitment .content .center .row-item .desc ul li:last-child {
  margin-bottom: 0;
}
.single-recruitment .content .center .row-item.row-form .form-details {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 37px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1215686275);
}
.single-recruitment .content .center .row-item.row-form .form-details {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .content .center .row-item.row-form .form-details {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content .center .row-item.row-form .form-details {
    padding: 30px 15px;
  }
}
.single-recruitment .content .center .row-item.row-form .form-details .heading-title {
  font-weight: 800;
  margin-bottom: 20px;
  color: #094791;
}
.single-recruitment .content .center .row-item.row-form .form-details .heading-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-recruitment .content .center .row-item.row-form .form-details .heading-title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-recruitment .content .center .row-item.row-form .form-details .heading-title {
    font-size: 2.5rem;
  }
}
.single-recruitment .content .center .row-item.row-form .form-details ul {
  padding-left: 20px;
  margin-bottom: 40px;
}
.single-recruitment .content .center .row-item.row-form .form-details .form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content .center .row-item.row-form .form-details .form-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit {
  position: relative;
  justify-items: stretch;
  align-items: start;
  grid-template-columns: 1.5fr 0.5fr;
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit {
    grid-template-columns: 1fr;
  }
}
.single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit .form-file .text {
  display: block;
  padding-bottom: 10px;
}
.single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit .form-file input {
  height: auto;
}
.single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit input {
  border-bottom: none;
  margin-bottom: 0;
}
.single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit input[type=submit] {
  border-radius: 20px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 600;
  height: 38px;
  width: 70%;
  margin-left: auto;
  background-color: #064DA1;
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit input[type=submit] {
    margin-left: 0;
    margin-top: 15px;
  }
}
.single-recruitment .content .center .row-item.row-form .form-details .form-group.form-submit .wpcf7-spinner {
  position: absolute;
  bottom: 8px;
  right: 50px;
}
.single-recruitment .content .center .row-item.row-form .form-details input, .single-recruitment .content .center .row-item.row-form .form-details textarea {
  color: #363636;
  font-weight: 600;
  width: 100%;
  height: 40px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border: none;
  border-bottom: 1px solid #B9B9B9;
}
.single-recruitment .content .center .row-item.row-form .form-details textarea {
  height: 100px;
}
.single-recruitment aside.sidebar {
  flex: 0 0 25%;
  max-width: 25%;
}
@media only screen and (max-width: 47.99875rem) {
  .single-recruitment aside.sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.single-recruitment aside.sidebar .sidebar-all {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}
.single-recruitment aside.sidebar .sidebar-wrapper {
  background-color: #FF7709;
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
.single-recruitment aside.sidebar .sidebar-wrapper a {
  color: #ffffff;
}
.single-recruitment aside.sidebar .sidebar-wrapper .sidebar-item {
  border-bottom: 1px solid #1D79E5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.single-recruitment aside.sidebar .sidebar-wrapper .sidebar-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.single-recruitment aside.sidebar .sidebar-wrapper .sidebar-item .title {
  font-weight: 800;
  color: #ffffff;
}
.single-recruitment aside.sidebar .sidebar-wrapper .sidebar-item .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment aside.sidebar .sidebar-wrapper .sidebar-item .title {
    font-size: 1.5625rem;
  }
}
.single-recruitment aside.sidebar .sidebar-related {
  border-radius: 15px;
  border: 1px solid #C7C7C7;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
}
.single-recruitment aside.sidebar .sidebar-related .title {
  padding: 20px;
  margin-bottom: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  color: #ffffff;
  background-color: #FF7709;
  text-align: center;
  font-weight: 800;
}
.single-recruitment aside.sidebar .sidebar-related .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment aside.sidebar .sidebar-related .title {
    font-size: 1.5625rem;
  }
}
.single-recruitment aside.sidebar .sidebar-related .lists {
  list-style-type: none;
  padding: 20px;
  margin: 0;
  background-color: #ffffff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.single-recruitment aside.sidebar .sidebar-related .lists .item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #C7C7C7;
}
.single-recruitment aside.sidebar .sidebar-related .lists .item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.single-recruitment aside.sidebar .sidebar-related .lists .item a {
  color: #434343;
  font-weight: 800;
}
.single-recruitment aside.sidebar .sidebar-related .lists .item a {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .single-recruitment aside.sidebar .sidebar-related .lists .item a {
    font-size: 1.125rem;
  }
}
.single-recruitment aside.sidebar .sidebar-related .lists .item .deadline {
  font-size: 14px;
}