@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: #064DA1;
  --Primary-02: #EB6C00;
  --Primary-03: #FF0006;
  --Primary-04: #E5FBFF;
  --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: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-optical-sizing: auto;
}
body {
  font-size: 0.9375rem;
  line-height: 1.516875rem;
}
@media screen and (min-width: 40rem) {
  body {
    font-size: calc(0.9375rem + 0.0011160714 * (100vw - 40rem));
    line-height: calc(1.516875rem + 0.0018058036 * (100vw - 40rem));
  }
}
@media screen and (min-width: 96rem) {
  body {
    font-size: 1rem;
    line-height: 1.618rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-font {
  font-family: "Mulish", -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: 83.75rem) {
  .xl\:hidden {
    display: none;
  }
}

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

.flex {
  display: flex;
}

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

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

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

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

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

.grid {
  display: grid;
}

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

.block {
  display: block;
}

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

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

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

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.res {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.res > img:first-child {
  display: block;
}
.res > img:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.res:not(.auto) > img:first-child {
  height: 100% !important;
  width: 100%;
  max-width: unset;
  object-fit: cover;
  object-position: center;
}
.res.auto > img {
  height: auto !important;
  width: auto !important;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}
.res.scale {
  transform: scale(1.0001);
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
}
.res.scale:hover {
  transform: scale(1.06);
  opacity: 1;
}
.res :where(iframe, embed, object, video) {
  border: 0;
}
.res :where(iframe, embed, object, video) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.res.after-overlay::after {
  background: transparent;
  content: "";
  -webkit-user-select: none;
          user-select: none;
  z-index: 1;
}
.res.after-overlay::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.res.after-overlay > img {
  -webkit-user-select: none;
          user-select: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#inside-header {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1882352941);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header {
    padding: 12px 0;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #inside-header {
    padding: 8px 0;
  }
}
#inside-header.w-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
}
#inside-header.w-sticky.hide-header {
  transform: translateY(-100%);
}
#inside-header .cell.cell-logo {
  display: flex;
  align-items: center;
}
#inside-header .cell.cell-logo {
  padding-right: 0.3125rem;
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-logo {
    padding-right: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-logo {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media only screen and (min-width: 83.75rem) {
  #inside-header .cell.cell-logo {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-logo {
    flex: 0 0 35%;
    max-width: 35%;
  }
}
#inside-header .cell.cell-inf {
  flex: auto;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#inside-header .cell.cell-inf .top {
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 0;
  border-bottom: 0.7px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(270deg, #FFFFFF 0%, #DEDEDE 32.21%, #C3C3C3 100%);
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .top {
    display: none;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .top .social-menu {
    display: none;
  }
}
#inside-header .cell.cell-inf .top .social-menu li {
  margin-right: 8px;
}
#inside-header .cell.cell-inf .top .social-menu li:last-child {
  margin-right: 0;
}
#inside-header .cell.cell-inf .top .social-menu li a {
  padding: 0;
  border: 1px solid #064DA1;
  border-radius: 50%;
  color: #064DA1;
  background-color: #ffffff;
}
#inside-header .cell.cell-inf .top .social-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell.cell-inf .top .social-menu li a {
  width: 1.875rem;
  height: 1.875rem;
}
#inside-header .cell.cell-inf .top .social-menu li a:hover {
  background-color: #064DA1;
  color: #ffffff;
}
#inside-header .cell.cell-inf .top .social-menu li a span {
  display: none;
}
#inside-header .cell.cell-inf .top .top-phone {
  position: relative;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .top .top-phone {
    display: none;
  }
}
#inside-header .cell.cell-inf .top .top-phone::before, #inside-header .cell.cell-inf .top .top-phone::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 60%;
  background-color: #064DA1;
  top: 50%;
  transform: translateY(-50%);
}
#inside-header .cell.cell-inf .top .top-phone::before {
  left: -15px;
}
#inside-header .cell.cell-inf .top .top-phone::after {
  right: -15px;
}
#inside-header .cell.cell-inf .top .top-phone a {
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #064DA1;
}
#inside-header .cell.cell-inf .top .top-phone a i {
  margin-right: 8px;
}
#inside-header .cell.cell-inf .top .top-phone a:hover {
  color: #EB6C00;
}
#inside-header .cell.cell-inf .top .btn-support {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #064DA1;
  font-weight: 700;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .top .btn-support {
    display: none;
  }
}
#inside-header .cell.cell-inf .top .btn-support:hover span {
  color: #EB6C00;
}
#inside-header .cell.cell-inf .top .btn-support img {
  width: 18px;
}
#inside-header .cell.cell-inf .bot {
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-inf .bot {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .bot {
    padding: 0;
  }
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-inf .bot > .nav {
    display: none;
  }
}
#inside-header .cell.cell-inf .bot > .nav ul.menu li a {
  color: #064DA1;
  font-size: 15px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
}
#inside-header .cell.cell-inf .bot > .nav ul.menu li a:hover, #inside-header .cell.cell-inf .bot > .nav ul.menu li a[aria-current=page] {
  color: #EB6C00;
}
#inside-header .cell.cell-inf .bot > .nav ul.menu li a:hover::after, #inside-header .cell.cell-inf .bot > .nav ul.menu li a[aria-current=page]::after {
  border-color: #EB6C00 transparent transparent;
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-inf .bot > .nav ul.menu li a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 83.75rem) {
  #inside-header .cell.cell-inf .bot > .nav ul.menu li a {
    font-size: 15px;
  }
}
#inside-header .cell.cell-inf .bot > .nav ul.menu li ul.is-dropdown-submenu {
  min-width: -webkit-max-content;
  min-width: max-content;
  border: none;
  top: calc(100% + 1px);
}
#inside-header .cell.cell-inf .bot > .nav ul.menu li ul.is-dropdown-submenu li {
  border-bottom: 1px solid #064DA1;
}
#inside-header .cell.cell-inf .bot > .nav ul.menu li ul.is-dropdown-submenu li a {
  line-height: 20px;
}
#inside-header .cell.cell-inf .bot .dropdown-search {
  padding: 0 25px;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .bot .dropdown-search {
    padding: 0 20px 0 0;
  }
}
#inside-header .cell.cell-inf .bot .dropdown-search .trigger-s {
  font-size: 15px;
  color: #064DA1;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .bot .dropdown-search .trigger-s {
    background: #064DA1;
    border-radius: 50%;
    color: #ffffff;
  }
  #inside-header .cell.cell-inf .bot .dropdown-search .trigger-s {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  #inside-header .cell.cell-inf .bot .dropdown-search .trigger-s {
    width: 1.875rem;
    height: 1.875rem;
  }
}
#inside-header .cell.cell-inf .bot .dropdown-search .trigger-s span {
  display: none;
}
#inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
  left: 15px !important;
  right: 15px !important;
  width: calc(100% - 30px);
  padding: 0;
  font-size: 15px;
  border: none;
  background: none;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px);
  }
}
#inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container {
  position: relative;
  background-color: #fff;
  border: 1px solid #D9DBF5;
  box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.2);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
#inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 768px;
  }
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1024px;
  }
}
@media only screen and (min-width: 83.75rem) {
  #inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1340px;
  }
}
#inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
}
#inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
#inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] > span {
  display: none;
}
#inside-header .cell.cell-inf .bot .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container .trigger-s-close {
  display: none;
}
@media only screen and (max-width: 63.99875rem) {
  #inside-header .cell.cell-inf .bot .header-lang {
    padding: 0 15px 0 10px;
    display: none;
  }
}
#inside-header .cell.cell-inf .bot .header-lang a.glink {
  display: flex;
}
#inside-header .cell.cell-inf .bot .header-lang a.glink span {
  display: none;
}
#inside-header .cell.cell-inf .bot .header-lang .gt_white_content {
  width: 210px;
}
#inside-header .cell.cell-inf .bot .header-lang .gt_white_content a.glink {
  align-items: center;
}
#inside-header .cell.cell-inf .bot .header-lang .gt_white_content a.glink span {
  display: block !important;
  padding-left: 5px;
}

.site-footer {
  position: relative;
  background-color: #094791;
}

