@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: #00ccff;
  --Primary-02: #e60000;
  --Primary-03: #e60000;
  --Primary-04: #F1F7FF;
  --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: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-optical-sizing: auto;
}
body {
  font-size: 0.875rem;
  line-height: 1.41575rem;
}
@media screen and (min-width: 40rem) {
  body {
    font-size: calc(0.875rem + 0.0011160714 * (100vw - 40rem));
    line-height: calc(1.41575rem + 0.0018058036 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  body {
    font-size: 0.9375rem;
    line-height: 1.516875rem;
  }
}

: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: -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.0178571429 * (100vw - 40rem));
    line-height: calc(1.95rem + 0.0232142857 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h1, .h1) {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
}

:is(h2, .h2) {
  font-size: 1.375rem;
  line-height: 1.7875rem;
}
@media screen and (min-width: 40rem) {
  :is(h2, .h2) {
    font-size: calc(1.375rem + 0.015625 * (100vw - 40rem));
    line-height: calc(1.7875rem + 0.0203125 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h2, .h2) {
    font-size: 2.25rem;
    line-height: 2.925rem;
  }
}

:is(h3, .h3) {
  font-size: 1.25rem;
  line-height: 1.625rem;
}
@media screen and (min-width: 40rem) {
  :is(h3, .h3) {
    font-size: calc(1.25rem + 0.0111607143 * (100vw - 40rem));
    line-height: calc(1.625rem + 0.0145089286 * (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.0089285714 * (100vw - 40rem));
    line-height: calc(1.4625rem + 0.0116071429 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h4, .h4) {
    font-size: 1.625rem;
    line-height: 2.1125rem;
  }
}

:is(h5, .h5) {
  font-size: 1rem;
  line-height: 1.3rem;
}
@media screen and (min-width: 40rem) {
  :is(h5, .h5) {
    font-size: calc(1rem + 0.0044642857 * (100vw - 40rem));
    line-height: calc(1.3rem + 0.0058035714 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h5, .h5) {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}

:is(h6, .h6) {
  font-size: 0.875rem;
  line-height: 1.1375rem;
}
@media screen and (min-width: 40rem) {
  :is(h6, .h6) {
    font-size: calc(0.875rem + 0.0044642857 * (100vw - 40rem));
    line-height: calc(1.1375rem + 0.0058035714 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  :is(h6, .h6) {
    font-size: 1.125rem;
    line-height: 1.4625rem;
  }
}

.body-font {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-optical-sizing: auto;
}

.heading-font {
  font-family: -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: #000000;
}
a:hover {
  color: black;
  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: 80rem) {
  .xl\:hidden {
    display: none;
  }
}

@media only screen and (min-width: 80rem) {
  .\!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: 768px;
}
: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: 80rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    max-width: 1280px;
  }
}
@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-1, .ar\[1-1\]) {
    aspect-ratio: 1 / 1;
  }
}
@supports not (aspect-ratio: 1) {
  :is(.ar-1-1, .ar\[1-1\]) {
    height: 0;
    padding-bottom: 100%;
  }
}

@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%;
  }
}

@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%;
  }
}

:is(.mt-0, .mt\[0px\]) {
  margin-top: 0;
}

:is(.\!mt-0, .\!mt\[0px\]) {
  margin-top: 0 !important;
}

:is(.mb-0, .mb\[0px\]) {
  margin-bottom: 0;
}

:is(.\!mb-0, .\!mb\[0px\]) {
  margin-bottom: 0 !important;
}

:is(.pt-0, .pt\[0px\]) {
  padding-top: 0;
}

:is(.\!pt-0, .\!pt\[0px\]) {
  padding-top: 0 !important;
}

:is(.pb-0, .pb\[0px\]) {
  padding-bottom: 0;
}

:is(.\!pb-0, .\!pb\[0px\]) {
  padding-bottom: 0 !important;
}

:is(.mt-10, .mt\[10px\]) {
  margin-top: 0.625rem;
}

:is(.\!mt-10, .\!mt\[10px\]) {
  margin-top: 0.625rem !important;
}

:is(.mb-10, .mb\[10px\]) {
  margin-bottom: 0.625rem;
}

:is(.\!mb-10, .\!mb\[10px\]) {
  margin-bottom: 0.625rem !important;
}

:is(.pt-10, .pt\[10px\]) {
  padding-top: 0.625rem;
}

:is(.\!pt-10, .\!pt\[10px\]) {
  padding-top: 0.625rem !important;
}

:is(.pb-10, .pb\[10px\]) {
  padding-bottom: 0.625rem;
}

:is(.\!pb-10, .\!pb\[10px\]) {
  padding-bottom: 0.625rem !important;
}

:is(.mt-20, .mt\[20px\]) {
  margin-top: 1.25rem;
}

:is(.\!mt-20, .\!mt\[20px\]) {
  margin-top: 1.25rem !important;
}

:is(.mb-20, .mb\[20px\]) {
  margin-bottom: 1.25rem;
}

:is(.\!mb-20, .\!mb\[20px\]) {
  margin-bottom: 1.25rem !important;
}

:is(.pt-20, .pt\[20px\]) {
  padding-top: 1.25rem;
}

:is(.\!pt-20, .\!pt\[20px\]) {
  padding-top: 1.25rem !important;
}

:is(.pb-20, .pb\[20px\]) {
  padding-bottom: 1.25rem;
}

:is(.\!pb-20, .\!pb\[20px\]) {
  padding-bottom: 1.25rem !important;
}

:is(.mt-30, .mt\[30px\]) {
  margin-top: 1.875rem;
}

:is(.\!mt-30, .\!mt\[30px\]) {
  margin-top: 1.875rem !important;
}

:is(.mb-30, .mb\[30px\]) {
  margin-bottom: 1.875rem;
}

:is(.\!mb-30, .\!mb\[30px\]) {
  margin-bottom: 1.875rem !important;
}

:is(.pt-30, .pt\[30px\]) {
  padding-top: 1.875rem;
}

:is(.\!pt-30, .\!pt\[30px\]) {
  padding-top: 1.875rem !important;
}

:is(.pb-30, .pb\[30px\]) {
  padding-bottom: 1.875rem;
}

:is(.\!pb-30, .\!pb\[30px\]) {
  padding-bottom: 1.875rem !important;
}

:is(.mt-40, .mt\[40px\]) {
  margin-top: 2.5rem;
}

:is(.\!mt-40, .\!mt\[40px\]) {
  margin-top: 2.5rem !important;
}

:is(.mb-40, .mb\[40px\]) {
  margin-bottom: 2.5rem;
}

:is(.\!mb-40, .\!mb\[40px\]) {
  margin-bottom: 2.5rem !important;
}

:is(.pt-40, .pt\[40px\]) {
  padding-top: 2.5rem;
}

:is(.\!pt-40, .\!pt\[40px\]) {
  padding-top: 2.5rem !important;
}

:is(.pb-40, .pb\[40px\]) {
  padding-bottom: 2.5rem;
}

:is(.\!pb-40, .\!pb\[40px\]) {
  padding-bottom: 2.5rem !important;
}

:is(.mt-50, .mt\[50px\]) {
  margin-top: 3.125rem;
}

:is(.\!mt-50, .\!mt\[50px\]) {
  margin-top: 3.125rem !important;
}

:is(.mb-50, .mb\[50px\]) {
  margin-bottom: 3.125rem;
}

:is(.\!mb-50, .\!mb\[50px\]) {
  margin-bottom: 3.125rem !important;
}

:is(.pt-50, .pt\[50px\]) {
  padding-top: 3.125rem;
}

:is(.\!pt-50, .\!pt\[50px\]) {
  padding-top: 3.125rem !important;
}

:is(.pb-50, .pb\[50px\]) {
  padding-bottom: 3.125rem;
}

:is(.\!pb-50, .\!pb\[50px\]) {
  padding-bottom: 3.125rem !important;
}

: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: 1.25rem;
  gap: 1.25rem;
}
[id^=gallery-] figure {
  margin-bottom: 0;
}
[id^=gallery-] > .gallery-item {
  flex: 0 0 auto;
  max-width: 100%;
  min-width: 0;
}
[id^=gallery-] > .gallery-item a {
  transition: 0.4s;
  aspect-ratio: 4/3;
}
[id^=gallery-] > .gallery-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[id^=gallery-] > .gallery-item a:hover {
  border: 2px solid var(--Primary-01);
}
[id^=gallery-].gallery-columns-1 > .gallery-item {
  width: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-1 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-2 > .gallery-item {
  width: calc(50% - 0.625rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-2 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-3 > .gallery-item {
  width: calc(33.3333333333% - 0.8333333333rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-3 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-4 > .gallery-item {
  width: calc(25% - 0.9375rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-4 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-5 > .gallery-item {
  width: calc(20% - 1rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-5 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-6 > .gallery-item {
  width: calc(16.6666666667% - 1.0416666667rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-6 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-7 > .gallery-item {
  width: calc(14.2857142857% - 1.0714285714rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-7 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-8 > .gallery-item {
  width: calc(12.5% - 1.09375rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-8 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}
[id^=gallery-].gallery-columns-9 > .gallery-item {
  width: calc(11.1111111111% - 1.1111111111rem);
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-].gallery-columns-9 > .gallery-item {
    width: calc(50% - 0.625rem);
  }
}

.logo-txt {
  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;
}

.site-header {
  position: relative;
  z-index: 99;
}
.site-header .popup-container {
  display: none;
}

#top-header {
  background: #00ccff;
}
@media only screen and (max-width: 47.99875rem) {
  #top-header {
    display: none;
  }
}
#top-header .top-header-inner {
  display: flex;
  justify-content: flex-end;
  padding: 5px 0;
}
#top-header .top-header-inner ul.menu > li {
  position: relative;
}
#top-header .top-header-inner ul.menu > li a {
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: #ffffff;
}
#top-header .top-header-inner ul.menu > li > a {
  padding: 5px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
#top-header .top-header-inner ul.menu > li:last-child > a {
  border-right: unset;
}
#top-header .top-header-inner ul.menu > li > ul.sub-menu {
  border: 1px solid #BBC3C4;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  padding: 10px;
  margin: 0;
  list-style: none;
  z-index: 2;
}
#top-header .top-header-inner ul.menu > li > ul.sub-menu::before, #top-header .top-header-inner ul.menu > li > ul.sub-menu::after {
  border: solid transparent;
  top: -20px;
  content: "";
  height: 0;
  left: 50%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  width: 0;
  z-index: 10;
}
#top-header .top-header-inner ul.menu > li > ul.sub-menu::before {
  border-width: 11px;
  margin-left: -11px;
  z-index: -999;
  border-bottom-color: #ddd;
}
#top-header .top-header-inner ul.menu > li > ul.sub-menu::after {
  border-color: hsla(0, 0%, 87%, 0) hsla(0, 0%, 87%, 0) #fff;
  border-width: 8px;
  margin-left: -8px;
  top: -14px;
}
#top-header .top-header-inner ul.menu > li > ul.sub-menu li a {
  color: #000000;
  padding: 10px;
}
#top-header .top-header-inner ul.menu > li > ul.sub-menu li a:hover {
  background: #00ccff;
  color: #ffffff;
  border-radius: 10px;
}
#top-header .top-header-inner ul.menu > li:hover > ul.sub-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  display: inline-block;
  width: 220px;
}
#top-header .top-header-inner .hb_top_mxh {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
#top-header .top-header-inner .hb_top_mxh {
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
#top-header .top-header-inner .hb_top_mxh ._mxh-button {
  position: relative;
}
#top-header .top-header-inner .hb_top_mxh ._mxh-button ._svg i {
  color: #ffffff;
}
#top-header .top-header-inner .hb_top_mxh ._mxh-button ._svg svg {
  fill: #ffffff;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#top-header .top-header-inner .hb_top_mxh ._mxh-button a.btn {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
#top-header .top-header-inner .hb_top_mxh ._mxh-button:hover {
  opacity: 0.7;
}