#footer-columns {
  padding: 60px 0 30px;
  color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns {
    padding-top: 40px;
  }
}
#footer-columns .footer-logo {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #5EA8FF;
}
#footer-columns .footer-logo img {
  height: 65px;
  object-fit: contain;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .footer-logo img {
    height: 50px;
  }
}
#footer-columns .footer-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}
#footer-columns .footer-title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .footer-title {
    font-size: 1.25rem;
  }
}
#footer-columns .row {
  margin: 0 -15px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .row {
    margin: 0;
  }
}
#footer-columns .row .cell {
  padding: 0 15px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .row .cell {
    margin-bottom: 30px;
    padding: 0;
  }
  #footer-columns .row .cell:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #footer-columns .row .cell {
    padding: 0;
  }
}
#footer-columns .row .cell.footer-contact {
  width: 40%;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .row .cell.footer-contact {
    width: 100%;
  }
}
#footer-columns .row .cell.footer-contact .lists {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#footer-columns .row .cell.footer-contact .lists .item {
  margin-bottom: 15px;
  align-items: center;
}
#footer-columns .row .cell.footer-contact .lists .item:last-child {
  margin-bottom: 0;
}
#footer-columns .row .cell.footer-contact .lists .item .address {
  margin-bottom: 15px;
  font-weight: 400;
}
#footer-columns .row .cell.footer-contact .lists .item .address {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .row .cell.footer-contact .lists .item .address {
    font-size: 1.125rem;
  }
}
#footer-columns .row .cell.footer-contact .lists .item .address:last-child {
  margin-bottom: 0;
}
#footer-columns .row .cell.footer-contact .lists .item a {
  color: #ffffff;
}
#footer-columns .row .cell.footer-contact .lists .item i {
  margin-right: 8px;
}
#footer-columns .row .cell.footer-form {
  width: 30%;
}
#footer-columns .row .cell.footer-form {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .row .cell.footer-form {
    padding-left: 2.5rem;
  }
}
#footer-columns .row .cell.footer-form {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .row .cell.footer-form {
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .row .cell.footer-form {
    width: 100%;
  }
}
#footer-columns .row .cell.footer-form form {
  position: relative;
}
#footer-columns .row .cell.footer-form form input {
  width: 100%;
  height: 46px;
  border-radius: 5px;
  border: 1px solid #DFDFDF;
  font-size: 14px;
  text-indent: 12px;
  font-weight: 500;
  color: #000000;
}
#footer-columns .row .cell.footer-form form input[type=email] {
  padding-right: 70px;
}
#footer-columns .row .cell.footer-form form input::-webkit-input-placeholder {
  color: #727272;
}
#footer-columns .row .cell.footer-form form input::placeholder {
  color: #727272;
}
#footer-columns .row .cell.footer-form form input[type=submit] {
  position: absolute;
  background-color: #064DA1;
  color: #ffffff;
  font-weight: 700;
  right: 1px;
  top: 0;
  width: 70px;
  height: 46px;
  text-indent: 0;
}
#footer-columns .row .cell.footer-form form .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
}
#footer-columns .row .cell.footer-form form .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 14px;
  color: rgba(249, 233, 12, 0.9215686275);
}
#footer-columns .row .cell.footer-form form .wpcf7-response-output {
  font-size: 14px;
  margin: 35px 0 0;
}
#footer-columns .row .cell.footer-form .footer-social {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .row .cell.footer-form .footer-social {
    margin-top: 1.5625rem;
  }
}
#footer-columns .row .cell.footer-form .footer-social .social-menu {
  justify-content: flex-start;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li {
  margin-right: 8px;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li:last-child {
  margin-right: 0;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li a {
  padding: 0;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li a {
  width: 2.5rem;
  height: 2.5rem;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li a i {
  color: #ffffff;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li a svg {
  width: 90%;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li a svg, #footer-columns .row .cell.footer-form .footer-social .social-menu li a path {
  fill: #ffffff;
}
#footer-columns .row .cell.footer-form .footer-social .social-menu li a:hover {
  background-color: #EB6C00;
}
#footer-columns .row .cell.footer-fanpage {
  width: 30%;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .row .cell.footer-fanpage {
    width: 100%;
  }
}
#footer-columns .row .cell.footer-fanpage iframe {
  border-radius: 15px;
  width: 100%;
  height: 230px;
}

@media only screen and (max-width: 47.99875rem) {
  #footer-credit {
    padding-bottom: 60px;
  }
}
#footer-credit .copyright {
  font-size: 14px;
  padding: 20px 0;
  color: #ffffff;
  font-weight: 500;
  border-top: 1px solid #5EA8FF;
}

.contact-cta {
  position: fixed;
  bottom: 20%;
  right: 20px;
  margin: 0;
  border-radius: 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}
@media only screen and (max-width: 47.99875rem) {
  .contact-cta {
    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;
  }
}
.contact-cta .contact-toggle {
  background-color: #064DA1;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #064DA1;
  padding: 3px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}
.contact-cta .contact-toggle {
  width: 2.625rem;
  height: 2.625rem;
}
.contact-cta .contact-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .contact-cta .contact-toggle {
    display: none;
  }
}

.add-this.contact-link {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .add-this.contact-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    border-radius: 0;
    justify-content: space-evenly;
  }
}
.add-this.contact-link li {
  margin-bottom: 0;
}
@media only screen and (min-width: 64rem) {
  .add-this.contact-link li {
    margin-bottom: 0.9375rem;
  }
}
.add-this.contact-link li a {
  transition: 0.3s;
  color: #064DA1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-this.contact-link li a > svg, .add-this.contact-link li a > i {
  background-color: #064DA1;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #064DA1;
  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;
  display: none;
}
@media only screen and (max-width: 47.99875rem) {
  .add-this.contact-link li a > span {
    line-height: 16px;
    display: block;
  }
}
.add-this.contact-link li a.messenger > i {
  border: none;
  font-size: 42px;
  padding: 0;
  background: none;
  color: #064DA1;
}
@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;
}
/** Poppins fonts */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../img/SVN-Poppins-Light.woff2?v=uy2gwy6") format("woff2"), url("../img/SVN-Poppins-Light.ttf?v=uy2gwy6") format("truetype"), url("../img/SVN-Poppins-Light.otf?v=uy2gwy6") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../img/SVN-Poppins-LightItalic.woff2?v=uy2gwy9") format("woff2"), url("../img/SVN-Poppins-LightItalic.ttf?v=uy2gwy9") format("truetype"), url("../img/SVN-Poppins-LightItalic.otf?v=uy2gwy9") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../img/SVN-Poppins-Regular.woff2?v=uy2gwya") format("woff2"), url("../img/SVN-Poppins-Regular.ttf?v=uy2gwya") format("truetype"), url("../img/SVN-Poppins-Regular.otf?v=uy2gwya") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../img/SVN-Poppins-RegularItalic.woff2?v=uy2gwye") format("woff2"), url("../img/SVN-Poppins-RegularItalic.ttf?v=uy2gwye") format("truetype"), url("../img/SVN-Poppins-RegularItalic.otf?v=uy2gwye") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../img/SVN-Poppins-Medium.woff2?v=uy2gwyj") format("woff2"), url("../img/SVN-Poppins-Medium.ttf?v=uy2gwyj") format("truetype"), url("../img/SVN-Poppins-Medium.otf?v=uy2gwyj") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../img/SVN-Poppins-SemiBold.woff2?v=uy2gwza") format("woff2"), url("../img/SVN-Poppins-SemiBold.ttf?v=uy2gwza") format("truetype"), url("../img/SVN-Poppins-SemiBold.otf?v=uy2gwza") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../img/SVN-Poppins-Bold.woff2?v=uy2gwzh") format("woff2"), url("../img/SVN-Poppins-Bold.ttf?v=uy2gwzh") format("truetype"), url("../img/SVN-Poppins-Bold.otf?v=uy2gwzh") format("opentype");
}
:is(.ajax-loading, .ajax-loader) {
  position: relative;
}
:is(.ajax-loading, .ajax-loader)::before {
  z-index: 99998;
  content: "";
  background-color: rgba(0, 0, 0, 0.05);
}
:is(.ajax-loading, .ajax-loader)::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
:is(.ajax-loading, .ajax-loader)::after {
  content: "";
  z-index: 99999;
  border: 2px solid;
  border-color: #000000 #f3f3f3 #000000 #f3f3f3;
  border-radius: 50%;
  animation: spin 2.5s linear infinite;
  position: absolute;
  top: calc(50% - 17px);
  left: calc(50% - 17px);
  width: 30px;
  height: 30px;
}

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

body {
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.off-canvas-content .menu-lines {
  transition: 0.3s;
  padding-left: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  /*@include hamburger($Primary-01, $Primary-02, 22px, 18px, 2px, 3);*/
}
.off-canvas-content .menu-lines {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .off-canvas-content .menu-lines {
    padding-left: 0;
  }
}
.off-canvas-content .menu-lines .menu-txt {
  font-size: 16px;
  font-weight: 400;
  order: 1;
  display: none !important;
}
@media only screen and (max-width: 47.99875rem) {
  .off-canvas-content .menu-lines .menu-txt {
    display: none;
  }
}
.off-canvas-content .menu-lines .line {
  justify-content: space-between;
}
.off-canvas-content .menu-lines .line {
  width: 1.875rem;
  height: 1.25rem;
}
.off-canvas-content .menu-lines .line {
  display: flex;
  flex-flow: column nowrap;
}
.off-canvas-content .menu-lines .line > span {
  position: relative;
  width: 100%;
}
.off-canvas-content .menu-lines .line > span::before {
  content: "";
  height: 3px;
  width: 100%;
  background-color: #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: #064DA1;
}
.off-canvas-content .menu-lines:hover .line > span::before {
  background-color: #064DA1;
}
.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: #064DA1;
  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: 180px;
  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 .header-lang {
  padding: 10px 0 0 15px;
}
.off-canvas .menu-outer .inline-search {
  display: none;
}
.off-canvas .menu-outer .inline-search .frm-search {
  border: none;
  border-radius: 0;
  background: none;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] {
  position: absolute;
  background: none;
  left: 2px;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] span {
  display: none;
}
.off-canvas ul.vertical.menu {
  position: relative;
  z-index: 9998;
  height: 100%;
  overflow: hidden;
  transform: translateZ(3px);
}
.off-canvas ul.vertical.menu li.active .submenu-toggle::after {
  border-color: #EB6C00 transparent transparent;
}
.off-canvas ul.vertical.menu li a {
  font-size: 15px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 24px;
  display: block;
  text-transform: uppercase;
  color: #064DA1;
}
.off-canvas ul.vertical.menu li a[aria-current=page] {
  color: #EB6C00;
}
.off-canvas.is-transition-overlap {
  z-index: 1000001 !important;
}
.off-canvas.is-transition-overlap.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap.is-open {
  visibility: visible;
  box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

body:not(.page-template-page-home) #site-content {
  background-image: url("../img/bg-single-product-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
body:not(.page-template-page-home) #site-content {
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  body:not(.page-template-page-home) #site-content {
    padding-bottom: 3.75rem;
  }
}
body:not(.page-template-page-home) #site-content::before, body:not(.page-template-page-home) #site-content::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 30%;
  width: 310px;
  height: 600px;
  background-image: url("../img/layer-water-left.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media only screen and (max-width: 47.99875rem) {
  body:not(.page-template-page-home) #site-content::before, body:not(.page-template-page-home) #site-content::after {
    content: none;
  }
}
body:not(.page-template-page-home) #site-content::after {
  background-image: url("../img/layer-water-right.png");
  top: 33%;
  left: inherit;
  right: -50px;
  width: 280px;
  height: 350px;
}
body:not(.page-template-page-home) #site-content div {
  z-index: 2;
}

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

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

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

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

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

.btn-main {
  margin: 30px auto 0;
  height: 40px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #064DA1;
  padding: 5px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 18px 5px 15px;
  width: -webkit-fit-content;
  width: fit-content;
}
.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-main .text {
  padding-right: 8px;
}
.btn-main .arrow-wrap {
  position: relative;
}
.btn-main .arrow-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #FF0006;
  transform: translateY(-50%);
}
.btn-main .arrow-wrap::after {
  width: 1.5625rem;
  height: 1.5625rem;
}
.btn-main .arrow-wrap svg {
  transition: 0.3s;
  position: relative;
  z-index: 2;
}
.btn-main:hover {
  color: #E5FBFF;
}
.btn-main:hover svg {
  transition: 0.3s;
  width: 25px;
}

.section-breadcrumb {
  background-color: rgba(129, 128, 128, 0.2) !important;
}
.section-breadcrumb .breadcrumb-title {
  display: none;
}
.section-breadcrumb #breadcrumbs {
  padding: 10px 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:not(:first-child)::before {
  content: "\f101";
  font-size: 14px;
  margin: 0 10px;
  color: #888;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
}
@media only screen and (max-width: 47.99875rem) {
  .section-breadcrumb #breadcrumbs li:not(:first-child)::before {
    font-size: 10px;
    margin: 0 5px;
  }
}
.section-breadcrumb #breadcrumbs li .home {
  color: #064DA1;
}

.swiper-controls .swiper-button {
  width: 42px !important;
  height: 42px;
}
@media only screen and (max-width: 47.99875rem) {
  .swiper-controls .swiper-button {
    width: 38px !important;
    height: 38px;
  }
}
.swiper-controls .swiper-button:hover::before {
  background-color: #064DA1 !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}
.swiper-controls .swiper-button::before {
  opacity: 1 !important;
  background-color: #ffffff !important;
  color: #989898 !important;
  border: 1px solid #949494 !important;
  font-size: 20px !important;
}
@media only screen and (max-width: 47.99875rem) {
  .swiper-controls .swiper-button::before {
    font-size: 18px !important;
  }
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 100px;
  background: #EB6C00;
}

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

.archive-post .feature-posts {
  position: relative;
  background-color: #ffffff;
  margin-top: 150px;
  margin-bottom: 50px;
}
.archive-post .feature-posts .item {
  display: flex;
  flex-wrap: wrap;
}
.archive-post .feature-posts .item .cover {
  width: 60%;
  transform: translateY(-50px);
  border-radius: 28px;
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .feature-posts .item .cover {
    width: 100%;
  }
}
.archive-post .feature-posts .item .cover span.ar-4-3 {
  aspect-ratio: unset;
  position: relative;
  display: block;
  border-radius: 28px;
}
.archive-post .feature-posts .item .cover span.ar-4-3::before {
  content: "";
  display: block;
  padding-bottom: 65%;
}
.archive-post .feature-posts .item .cover span.ar-4-3 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  transform: translate(0) scale(1);
}
.archive-post .feature-posts .item .cover span.ar-4-3:hover::before {
  transition: 0.8s;
  transform: scale(1.05);
}
.archive-post .feature-posts .item .content {
  width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: -30px;
}
.archive-post .feature-posts .item .content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .archive-post .feature-posts .item .content {
    padding-left: 1.875rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .feature-posts .item .content {
    width: 100%;
    padding-bottom: 20px;
  }
}
.archive-post .feature-posts .item .content .title {
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 800;
}
.archive-post .feature-posts .item .content .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .feature-posts .item .content .title {
    font-size: 1.5625rem;
  }
}
.archive-post .feature-posts .item .content .title a {
  color: #064DA1;
}
.archive-post .feature-posts .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .archive-post .feature-posts .item .content .title a {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .feature-posts .item .content .title a:hover {
  color: #EB6C00;
}
.archive-post .feature-posts .item .content .meta {
  display: none;
}
.archive-post .feature-posts .item .content .excerpt {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
}
.archive-post .feature-posts .item .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 6) {
  .archive-post .feature-posts .item .content .excerpt {
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .feature-posts .item .content .excerpt {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .feature-posts .item .content .excerpt {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .feature-posts .item .content .excerpt {
    line-height: 1.4;
  }
}
.archive-post .feature-posts .item .content .btn-main {
  margin-left: 0;
}
.archive-post .posts-list {
  margin: 0 -10px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .posts-list {
    margin: 0 -5px;
  }
}
.archive-post .posts-list .cell {
  width: 33.3333333333%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .posts-list .cell {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .posts-list .cell {
    padding: 0 5px;
    margin-bottom: 20px;
    width: 100%;
  }
}
.archive-post .posts-list .cell .cover {
  border-radius: 20px;
}
.archive-post .posts-list .cell .cover img {
  border-radius: 20px;
}
.archive-post .posts-list .cell .content {
  padding-top: 0.75rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post .posts-list .cell .content {
    padding-top: 1.25rem;
  }
}
.archive-post .posts-list .cell .content .title {
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
}
.archive-post .posts-list .cell .content .title {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .posts-list .cell .content .title {
    font-size: 1.5rem;
  }
}
.archive-post .posts-list .cell .content .title a {
  color: #064DA1;
}
.archive-post .posts-list .cell .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .posts-list .cell .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .posts-list .cell .content .title a:hover {
  color: #EB6C00;
}
.archive-post .posts-list .cell .content .meta {
  display: flex;
  gap: 16px;
  color: #002956;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: normal;
}
.archive-post .posts-list .cell .content .meta {
  font-size: 0.75rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .posts-list .cell .content .meta {
    font-size: 1rem;
  }
}
.archive-post .posts-list .cell .content .meta a {
  color: #002956;
}
.archive-post .posts-list .cell .content .meta .posts-day {
  position: relative;
}
.archive-post .posts-list .cell .content .meta .posts-day::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
  height: 80%;
  width: 1px;
  background: rgba(0, 0, 0, 0.5019607843);
}
.archive-post .posts-list .cell .content .excerpt {
  margin: 0;
}
.archive-post .posts-list .cell .content .excerpt {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .posts-list .cell .content .excerpt {
    font-size: 1.125rem;
  }
}
.archive-post .posts-list .cell .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .archive-post .posts-list .cell .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .posts-list .cell .content .btn-main {
  display: none;
}
.archive-post .excerpt {
  margin: 30px 0 20px;
}
.archive-post.categories-service .posts-list .cell {
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell {
    width: 100%;
  }
}
.archive-post.categories-service .posts-list .cell .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 15px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell .item {
    flex-direction: column;
  }
}
.archive-post.categories-service .posts-list .cell .item .cover {
  width: 200px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell .item .cover {
    width: 100%;
  }
}
.archive-post.categories-service .posts-list .cell .item .cover img {
  border-radius: 4px;
}
.archive-post.categories-service .posts-list .cell .item .content {
  padding-top: 0;
  width: calc(100% - 200px);
}
.archive-post.categories-service .posts-list .cell .item .content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .archive-post.categories-service .posts-list .cell .item .content {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post.categories-service .posts-list .cell .item .content {
    padding-top: 10px;
    width: 100%;
  }
}

#breadcrumbs li.current {
  display: list-item;
}
#breadcrumbs li.current:nth-child(n+3):last-child {
  display: none;
}
#breadcrumbs li:last-child:not(.current)::after {
  content: none;
}
#breadcrumbs li:last-child:not(.current) a {
  color: #4E4E4E;
}