#inside-header {
  position: relative;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header {
    background: none;
  }
}
#inside-header.w-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2705882353);
}
#inside-header > .container {
  position: relative;
  z-index: 1;
  flex-flow: row wrap;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header > .container {
    align-items: center;
    grid-gap: 15px;
    gap: 15px;
  }
}
#inside-header .cell-menumb {
  order: 3;
}
@media only screen and (min-width: 80rem) {
  #inside-header .cell-menumb {
    display: none;
  }
}
#inside-header .cell-logo {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-logo {
    margin-top: 0;
    margin-bottom: 0;
    order: 1;
    justify-content: center;
  }
}
#inside-header .cell-logo .custom-logo {
  width: auto;
  max-height: 114px;
  padding: 12px 0;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell-logo .custom-logo {
    max-height: 80px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-logo {
    flex: 0 0 auto;
  }
  #inside-header .cell-logo {
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }
  #inside-header .cell-logo a.logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell-logo {
    grid-gap: 0;
    gap: 0;
  }
  #inside-header .cell-logo a.logo {
    flex: initial;
  }
}
#inside-header .cell-menu .dropdown.menu.desktop-menu > li {
  position: relative;
}
#inside-header .cell-menu .dropdown.menu.desktop-menu > li::before {
  border: solid transparent;
  bottom: -1px;
  content: "";
  height: 0;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  z-index: 10;
  border-color: hsla(0, 0%, 87%, 0) hsla(0, 0%, 87%, 0) #fff;
  border-width: 8px;
  margin-left: -8px;
}
#inside-header .cell-menu .dropdown.menu.desktop-menu > li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #8C8C8C;
  width: 1px;
  height: 15px;
}
#inside-header .cell-menu .dropdown.menu.desktop-menu > li:last-child::after {
  content: none;
}
#inside-header .cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent.is-active::before {
  opacity: 1;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-menu {
    display: none;
  }
}
#inside-header .cell-design {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-end;
  flex: 1 1 0;
  gap: 15px;
  grid-gap: 15px;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-design {
    order: 2;
  }
}
#inside-header .cell-design .pll-switcher-select {
  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;
}
#inside-header .cell-design .cell-top {
  justify-content: flex-end;
  align-items: center;
}
#inside-header .cell-design .cell-top .hb_header_button ._header-button {
  position: relative;
}
#inside-header .cell-design .cell-top .hb_header_button ._header-button ._icon {
  font-size: 19px;
}
#inside-header .cell-design .cell-top .hb_header_button ._header-button a {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
#inside-header .cell-design .cell-top .hb_header_button ._header-button.phone {
  border: 0.7px solid #C8C8C8;
  padding: 12px 15px;
  border-radius: 100px;
  font-weight: 400;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-design .cell-top .hb_header_button ._header-button.phone {
    padding: 12px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-design .cell-top .hb_header_button ._header-button.phone ._title {
    display: none;
  }
}
#inside-header .cell-design .cell-top .hb_header_button ._header-button.phone ._icon i {
  font-weight: 400;
}
#inside-header .cell-design .cell-top .hb_header_button ._header-button.phone b {
  font-weight: 600;
}
#inside-header .cell-design .cell-top .hb_header_button ._header-button.contact {
  padding: 12px 15px;
  border-radius: 100px;
  background: #e60000;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}
#inside-header .cell-design .cell-bottom {
  justify-content: flex-end;
  align-items: center;
  background: #F1F7FF;
  border-radius: 100px;
  height: 50px;
  padding: 0 30px;
}
#inside-header .cell-design .dropdown-search {
  margin-left: 10px;
}
#inside-header .cell-design .dropdown-search .trigger-s {
  font-size: 18px;
}
#inside-header .cell-design .dropdown-search .trigger-s {
  border-radius: 100%;
}
#inside-header .cell-design .dropdown-search .trigger-s {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell-design .dropdown-search .trigger-s span {
  display: none;
}
#inside-header .cell-design .dropdown-search .trigger-s::before {
  color: #000000;
  font-weight: 300;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell-design .hb_header_button {
    display: none;
  }
}
#inside-header .cell-design .mini_widget_shopping_cart {
  margin-right: 0;
  display: flex;
  align-items: center;
  line-height: 1px;
}
#inside-header .cell-design .mini_widget_shopping_cart {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-design .mini_widget_shopping_cart {
    border: unset;
    padding: 0;
  }
}
#inside-header .cell-design .mini_widget_shopping_cart .cart-title {
  clip: unset;
  -webkit-clip-path: unset;
          clip-path: unset;
  width: auto;
  height: auto;
  margin: unset;
  overflow: unset;
  padding: 0;
  position: unset;
  font-weight: 600;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell-design .mini_widget_shopping_cart .cart-title {
    display: none;
  }
}
#inside-header .cell-design .mini_widget_shopping_cart ul.shopping-cart {
  order: -1;
}

#menu-header {
  height: 45px;
  background-color: #f1edf2;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 79.99875rem) {
  #menu-header {
    display: none;
  }
}
#menu-header #main-nav {
  flex: 1 1 0;
  max-width: calc(100% - 240px);
}
@media only screen and (max-width: 95.99875rem) {
  #menu-header #main-nav {
    max-width: calc(100% - 200px);
  }
}

.cell-menu {
  justify-content: space-between;
  align-items: center;
}
.cell-menu nav.nav {
  width: 100%;
}
.cell-menu .dropdown.menu.desktop-menu {
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: flex-end;
}
.cell-menu .dropdown.menu.desktop-menu li a {
  color: #000000;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  font-size: 14px;
}
.cell-menu .dropdown.menu.desktop-menu li:last-child {
  border-right: unset;
}
.cell-menu .dropdown.menu.desktop-menu > li {
  position: relative;
}
.cell-menu .dropdown.menu.desktop-menu > li > a {
  padding: 10px;
  line-height: normal;
}
.cell-menu .dropdown.menu.desktop-menu > li > a:hover {
  color: #00ccff;
}
.cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a {
  padding-right: 30px;
}
@media only screen and (max-width: 95.99875rem) {
  .cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a {
    padding-right: 25px;
  }
}
.cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: 12px;
  border: none;
  aspect-ratio: 1/1;
  line-height: 1;
  margin-top: -7px;
  right: 12px;
}
.cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a::after {
  width: 0.75rem;
  height: 0.75rem;
}
@media only screen and (max-width: 95.99875rem) {
  .cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a::after {
    right: 6px;
  }
}
.cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent.more > a {
  font-size: 0;
}
.cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent.more > a::after {
  display: none;
}
.cell-menu .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent.more > a::before {
  font-size: 18px;
  display: flex;
  align-items: center;
  content: "\f141";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
}
.cell-menu .dropdown.menu.desktop-menu > li.current-menu-item > a, .cell-menu .dropdown.menu.desktop-menu > li.current_page_item > a {
  color: #e60000;
}
.cell-menu .dropdown.menu.desktop-menu > li:not(:last-child) {
  padding-right: 10px;
}
.cell-menu .dropdown.menu.desktop-menu > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  display: none;
}
.cell-menu .dropdown.menu.desktop-menu > li:not(:first-child) {
  padding-left: 10px;
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu {
  border: 1px solid #BBC3C4;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  padding: 10px;
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu > li > a {
  color: #000000;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 400;
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu > li > a:hover {
  background: #00ccff;
  color: #ffffff;
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-active > a {
  background: none;
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item > a::after {
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: 12px;
  border: none;
  aspect-ratio: 1/1;
  line-height: 1;
  margin-top: -9px;
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item > a::after {
  width: 0.75rem;
  height: 0.75rem;
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item.opens-right > a::after {
  content: "\f054";
}
.cell-menu .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item.opens-left > a::after {
  content: "\f053";
}
@media only screen and (min-width: 80rem) {
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu {
    min-width: 650px;
    left: 50%;
    transform: translateX(-50%);
    flex-flow: row wrap;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li.mega-title {
    flex: 0 0 calc(25% - 10px);
    max-width: calc(25% - 10px);
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid rgba(204, 204, 204, 0.8);
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li.mega-title > a {
    font-weight: 700;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li.mega-title a {
    padding: 5px 10px;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li.mega-title a::after {
    display: none;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li.mega-title a:hover {
    background: #00ccff;
    color: #ffffff;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li.mega-title ul.sub-menu {
    display: flex;
    position: unset;
    min-width: auto;
    background-color: transparent;
    border-radius: unset;
    border: unset;
    padding: 0;
    box-shadow: unset;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li.mega-title ul.sub-menu li a {
    font-weight: 400;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu > ul.sub-menu > li:last-child {
    border-right: unset;
    margin-right: 0;
    padding-right: 0;
  }
  .cell-menu .dropdown.menu.desktop-menu > li.mega-menu:hover > ul.sub-menu {
    display: flex;
  }
}

._header-button {
  display: flex;
  align-items: center;
  transition: 0.4s;
  line-height: 1;
  font-weight: 700;
  position: relative;
}
._header-button {
  grid-gap: 0.3125rem;
  gap: 0.3125rem;
}
._header-button ._svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
._header-button ._svg {
  width: 0.875rem;
  height: 0.875rem;
}
._header-button ._svg svg {
  fill: #00ccff;
}
._header-button a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
._header-button:hover {
  transform: translateY(-5px);
}

/** */
.mini_widget_shopping_cart {
  position: relative;
  z-index: 1;
  color: #000000;
}
.mini_widget_shopping_cart .cart-title {
  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;
}
.mini_widget_shopping_cart #shopping-cart .menu-item:not(.widget-menu-item) .header-cart-contents {
  padding: 0;
  position: relative;
}
.mini_widget_shopping_cart #shopping-cart .menu-item:not(.widget-menu-item) .header-cart-contents .amount {
  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;
}
.mini_widget_shopping_cart #shopping-cart .menu-item:not(.widget-menu-item) .header-cart-contents .icon {
  font-size: 20px;
  font-weight: 700;
  color: #00ccff;
  display: block;
  margin-top: 4px;
}
.mini_widget_shopping_cart #shopping-cart .menu-item:not(.widget-menu-item) .header-cart-contents .count {
  position: absolute;
  right: -7px;
  top: -7px;
  font-size: 10px;
  padding-top: 3px;
  font-weight: 400;
  color: #00ccff;
  background-color: #FFBF42;
  height: auto;
  width: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding-left: 4px;
  padding-right: 4px;
}
.mini_widget_shopping_cart #shopping-cart .menu-item:not(.widget-menu-item) .header-cart-contents .count {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mini_widget_shopping_cart #shopping-cart .menu-item:not(.widget-menu-item) .header-cart-contents .txt {
  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;
}

/** */
.widget_shopping_cart {
  left: auto !important;
  position: absolute;
  top: 105%;
  right: 0;
  width: 330px;
  background-color: transparent;
  text-align: left;
  z-index: 1499;
  opacity: 0;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.53, 0.01, 0.18, 1);
  margin-bottom: 0;
  visibility: hidden;
  padding-top: 5px;
}
@media only screen and (min-width: 48rem) {
  .widget_shopping_cart ul.product_list_widget {
    height: auto;
  }
  .widget_shopping_cart ul.product_list_widget li {
    padding: 8px 0;
    margin: 0;
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    border-bottom: none;
  }
  .widget_shopping_cart ul.product_list_widget li .item-image-holder {
    flex: 0 0 20%;
    max-width: 20%;
    margin-right: 5px;
  }
  .widget_shopping_cart ul.product_list_widget li .item-image-holder a {
    outline: none;
    display: block;
    padding: 0;
  }
  .widget_shopping_cart ul.product_list_widget li .item-image-holder img {
    display: block;
    margin: 0;
    float: none;
    width: 100%;
    height: auto;
    max-width: unset;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder {
    padding-right: 0;
    flex: 1 1 0;
    min-width: 0;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder .product-title {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder .product-title > a {
    outline: none;
    padding: 0;
    line-height: 1.4;
    font-weight: 600;
    color: #000000;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder .product-title > a:hover {
    color: #00ccff;
    text-decoration: none;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder dl.variation {
    margin: 5px 0 0 0;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 10px;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder dl.variation dt {
    margin-bottom: 0;
    flex: 0 0 40%;
    max-width: 40%;
    margin-right: 5px;
    padding-bottom: 0;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: -0.5px;
    line-height: normal;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder dl.variation dt {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder dl.variation dd {
    margin-bottom: 0;
    flex: 0 0 calc(60% - 5px);
    max-width: calc(60% - 5px);
    padding-bottom: 0;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder dl.variation dd > * {
    margin-bottom: 0;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder .quantity {
    font-size: 13px;
    margin-top: 0;
    display: block;
    letter-spacing: -0.2px;
    font-weight: 600;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder .quantity .amount {
    font-weight: 600;
    color: red;
    font-size: 13px;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder a.remove {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    text-indent: 0;
    font-size: 18px;
    outline: none;
    font-weight: 300;
    border-radius: 50%;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder a.remove {
    width: 0.875rem;
    height: 0.875rem;
  }
  .widget_shopping_cart ul.product_list_widget li .item-info-holder a.remove::before {
    display: none;
  }
  .widget_shopping_cart p.counts {
    background: none;
    border: none;
    padding: 10px 0;
    margin-bottom: 0;
    justify-content: space-between;
    font-weight: 500;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: #000000;
    line-height: 1.7;
  }
  .widget_shopping_cart p.counts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .widget_shopping_cart p.counts strong {
    font-size: 14px;
    font-weight: 500;
  }
  .widget_shopping_cart p.total {
    background: none;
    border: none;
    padding: 10px 0 0 0;
    margin-bottom: 20px;
    justify-content: space-between;
    font-weight: 500;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: #000000;
    line-height: 1.7;
  }
  .widget_shopping_cart p.total {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .widget_shopping_cart p.total strong {
    font-size: 14px;
    font-weight: 500;
  }
  .widget_shopping_cart p.total .amount {
    font-weight: 700;
    color: red;
  }
  .widget_shopping_cart p.buttons {
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .widget_shopping_cart a.button {
    display: block;
    margin-top: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    text-align: center;
    box-sizing: border-box;
    transition: color 0.2s ease-out, background-color 0.2s ease-out;
    color: #ffffff;
    background-color: #00ccff;
    margin-bottom: 0;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
  }
  .widget_shopping_cart a.button:hover {
    opacity: 0.8;
  }
  .widget_shopping_cart a.button::after {
    display: none;
  }
  .widget_shopping_cart a.button.checkout {
    margin-right: 0;
    background-color: red;
    border-color: #000000;
    position: relative;
  }
  .widget_shopping_cart .woocommerce-mini-cart__button a {
    font-weight: 600;
    color: #ffffff;
  }
  .widget_shopping_cart .woocommerce-mini-cart__button a:first-child {
    background-color: #00ccff;
  }
  .widget_shopping_cart .woocommerce-mini-cart__button a:last-child {
    background-color: red;
  }
}

/** */
.widget_shopping_cart_content {
  padding: 7px 15px 15px 15px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 300;
  border-radius: 5px;
}
@media only screen and (min-width: 48rem) {
  .widget_shopping_cart_content {
    overflow: hidden;
  }
}

/** */
@media only screen and (min-width: 48rem) {
  #shopping-cart:hover .widget_shopping_cart, #shopping-cart.hover .widget_shopping_cart {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}

/** */
ul.cart_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.cart_list li.mini_cart_item {
  grid-gap: 0.3125rem;
  gap: 0.3125rem;
}
ul.cart_list li.mini_cart_item a.remove {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  text-indent: 0;
  outline: none;
  display: flex;
  justify-content: center;
  font-weight: 600;
  border-radius: 50%;
  color: #fff;
}
ul.cart_list li.mini_cart_item a.remove {
  font-size: 1rem;
}
ul.cart_list li.mini_cart_item a.remove {
  width: 0.875rem;
  height: 0.875rem;
}
ul.cart_list li.mini_cart_item a.remove::before {
  display: none;
}
ul.cart_list li.mini_cart_item a.remove:hover {
  color: red !important;
  background: transparent !important;
  font-weight: 600;
}
ul.cart_list li.mini_cart_item > a:not(.remove) {
  flex: 1 1 0;
  display: flex;
  line-height: 1.3;
  line-height: 19px;
  font-weight: 500;
  letter-spacing: 0.5px;
  align-items: flex-start;
  text-align: left;
  padding: 0;
}
ul.cart_list li.mini_cart_item > a:not(.remove) {
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
ul.cart_list li.mini_cart_item > a:not(.remove) {
  font-size: 0.8125rem;
}
ul.cart_list li.mini_cart_item > a:not(.remove) img {
  width: 50px;
  border-radius: 5px;
  display: block;
  margin-left: 0;
}
ul.cart_list li.mini_cart_item dl.variation {
  margin: 5px 0 0 0;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  padding-left: 10px;
}
ul.cart_list li.mini_cart_item dl.variation dt {
  margin-bottom: 0;
  flex: 0 0 40%;
  max-width: 40%;
  margin-right: 5px;
  padding-bottom: 0;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: -0.5px;
  line-height: normal;
}
ul.cart_list li.mini_cart_item dl.variation dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
ul.cart_list li.mini_cart_item dl.variation dd {
  margin-bottom: 0;
  flex: 0 0 calc(60% - 5px);
  max-width: calc(60% - 5px);
  padding-bottom: 0;
  font-size: 13px;
  font-weight: 400;
}
ul.cart_list li.mini_cart_item dl.variation dd > * {
  margin-bottom: 0;
}
ul.cart_list li.mini_cart_item .quantity {
  color: #00ccff;
  font-weight: 500;
  font-size: 14px;
}
ul.cart_list li.mini_cart_item .quantity .amount {
  font-weight: 700;
  color: #e60000;
}
ul.cart_list li.mini_cart_item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#before-footer .widget_text {
  max-width: 800px;
  margin: 0 auto;
}
#before-footer .widget_text > span {
  display: block;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}
#before-footer .widget_text > span {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  #before-footer .widget_text > span {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  #before-footer .widget_text > span {
    font-size: 1.875rem;
  }
}
#before-footer .widget_text .desc {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin: 15px 0 25px;
}
#before-footer .widget_text .sl-form {
  max-width: 640px;
  margin: 0 auto;
}
#before-footer .widget_text .sl-form form {
  position: relative;
}
#before-footer .widget_text .sl-form form input {
  border-radius: 7px;
  background-color: #ffffff;
  width: 100%;
  height: 44px;
  border: none;
  padding: 0 12px;
}
#before-footer .widget_text .sl-form form input[type=submit] {
  position: absolute;
  width: 160px;
  height: 40px;
  right: 2px;
  top: 2px;
  background-color: #e60000;
  color: #ffffff;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
#before-footer .widget_text .sl-form form .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 13px;
  padding-left: 5px;
  padding-top: 5px;
  font-weight: 600;
  color: #e60000;
}
#before-footer .widget_text .sl-form form .wpcf7-spinner {
  transform: translateY(-50%);
  position: absolute;
  margin: 0;
  top: 50%;
  right: 65px;
}
#before-footer .widget_text .sl-form form .wpcf7-response-output {
  margin: 35px 0 0;
  border-radius: 2px;
  padding: 10px 15px;
}

#footer-columns {
  background: #00ccff;
}
#footer-columns {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  #footer-columns {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  #footer-columns {
    padding-top: 3.75rem;
  }
}
#footer-columns {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  #footer-columns {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  #footer-columns {
    padding-bottom: 2.5rem;
  }
}
#footer-columns .flex {
  justify-content: space-between;
}
#footer-columns .flex {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}
#footer-columns .cell {
  color: #ffffff;
  font-weight: 300;
}
#footer-columns .cell .footer-title {
  color: #FFf;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
#footer-columns .cell .footer-title {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  #footer-columns .cell .footer-title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  #footer-columns .cell .footer-title {
    font-size: 1.25rem;
  }
}
#footer-columns .cell iframe {
  border: none;
  border-radius: 10px;
  width: 100%;
}
#footer-columns .cell a .default-logo {
  width: 100%;
  max-width: 224px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  object-fit: contain;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .cell a .default-logo {
    max-width: 159px;
  }
}
@media only screen and (min-width: 64rem) {
  #footer-columns .cell ._lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  #footer-columns .cell ._lists {
    grid-gap: 1.875rem;
    gap: 1.875rem;
  }
}
#footer-columns .cell ._lists ._item {
  background: #00b1dd;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  transition: 0.4s;
  cursor: pointer;
}
#footer-columns .cell ._lists ._item {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .cell ._lists ._item {
    margin-bottom: 30px;
  }
  #footer-columns .cell ._lists ._item:last-child {
    margin-bottom: 0;
  }
}
#footer-columns .cell ._lists ._item ._images {
  margin-bottom: 0;
}
#footer-columns .cell ._lists ._item ._images {
  width: 2.625rem;
  height: 2.625rem;
}
#footer-columns .cell ._lists ._item ._images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#footer-columns .cell ._lists ._item ._desc {
  flex: 1;
  font-weight: 400;
}
#footer-columns .cell ._lists ._item ._desc strong {
  color: #FFF;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
#footer-columns .cell ._lists ._item:last-child {
  align-items: unset;
}
#footer-columns .cell ._lists ._item:last-child ._desc strong {
  font-size: 18px;
  line-height: 1;
}
#footer-columns .cell ._lists ._item:hover {
  transform: translateY(-5px);
}
@media only screen and (min-width: 48rem) {
  #footer-columns .cell.cell-1 {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 64rem) {
  #footer-columns .cell.cell-1 {
    flex: 0 0 calc(33.3333333% - 20px);
    max-width: calc(33.3333333% - 20px);
  }
}
#footer-columns .cell.cell-1 ._desc {
  margin-top: 20px;
}
@media only screen and (min-width: 48rem) {
  #footer-columns .cell.cell-2 {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 64rem) {
  #footer-columns .cell.cell-2 {
    flex: 0 0 calc(33.3333333% - 20px);
    max-width: calc(33.3333333% - 20px);
  }
}
@media only screen and (min-width: 64rem) {
  #footer-columns .cell.cell-3 {
    flex: 0 0 calc(33.3333333% - 20px);
    max-width: calc(33.3333333% - 20px);
  }
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .cell.cell-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #footer-columns .cell.cell-3 iframe {
    height: 300px;
  }
}
#footer-columns .cell.cell-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

#footer-credit {
  color: #ffffff;
  text-align: left;
  background-color: #009ac0;
}
#footer-credit {
  padding-top: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #footer-credit {
    padding-top: 0.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  #footer-credit {
    padding-top: 0.8125rem;
  }
}
#footer-credit {
  padding-bottom: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #footer-credit {
    padding-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  #footer-credit {
    padding-bottom: 0.8125rem;
  }
}
#footer-credit .copyright {
  font-size: 13px;
  font-weight: 400;
}
#footer-credit .copyright a {
  color: #ffffff;
}

.add-this.contact-link {
  position: fixed;
  bottom: 20%;
  right: 10px;
  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(0, 88, 170, 0));
          filter: drop-shadow(0 0 6px rgba(0, 88, 170, 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: #00ccff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-this.contact-link li a:hover {
  color: #e60000;
}
.add-this.contact-link li a > svg, .add-this.contact-link li a > i {
  background-color: #00ccff;
  color: #fff;
  border-radius: 50%;
  /*border: 2px solid #00ccff;*/
  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: #00ccff;
}
@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: #e60000;
  color: #fff;
}
.add-this.contact-link li a:hover.messenger > i {
  background: none;
  color: #e60000;
}

/** Poppins fonts */
: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);
}

.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 {
    position: absolute;
    left: 15px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .sharing-toolbox {
    display: none;
  }
}
.sharing-toolbox .share-title {
  display: none;
}
.sharing-toolbox .social-share {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}
.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: #00ccff;
}

.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%;
}
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 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 {
  color: #fff;
  background-color: #e60000;
}

:is(span, label) > a {
  color: #00ccff;
}
:is(span, label) > a:hover {
  color: #00ccff;
  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 {
  background-color: #ffffff;
  opacity: 0;
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 30px;
  border: 1px solid #e60000;
  border-radius: 4px;
}
.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: #e60000;
}
.back-to-top > svg {
  width: 1.75rem;
  height: 1.75rem;
}
.back-to-top:hover {
  border-color: #e60000;
}
.back-to-top:hover > svg {
  color: #e60000;
}

.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: 10px;
  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: #000000;
  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: #00ccff;
}
.off-canvas-content .menu-lines:hover .line > span::before {
  background-color: #00ccff;
}
.off-canvas-content .menu-lines:hover .line > span.line-2::before {
  width: 100%;
}

.off-canvas {
  background-color: #fff;
}
.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: #00ccff;
  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: 100px;
  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%;
}
.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 .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 a {
  font-size: 15px;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 24px;
  display: block;
  color: #000000;
}
.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);
}
.off-canvas.position-right.is-open {
  transform: translate(0) translateZ(3px);
}

.dropdown-search .trigger-s.hover::before {
  content: "\f00d";
}
.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) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px);
  }
}
.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: 768px;
}
.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: 80rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1280px;
  }
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container input {
  width: 100%;
  border: none;
  height: 50px;
  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;
}

/** */
.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;
}