.single-post #site-content {
  background: #ffffff;
  background-image: unset !important;
}
.single-post #site-content::before, .single-post #site-content::after {
  content: none !important;
}
.single-post .section-page {
  margin: 30px 0;
}
.single-post #breadcrumbs li:nth-last-child(2)::after {
  content: none;
}
.single-post #breadcrumbs li:nth-last-child(2) a {
  color: #4E4E4E;
}
.single-post #breadcrumbs li.current {
  display: none;
}
.single-post .content {
  flex: 0 0 calc(70% - 20px);
  max-width: calc(70% - 20px);
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.single-post aside.sidebar {
  flex: 0 0 calc(30% - 15px);
  max-width: calc(30% - 15px);
}
.single-post aside.sidebar {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post aside.sidebar {
    padding-left: 0.9375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post aside.sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.single-post aside.sidebar .sidebar-form {
  margin-bottom: 20px;
}
.single-post aside.sidebar .sidebar-form .sidebar-title {
  color: #ffffff;
}
.single-post aside.sidebar .sidebar-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}
.single-post .content {
  width: calc(100% - 372px);
}
.single-post .content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .content {
    padding-left: 1.25rem;
  }
}
.single-post .content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .content {
    padding-right: 0.9375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content {
    width: 100%;
  }
}
.single-post .content .box {
  background-color: #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 {
    padding: 20px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .single-post .content .box {
    padding: 20px 15px;
  }
}
.single-post .content .box .meta {
  display: flex;
  align-items: center;
  padding: 5px 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .box .meta {
    padding: 5px 0 15px;
  }
}
.single-post .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 {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .box .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #101210;
}
.single-post .content .box .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content .box .meta ._author {
  text-transform: capitalize;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .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 {
    display: none;
  }
}
.single-post .content .heading-title {
  line-height: normal;
  text-transform: uppercase;
  color: #064DA1;
  margin-bottom: 20px;
}
.single-post .content .heading-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .content .heading-title {
    font-size: 1.375rem;
  }
}
.single-post .content .meta {
  display: flex;
  align-items: center;
  padding: 5px 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta {
    padding: 5px 0 15px;
  }
}
.single-post .content .meta > div {
  color: #828C83;
  display: flex;
  align-items: center;
  line-height: 1;
  border-right: 1px solid #E0E0E0;
  padding-right: 10px;
  margin-right: 10px;
}
.single-post .content .meta > div:last-child {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #101210;
}
.single-post .content .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content .meta ._author {
  text-transform: capitalize;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta ._date {
    border-right: unset;
    padding-right: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .meta ._time {
    display: none;
  }
}
.single-post .content .hashtags {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content .hashtags .hashtag-links {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    gap: 10px 0;
    grid-gap: 10px 0;
  }
}
.single-post .content .hashtags .hashtag-links i {
  margin-right: 20px;
  font-style: normal;
}
.single-post .content .hashtags .hashtag-links i::before {
  content: "Từ khoá:";
  font-family: "Inter", sans-serif;
  line-height: 21px;
  font-weight: 500;
  color: #000914;
}
.single-post .content .hashtags .hashtag-links i::before {
  font-size: 0.875rem;
}
.single-post .content .hashtags .hashtag-links a {
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #EFEFEF;
  color: #2A3645;
  line-height: 21px;
  font-weight: 500;
}
.single-post .content .hashtags .hashtag-links a {
  font-size: 0.875rem;
}
.single-post .content .hashtags .hashtag-links a:hover {
  background: #064DA1;
  color: #ffffff;
}
.single-post .section-related-post {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post {
    padding-top: 3.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.single-post .section-related-post .related-title {
  font-weight: 800;
}
.single-post .section-related-post .related-title {
  font-size: 1.5625rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .section-related-post .related-title {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post .related-title {
    font-size: 2.8125rem;
  }
}
.single-post .section-related-post .related-title {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post .related-title {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .related-title {
    padding-left: 15px;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide {
  width: 33.3333333333%;
  padding: 0 10px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-container .swiper-slide {
    width: 50%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-container .swiper-slide {
    width: 100%;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .cover {
  border-radius: 20px;
}
.single-post .section-related-post .swiper-container .swiper-slide .cover img {
  border-radius: 20px;
}
.single-post .section-related-post .swiper-container .swiper-slide .content {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding-top: 10px;
  padding-left: 0;
  margin-bottom: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title {
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 800;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .title {
    font-size: 1.5625rem;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a {
  color: #064DA1;
  font-weight: 800;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a:hover {
  color: #EB6C00;
  text-decoration: none;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta {
  display: flex;
  gap: 16px;
  color: #002956;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: normal;
  padding-bottom: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .meta {
    font-size: 1rem;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta a {
  color: #002956;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta .terms {
  color: #002956;
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta .posts-day {
  position: relative;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .meta .posts-day::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
  height: 80%;
  width: 1px;
  background: rgba(0, 0, 0, 0.5019607843);
}
.single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
  margin: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
    font-size: 1.125rem;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content .btn-main {
  display: none;
}
.single-post .section-related-post .swiper-controls .swiper-button {
  top: 45%;
}
.single-post .section-related-post .swiper-controls .swiper-button.swiper-button-prev {
  left: -10px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-prev {
    left: 5px;
  }
}
.single-post .section-related-post .swiper-controls .swiper-button.swiper-button-next {
  right: -10px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-next {
    right: 5px;
  }
}
.single-post .section-related-post .swiper-controls .swiper-pagination {
  bottom: -80px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-pagination {
    bottom: -60px;
  }
}

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

.sidebar-form {
  background: #064DA1;
  padding: 40px 20px 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  .sidebar-form {
    display: none;
  }
}
.sidebar-form .sidebar-title {
  color: #484848;
}
.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;
  border: 1px solid #ffffff;
  background-color: #1053A3;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffff;
  border-radius: 8px;
}
.sidebar-form form input::-webkit-input-placeholder {
  color: #ffffff;
}
.sidebar-form form input::placeholder {
  color: #ffffff;
}
.sidebar-form form .btn-submit {
  position: relative;
  margin: 5px auto 0;
  width: -webkit-fit-content;
  width: fit-content;
  background-color: #F87614;
  border-radius: 100px;
  border: 1px solid #ffffff;
  padding: 0 20px;
}
.sidebar-form form .btn-submit:hover {
  background-color: #FF0006;
}
.sidebar-form form .btn-submit i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 22px;
  z-index: 0;
  color: #ffffff;
}
.sidebar-form form .btn-submit input[type=submit] {
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 15px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  margin-bottom: 0;
  padding: 0;
  padding-left: 30px;
  z-index: 1;
  position: relative;
}
.sidebar-form form .btn-submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  bottom: 8px;
  left: -50px;
}
.sidebar-form form .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #dcc932;
  margin-top: -5px;
  margin-bottom: 5px;
}
.sidebar-form form .wpcf7-response-output {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 0;
  border-radius: 4px;
}

.sidebar-posts {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 20px;
}
.sidebar-posts .sidebar-title {
  color: #064DA1;
  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: "Mulish", -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;
}

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

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

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

.page-template-page-about-us #site-content {
  padding-bottom: 0 !important;
  background-image: url("../img/bg-layout.jpg") !important;
}
.page-template-page-about-us #site-content::before, .page-template-page-about-us #site-content::after {
  content: none !important;
}
.page-template-page-about-us .section-banner-title {
  margin-bottom: 0;
}
.page-template-page-about-us .section-content-about {
  padding-top: 3.75rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-content-about {
    padding-top: 6.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-content-about {
    overflow-x: hidden;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-content {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  background-color: #064DA1;
  padding: 30px 30px 30px 0;
  color: #ffffff;
  position: relative;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-content {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-content::before, .page-template-page-about-us .section-content-about .wrapper .cell.cell-content::after {
  content: "";
  position: absolute;
  left: -300%;
  top: 0;
  width: 300%;
  height: 100%;
  background-color: #064DA1;
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-content::after {
  content: none;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-content::after {
    content: "";
    left: inherit;
    right: -100%;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-content .heading-title {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-content .content {
  text-align: justify;
  z-index: 2;
  position: relative;
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-content .content {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-content .content {
    font-size: 1.125rem;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-content .btn-main {
  margin-left: 0;
  position: relative;
  z-index: 2;
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-img {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  position: relative;
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-img {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-img {
    padding-left: 2.5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-img {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-top: 30px;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-img::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -40%;
  width: 600px;
  height: 600px;
  background-image: url("../img/layer-construction.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-img::after {
    content: none;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-img .gallery-img {
  list-style-type: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-img .gallery-img {
    width: 95%;
    margin: 0 auto;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-img .gallery-img .item {
  height: 90%;
  margin: 0 -20px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-content-about .wrapper .cell.cell-img .gallery-img .item {
    margin: 0 -20px;
    flex: auto;
  }
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-img .gallery-img .item .img {
  height: 100%;
}
.page-template-page-about-us .section-content-about .wrapper .cell.cell-img .gallery-img .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-about-us .section-vision-mission .wrapper {
  list-style-type: none;
  padding-left: 0;
  gap: 40px;
}
.page-template-page-about-us .section-vision-mission .wrapper .item {
  width: calc(50% - 20px);
  padding: 0 25px 25px;
  text-align: center;
}
.page-template-page-about-us .section-vision-mission .wrapper .item::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  border: 1px solid #064DA1;
  background-color: transparent;
  border-radius: 26px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item {
    width: 100%;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item:first-child img.layer-water {
  right: 30px;
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child {
  width: 100%;
  padding: 40px 25px;
  border: 1px solid #064DA1;
  border-radius: 26px;
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child {
    border: none;
    padding: 0 25px 25px;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child::before {
  content: none;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    border: 1px solid #064DA1;
    background-color: transparent;
    border-radius: 26px;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner {
    flex-direction: column;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .icon img {
  width: 7.5rem;
  height: 7.5rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .icon img {
    width: 8.125rem;
    height: 8.125rem;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .content {
  width: calc(100% - 120px);
  padding: 0;
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .content {
    padding-left: 1.5625rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .content {
    width: 100%;
    padding-top: 20px;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .content .title {
  text-align: left;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item:last-child .inner .content .title {
    text-align: center;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item:last-child img.layer-water {
  top: -10%;
  right: 60px;
}
.page-template-page-about-us .section-vision-mission .wrapper .item .inner .content {
  text-align: center;
  padding-top: 20px;
}
.page-template-page-about-us .section-vision-mission .wrapper .item .inner .content .title {
  text-transform: uppercase;
  color: #064DA1;
  font-weight: 800;
}
.page-template-page-about-us .section-vision-mission .wrapper .item .inner .content .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item .inner .content .title {
    font-size: 1.625rem;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item .inner .content .desc {
  text-align: justify;
}
.page-template-page-about-us .section-vision-mission .wrapper .item .inner .content .desc {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item .inner .content .desc {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .section-vision-mission .wrapper .item img.layer-water {
  position: absolute;
  top: calc(50% - 100px);
  transform: translateY(-50%);
  right: 10px;
  object-fit: contain;
  transform: rotate(-180deg);
  opacity: 0.6;
}
.page-template-page-about-us .section-vision-mission .wrapper .item img.layer-water {
  width: 18.75rem;
  height: 18.75rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-vision-mission .wrapper .item img.layer-water {
    display: none;
  }
}
.page-template-page-about-us .section-core-value::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 600px;
  background-image: url("../img/bg-white-cross.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-core-value::after {
    content: none;
  }
}
.page-template-page-about-us .section-core-value .heading-title {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-page-about-us .section-core-value .heading-title {
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-core-value .heading-title {
    margin-bottom: 6.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-core-value .heading-title {
    max-width: 100%;
  }
}
.page-template-page-about-us .main_scwhy {
  max-width: 1000px;
  max-height: 1000px;
  height: 1000px;
  border-radius: 100%;
  margin: 60px auto;
  margin-bottom: 0;
  position: relative;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper {
  padding: 0;
  border-radius: 50%;
  box-sizing: content-box;
  padding-bottom: unset;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  z-index: 9;
  position: relative;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper {
    max-width: 80%;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  display: block;
  height: 100%;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4784313725);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper:before {
    content: none;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item {
  list-style-type: none;
  color: #a3adb5;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item {
  width: 6.25rem;
  height: 6.25rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item {
    position: relative;
    top: inherit;
    left: inherit;
    transform: translate(0, 0);
  }
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item {
    width: 5rem;
    height: 5rem;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item:first-child {
  left: calc(50% - 410px);
  top: calc(50% - 275px);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item:first-child {
    top: inherit;
    left: inherit;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(2) {
  left: calc(50% - 225px);
  top: calc(50% - 439.7px);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(2) {
    top: inherit;
    left: inherit;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(3) {
  top: calc(50% - 500px);
  left: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(3) {
    top: inherit;
    left: inherit;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(4) {
  left: calc(50% + 225px);
  top: calc(50% - 439.7px);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(4) {
    top: inherit;
    left: inherit;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(5) {
  left: calc(50% + 410px);
  top: calc(50% - 275px);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(5) {
    top: inherit;
    left: inherit;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(5) .item-inner {
  flex-direction: row-reverse;
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item:nth-child(5) .item-inner .title {
  text-align: left;
  margin-right: 0;
  margin-left: 20px;
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item.active .icon {
  transition: 0.6s;
  background-color: #064DA1;
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item.active .icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .item-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item .item-inner {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .tab_top {
  display: none;
  height: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item .tab_top.activated {
    display: block;
    height: 100%;
    margin-bottom: 20px;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .tab_top .content-inner .number {
  font-size: 22px;
  font-weight: bold;
  color: #00518F;
  line-height: normal;
  margin-bottom: 0;
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .tab_top .content-inner .content {
  font-size: 16px;
  color: #202020;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item .tab_top .content-inner {
    padding-left: 15px;
    border-left: 2px solid #064DA1;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .tab_top .title {
  font-size: 26px;
  font-weight: bold;
  line-height: normal;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item .tab_top .title {
    width: 100%;
    margin-left: 0;
    font-size: 24px;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .title {
  margin-bottom: 0;
  font-size: 18px;
  color: #064DA1;
  width: calc(100% - 100px);
  text-align: right;
  margin-right: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item .title {
    text-align: left;
    margin-right: 0;
    margin-left: 20px;
    width: calc(100% - 90px);
  }
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .icon {
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2509803922);
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-page-about-us .main_scwhy .scwhy_wrapper .item .icon {
  width: 6.25rem;
  height: 6.25rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item .icon {
    width: 5rem;
    height: 5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_wrapper .item .icon img {
    width: 60%;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_content {
  height: 80%;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  padding: 0;
  border-radius: 100%;
  background-color: #fff;
  transition: background-color 1s;
  z-index: 10 !important;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.2509803922);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_content {
    width: 100%;
    height: 100%;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    position: relative;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab {
  opacity: 0;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
  transform-style: preserve-3d;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
  -webkit-transition: 0.5s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 0.5s;
  -moz-transform-style: preserve-3d;
  -o-transition: 0.5s;
  -o-transform-style: preserve-3d;
  transition: 0.5s;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_content .content_tab {
    display: none;
    position: relative;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab .content-inner {
  transform-style: preserve-3d;
  height: 70%;
  width: 80%;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  transition-duration: 800ms;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_content .content_tab .content-inner {
    height: 100%;
    width: 100%;
    padding: 0;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab .number {
  font-size: 50px;
  font-weight: bold;
  color: #064DA1;
  line-height: normal;
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab .title {
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: #064DA1;
  line-height: 1.4;
  padding: 0 10px;
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-page-about-us .main_scwhy .scwhy_content .content_tab .title {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .main_scwhy .scwhy_content .content_tab .title {
    font-size: 2.5rem;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab .content {
  color: #1D1D1D;
  line-height: 1.4;
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab .content {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .main_scwhy .scwhy_content .content_tab .content {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .main_scwhy .scwhy_content .content_tab.active {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .main_scwhy .scwhy_content .content_tab.active {
    display: block;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-template-page-about-us .section-prize {
  background-color: #ffffff;
  margin-top: -320px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize {
    margin-top: 0;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-template-page-about-us .section-prize {
    padding-bottom: 180px;
  }
}
.page-template-page-about-us .section-prize::after {
  content: "";
  position: absolute;
  bottom: 130px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(0deg, #ffffff 9.62%, rgba(255, 255, 255, 0) 100%);
}
.page-template-page-about-us .section-prize .bg-prize {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
  transform: translateY(-50%);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .bg-prize {
    height: 60%;
  }
}
.page-template-page-about-us .section-prize .desc {
  max-width: 80%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .desc {
    max-width: 100%;
  }
}
.page-template-page-about-us .section-prize .swiper-container {
  max-width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .swiper-container {
    max-width: 100%;
  }
}
.page-template-page-about-us .section-prize .swiper-container .swiper-slide {
  width: 33.33%;
  padding: 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .swiper-container .swiper-slide {
    padding: 0 15px;
  }
}
.page-template-page-about-us .section-prize .swiper-container .swiper-slide.swiper-slide-active .item .img {
  transform: scale(1.4);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .swiper-container .swiper-slide.swiper-slide-active .item .img {
    transform: scale(1.3);
  }
}
.page-template-page-about-us .section-prize .swiper-container .swiper-slide.swiper-slide-active .item .title {
  opacity: 1;
  visibility: visible;
  transform: translateY(95px);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .swiper-container .swiper-slide.swiper-slide-active .item .title {
    transform: translateY(65px);
  }
}
.page-template-page-about-us .section-prize .swiper-container .swiper-slide .item {
  padding: 100px 0;
  text-align: center;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .swiper-container .swiper-slide .item {
    padding: 50px 0 80px;
  }
}
.page-template-page-about-us .section-prize .swiper-container .swiper-slide .item .img img {
  object-fit: cover;
}
.page-template-page-about-us .section-prize .swiper-container .swiper-slide .item .title {
  color: #064DA1;
  font-weight: 700;
  padding: 10px 5px 0;
  opacity: 0;
  visibility: hidden;
}
.page-template-page-about-us .section-prize .swiper-container .swiper-slide .item .title {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-page-about-us .section-prize .swiper-container .swiper-slide .item .title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-page-about-us .section-prize .swiper-container .swiper-slide .item .title {
    font-size: 1.25rem;
  }
}
.page-template-page-about-us .section-prize .swiper-pagination {
  bottom: -60px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-about-us .section-prize .swiper-pagination {
    bottom: -20px;
  }
}

.page-template-page-history #site-content {
  padding-bottom: 0 !important;
  background-image: url("../img/bg-layout.jpg") !important;
}
.page-template-page-history #site-content::before, .page-template-page-history #site-content::after {
  content: none !important;
}
.page-template-page-history .section-history-process {
  padding-bottom: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-history .section-history-process {
    padding-top: 0;
  }
}
.page-template-page-history .section-history-process .wrapper .cell.cell-content {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-history .section-history-process .wrapper .cell.cell-content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-history .section-history-process .wrapper .cell.cell-content {
    padding-right: 3.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-history .section-history-process .wrapper .cell.cell-content {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-bottom: 40px;
  }
}
.page-template-page-history .section-history-process .wrapper .cell.cell-content .heading-title {
  font-size: 1.75rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-page-history .section-history-process .wrapper .cell.cell-content .heading-title {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-page-history .section-history-process .wrapper .cell.cell-content .heading-title {
    font-size: 2.5625rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-history .section-history-process .wrapper .cell.cell-content .heading-title img {
    width: 13px;
    transform: translateY(-2px);
    margin-left: 5px;
  }
}
.page-template-page-history .section-history-process .wrapper .cell.cell-content .content {
  line-height: 1.6;
  text-align: justify;
}
.page-template-page-history .section-history-process .wrapper .cell.cell-content .content {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-history .section-history-process .wrapper .cell.cell-content .content {
    font-size: 1.25rem;
  }
}
.page-template-page-history .section-history-process .wrapper .cell.cell-img {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-history .section-history-process .wrapper .cell.cell-img {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.page-template-page-history .section-history-process .wrapper .cell.cell-img img {
  width: 100%;
}

@media only screen and (max-width: 63.99875rem) {
  .section-history-line {
    padding-bottom: 100px;
    overflow-x: hidden;
  }
}
.section-history-line .pt-timeline {
  position: relative;
}
.section-history-line .pt-timeline {
  margin-top: 0;
}
@media only screen and (min-width: 48rem) {
  .section-history-line .pt-timeline {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .section-history-line .pt-timeline {
    padding-left: 15px;
  }
}
.section-history-line .pt-timeline-items {
  position: relative;
  z-index: 3;
}
.section-history-line .pt-timeline-item {
  display: flex;
  align-items: center;
  padding: 100px 0;
  margin-top: -100px;
  position: relative;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item {
    flex-direction: column-reverse;
    padding: 30px 0 30px 60px;
    margin-top: 0;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .section-history-line .pt-timeline-item {
    padding-left: 50px;
  }
}
.section-history-line .pt-timeline-item::before {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  right: calc(50% - 26px);
  background: #C9F7FF;
  border-radius: 50%;
  display: block;
  transform: translateY(-50%);
}
.section-history-line .pt-timeline-item::before {
  width: 3.25rem;
  height: 3.25rem;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item::before {
    top: 46px;
    right: inherit;
    left: -9px;
  }
  .section-history-line .pt-timeline-item::before {
    width: 2.875rem;
    height: 2.875rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .section-history-line .pt-timeline-item::before {
    left: -16px;
  }
}
.section-history-line .pt-timeline-item::after {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  right: calc(50% - 16px);
  background: #064DA1;
  border-radius: 50%;
  display: block;
  transform: translateY(-50%);
}
.section-history-line .pt-timeline-item::after {
  width: 2rem;
  height: 2rem;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item::after {
    top: 46px;
    right: inherit;
    left: 0px;
  }
  .section-history-line .pt-timeline-item::after {
    width: 1.625rem;
    height: 1.625rem;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .section-history-line .pt-timeline-item::after {
    left: -6px;
  }
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item:first-child {
    padding-top: 0;
  }
  .section-history-line .pt-timeline-item:first-child::before, .section-history-line .pt-timeline-item:first-child::after {
    top: 16px;
  }
}
.section-history-line .pt-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.section-history-line .pt-timeline-item:nth-child(even) .pt-timeline-item-column {
  text-align: right;
}
.section-history-line .pt-timeline-item:nth-child(even) .pt-timeline-item-column.media-column {
  padding-left: 60px;
  padding-right: 0;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item:nth-child(even) .pt-timeline-item-column.media-column {
    padding-left: 0;
  }
}
.section-history-line .pt-timeline-item:nth-child(even) .pt-timeline-item-column.text-column {
  padding-left: 0;
  padding-right: 60px;
  text-align: right;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item:nth-child(even) .pt-timeline-item-column.text-column {
    padding-right: 0;
    text-align: left;
  }
}
.section-history-line .pt-timeline-item:nth-child(even) .pt-timeline-time::after {
  left: -72.5px;
  right: auto;
}
.section-history-line .pt-timeline-item:nth-child(4) .pt-timeline-text {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .section-history-line .pt-timeline-item:nth-child(4) .pt-timeline-text {
    font-size: 1.0625rem;
  }
}
.section-history-line .pt-timeline-item .pt-timeline-item-column {
  width: 50%;
  text-align: right;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item .pt-timeline-item-column {
    width: 100%;
  }
}
.section-history-line .pt-timeline-item .pt-timeline-item-column.text-column {
  padding-left: 60px;
  text-align: left;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item .pt-timeline-item-column.text-column {
    padding-left: 0;
    padding-bottom: 30px;
  }
}
.section-history-line .pt-timeline-item .pt-timeline-item-column.media-column {
  padding-right: 60px;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-item .pt-timeline-item-column.media-column {
    padding-right: 0;
  }
}
.section-history-line .pt-timeline-item .pt-timeline-item-column.media-column .pt-timeline-img {
  background-color: #D9F9FF;
  border-radius: 28px;
  border: 1px dashed #000000;
}
.section-history-line .pt-timeline-item .pt-timeline-item-column.media-column .pt-timeline-img img {
  width: 100%;
  border-radius: 28px;
  border: 20px solid #D9F9FF;
}
.section-history-line .pt-timeline-time {
  position: relative;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1;
  color: #064DA1;
}
.section-history-line .pt-timeline-time {
  font-size: 1.625rem;
}
@media only screen and (min-width: 48rem) {
  .section-history-line .pt-timeline-time {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section-history-line .pt-timeline-time {
    font-size: 3.4375rem;
  }
}
.section-history-line .pt-timeline-text {
  color: #064DA1;
  line-height: 1.6;
}
.section-history-line .pt-timeline-text {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .section-history-line .pt-timeline-text {
    font-size: 1.125rem;
  }
}
.section-history-line .pt-timeline-line {
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: calc(100% - 600px);
  background: #064DA1;
}
@media only screen and (max-width: 63.99875rem) {
  .section-history-line .pt-timeline-line {
    height: calc(100% - 45px);
    left: 12px;
    top: 18px;
    transform: translateX(0%);
  }
}
@media only screen and (max-width: 39.99875rem) {
  .section-history-line .pt-timeline-line {
    left: 20px;
  }
}

.page-template-page-contact #site-content {
  background-image: unset !important;
  background-color: #ffffff;
}
.page-template-page-contact #site-content::before, .page-template-page-contact #site-content::after {
  content: none !important;
}
.page-template-page-contact .wrapper {
  margin-top: 30px;
}
.page-template-page-contact .wrapper .cell {
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .wrapper .cell {
    width: 100%;
  }
}
.page-template-page-contact .wrapper .cell.col-inf {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-contact .wrapper .cell.col-inf {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .wrapper .cell.col-inf {
    padding-right: 3.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .wrapper .cell.col-inf {
    margin-bottom: 30px;
  }
}
.page-template-page-contact .wrapper .cell.col-inf .heading-title {
  color: #0058AA;
  line-height: normal;
}
.page-template-page-contact .wrapper .cell.col-inf .heading-title {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .wrapper .cell.col-inf .heading-title {
    margin-bottom: 1.5625rem;
  }
}
.page-template-page-contact .wrapper .cell.col-inf .heading-title {
  font-size: 1.5625rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-page-contact .wrapper .cell.col-inf .heading-title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .wrapper .cell.col-inf .heading-title {
    font-size: 2.1875rem;
  }
}
.page-template-page-contact .wrapper .cell.col-inf .lists {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0 0 40px;
  padding: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .wrapper .cell.col-inf .lists {
    margin-bottom: 30px;
  }
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item {
  margin-bottom: 15px;
  color: #1D1D1D;
  padding: 20px;
  border-radius: 5px;
  background-color: #F6F6F6;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item:hover, .page-template-page-contact .wrapper .cell.col-inf .lists .item.active {
  cursor: pointer;
  background-color: #064DA1;
  color: #ffffff;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item:hover .div, .page-template-page-contact .wrapper .cell.col-inf .lists .item:hover a, .page-template-page-contact .wrapper .cell.col-inf .lists .item:hover .div a, .page-template-page-contact .wrapper .cell.col-inf .lists .item.active .div, .page-template-page-contact .wrapper .cell.col-inf .lists .item.active a, .page-template-page-contact .wrapper .cell.col-inf .lists .item.active .div a {
  color: #ffffff;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item:last-child {
  margin-bottom: 0;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item .title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 800;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item .div {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item .div:last-child {
  margin-bottom: 0;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item .div i {
  margin-right: 10px;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item .div a {
  color: #1D1D1D;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item .div:hover {
  color: #ffffff;
}
.page-template-page-contact .wrapper .cell.col-inf .lists .item .div:hover a {
  color: #ffffff;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .title {
  margin-bottom: 20px;
  font-weight: 700;
  color: #0058AA;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .wrapper .cell.col-inf .col-social .title {
    font-size: 1.75rem;
  }
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li {
  margin-right: 8px;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li:last-child {
  margin-right: 0;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a {
  padding: 0;
  border-radius: 50%;
  background-color: #064DA1;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a {
  width: 2.875rem;
  height: 2.875rem;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a i {
  color: #ffffff;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a.facebook {
  background-color: #365899;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a.youtube {
  background-color: #e52d27;
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.page-template-page-contact .wrapper .cell.col-inf .col-social .social-menu li a.tiktok {
  background-color: #000000;
}
.page-template-page-contact .wrapper .cell.col-form .inner {
  padding: 25px 30px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0px 0px 41px 0px rgba(0, 0, 0, 0.2392156863);
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .wrapper .cell.col-form .inner {
    padding: 25px 15px;
  }
}
.page-template-page-contact .wrapper .cell.col-form .inner .title {
  margin-bottom: 20px;
  color: #0058AA;
  font-weight: 700;
  line-height: normal;
}
.page-template-page-contact .wrapper .cell.col-form .inner .title {
  font-size: 1.5625rem;
}
@media only screen and (min-width: 48rem) {
  .page-template-page-contact .wrapper .cell.col-form .inner .title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .wrapper .cell.col-form .inner .title {
    font-size: 2.1875rem;
  }
}
.page-template-page-contact .wrapper .cell.col-form form {
  position: relative;
}
.page-template-page-contact .wrapper .cell.col-form form .form-group {
  display: grid;
  grid-template-columns: 0.4fr 1.5fr;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .wrapper .cell.col-form form .form-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.page-template-page-contact .wrapper .cell.col-form form .form-group select {
  margin-bottom: 0;
}
.page-template-page-contact .wrapper .cell.col-form form input, .page-template-page-contact .wrapper .cell.col-form form textarea, .page-template-page-contact .wrapper .cell.col-form form select {
  padding: 0 12px;
  width: 100%;
  border: none;
  height: 48px;
  background-color: #F6F6F6;
  color: #1D1D1D;
  margin-bottom: 15px;
  border-radius: 5px;
}
.page-template-page-contact .wrapper .cell.col-form form input[type=submit], .page-template-page-contact .wrapper .cell.col-form form textarea[type=submit], .page-template-page-contact .wrapper .cell.col-form form select[type=submit] {
  background: linear-gradient(0deg, #0058AA 0%, #003E78 100%);
  border-radius: 11px;
  color: #ffffff;
  font-size: 600;
}
.page-template-page-contact .wrapper .cell.col-form form input[type=submit], .page-template-page-contact .wrapper .cell.col-form form textarea[type=submit], .page-template-page-contact .wrapper .cell.col-form form select[type=submit] {
  font-size: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .wrapper .cell.col-form form input[type=submit], .page-template-page-contact .wrapper .cell.col-form form textarea[type=submit], .page-template-page-contact .wrapper .cell.col-form form select[type=submit] {
    font-size: 1.375rem;
  }
}
.page-template-page-contact .wrapper .cell.col-form form input[type=submit]:hover, .page-template-page-contact .wrapper .cell.col-form form textarea[type=submit]:hover, .page-template-page-contact .wrapper .cell.col-form form select[type=submit]:hover {
  background: #003E78;
}
.page-template-page-contact .wrapper .cell.col-form form textarea {
  padding: 20px 12px;
  height: 100px;
}
.page-template-page-contact .wrapper .cell.col-form form .wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 8px);
  margin: 0;
}
.page-template-page-contact .wrapper .cell.col-form form .wpcf7-response-output {
  margin: 15px 0 5px;
}
.page-template-page-contact .contact-map {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-page-contact .contact-map {
    margin-top: 3.125rem;
  }
}
.page-template-page-contact .contact-map .iframe-map {
  position: relative;
}
.page-template-page-contact .contact-map .iframe-map iframe {
  border-radius: 23px;
  width: 100%;
  height: 480px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-page-contact .contact-map .iframe-map iframe {
    height: 300px;
  }
}

.page-processing .heading-title {
  font-size: 1.75rem;
}
@media only screen and (min-width: 48rem) {
  .page-processing .heading-title {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-processing .heading-title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .heading-title {
    line-height: 1.4;
  }
}
.page-processing .section-customer {
  padding-top: 10px;
}
.page-processing .section-customer {
  padding-bottom: 3.75rem;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-customer {
    padding-bottom: 6.25rem;
  }
}
.page-processing .section-customer .swiper-container .swiper-wrapper {
  justify-content: center;
}
.page-processing .section-customer .swiper-container .swiper-slide {
  width: 20%;
  padding: 0 15px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-customer .swiper-container .swiper-slide {
    width: 50%;
    padding: 0 5px;
  }
}
.page-processing .section-customer .swiper-container .swiper-slide .img {
  position: relative;
}
.page-processing .section-customer .swiper-container .swiper-slide .img::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.page-processing .section-customer .swiper-container .swiper-slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-processing .section-customer .swiper-controls .swiper-button.swiper-button-prev {
  left: -5px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-customer .swiper-controls .swiper-button.swiper-button-prev {
    left: -15px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-customer .swiper-controls .swiper-button.swiper-button-prev {
    left: -5px;
  }
}
.page-processing .section-customer .swiper-controls .swiper-button.swiper-button-next {
  right: -5px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-customer .swiper-controls .swiper-button.swiper-button-next {
    right: -15px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-customer .swiper-controls .swiper-button.swiper-button-next {
    right: -5px;
  }
}
.page-processing .section-customer .swiper-controls .swiper-pagination {
  bottom: -80px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-customer .swiper-controls .swiper-pagination {
    bottom: -60px;
  }
}
.page-processing .section-product-process .content {
  width: 80%;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .content {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page-processing .section-product-process .product-list {
  gap: 20px;
}
.page-processing .section-product-process .product-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.page-processing .section-product-process .product-list .item {
  flex: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-list .item {
    min-width: calc(50% - 5px);
  }
}
.page-processing .section-product-process .product-list .item.active .title-product, .page-processing .section-product-process .product-list .item:hover .title-product {
  cursor: pointer;
  background-color: #064DA1;
  color: #ffffff;
}
.page-processing .section-product-process .product-list .item .title-product {
  color: #064da1;
  font-weight: 600;
  border: 1px solid #064da1;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
.page-processing .section-product-process .product-list .item .title-product {
  font-size: 1.0625rem;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-product-process .product-list .item .title-product {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-list .item .title-product {
    padding: 10px 5px;
  }
}
.page-processing .section-product-process .product-list a.block::before, .page-processing .section-product-process .product-list .img-product::before {
  content: "";
  display: block;
  padding-bottom: 95%;
}
.page-processing .section-product-process .product-list a.block img, .page-processing .section-product-process .product-list .img-product img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-processing .section-product-process .product-list .swiper-container .swiper-slide {
  width: 25%;
  padding: 15px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-list .swiper-container .swiper-slide {
    width: 50%;
    padding: 5px;
  }
}
.page-processing .section-product-process .product-list .swiper-container .swiper-slide div.btn-main {
  margin-top: 0;
  cursor: pointer;
}
.page-processing .section-product-process .product-list .swiper-controls .swiper-button {
  top: 60%;
}
.page-processing .section-product-process .product-list .swiper-controls .swiper-button.swiper-button-prev {
  left: 10%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-list .swiper-controls .swiper-button.swiper-button-prev {
    left: 15px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-processing .section-product-process .product-list .swiper-controls .swiper-button.swiper-button-prev {
    left: 5px;
  }
}
.page-processing .section-product-process .product-list .swiper-controls .swiper-button.swiper-button-next {
  right: 10%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-list .swiper-controls .swiper-button.swiper-button-next {
    right: 15px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-processing .section-product-process .product-list .swiper-controls .swiper-button.swiper-button-next {
    right: 5px;
  }
}
.page-processing .section-product-process .product-list .swiper-controls .swiper-pagination {
  bottom: -60px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-list .swiper-controls .swiper-pagination {
    bottom: -40px;
  }
}
.page-processing .section-product-process .product-tab-content {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-product-process .product-tab-content {
    margin-top: 1.875rem;
  }
}
.page-processing .section-product-process .product-tab-content .content-tab {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-processing .section-product-process .product-tab-content .content-tab.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-img img {
  width: 100%;
}
.page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content {
    padding-left: 2.5rem;
  }
}
.page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content .heading-title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content .heading-title {
    font-size: 2.1875rem;
  }
}
.page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content .content {
  text-align: justify;
  width: 100%;
  margin: 0;
}
.page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content .content {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-product-process .product-tab-content .content-tab .wrapper .cell.cell-content .content {
    font-size: 1.125rem;
  }
}
.page-processing .section-content-group.reverse .wrapper {
  flex-direction: row-reverse;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content {
  padding-left: 0;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-content-group.reverse .wrapper .cell.cell-content {
    padding-right: 2.5rem;
  }
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group {
  margin-top: 0px;
  gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button {
  border: 2px solid #ffffff;
  border-radius: 28px;
  height: 55px;
  background: linear-gradient(360deg, #064DA1 -56.52%, #0059C3 59.78%);
  padding: 0 22px 0 4px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button {
  font-size: 0.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button {
    font-size: 0.9375rem;
  }
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button {
    height: 50px;
    flex-wrap: nowrap;
  }
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button.btn-register {
  background: #FF0006;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button.btn-register:hover {
  background: #015AC3;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button:hover {
  background: #FF0006;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic {
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #FF0006;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic {
  margin-right: 0.625rem;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic {
    margin-right: 0.875rem;
  }
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic {
  width: 2.875rem;
  height: 2.875rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic {
    width: 2.625rem;
    height: 2.625rem;
  }
}
.page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic img {
  width: 1.625rem;
  height: 1.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-content-group.reverse .wrapper .cell.cell-content .btn-group .button .ic img {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.page-processing .section-content-group .wrapper .cell {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-processing .section-content-group .wrapper .cell {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.page-processing .section-content-group .wrapper .cell.cell-img img {
  width: 100%;
}
.page-processing .section-content-group .wrapper .cell.cell-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-processing .section-content-group .wrapper .cell.cell-content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-content-group .wrapper .cell.cell-content {
    padding-left: 2.5rem;
  }
}
.page-processing .section-content-group .wrapper .cell.cell-content .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .page-processing .section-content-group .wrapper .cell.cell-content .heading-title {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-content-group .wrapper .cell.cell-content .heading-title {
    font-size: 2.1875rem;
  }
}
.page-processing .section-content-group .wrapper .cell.cell-content .content {
  text-align: justify;
}
.page-processing .section-content-group .wrapper .cell.cell-content .content {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .page-processing .section-content-group .wrapper .cell.cell-content .content {
    font-size: 1.125rem;
  }
}
.page-processing .section-content-group .wrapper .cell.cell-content .btn-main {
  margin-left: 0;
}

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

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

.page-archive-product .wrapper .cell a.block::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.page-archive-product .wrapper .cell a.block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#popup-processing {
  max-width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  #popup-processing {
    max-width: 80%;
  }
}
@media only screen and (max-width: 39.99875rem) {
  #popup-processing {
    max-width: 95%;
  }
}

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