/** @todo swipers slides*/
.swiper-controls {
  height: 0;
}
.swiper-controls .swiper-button {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.swiper-controls .swiper-button {
  width: 2.8125rem;
  height: 2.8125rem;
}
@media only screen and (max-width: 47.99875rem) {
  .swiper-controls .swiper-button {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.swiper-controls .swiper-button svg {
  fill: #2F2F2F;
  color: #2F2F2F;
  font-size: 18px;
}
.swiper-controls .swiper-button.swiper-button-prev svg {
  transform: rotate(180deg);
}
.swiper-controls .swiper-button:focus {
  outline: none;
}
.swiper-controls .swiper-pagination {
  position: relative;
  white-space: nowrap;
  margin-top: 30px;
}
.swiper-controls .swiper-pagination.swiper-pagination-fraction {
  padding: 0;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  border-radius: 2px;
  opacity: 0.6;
  margin: 5px;
  transition: 0.3s;
  background-color: #2F2F2F;
  box-shadow: 0 0 0 2px #2F2F2F;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 0.3125rem;
  height: 0.3125rem;
}
@media only screen and (max-width: 47.99875rem) {
  .swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 0.25rem;
    height: 0.25rem;
  }
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:focus {
  outline: none;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: #00ccff;
  box-shadow: 0 0 0 2px #00ccff;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #135E84;
  box-shadow: 0 0 0 2px #135E84;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
  background-color: #00ccff;
  box-shadow: 0 0 0 2px #00ccff;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  opacity: 0.3;
  border-radius: 50%;
}
.swiper-controls .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 5px;
  opacity: 1;
}
.swiper-controls .swiper-pagination.swiper-pagination-progressbar {
  padding: 0;
  position: absolute;
  bottom: 0;
  top: auto;
  right: auto;
  left: 50%;
  width: 300px;
  transform: translateX(-50%);
  max-width: 90vw;
  height: 2px;
  border-radius: 8px;
  background: #eee;
}
.swiper-controls .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 8px;
  background-image: linear-gradient(90deg, #135E84, #E6A223 100%);
}
.swiper-controls .swiper-progress {
  height: 2px;
  background-color: #ffffff;
  border-radius: 8px;
}
.swiper-controls .swiper-progress::after {
  content: "";
  width: 0;
  transition: width 0s;
  background-image: linear-gradient(90deg, #135E84, #E6A223 100%);
  height: 2px;
  position: absolute;
}
.swiper-controls .swiper-progress.progress::after {
  width: 100%;
  transition: width 6s linear;
}
.swiper-controls.normal-controls .swiper-button {
  opacity: 1;
  border: none !important;
}
.swiper-controls.normal-controls .swiper-button {
  width: 0.75rem;
  height: 0.75rem;
}
.swiper-controls.normal-controls .swiper-button::before, .swiper-controls.normal-controls .swiper-button::after {
  display: none;
}

/** */
/** */
.swiper-section {
  position: relative;
}

.swiper-marquee .swiper-wrapper {
  transition-timing-function: linear !important;
  touch-action: manipulation;
}

.swiper .swiper-slide {
  height: auto;
  overflow: unset;
}
.swiper .swiper-slide .item {
  position: relative;
  height: 100%;
}
.swiper.swiper-initialized {
  z-index: 3;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid #2F2F2F;
  background: #ffffff;
  border-radius: 100%;
  z-index: 99;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-prev {
  left: 15px;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-next {
  right: 15px;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button:hover {
  opacity: 1;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button:after {
  display: none;
}
.swiper.swiper-initialized ~ .swiper-controls .swiper-button:hover {
  border: 1px solid #00ccff;
  background: #00ccff;
}
.swiper.swiper-initialized:hover ~ .swiper-controls .swiper-button {
  opacity: 1;
}

/* */
section.section .heading-title {
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: inline-flex;
  left: 50%;
  transform: translateX(-50%);
}
section.section .heading-title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  section.section .heading-title {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  section.section .heading-title {
    font-size: 2rem;
  }
}
section.section .heading-title::before, section.section .heading-title::after {
  position: absolute;
  content: "";
  height: 30px;
  z-index: -1;
}
@media only screen and (max-width: 63.99875rem) {
  section.section .heading-title::before, section.section .heading-title::after {
    height: 20px;
  }
}
section.section .heading-title::before {
  background: linear-gradient(90deg, #CDE7FF 0%, rgba(205, 231, 255, 0) 100%);
  width: 177px;
}
section.section .heading-title::after {
  background: linear-gradient(90deg, rgba(205, 231, 255, 0) 0%, #CDE7FF 100%);
  width: 254px;
}
@media only screen and (max-width: 63.99875rem) {
  section.section .heading-title::after {
    width: 185px;
  }
}

/* */
.section-breadcrumb {
  position: relative;
}
.section-breadcrumb {
  padding-top: 3.125rem;
}
@media only screen and (min-width: 48rem) {
  .section-breadcrumb {
    padding-top: 5.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb {
    padding-top: 7.5rem;
  }
}
.section-breadcrumb {
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 48rem) {
  .section-breadcrumb {
    padding-bottom: 5.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb {
    padding-bottom: 7.5rem;
  }
}
.section-breadcrumb .breadcrumb-title {
  line-height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}
.section-breadcrumb .breadcrumb-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .section-breadcrumb .breadcrumb-title {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb .breadcrumb-title {
    font-size: 2.125rem;
  }
}
.section-breadcrumb .breadcrumb-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-breadcrumb .breadcrumb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-breadcrumb #breadcrumbs {
  padding: 0;
  margin: 0;
  display: flex;
  list-style-type: none;
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb #breadcrumbs {
    font-size: 13px;
    flex-wrap: wrap;
  }
}
.section-breadcrumb #breadcrumbs li {
  color: #ffffff;
  font-weight: 600;
}
.section-breadcrumb #breadcrumbs li:not(:first-child)::before {
  content: "/";
  font-weight: 600;
  font-size: 15px;
  margin: 0 5px;
  color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb #breadcrumbs li:not(:first-child)::before {
    font-size: 11px;
  }
}
.section-breadcrumb #breadcrumbs li a {
  color: #ffffff;
}
.section-breadcrumb #breadcrumbs li.current {
  color: #ffffff;
  font-weight: 600;
}

/* CSS ALL */
.section-padding {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .section-padding {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-padding {
    padding-top: 3.75rem;
  }
}
.section-padding {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .section-padding {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-padding {
    padding-bottom: 3.75rem;
  }
}

.home-infomation {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .home-infomation {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .home-infomation {
    padding-top: 3.75rem;
  }
}
.home-infomation {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .home-infomation {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .home-infomation {
    padding-bottom: 3.75rem;
  }
}
@media only screen and (min-width: 48rem) {
  .home-infomation .cell-images {
    top: 180px;
  }
}
@media only screen and (min-width: 48rem) {
  .home-infomation .cell-images .img img {
    object-fit: contain;
  }
}
.home-infomation .flex-info {
  gap: 20px;
  grid-gap: 20px;
}
@media only screen and (min-width: 48rem) {
  .home-infomation .flex-info {
    align-items: center;
  }
}
@media only screen and (min-width: 64rem) {
  .home-infomation .flex-info .cell-left {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    position: relative;
  }
  .home-infomation .flex-info .cell-left .line {
    display: none;
  }
}
.home-infomation .flex-info .cell-left ._subtitle {
  margin-bottom: 0;
}
.home-infomation .flex-info .cell-left .heading-title {
  left: 0;
  transform: unset;
  margin-bottom: 15px;
  padding-bottom: 0;
}
.home-infomation .flex-info .cell-left .heading-title::before {
  bottom: -5px;
  left: 0;
}
.home-infomation .flex-info .cell-left .heading-title::after {
  display: none;
}
.home-infomation .flex-info .cell-left ._desc {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: justify;
}
.home-infomation .flex-info .cell-left ._desc p {
  line-height: 28px;
}
.home-infomation .flex-info .cell-left ._desc ul {
  padding: 0;
  margin: 25px 0;
  list-style: none;
}
.home-infomation .flex-info .cell-left ._desc ul li {
  position: relative;
  margin-bottom: 5px;
}
.home-infomation .flex-info .cell-left ._desc ul li::before {
  display: inline-block;
  content: "";
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAAAwCAYAAACRx20+AAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAObSURBVHgB7ZpNTttAFMffGMfIVReWIPv0BIUbwA3oCQgnKJuk3TXdVFVSiXACwgk4Atyg9AbZA5IXVUNC8Ou8GBCJv2bsF+KP/DYYnPyNfhlNZt48AWvmuG9vn8gfTQB0DTQ+Wb2ba0jBYo4Ja14Yf6mfIWLT/004nvAu5MUH0CQsZy1agseOM66ZF1LO3vwd0QAN4nIqL3omxzKv5OXHwD2A76BIUo6ACpMkx+7edrhyKiv6LSXTtQEVZHTsNMbWxm/IKNnPUfuwKjdHkxxhbVyGfdHpSvZzoKGSU6mpg1+yek5lRK9SMlEJ0bFyEI/s3t1AISZTTulF50EyUWrReZFMlHZ5FyPHZZKslVPK5d3flrMjhElLL2fhljvF6f77nqtUkePKIUo3dZAck0myySSZKJXovEomSiM6z5KJUnwZTtpbh+FycIjGdFdVDldOGIUf0STHAzEI3iE5j/v2T3cICnDlRFFo0UWRTMymDqqp0noRMsKVo0KRJBPi6UF9mM1LMnwiw/v64Vw5Kozb299kAacTvKMnhytHBcPzH/Q0+YvZLijNqOTKSaKIkgmDjsPn/5RWEldONEWVTBhyKIac9KaQxJUTQZElE7NVx6hVbwqBZxD2cI25litnkWg58Gfz3XRPdFwXFODKScPL8i6vsssgmZhbR+dNdlkkE3NbcLt3M0AUR8GX6c21STnYcZykjEg5CFcskjVzshK6M4wurOBQp8MyKscwxa71Izpjvknw1dNBnNvdmyYowpXDQWhRiYonVKmSlwuftmigwMtJq74DCoTn4LBmPQyj3lNGyURsrSNqRMo3uQLFvurIHn2Vx0GeeSIQ3Qd4PI2qgpVVMpFYVPJlb1wsnpnpyk6izJIJpeqdPyLDT4ENwKbVvTuHlDz3FMv/ZC9wT7fZkCFnWSiXSZch+607OleJVj2aU3aVJBPahX8O2VWTTGifGVLRhYovtExbvEcFdNogxL2ftzc5e85bkfooK25ky9DOZvc2UM1bdUfnKsl0Zqgju8qSicyHsyqy08qhOfi+VjsAxKH96/aqqJIJllPwpy8l2kEGtuaGPEf0wDvQ7cT0pZo0BztZcvICW7tBnOzQ1yfI+dfa6htCfIaMOXmBrVNJ9F13czIrICVuyZXkYHBVkyonJ7C2hCnIVu4ptqfegCMnLyytU2nUrg8E4OGrP6VqEuTKWTVLa3KkSpmHeErX8tO8TiuHK2fV/AdCIRognEutZAAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 16px;
  margin-right: 10px;
}
.home-infomation .flex-info .cell-left ._desc ul li:last-child {
  margin-bottom: 0;
}
.home-infomation .flex-info .cell-left ._lists_review {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.home-infomation .flex-info .cell-left ._lists_review {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media only screen and (max-width: 47.99875rem) {
  .home-infomation .flex-info .cell-left ._lists_review {
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 48rem) {
  .home-infomation .flex-info .cell-left ._lists_review ._item {
    flex: 0 0 calc(33.3333333% - 20px);
    max-width: calc(33.3333333% - 20px);
  }
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._images {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 10px;
  flex: 0 0 55px;
  max-width: 55px;
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._images {
  width: 3.4375rem;
  height: 3.4375rem;
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._content ._number {
  font-size: 45px;
  line-height: 100%;
  font-weight: 700;
  color: #00ccff;
}
@media only screen and (max-width: 47.99875rem) {
  .home-infomation .flex-info .cell-left ._lists_review ._item ._content ._number {
    font-size: 28px;
  }
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._content ._ratting_star {
  display: none;
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._content ._ratting_star i {
  color: #e60000;
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._content ._ratting_star .empty-star i {
  font-weight: 500;
}
.home-infomation .flex-info .cell-left ._lists_review ._item ._content .desc {
  font-weight: 500;
}
.home-infomation .flex-info .cell-left ._lists_review ._item:last-child {
  margin-bottom: 0;
}
.home-infomation .flex-info .cell-left ._button {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  line-height: 20px;
  color: #ffffff;
  background: linear-gradient(180deg, #00ccff 0%, #046aca 100%);
  transition: 0.4s;
  border-radius: 10px;
  text-transform: uppercase;
  padding: 13px 30px;
}
.home-infomation .flex-info .cell-left ._button {
  font-size: 0.875rem;
}
@media only screen and (min-width: 48rem) {
  .home-infomation .flex-info .cell-left ._button {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .home-infomation .flex-info .cell-left ._button {
    font-size: 0.9375rem;
  }
}
.home-infomation .flex-info .cell-left ._button i {
  order: -1;
  background: #00ccff;
  color: #ffffff;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transform: rotate(-45deg);
  display: none;
}
.home-infomation .flex-info .cell-left ._button i {
  width: 2.625rem;
  height: 2.625rem;
}
.home-infomation .flex-info .cell-left ._button:hover {
  transform: translateY(-5px);
}
.home-infomation .flex-info .cell-left ._button:hover i {
  background: #e60000;
}
@media only screen and (min-width: 64rem) {
  .home-infomation .flex-info .cell-right {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.home-infomation .flex-info .cell-right a.logo {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.home-infomation .flex-info .cell-right a.logo .custom-logo-link img {
  width: 150px;
}
.home-infomation .flex-info .cell-right ._iamges {
  margin-bottom: 0;
}
.home-infomation .flex-info .cell-right ._iamges img {
  width: 100%;
}
.home-infomation .flex-info .cell-right ._slider_images ._item {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.home-infomation .flex-info .cell-right ._slider_images ._item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  opacity: 0.3;
}
.home-infomation .flex-info .cell-right ._slider_images ._item ._images {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}
.home-infomation .flex-info .cell-right ._slider_images ._item ._images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-infomation .flex-info .cell-right ._slider_images ._item ._content {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 25px;
}
.home-infomation .flex-info .cell-right ._slider_images ._item ._title {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home-infomation .flex-info .cell-right ._slider_images ._item ._desc {
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}
.home-infomation .flex-info .cell-right ._slider_images .swiper-button {
  border: 1px solid #00ccff;
  background: #00ccff;
  opacity: 0.7;
}
.home-infomation .flex-info .cell-right ._slider_images .swiper-button::before {
  color: #ffffff;
}
.home-infomation .flex-info .cell-right ._slider_images .swiper-button:hover {
  border: 1px solid #ffffff;
  background: #ffffff;
  opacity: 1;
}
.home-infomation .flex-info .cell-right ._slider_images .swiper-button:hover::before {
  color: #00ccff;
  background: #ffffff;
}
.home-infomation .flex-info .cell-right ._slider_images .swiper-pagination {
  margin-top: 0;
  bottom: 20px;
}
.home-infomation .flex-info .cell-right ._slider_images .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: transparent;
  box-shadow: 0 0 0 2px #fff;
}
.home-infomation .flex-info .cell-right ._slider_images .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px #ffffff;
}

.home-partner {
  position: relative;
}
.home-partner {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .home-partner {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .home-partner {
    padding-top: 2.5rem;
  }
}
.home-partner {
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 48rem) {
  .home-partner {
    padding-bottom: 3.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .home-partner {
    padding-bottom: 3.75rem;
  }
}
.home-partner .swiper-wrapper {
  padding: 2px;
}
.home-partner .swiper-wrapper .swiper-slide {
  width: 16.6666666667%;
  padding: 0 5px;
}
@media only screen and (max-width: 47.99875rem) {
  .home-partner .swiper-wrapper .swiper-slide {
    width: 25%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .home-partner .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
.home-partner .swiper-wrapper .swiper-slide .img {
  margin-bottom: 0;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  aspect-ratio: 3/2;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1215686275);
}
.home-partner .swiper-wrapper .swiper-slide .img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.home-partner .swiper-wrapper .swiper-slide .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
.home-partner .swiper-controls .swiper-button {
  background-color: #00ccff !important;
  box-shadow: 0 0 0 2px #00ccff !important;
  border: unset !important;
  opacity: 0.7 !important;
}
.home-partner .swiper-controls .swiper-button::before {
  color: #ffffff !important;
}
.home-partner .swiper-controls .swiper-button:hover {
  opacity: 1 !important;
}
.home-partner .swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 5px;
}
.home-partner .swiper-controls .swiper-pagination-bullet-active, .home-partner .swiper-controls .swiper-pagination-bullet-active:hover {
  background-color: #00ccff !important;
  box-shadow: 0 0 0 2px #00ccff !important;
}

.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination a {
  padding: 0;
}
.pagination a:hover {
  background: transparent;
  color: #00ccff;
}
.pagination .page-numbers {
  padding: 0 5px;
  margin-right: 10px;
}
.pagination .current {
  padding: 0;
  background: transparent;
  color: #000000;
  font-weight: 700;
  position: relative;
}
.pagination .current::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
}

nav.nav-pagination .pagination li {
  margin-right: 10px;
  overflow: visible !important;
}
nav.nav-pagination .pagination li:last-child {
  margin-right: 0;
}
nav.nav-pagination .pagination li a {
  padding: 0 5px;
}
nav.nav-pagination .pagination li .current {
  padding: 0 !important;
  background: transparent !important;
  color: #000000 !important;
  font-weight: 700 !important;
  position: relative;
  width: 12px !important;
}
nav.nav-pagination .pagination li .current::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
}

/* PAGE ABOUT */
/* ARCHIVE LINH VUC */
.post-type-archive-field .slide-posts {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-field .slide-posts {
    margin-top: 1.875rem;
  }
}
.post-type-archive-field .slide-posts {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-field .slide-posts {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-field .slide-posts {
    margin-bottom: 3.75rem;
  }
}
.post-type-archive-field .slide-posts .swiper-wrapper {
  padding-top: 5px;
}
.post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide {
  width: 20%;
  padding: 0 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide {
    width: 33.33%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
.post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide a.block:hover .img img {
  transition: 0.3s;
  transform: translateY(-5px);
}
.post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide .img {
  text-align: center;
  margin-bottom: 15px;
}
.post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide .img img {
  border-radius: 50%;
  object-fit: cover;
  transform: translateY(0);
  transition: 0.3s;
}
.post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide .img img {
  width: 7.5rem;
  height: 7.5rem;
}
.post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide .title {
  margin-bottom: 0;
  color: #00ccff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}
.post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide .title {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-field .slide-posts .swiper-wrapper .swiper-slide .title {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .slide-posts:hover .swiper-button {
    opacity: 1;
    visibility: visible;
  }
}
.post-type-archive-field .slide-posts .swiper-button {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .slide-posts .swiper-button {
    opacity: 1;
    visibility: visible;
  }
}
.post-type-archive-field .slide-posts .swiper-button.swiper-button-prev {
  left: -15px;
}
.post-type-archive-field .slide-posts .swiper-button.swiper-button-next {
  right: -15px;
}
.post-type-archive-field .list-posts .wrapper {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-field .list-posts .wrapper {
    margin-bottom: 3.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-field .list-posts .wrapper {
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .list-posts .wrapper {
    flex-direction: column-reverse;
  }
}
.post-type-archive-field .list-posts .wrapper:nth-child(2n) .cell.cell-content {
  left: inherit;
  right: 0;
  text-align: left;
}
.post-type-archive-field .list-posts .wrapper:nth-child(2n) .cell.cell-content .button-link {
  margin-right: auto;
  margin-left: 0;
}
.post-type-archive-field .list-posts .wrapper:nth-child(2n) .cell.cell-img {
  margin-right: auto;
  margin-left: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .list-posts .wrapper:nth-child(2n) .cell.cell-img {
    margin-left: auto;
  }
}
.post-type-archive-field .list-posts .wrapper .cell {
  border-radius: 20px;
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content {
  width: 45%;
  height: 80%;
  padding: 60px;
  background-color: #00ccff;
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  text-align: right;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    transform: translateY(0);
    text-align: left;
    padding: 100px 30px 30px;
    margin-top: -80px;
  }
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .sub {
  font-weight: 500;
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .sub {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .sub {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .sub {
    font-size: 1.25rem;
  }
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .heading-title {
  color: #ffffff;
  line-height: 1.4;
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .heading-title {
  font-size: 1.375rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .heading-title {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .heading-title {
    font-size: 2.125rem;
  }
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .heading-title {
  margin-top: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .heading-title {
    margin-top: 0.9375rem;
  }
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .heading-title a:hover {
  color: #e60000;
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link {
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #e60000;
  margin-left: auto;
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link {
  width: 3.375rem;
  height: 3.375rem;
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link {
    margin-left: 0;
  }
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link i {
  color: #ffffff;
  transition: 0.3s;
  transform: rotate(-45deg);
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link i {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link i {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link i {
    font-size: 1.375rem;
  }
}
.post-type-archive-field .list-posts .wrapper .cell.cell-content .button-link:hover i {
  transition: 0.3s;
  transform: rotate(0deg);
}
.post-type-archive-field .list-posts .wrapper .cell.cell-img {
  width: 60%;
  margin-left: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-field .list-posts .wrapper .cell.cell-img {
    width: 90%;
    margin: 0 auto;
    z-index: 2;
  }
}
.post-type-archive-field .list-posts .wrapper .cell.cell-img img {
  border-radius: 20px;
}

/* ARCHIVE DU AN */
.post-type-archive-project .section-page {
  padding-top: 20px;
  padding-bottom: 40px;
}
.post-type-archive-project .grid {
  gap: 20px;
  margin-bottom: 20px;
}
.post-type-archive-project .grid .item {
  position: relative;
}
.post-type-archive-project .grid .item:hover .img {
  cursor: pointer;
}
.post-type-archive-project .grid .item:hover .img img {
  transform: scale(1.05);
  transition: 0.3s;
}
.post-type-archive-project .grid .item .img {
  margin-bottom: 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.post-type-archive-project .grid .item .img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 57.1%, rgba(0, 0, 0, 0.85) 100%);
}
.post-type-archive-project .grid .item .img img {
  border-radius: 10px;
  transform: scale(1);
  transition: 0.3s;
  object-fit: cover;
}
.post-type-archive-project .grid .item .title {
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  padding: 0 30px;
  bottom: 30px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}
.post-type-archive-project .grid .item .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .post-type-archive-project .grid .item .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.post-type-archive-project .grid .item .title a:hover {
  color: #e60000;
}
.post-type-archive-project .grid.grid-1 {
  grid-template-columns: 2fr 1fr;
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-project .grid.grid-1 {
    grid-template-columns: 1fr;
  }
}
.post-type-archive-project .grid.grid-1 .column-left .item {
  height: 100%;
}
.post-type-archive-project .grid.grid-1 .column-left .item .img {
  height: 100%;
}
.post-type-archive-project .grid.grid-1 .column-left .item .img img {
  height: 100%;
}
.post-type-archive-project .grid.grid-1 .column-left .item .title {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .post-type-archive-project .grid.grid-1 .column-left .item .title {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .post-type-archive-project .grid.grid-1 .column-left .item .title {
    font-size: 1.5625rem;
  }
}
.post-type-archive-project .grid.grid-1 .column-right .item {
  margin-bottom: 20px;
}
.post-type-archive-project .grid.grid-1 .column-right .item:last-child {
  margin-bottom: 0;
}
.post-type-archive-project .grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-project .grid.grid-2 {
    grid-template-columns: 1fr;
  }
}
.post-type-archive-project .grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 47.99875rem) {
  .post-type-archive-project .grid.grid-3 {
    grid-template-columns: 1fr;
  }
}

/* SINGLE PROJECTS */
.section-single-project {
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .section-single-project {
    padding-bottom: 3.75rem;
  }
}
.section-single-project .project-inf {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .section-single-project .project-inf {
    padding-bottom: 3.75rem;
  }
}
.section-single-project .project-inf .wrapper {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .section-single-project .project-inf .wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 39.99875rem) {
  .section-single-project .project-inf .wrapper {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-single-project .project-inf .wrapper .item {
  padding: 20px;
  background-color: #00ccff;
  border-radius: 15px;
  color: #ffffff;
  text-align: center;
}
.section-single-project .project-inf .wrapper .item .title {
  font-weight: 700;
  margin-bottom: 7px;
}
.section-single-project .project-inf .wrapper .item .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .section-single-project .project-inf .wrapper .item .title {
    font-size: 1.25rem;
  }
}
.section-single-project .project-inf .wrapper .item .content {
  font-weight: 600;
}
.section-single-project .project-details {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .section-single-project .project-details {
    padding-bottom: 3.75rem;
  }
}
.section-single-project .project-details .heading-title {
  line-height: normal;
}
.section-single-project .project-details .swiper-wrapper .swiper-slide {
  width: 33.3333333333%;
  padding: 0 10px;
}
@media only screen and (max-width: 47.99875rem) {
  .section-single-project .project-details .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
.section-single-project .project-details .swiper-wrapper .swiper-slide .img {
  margin-bottom: 0;
}
.section-single-project .project-details .swiper-wrapper .swiper-slide .img::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.section-single-project .project-details .swiper-wrapper .swiper-slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide {
  width: 50%;
  padding: 0 10px;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  background-color: #ffffff;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .img {
  margin-bottom: 0;
  position: relative;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .img::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .content {
  padding: 15px;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .title {
  color: #00ccff;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .title {
    font-size: 1.25rem;
  }
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .link {
  color: #00ccff;
  font-weight: 600;
}
.section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .link {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .section-single-project .project-related .swiper-wrapper .swiper-slide .item .content .link {
    font-size: 1.125rem;
  }
}

/* CATEGORY */
.archive-post {
  position: relative;
}
.archive-post {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-post {
    padding-top: 3.75rem;
  }
}
.archive-post {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-post {
    padding-bottom: 3.75rem;
  }
}
.archive-post .post-inner {
  display: flex;
  position: relative;
}
.archive-post .post-inner {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}
@media only screen and (max-width: 63.99875rem) {
  .archive-post .post-inner {
    flex-flow: row wrap;
  }
}
.archive-post .post-inner .post-left {
  flex: 0 0 calc(70% - 15px);
  max-width: calc(70% - 15px);
}
@media only screen and (max-width: 63.99875rem) {
  .archive-post .post-inner .post-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.archive-post .post-inner .post-right {
  flex: 0 0 calc(30% - 15px);
  max-width: calc(30% - 15px);
}
@media only screen and (max-width: 63.99875rem) {
  .archive-post .post-inner .post-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.archive-post .post-inner .post-right .sidebar-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}
.archive-post .post-inner .post-right .sidebar-inner .sidebar {
  margin-bottom: 30px;
}
.archive-post .post-inner .post-right .sidebar-inner .sidebar:last-child {
  margin-bottom: 0;
}
.archive-post .grid-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.archive-post .grid-posts {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}
.archive-post .grid-posts {
  padding-bottom: 1.875rem;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .grid-posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive-post .grid-posts .item {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 15px;
  overflow: hidden;
}
.archive-post .grid-posts .item .cover {
  border-radius: 15px;
}
.archive-post .grid-posts .item .content {
  padding: 15px;
}
.archive-post .grid-posts .item .content ._date {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #002956;
  margin-bottom: 10px;
  display: block;
}
.archive-post .grid-posts .item .content ._date i {
  margin-right: 10px;
  color: #00ccff;
}
.archive-post .grid-posts .item .content .title {
  margin-bottom: 10px;
}
.archive-post .grid-posts .item .content .title a {
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}
.archive-post .grid-posts .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .grid-posts .item .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .grid-posts .item .content .title a {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post .grid-posts .item .content .title a {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-post .grid-posts .item .content .title a {
    font-size: 1.25rem;
  }
}
.archive-post .grid-posts .item .content .title a:hover {
  color: #00ccff;
}
.archive-post .grid-posts .item .content .excerpt {
  color: #696969;
  font-size: 14px;
  font-weight: 400;
}
.archive-post .grid-posts .item .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .grid-posts .item .content .excerpt {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.sidebar-title {
  color: #ffffff;
  line-height: normal;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sidebar-title {
  font-size: 1.25rem;
}

.sidebar-form {
  background: #00ccff;
  padding: 40px 20px 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  .sidebar-form {
    display: none;
  }
}
.sidebar-form .sidebar-title {
  color: #ffffff;
}
.sidebar-form .desc {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.sidebar-form form input {
  width: 100%;
  padding: 0 12px;
  height: 42px;
  background-color: #66d9ff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: unset;
  border: unset;
}
.sidebar-form form input::-webkit-input-placeholder {
  color: #ffffff;
}
.sidebar-form form input::placeholder {
  color: #ffffff;
}
.sidebar-form form .form-submit {
  position: relative;
  margin: 5px auto 0;
  width: -webkit-fit-content;
  width: fit-content;
  background-color: #e60000;
  border-radius: 8px;
  transition: 0.4s;
  padding: 0 20px;
}
.sidebar-form form .form-submit:hover {
  background-color: #e60000;
  transform: translateY(-5px);
}
.sidebar-form form .form-submit i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 22px;
  z-index: 0;
  color: #ffffff;
}
.sidebar-form form .form-submit input[type=submit] {
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 15px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  margin-bottom: 0;
  padding: 0;
  padding-left: 30px;
  z-index: 1;
  position: relative;
}
.sidebar-form form .form-submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  bottom: 8px;
  left: -50px;
}
.sidebar-form form .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #e60000;
  margin-top: -5px;
  margin-bottom: 5px;
}
.sidebar-form form .wpcf7-response-output {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 0;
  border-radius: 4px;
}

.sidebar-posts {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border: 1px solid #DDDDDD;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
}
.sidebar-posts .sidebar-title {
  color: #000000;
  margin-bottom: 20px !important;
}
.sidebar-posts .sidebar-content .news-list article.item {
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(22, 26, 71, 0.1019607843);
}
.sidebar-posts .sidebar-content .news-list article.item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: unset;
}
.sidebar-posts .sidebar-content .news-list article.item a.d-block {
  flex: 0 0 auto;
  width: 35%;
}
.sidebar-posts .sidebar-content .news-list article.item a.d-block .cover {
  border-radius: 4px;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content {
  flex: 1 1 0;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content .terms {
  display: none;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content .h6 {
  margin-bottom: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
}
.sidebar-posts .sidebar-content .news-list article.item .cover-content .date {
  color: #5C5C5C;
  font-size: 13px;
  font-weight: 400;
}

.single-post .section-page, .single-field .section-page {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .section-page, .single-field .section-page {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .section-page, .single-field .section-page {
    padding-top: 3.75rem;
  }
}
.single-post .section-page, .single-field .section-page {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .section-page, .single-field .section-page {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .section-page, .single-field .section-page {
    padding-bottom: 3.75rem;
  }
}
.single-post .content, .single-field .content {
  flex: 0 0 calc(70% - 20px);
  max-width: calc(70% - 20px);
}
@media only screen and (max-width: 63.99875rem) {
  .single-post .content, .single-field .content {
    flex: 1 !important;
    max-width: 100%;
    padding-left: 20px !important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content, .single-field .content {
    flex: 0 0 100%;
    padding-left: 0 !important;
  }
}
.single-post aside.sidebar, .single-field aside.sidebar {
  flex: 0 0 calc(30% - 15px);
  max-width: calc(30% - 15px);
}
.single-post aside.sidebar, .single-field aside.sidebar {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post aside.sidebar, .single-field aside.sidebar {
    padding-left: 0.9375rem;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .single-post aside.sidebar, .single-field aside.sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.single-post aside.sidebar.sidebar-form, .single-field aside.sidebar.sidebar-form {
  margin-bottom: 20px;
}
.single-post aside.sidebar .sidebar-inner, .single-field aside.sidebar .sidebar-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}
.single-post aside.sidebar .sidebar-inner .sidebar, .single-field aside.sidebar .sidebar-inner .sidebar {
  margin-bottom: 30px;
}
.single-post aside.sidebar .sidebar-inner .sidebar:last-child, .single-field aside.sidebar .sidebar-inner .sidebar:last-child {
  margin-bottom: 0;
}
.single-post .content, .single-field .content {
  width: calc(100% - 372px);
}
.single-post .content, .single-field .content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .content, .single-field .content {
    padding-left: 1.25rem;
  }
}
.single-post .content, .single-field .content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .content, .single-field .content {
    padding-right: 0.9375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content, .single-field .content {
    width: 100%;
  }
}
.single-post .content .box, .single-field .content .box {
  background-color: #fff;
  box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1607843137);
  padding: 25px;
  border-radius: 18px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .box, .single-field .content .box {
    padding: 20px 12px;
  }
}
.single-post .content .box .meta, .single-field .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, .single-field .content .box .meta {
    padding: 5px 0 15px;
  }
}
.single-post .content .box .meta > div, .single-field .content .box .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 .box .meta > div:last-child, .single-field .content .box .meta > div:last-child {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .box .meta > div i, .single-field .content .box .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #101210;
}
.single-post .content .box .meta > div i, .single-field .content .box .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content .box .meta ._author, .single-field .content .box .meta ._author {
  text-transform: capitalize;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .box .meta ._date, .single-field .content .box .meta ._date {
    border-right: unset;
    padding-right: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .box .meta ._time, .single-field .content .box .meta ._time {
    display: none;
  }
}
.single-post .content .heading-title, .single-field .content .heading-title {
  left: unset;
  transform: unset;
  line-height: normal;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700;
}
.single-post .content .heading-title, .single-field .content .heading-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .content .heading-title, .single-field .content .heading-title {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .content .heading-title, .single-field .content .heading-title {
    font-size: 1.5rem;
  }
}
.single-post .content .meta, .single-field .content .meta {
  display: flex;
  align-items: center;
  padding: 5px 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta, .single-field .content .meta {
    padding: 5px 0 15px;
  }
}
.single-post .content .meta > div, .single-field .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, .single-field .content .meta > div:last-child {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .meta > div i, .single-field .content .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #101210;
}
.single-post .content .meta > div i, .single-field .content .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content .meta ._author, .single-field .content .meta ._author {
  text-transform: capitalize;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta ._date, .single-field .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, .single-field .content .meta ._time {
    display: none;
  }
}
.single-post .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .single-field .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .single-field .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6), .single-field .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    font-size: 1.375rem;
  }
}
.single-post .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) b, .single-post .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) strong, .single-field .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) b, .single-field .content article :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) strong {
  font-weight: 600;
}
.single-post .content .content-fix, .single-field .content .content-fix {
  padding: 40px 0;
  text-align: center;
  font-weight: 500;
}
.single-post .content .content-fix .widget_text img, .single-field .content .content-fix .widget_text img {
  width: 200px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .content-fix .widget_text img, .single-field .content .content-fix .widget_text img {
    width: 150px;
  }
}
.single-post .content .content-fix .widget_text strong, .single-field .content .content-fix .widget_text strong {
  color: #00ccff;
}
.single-post .content .content-fix .widget_text strong, .single-field .content .content-fix .widget_text strong {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .content .content-fix .widget_text strong, .single-field .content .content-fix .widget_text strong {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .content .content-fix .widget_text strong, .single-field .content .content-fix .widget_text strong {
    font-size: 1.5rem;
  }
}
.single-post .content .content-fix .widget_text a, .single-field .content .content-fix .widget_text a {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .content .content-fix .widget_text a, .single-field .content .content-fix .widget_text a {
    font-size: 1.25rem;
  }
}
.single-post .content .content-fix .group-btn, .single-field .content .content-fix .group-btn {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .content-fix .group-btn, .single-field .content .content-fix .group-btn {
    flex-wrap: wrap;
  }
}
.single-post .content .content-fix .group-btn .btn, .single-field .content .content-fix .group-btn .btn {
  height: 58px;
  background-color: #00ccff;
  color: #ffffff;
  font-weight: 700;
  border-radius: 30px;
  width: 26%;
}
.single-post .content .content-fix .group-btn .btn, .single-field .content .content-fix .group-btn .btn {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .content .content-fix .group-btn .btn, .single-field .content .content-fix .group-btn .btn {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .content .content-fix .group-btn .btn, .single-field .content .content-fix .group-btn .btn {
    font-size: 1.1875rem;
  }
}
.single-post .content .content-fix .group-btn .btn, .single-field .content .content-fix .group-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .content-fix .group-btn .btn, .single-field .content .content-fix .group-btn .btn {
    width: 33%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .content-fix .group-btn .btn, .single-field .content .content-fix .group-btn .btn {
    width: 80%;
  }
}
.single-post .content .content-fix .group-btn .btn:hover, .single-field .content .content-fix .group-btn .btn:hover {
  background-color: #ffffff;
  text-decoration: none;
  color: #00ccff;
}
.single-post .content .content-fix .group-btn .btn:hover span, .single-field .content .content-fix .group-btn .btn:hover span {
  border-color: #00ccff;
}
.single-post .content .content-fix .group-btn .btn span, .single-field .content .content-fix .group-btn .btn span {
  position: relative;
  height: 50px;
  width: calc(100% - 8px);
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 0 24px;
}
.single-post .content .content-fix .group-btn .btn span, .single-field .content .content-fix .group-btn .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .content-fix .group-btn .btn span, .single-field .content .content-fix .group-btn .btn span {
    line-height: normal;
  }
}
.single-post .content .hashtags, .single-field .content .hashtags {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .hashtags .hashtag-links, .single-field .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, .single-field .content .hashtags .hashtag-links i {
  margin-right: 20px;
  font-style: normal;
}
.single-post .content .hashtags .hashtag-links i::before, .single-field .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, .single-field .content .hashtags .hashtag-links i::before {
  font-size: 0.875rem;
}
.single-post .content .hashtags .hashtag-links a, .single-field .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, .single-field .content .hashtags .hashtag-links a {
  font-size: 0.875rem;
}
.single-post .content .hashtags .hashtag-links a:hover, .single-field .content .hashtags .hashtag-links a:hover {
  background: #00ccff;
  color: #ffffff;
}
.single-post .section-related-post .container, .single-field .section-related-post .container {
  padding-left: 0;
  padding-right: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide, .single-field .section-related-post .swiper-container .swiper-slide {
  width: 33.3333333333%;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-container .swiper-slide, .single-field .section-related-post .swiper-container .swiper-slide {
    width: 50%;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content, .single-field .section-related-post .swiper-container .swiper-slide .content {
  width: 100%;
  padding-top: 10px;
  padding-left: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a, .single-field .section-related-post .swiper-container .swiper-slide .content .title a {
  color: #000000;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a, .single-field .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, .single-field .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 .excerpt, .single-field .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, .single-field .section-related-post .swiper-container .swiper-slide .content .excerpt {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-prev, .single-field .section-related-post .swiper-controls .swiper-button.swiper-button-prev {
    left: -12px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-next, .single-field .section-related-post .swiper-controls .swiper-button.swiper-button-next {
    right: -12px;
  }
}

/* PAGE CONTACT US */
.page-contact-us {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-contact-us {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-contact-us {
    padding-top: 2.5rem;
  }
}
.page-contact-us {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-contact-us {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-contact-us {
    padding-bottom: 2.5rem;
  }
}
.page-contact-us .flex-info {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}
.page-contact-us .flex-info .cell {
  flex: 0 0 100%;
  max-width: 100%;
}
.page-contact-us .flex-info .cell iframe {
  border: unset;
  box-shadow: unset;
}
.page-contact-us .flex-info .cell ._contact_title :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .page-contact-us .flex-info .cell ._contact_title :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-contact-us .flex-info .cell ._contact_title :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    font-size: 2.5rem;
  }
}
.page-contact-us .flex-info .cell ._contact_form form .form-group {
  display: grid;
  margin-bottom: 15px;
}
.page-contact-us .flex-info .cell ._contact_form form .form-group {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}
@media only screen and (min-width: 48rem) {
  .page-contact-us .flex-info .cell ._contact_form form .form-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .flex-info .cell ._contact_form form .form-group {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-contact-us .flex-info .cell ._contact_form form .form-email, .page-contact-us .flex-info .cell ._contact_form form .form-message, .page-contact-us .flex-info .cell ._contact_form form .form-submit {
  margin-bottom: 15px;
}
.page-contact-us .flex-info .cell ._contact_form form [type=text], .page-contact-us .flex-info .cell ._contact_form form [type=password], .page-contact-us .flex-info .cell ._contact_form form [type=date], .page-contact-us .flex-info .cell ._contact_form form [type=datetime], .page-contact-us .flex-info .cell ._contact_form form [type=datetime-local], .page-contact-us .flex-info .cell ._contact_form form [type=month], .page-contact-us .flex-info .cell ._contact_form form [type=week], .page-contact-us .flex-info .cell ._contact_form form [type=email], .page-contact-us .flex-info .cell ._contact_form form [type=number], .page-contact-us .flex-info .cell ._contact_form form [type=search], .page-contact-us .flex-info .cell ._contact_form form [type=tel], .page-contact-us .flex-info .cell ._contact_form form [type=time], .page-contact-us .flex-info .cell ._contact_form form [type=url], .page-contact-us .flex-info .cell ._contact_form form [type=color] {
  box-shadow: unset;
  border: 1px solid #E9E9E9;
  font-size: 14px;
  line-height: 14px;
  text-indent: 10px;
  border-radius: 10px;
  height: 50px;
  width: 100%;
}
.page-contact-us .flex-info .cell ._contact_form form textarea {
  box-shadow: unset;
  border: 1px solid #E9E9E9;
  font-size: 14px;
  line-height: 14px;
  padding: 10px;
  border-radius: 10px;
  height: 200px;
  width: 100%;
}
.page-contact-us .flex-info .cell ._contact_form form input::-webkit-input-placeholder, .page-contact-us .flex-info .cell ._contact_form form textarea::-webkit-input-placeholder {
  color: #5F5F5F;
}
.page-contact-us .flex-info .cell ._contact_form form input::placeholder, .page-contact-us .flex-info .cell ._contact_form form textarea::placeholder {
  color: #5F5F5F;
}
.page-contact-us .flex-info .cell ._contact_form form .form-submit {
  position: relative;
  display: inline-flex;
}
.page-contact-us .flex-info .cell ._contact_form form .form-submit input {
  width: 100%;
  background: #e60000;
  box-shadow: unset;
  border: unset;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  border-radius: 10px;
  transition: 0.4s;
  font-weight: 400;
  padding: 15px 35px;
}
.page-contact-us .flex-info .cell ._contact_form form .form-submit input:hover {
  transform: translateY(-5px);
}
.page-contact-us .flex-info .cell ._contact_form form .form-submit .wpcf7-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.page-contact-us .flex-info .cell ._contact_address {
  display: grid;
  margin-top: 30px;
}
.page-contact-us .flex-info .cell ._contact_address {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-contact-us .flex-info .cell ._contact_address {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .flex-info .cell ._contact_address {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-contact-us .flex-info .cell ._contact_address ._item {
  display: flex;
  gap: 10px;
  grid-gap: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.page-contact-us .flex-info .cell ._contact_address ._item:last-child {
  margin-bottom: 0;
}
.page-contact-us .flex-info .cell ._contact_address ._item ._svg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00ccff;
  border-radius: 100%;
  flex: 0 0 41px;
  max-width: 41px;
}
.page-contact-us .flex-info .cell ._contact_address ._item ._svg {
  width: 2.5625rem;
  height: 2.5625rem;
}
.page-contact-us .flex-info .cell ._contact_address ._item ._svg svg {
  width: 15px;
}
.page-contact-us .flex-info .cell ._contact_address ._item ._svg i {
  font-size: 20px;
  color: #ffffff;
}
.page-contact-us .flex-info .cell ._contact_address ._item ._title {
  flex: 1;
  font-size: 14px;
  line-height: 16px;
}
.page-contact-us .flex-info .cell ._contact_address ._item ._title strong {
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
  margin-top: 5px;
  display: block;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap {
  margin-top: 30px;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  .page-contact-us .flex-info .cell .hb_mxh_wrap {
    display: flex;
  }
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_title_small {
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_mxh {
  display: flex;
  align-items: center;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_mxh {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_mxh ._item {
  position: relative;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_mxh ._item ._images {
  margin-bottom: 0;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_mxh ._item ._images {
  width: 1.875rem;
  height: 1.875rem;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_mxh ._item ._images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-contact-us .flex-info .cell .hb_mxh_wrap ._contact_mxh ._item a {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.page-contact-us .flex-info .cell-map {
  line-height: 1;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (min-width: 64rem) {
  .page-contact-us .flex-info .cell-left {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 64rem) {
  .page-contact-us .flex-info .cell-right {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/** */
@media screen and (min-width: 1537px) {
  .container {
    max-width: 1612px !important;
  }
}
/** */
.cell-images {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cell-images .img {
  display: block;
  width: 100%;
  height: 100%;
}
.cell-images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 63.99875rem) {
  .cell-images .desktop-img {
    display: none;
  }
}
@media only screen and (min-width: 64rem) {
  .cell-images .mobile-img {
    display: none;
  }
}

/** */
section.section {
  position: relative;
}

/** */
@-webkit-keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.page-template-default .section-breadcrumb {
  display: none;
}
.page-template-default h1.heading-title {
  display: none;
}
.page-template-default .section.section-page {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-default .section.section-page {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-default .section.section-page {
    padding-top: 2.5rem;
  }
}
.page-template-default .section.section-page {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-default .section.section-page {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-default .section.section-page {
    padding-bottom: 2.5rem;
  }
}
.page-template-default .section.section-page strong {
  font-weight: 700;
}

.breadcrumb-design .breadcrumb-nav {
  margin-bottom: 10px;
}
.breadcrumb-design .breadcrumb-nav #breadcrumbs {
  padding: 0;
  margin: 0;
  display: flex;
  list-style-type: none;
}
.breadcrumb-design .breadcrumb-nav #breadcrumbs li {
  color: #000000;
  font-weight: 400;
  position: relative;
  font-size: 13px;
}
.breadcrumb-design .breadcrumb-nav #breadcrumbs li a.home {
  color: #00ccff;
}
.breadcrumb-design .breadcrumb-nav #breadcrumbs li:not(:first-child)::before {
  content: "/";
  font-weight: 300;
  margin: 0 5px;
}
.breadcrumb-design ._page_title {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #1f2022;
  margin-bottom: 16px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 12px;
}
.breadcrumb-design ._page_title::after {
  content: "";
  position: absolute;
  width: 27px;
  background: #161616;
  height: 1px;
  margin: 9px;
}

/** */
.wp-comments-area.comments-area {
  border: 1px solid #DBE1E9;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .wp-comments-area.comments-area {
    padding: 12px;
    border-radius: 12px;
  }
}
.wp-comments-area.comments-area .comments-title {
  font-family: "Inter", sans-serif;
  color: #000914;
}
.wp-comments-area.comments-area .comments-title span {
  font-weight: 400;
}
.wp-comments-area.comments-area .fs-16.medium.block {
  font-weight: 700;
  color: #000914;
}
.wp-comments-area.comments-area .no-icons {
  color: #718093;
  text-align: center;
  margin-bottom: 0;
}
.wp-comments-area.comments-area .no-icons {
  font-size: 2.5rem;
}
@media only screen and (max-width: 47.99875rem) {
  .wp-comments-area.comments-area .no-icons {
    font-size: 1.5rem;
  }
}
.wp-comments-area.comments-area .no-comments {
  color: #2A3645;
  text-align: center;
}
.wp-comments-area.comments-area .comment-respond .comment-reply-title, .wp-comments-area.comments-area .comment-respond ._label_title, .wp-comments-area.comments-area .comment-respond .comment-notes {
  display: none;
}
.wp-comments-area.comments-area .comment-respond form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.wp-comments-area.comments-area .comment-respond form .comment-form-comment, .wp-comments-area.comments-area .comment-respond form .form-submit {
  flex: 0 0 100%;
  max-width: 100%;
}
.wp-comments-area.comments-area .comment-respond form .comment-form-author, .wp-comments-area.comments-area .comment-respond form .comment-form-email {
  flex: 0 0 49%;
  max-width: 49%;
}
@media only screen and (max-width: 47.99875rem) {
  .wp-comments-area.comments-area .comment-respond form .comment-form-author, .wp-comments-area.comments-area .comment-respond form .comment-form-email {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.wp-comments-area.comments-area .comment-respond form textarea {
  background: #F6F9FF;
  border-radius: 8px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 21px;
  font-style: italic;
  border: unset;
  width: 100%;
  font-size: 14px;
}
.wp-comments-area.comments-area .comment-respond form input#author {
  line-height: 21px;
  font-style: italic;
  padding-left: 10px;
  padding-right: 10px;
  background: #F6F9FF;
  border-radius: 8px;
  width: 100%;
  border: unset;
  height: 45px;
  font-size: 14px;
}
.wp-comments-area.comments-area .comment-respond form input#email {
  line-height: 21px;
  font-style: italic;
  padding-left: 10px;
  padding-right: 10px;
  background: #F6F9FF;
  border-radius: 8px;
  width: 100%;
  border: unset;
  height: 45px;
  font-size: 14px;
}
.wp-comments-area.comments-area .comment-respond form .form-submit {
  text-align: center;
}
.wp-comments-area.comments-area .comment-respond form .form-submit button {
  padding: 15px 25px;
  background: #F1F7FF;
  border: unset;
  box-shadow: unset;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.4s;
}
.wp-comments-area.comments-area .comment-respond form .form-submit button:hover {
  background: #00ccff;
  transform: translateY(-5px);
}
.wp-comments-area.comments-area .comment-list {
  list-style: none;
  margin: 0;
  padding-top: 15px;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-avatar {
  border-radius: 100%;
  overflow: hidden;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-info span {
  display: block;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-info .comment-author {
  text-transform: capitalize;
  font-weight: 600;
  color: #000914;
  font-size: 14px;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-info .comment-date {
  font-size: 12px;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-content {
  flex: 0 0 100%;
  max-width: 100%;
}
.wp-comments-area.comments-area .comment-list .comment .comment-body .comment-awaiting-moderation {
  flex: 0 0 100%;
  max-width: 100%;
}

/** */
.page-video {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-video {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-video {
    padding-top: 3.75rem;
  }
}
.page-video .flex-info .cell {
  width: 100%;
}
.page-video .flex-info .cell ._item {
  position: relative;
  transition: 0.4s;
}
.page-video .flex-info .cell ._item ._images {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
}
.page-video .flex-info .cell ._item ._images::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18.27%, rgba(0, 0, 0, 0.59) 100%);
  content: "";
}
.page-video .flex-info .cell ._item ._images::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.page-video .flex-info .cell ._item ._images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-video .flex-info .cell ._item ._title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 2;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
}
.page-video .flex-info .cell ._item ._title {
  font-size: 0.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell ._item ._title {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-video .flex-info .cell ._item ._title {
    font-size: 1.125rem;
  }
}
.page-video .flex-info .cell ._item ._icon_play {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00ccff;
  background: #ffffff;
  border-radius: 100%;
}
.page-video .flex-info .cell ._item ._icon_play {
  width: 3.4375rem;
  height: 3.4375rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-video .flex-info .cell ._item ._icon_play {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.page-video .flex-info .cell ._item ._icon_play i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 57px;
}
.page-video .flex-info .cell ._item ._icon_play i {
  width: 3.4375rem;
  height: 3.4375rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-video .flex-info .cell ._item ._icon_play i {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.page-video .flex-info .cell ._item ._icon_play::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: #fff;
  opacity: 0;
  z-index: -1;
  animation: sonarWave 1.5s linear infinite;
}
.page-video .flex-info .cell ._item a {
  z-index: 3;
}
.page-video .flex-info .cell ._item a {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.page-video .flex-info .cell ._item:hover {
  transform: translateY(-5px);
}
.page-video .flex-info .cell-left {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-left {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-video .flex-info .cell-left {
    padding-bottom: 3.75rem;
  }
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-left ._list_video {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .page-video .flex-info .cell-left ._list_video {
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-left ._list_video ._item {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-video .flex-info .cell-left ._list_video ._item {
    margin-bottom: 20px;
  }
  .page-video .flex-info .cell-left ._list_video ._item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-left ._list_video ._item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.page-video .flex-info .cell-left ._list_video ._item:first-child ._images::after {
  display: none;
}
.page-video .flex-info .cell-left ._list_video ._item:first-child ._title {
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 15px;
  padding: 20px 15px;
  background: #00ccff;
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-left ._list_video ._item:first-child ._title {
    font-size: 25px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-video .flex-info .cell-left ._list_video ._item:first-child ._title {
    padding: 10px 15px;
  }
}
.page-video .flex-info .cell-left ._list_video ._item:first-child ._icon_play {
  color: #ffffff;
  background: #00ccff;
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-left ._list_video ._item:first-child ._icon_play i {
    font-size: 72px;
  }
}
.page-video .flex-info .cell-left ._list_video ._item:first-child ._icon_play::after {
  background-color: #00ccff;
}
.page-video .flex-info .cell-right {
  background: #F3F3F3;
}
.page-video .flex-info .cell-right {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-right {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-video .flex-info .cell-right {
    padding-top: 3.75rem;
  }
}
.page-video .flex-info .cell-right {
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 48rem) {
  .page-video .flex-info .cell-right {
    padding-bottom: 3.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-video .flex-info .cell-right {
    padding-bottom: 5rem;
  }
}
.page-video .flex-info .cell-right ._slide_video .swiper-wrapper {
  padding: 2px;
}
.page-video .flex-info .cell-right ._slide_video .swiper-slide {
  width: 33.3333333333%;
  padding: 0 10px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-video .flex-info .cell-right ._slide_video .swiper-slide {
    width: 100%;
  }
}
.page-video .flex-info .cell-right ._slide_video .swiper-slide ._item {
  width: 100%;
  height: 100%;
}
.page-video .flex-info .cell-right ._slide_video .swiper-controls .swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  margin-top: 0;
  bottom: -35px;
}
.page-video .flex-info .cell-right ._slide_video .swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #00ccff;
  box-shadow: 0 0 0 2px #00ccff;
}
.page-video .flex-info .cell-right ._slide_video .swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.3125rem;
  background-color: #002956;
  box-shadow: 0 0 0 2px #002956;
}

/** */
.page-library {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-library {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-library {
    padding-top: 3.75rem;
  }
}
.page-library {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-library {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-library {
    padding-bottom: 3.75rem;
  }
}
.page-library .flex-info .cell {
  width: 100%;
}
.page-library .flex-info .cell-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.page-library .flex-info .cell-list {
  grid-gap: 1.875rem;
  gap: 1.875rem;
}
@media only screen and (max-width: 63.99875rem) {
  .page-library .flex-info .cell-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-library .flex-info .cell-list {
    grid-gap: 0.9375rem;
    gap: 0.9375rem;
  }
}
.page-library .flex-info .cell-list ._item {
  position: relative;
  transition: 0.4s;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 47.99875rem) {
  .page-library .flex-info .cell-list ._item {
    border-radius: 10px;
  }
}
.page-library .flex-info .cell-list ._item ._images {
  margin-bottom: 0;
  aspect-ratio: 4/3;
}
.page-library .flex-info .cell-list ._item ._images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-library .flex-info .cell-list ._item ._cover_content {
  padding: 20px;
  background: #00ccff;
}
@media only screen and (max-width: 47.99875rem) {
  .page-library .flex-info .cell-list ._item ._cover_content {
    padding: 8px;
  }
}
.page-library .flex-info .cell-list ._item ._cover_content ._title {
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 600;
}
.page-library .flex-info .cell-list ._item ._cover_content ._title {
  font-size: 0.875rem;
}
@media only screen and (min-width: 48rem) {
  .page-library .flex-info .cell-list ._item ._cover_content ._title {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-library .flex-info .cell-list ._item ._cover_content ._title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 48rem) {
  .page-library .flex-info .cell-list ._item ._cover_content ._title {
    line-height: 32px;
  }
}
@media only screen and (min-width: 64rem) {
  .page-library .flex-info .cell-list ._item ._cover_content ._title {
    line-height: 42px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-library .flex-info .cell-list ._item ._cover_content ._title {
    line-height: 24px;
  }
}
.page-library .flex-info .cell-list ._item a._button {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.page-library .flex-info .cell-list ._item:hover {
  transform: translateY(-5px);
}
.page-library .flex-info .cell-list ._item:hover ._cover_content {
  background: #e60000;
}
/** */
.posts_shortcode {
  margin-top: 15px;
}
.posts_shortcode .posts_shortcode_inner ._images {
  width: auto;
  height: 120px;
  margin: 0 auto 20px;
}
.posts_shortcode .posts_shortcode_inner ._images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.posts_shortcode .posts_shortcode_inner ._title {
  line-height: 37px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  color: #000000;
}
.posts_shortcode .posts_shortcode_inner ._title {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .posts_shortcode .posts_shortcode_inner ._title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .posts_shortcode .posts_shortcode_inner ._title {
    font-size: 1.5rem;
  }
}
.posts_shortcode .posts_shortcode_inner ._desc {
  text-align: center;
}
@media only screen and (min-width: 48rem) {
  .posts_shortcode .posts_shortcode_inner ._desc {
    width: 80%;
    margin: 0 auto;
  }
}
.posts_shortcode .posts_shortcode_inner ._desc a {
  line-height: 30px;
  font-weight: 700;
  color: #F1F7FF;
}
.posts_shortcode .posts_shortcode_inner ._desc a {
  font-size: 1.25rem;
}
.posts_shortcode .posts_shortcode_inner ._desc a strong {
  font-weight: 700 !important;
}
.posts_shortcode .posts_shortcode_inner ._button {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 20px auto 0;
}
.posts_shortcode .posts_shortcode_inner ._button {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}
@media only screen and (max-width: 47.99875rem) {
  .posts_shortcode .posts_shortcode_inner ._button {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
.posts_shortcode .posts_shortcode_inner ._button ._item {
  position: relative;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: #ffffff;
  border-radius: 30px;
  padding: 1px;
  overflow: hidden;
  border: 5px solid #00ccff;
  transition: 0.4s;
}
.posts_shortcode .posts_shortcode_inner ._button ._item {
  font-size: 1.25rem;
}
@media only screen and (max-width: 47.99875rem) {
  .posts_shortcode .posts_shortcode_inner ._button ._item {
    line-height: 20px;
  }
  .posts_shortcode .posts_shortcode_inner ._button ._item {
    font-size: 1rem;
  }
}
.posts_shortcode .posts_shortcode_inner ._button ._item ._item_inner {
  background: #00ccff;
  border-radius: 30px;
  padding: 13px 10px;
}
.posts_shortcode .posts_shortcode_inner ._button ._item a {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.posts_shortcode .posts_shortcode_inner ._button ._item:hover {
  transform: translateY(-5px);
}

@media only screen and (max-width: 47.99875rem) {
  .cd-popup-container {
    max-width: 90% !important;
    width: 95%;
    padding: 20px !important;
  }
}
.cd-popup-container .hb_title {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #00ccff;
  line-height: 52px;
  font-weight: 700;
}
.cd-popup-container .hb_title {
  font-size: 2.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .cd-popup-container .hb_title {
    line-height: 42px;
  }
  .cd-popup-container .hb_title {
    font-size: 2rem;
  }
}
.cd-popup-container .hb_title::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 82px;
  height: 2px;
  background: #00ccff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.cd-popup-container form .form-desc a {
  color: #F1F7FF;
  font-weight: 700;
}

/** */
.feature-posts {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .feature-posts {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .feature-posts {
    padding-top: 3.75rem;
  }
}
.feature-posts ._feature_title {
  margin-bottom: 30px;
}
.feature-posts ._feature_title::before, .feature-posts ._feature_title::after {
  display: none;
}
@media only screen and (max-width: 47.99875rem) {
  .feature-posts ._feature_title {
    margin-bottom: 15px;
  }
}
.feature-posts .feature-posts-lists .carousel-posts .swiper-wrapper {
  padding: 2px;
}
.feature-posts .feature-posts-lists .carousel-posts .swiper-slide {
  width: 25%;
  padding: 0 15px;
}
@media only screen and (max-width: 47.99875rem) {
  .feature-posts .feature-posts-lists .carousel-posts .swiper-slide {
    width: 100%;
    padding: 0 10px;
  }
}
.feature-posts .feature-posts-lists .carousel-posts .item {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 15px;
  overflow: hidden;
}
.feature-posts .feature-posts-lists .carousel-posts .item .cover {
  border-radius: 15px;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content {
  padding: 15px;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content ._date {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #002956;
  margin-bottom: 10px;
  display: block;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content ._date i {
  margin-right: 10px;
  color: #00ccff;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content .title {
  margin-bottom: 10px;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content .title a {
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .feature-posts .feature-posts-lists .carousel-posts .item .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.feature-posts .feature-posts-lists .carousel-posts .item .content .title a {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .feature-posts .feature-posts-lists .carousel-posts .item .content .title a {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .feature-posts .feature-posts-lists .carousel-posts .item .content .title a {
    font-size: 1.25rem;
  }
}
.feature-posts .feature-posts-lists .carousel-posts .item .content .title a:hover {
  color: #00ccff;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content .excerpt {
  color: #696969;
  font-size: 14px;
  font-weight: 400;
}
.feature-posts .feature-posts-lists .carousel-posts .item .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .feature-posts .feature-posts-lists .carousel-posts .item .content .excerpt {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.feature-posts .feature-posts-lists .carousel-posts .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-prev {
  left: -6px;
}
@media only screen and (max-width: 47.99875rem) {
  .feature-posts .feature-posts-lists .carousel-posts .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-prev {
    left: 15px;
  }
}
.feature-posts .feature-posts-lists .carousel-posts .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-next {
  right: -6px;
}
@media only screen and (max-width: 47.99875rem) {
  .feature-posts .feature-posts-lists .carousel-posts .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-next {
    right: 15px;
  }
}

/** */
.hb_mission_vision {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .hb_mission_vision {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .hb_mission_vision {
    padding-top: 3.75rem;
  }
}
.hb_mission_vision {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .hb_mission_vision {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .hb_mission_vision {
    padding-bottom: 3.75rem;
  }
}
.hb_mission_vision .flex-info .cell {
  width: 100%;
}
.hb_mission_vision .flex-info .cell-right ._list ._item {
  background: #00ccff;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
}
@media only screen and (max-width: 47.99875rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item {
    flex-flow: row wrap;
  }
}
.hb_mission_vision .flex-info .cell-right ._list ._item:last-child {
  margin-bottom: 0;
}
.hb_mission_vision .flex-info .cell-right ._list ._item:nth-child(2n) {
  flex-direction: row-reverse;
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._image {
  margin-bottom: 0;
  border-radius: 25px;
  overflow: hidden;
}
@media only screen and (min-width: 48rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._image {
    flex: 0 0 47%;
    max-width: 47%;
  }
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._content {
  color: #ffffff;
}
@media only screen and (min-width: 48rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._content {
    padding: 10px;
  }
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
  font-weight: 600;
  line-height: 49px;
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
    font-size: 2.1875rem;
  }
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
    margin-bottom: 0.9375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .hb_mission_vision .flex-info .cell-right ._list ._item ._content ._title {
    line-height: 32px;
  }
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._content ._desc {
  text-align: justify;
}
.hb_mission_vision .flex-info .cell-right ._list ._item ._content ._desc p {
  line-height: 31px;
}

/** */
.hb_trip_about {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .hb_trip_about {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .hb_trip_about {
    padding-top: 3.75rem;
  }
}
.hb_trip_about {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .hb_trip_about {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .hb_trip_about {
    padding-bottom: 3.75rem;
  }
}
.hb_trip_about .flex-info .cell {
  width: 100%;
}
.hb_trip_about .flex-info .cell-left .heading-title::before, .hb_trip_about .flex-info .cell-left .heading-title::after {
  display: none;
}
.hb_trip_about .flex-info .cell-left ._desc {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 39.99875rem) {
  .hb_trip_about .flex-info .cell-right .swiper-container {
    width: 100%;
  }
}
.hb_trip_about .flex-info .cell-right .swiper-container .swiper.swiper-initialized ~ .swiper-controls .swiper-button {
  top: 47.5%;
  transform: translateY(-47.5%);
}
@media only screen and (max-width: 47.99875rem) {
  .hb_trip_about .flex-info .cell-right .swiper-container .swiper.swiper-initialized ~ .swiper-controls .swiper-button {
    display: none;
  }
}
.hb_trip_about .flex-info .cell-right .swiper-container .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-prev {
  left: -45px;
}
@media only screen and (max-width: 63.99875rem) {
  .hb_trip_about .flex-info .cell-right .swiper-container .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-prev {
    left: 60px;
  }
}
.hb_trip_about .flex-info .cell-right .swiper-container .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-next {
  right: -45px;
}
@media only screen and (max-width: 63.99875rem) {
  .hb_trip_about .flex-info .cell-right .swiper-container .swiper.swiper-initialized ~ .swiper-controls .swiper-button.swiper-button-next {
    right: 60px;
  }
}
.hb_trip_about .flex-info .cell-right .swiper-container .swiper-controls .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 5px;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
}
@media only screen and (min-width: 48rem) {
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
@media only screen and (min-width: 64rem) {
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 48rem) {
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide:nth-child(2n) ._item ._content {
    justify-content: end;
  }
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide:nth-child(2n+1) ._item {
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
  }
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide:nth-child(2n+1) ._item ._image {
    padding-top: 40px;
    padding-bottom: 0px;
  }
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide:nth-child(2n+1) ._item ._content {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item {
  grid-gap: 2.5rem;
  gap: 2.5rem;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._image {
  margin-bottom: 0;
  padding: 0 30px 40px 30px;
}
@media only screen and (min-width: 80rem) {
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._image {
    aspect-ratio: 16/9;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._image {
    padding: 0;
    aspect-ratio: 4/3;
  }
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._image img {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._svg {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  color: #00ccff;
  margin-bottom: 15px;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 20px;
  padding-top: 40px;
  display: flex;
  -webkit-flex: auto;
  flex: auto;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._title {
  font-size: 20px;
  line-height: 29px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 15px;
  color: #00ccff;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item ._desc p {
  line-height: 25px;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item .line {
  width: 100%;
  background: #000000;
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item .line .line-border {
  width: 1.375rem;
  height: 1.375rem;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #000000;
  transform: translateX(-50%);
  position: absolute;
  top: -10px;
  left: 50%;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide ._item .line .line-border::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide.swiper-slide-active ._item .line .line-border {
  border: 1px solid #00ccff;
}
.hb_trip_about .flex-info .cell-right .w-swiper .swiper-wrapper .swiper-slide.swiper-slide-active ._item .line .line-border::after {
  background: #00ccff;
}

/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */
/** */