@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: #08292f;
  --body-bg: #ffffff;
  --link-color: #000000;
  --link-hover-color: black;
  --gutter: 14px;
  --gutter-xs: 24px;
  --gap: 28px;
  --gap-xs: 48px;
  --Primary-01: #FFD700;
  --Primary-02: #D2C1AF;
  --Primary-03: #372D24;
  --Primary-04: #26474D;
  --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: #08292f;
  background: #ffffff;
  font-family: "Inter", -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: "Cormorant Infant", -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: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-optical-sizing: auto;
}

.heading-font {
  font-family: "Cormorant Infant", -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: #ffffff;
}
a:hover {
  color: #FFD700;
  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: 80.625rem) {
  .xl\:hidden {
    display: none;
  }
}

@media only screen and (min-width: 80.625rem) {
  .\!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: -1.5rem;
  margin-right: -1.5rem;
}
@media only screen and (min-width: 48rem) {
  .flex-padding-x {
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }
}
.flex-padding-x > .cell {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .flex-padding-x > .cell {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}

.flex-padding-y {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
@media only screen and (min-width: 48rem) {
  .flex-padding-y {
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }
}
.flex-padding-y > .cell {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@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: 3rem;
  gap: 3rem;
}
@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: 1.5rem;
  padding-right: 1.5rem;
}
@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: 80.625rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    max-width: 1290px;
  }
}
@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% - 2.75rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-1 {
  width: calc(8.3333333333% - 2.75rem) !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% - 1.5rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-2 {
  width: calc(16.6666666667% - 2.5rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-2 {
  width: calc(16.6666666667% - 2.5rem) !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% - 2rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-3 {
  width: calc(25% - 2.25rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-3 {
  width: calc(25% - 2.25rem) !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% - 2.25rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-4 {
  width: calc(33.3333333333% - 2rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-4 {
  width: calc(33.3333333333% - 2rem) !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% - 2.4rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-5 {
  width: calc(41.6666666667% - 1.75rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-5 {
  width: calc(41.6666666667% - 1.75rem) !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% - 2.5rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-6 {
  width: calc(50% - 1.5rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-6 {
  width: calc(50% - 1.5rem) !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% - 2.5714285714rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-7 {
  width: calc(58.3333333333% - 1.25rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-7 {
  width: calc(58.3333333333% - 1.25rem) !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% - 2.625rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-8 {
  width: calc(66.6666666667% - 1rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-8 {
  width: calc(66.6666666667% - 1rem) !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% - 2.6666666667rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-9 {
  width: calc(75% - 0.75rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-9 {
  width: calc(75% - 0.75rem) !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% - 2.7rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-10 {
  width: calc(83.3333333333% - 0.5rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-10 {
  width: calc(83.3333333333% - 0.5rem) !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% - 2.7272727273rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.sm-11 {
  width: calc(91.6666666667% - 0.25rem);
}
:is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!sm-11 {
  width: calc(91.6666666667% - 0.25rem) !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% - 2.75rem);
}
: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 {
  position: absolute;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease, top 0.3s ease;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header {
    padding: 5px 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header > .container {
    align-items: center;
    justify-content: space-between;
  }
}
#inside-header .cell.cell-left {
  flex: 0 0 25%;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-left {
    flex: 0 0 20%;
  }
}
#inside-header .cell.cell-left a.logo {
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
}
#inside-header .cell.cell-left a.logo .custom-logo-link {
  display: block;
}
#inside-header .cell.cell-left a.logo .custom-logo-link img {
  width: auto;
  height: 110px;
  object-fit: contain;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-left a.logo .custom-logo-link img {
    height: 80px;
  }
}
#inside-header .cell.cell-center {
  flex: 0 0 50%;
  max-width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-center {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
#inside-header .cell.cell-center .nav {
  padding-left: 50px;
  height: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-center .nav {
    display: none;
  }
}
#inside-header .cell.cell-center .nav .horizontal-menu {
  height: 100%;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
#inside-header .cell.cell-center .nav .horizontal-menu li.is-dropdown-submenu-parent.opens-right > a {
  gap: 6px;
}
#inside-header .cell.cell-center .nav .horizontal-menu li.is-dropdown-submenu-parent.opens-right > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell.cell-center .nav .horizontal-menu li.is-dropdown-submenu-parent.opens-right > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-weight: 400;
  position: relative;
  margin-top: 0;
  top: 0;
  left: inherit;
  right: inherit;
  border: none;
  font-size: 12px;
  width: 12px;
  height: 76px;
  line-height: 76px;
}
#inside-header .cell.cell-center .nav .horizontal-menu li.current_page_item a, #inside-header .cell.cell-center .nav .horizontal-menu li.current-menu-parent.current-post-parent.active a, #inside-header .cell.cell-center .nav .horizontal-menu li:hover a {
  color: #FFD700;
}
#inside-header .cell.cell-center .nav .horizontal-menu li a {
  padding: 0;
  line-height: 76px;
}
#inside-header .cell.cell-right {
  flex: 1 1 auto;
  justify-content: flex-end;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-right {
    flex: inherit;
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-right .dropdown-search {
    display: none;
  }
}
#inside-header .cell.cell-right .dropdown-search .trigger-s span {
  display: none;
}
#inside-header .cell.cell-right .header-phone a {
  align-items: center;
  transition: all 0.3s;
}
#inside-header .cell.cell-right .header-phone a:hover {
  transform: translateY(-3px);
}
#inside-header .cell.cell-right .header-phone a .icon {
  background-color: #D2C1AF;
  color: rgba(11, 12, 12, 0.7490196078);
  margin-right: 16px;
}
#inside-header .cell.cell-right .header-phone a .icon {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell.cell-right .header-phone a .icon {
    font-size: 1.25rem;
  }
}
#inside-header .cell.cell-right .header-phone a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell.cell-right .header-phone a .icon {
  width: 2.75rem;
  height: 2.75rem;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-right .header-phone a .icon {
    margin-right: 0;
    margin-left: 10px;
  }
}
#inside-header .cell.cell-right .header-phone a .number {
  line-height: normal;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell.cell-right .header-phone a .number {
    display: none;
  }
}
#inside-header .cell.cell-right .header-phone a .number .text {
  font-weight: 600;
  color: #ffffff;
}
#inside-header .cell.cell-right .header-phone a .number .sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7215686275);
}

.before-footer {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .before-footer {
    padding-top: 3.125rem;
  }
}
.before-footer {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .before-footer {
    padding-bottom: 3.125rem;
  }
}
.before-footer .widget_text > span {
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.before-footer .widget_text > span {
  font-size: 1.625rem;
}
@media only screen and (min-width: 48rem) {
  .before-footer .widget_text > span {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .before-footer .widget_text > span {
    font-size: 2rem;
  }
}
.before-footer .widget_text .custom-html-widget .desc {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .before-footer .widget_text .custom-html-widget .desc {
    margin-bottom: 1.875rem;
  }
}
.before-footer .widget_text .custom-html-widget .desc {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .before-footer .widget_text .custom-html-widget .desc {
    font-size: 1.125rem;
  }
}
footer#footer {
  background-color: #0B0C0C;
  color: #ffffff;
}
footer#footer {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  footer#footer {
    padding-top: 3.125rem;
  }
}

#footer-columns .cell {
  padding: 0 15px;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .cell {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px 0;
  }
}
#footer-columns .cell.cell-about .footer-title {
  font-size: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .cell.cell-about .footer-title {
    font-size: 2.5rem;
  }
}
#footer-columns .cell.cell-about .desc {
  font-size: 15px;
  text-align: justify;
  margin-bottom: 20px;
}
#footer-columns .cell.cell-about .social-menu li {
  margin-right: 5px;
}
#footer-columns .cell.cell-about .social-menu li:last-child {
  margin-right: 0;
}
#footer-columns .cell.cell-about .social-menu li a {
  background-color: #D2C1AF;
  border-radius: 10%;
  padding: 0;
}
#footer-columns .cell.cell-about .social-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer-columns .cell.cell-about .social-menu li a {
  width: 2.5rem;
  height: 2.5rem;
}
#footer-columns .cell.cell-about .social-menu li a.facebook {
  background-color: #365899;
}
#footer-columns .cell.cell-about .social-menu li a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
#footer-columns .cell.cell-about .social-menu li a.tiktok {
  background-color: #000000;
}
#footer-columns .cell.cell-contact .inner {
  margin-bottom: 30px;
}
#footer-columns .cell.cell-contact .inner:last-child {
  margin-bottom: 0;
}
#footer-columns .cell.cell-contact .inner .lists {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 15px;
}
#footer-columns .cell.cell-contact .inner .lists li {
  margin-bottom: 5px;
}
#footer-columns .cell.cell-contact .inner .lists li:last-child {
  margin-bottom: 0;
}
#footer-columns .cell.cell-contact .inner .lists li i {
  margin-right: 5px;
}
#footer-columns .cell.cell-map iframe {
  width: 100%;
  height: 300px;
}
#footer-columns .cell .footer-title {
  font-weight: 400;
  font-family: "Cormorant Infant", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
}
#footer-columns .cell .footer-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .cell .footer-title {
    font-size: 1.625rem;
  }
}

#footer-credit .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
#footer-credit .copyright {
  border-top: 1px dashed rgba(255, 255, 255, 0.2392156863);
  padding-top: 10px;
  font-size: 14px;
}
#footer-credit nav {
  flex: 0 0 66.6666666667%;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-credit nav {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #footer-credit nav .menu {
    justify-content: center;
  }
}
#footer-credit nav .menu li a {
  color: #ffffff;
  font-size: 14px;
}
#footer-credit nav .menu li a:hover {
  text-decoration: underline;
  color: #f9d309;
}

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

: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: #08292f #f3f3f3 #08292f #f3f3f3;
  border-radius: 50%;
  animation: spin 2.5s linear infinite;
  position: absolute;
  top: calc(50% - 17px);
  left: calc(50% - 17px);
  width: 30px;
  height: 30px;
}

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

.sharing-toolbox {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sharing-toolbox {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media only screen and (max-width: 47.99875rem) {
  .sharing-toolbox {
    position: absolute;
    left: 15px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .sharing-toolbox {
    display: none;
  }
}
.sharing-toolbox .share-title {
  display: none;
}
.sharing-toolbox .social-share {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}
.sharing-toolbox .social-share > .share-label {
  display: none;
}
.sharing-toolbox .social-share ul.share-actions {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.sharing-toolbox .social-share ul.share-actions {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action {
  border: 1px solid #EDF2EE;
  border-radius: 50%;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action {
  width: 2rem;
  height: 2rem;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action > button.share-button {
  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;
}
.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;
}
.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: #FFD700;
}

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

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

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

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

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

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

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

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

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

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

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

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

.back-to-top {
  opacity: 0;
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 30px;
  border: 1px solid #D2C1AF;
  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: #D2C1AF;
}
.back-to-top > svg {
  width: 1.75rem;
  height: 1.75rem;
}
.back-to-top:hover {
  border-color: #FFD700;
}
.back-to-top:hover > svg {
  color: #FFD700;
}

.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;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 10px 14px;
  border-radius: 6px;
  /*@include hamburger($Primary-01, $Primary-02, 22px, 18px, 2px, 3);*/
}
.off-canvas-content .menu-lines {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
.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.5rem;
  height: 0.9375rem;
}
.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: 2px;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  right: 0;
}
.off-canvas-content .menu-lines .line > span.line-2::before {
  transition: 0.3s;
}
.off-canvas-content .menu-lines:hover .menu-txt {
  color: #FFD700;
}
.off-canvas-content .menu-lines:hover .line > span::before {
  background-color: #FFD700;
}
.off-canvas-content .menu-lines:hover .line > span.line-2::before {
  width: 100%;
}

.off-canvas {
  background-color: #0B0C0C;
  color: #ffffff;
}
.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: #FFD700;
  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: 200px;
  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: 60px;
}
.off-canvas .menu-outer .inline-search {
  margin-bottom: 12px;
}
.off-canvas .menu-outer .inline-search .frm-search {
  border: none;
  border-radius: 0;
  background: none;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
.off-canvas .menu-outer .inline-search .frm-search input[type=search] {
  height: 42px;
  width: 100%;
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.031372549);
  background-color: rgba(0, 0, 0, 0.031372549);
  padding-left: 12px;
  padding-right: 40px;
  font-size: 14px;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] {
  position: absolute;
  background: #ffffff;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] {
  width: 2.25rem;
  height: 2.25rem;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] span {
  display: none;
}
.off-canvas ul.vertical.menu {
  position: relative;
  z-index: 9998;
  height: 100%;
  overflow: hidden;
  transform: translateZ(3px);
}
.off-canvas ul.vertical.menu li a {
  font-size: 15px;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 24px;
  display: block;
  text-transform: uppercase;
  color: #ffffff;
}
.off-canvas ul.vertical.menu li a[aria-current=page] {
  color: #D2C1AF;
  font-weight: 600;
}
.off-canvas ul.vertical.menu li.menu-glyph span::before {
  content: none;
}
.off-canvas.is-transition-overlap {
  z-index: 1000001 !important;
}
.off-canvas.is-transition-overlap.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap.is-open {
  visibility: visible;
  box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
}

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

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

.dropdown-search .trigger-s.hover::before {
  content: "\f00d";
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
  left: 1px !important;
  right: 1px !important;
  width: calc(100% - 2px);
  padding: 0;
  font-size: 15px;
  border: none;
  background: none;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container {
  position: relative;
  border: 1px solid #9a9a9a;
  background-color: #fff;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 768px;
  }
}
@media only screen and (min-width: 64rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1024px;
  }
}
@media only screen and (min-width: 80.625rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1290px;
  }
}
.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;
}

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

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

html, body {
  scroll-behavior: smooth;
}

body {
  background-color: #FBF1EA;
  color: #000000;
}

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

.heading-title {
  margin-bottom: 10px;
  text-transform: none;
  color: #FFD700;
  line-height: 1.3;
}
.heading-title {
  font-size: 1.625rem;
}
@media only screen and (min-width: 48rem) {
  .heading-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 64rem) {
  .heading-title {
    font-size: 2.5rem;
  }
}

.heading-group {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .heading-group {
    max-width: 100%;
  }
}
.heading-group .sub-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  color: #caa343;
  font-family: "Dancing Script", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
}
.heading-group .heading-title {
  line-height: 56px;
}
.heading-group .heading-title {
  margin-top: 0.625rem;
}
@media only screen and (min-width: 64rem) {
  .heading-group .heading-title {
    margin-top: 1.25rem;
  }
}
.heading-group .heading-title {
  font-size: 2rem;
}
@media only screen and (min-width: 48rem) {
  .heading-group .heading-title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .heading-group .heading-title {
    font-size: 3.5rem;
  }
}

.btn-main {
  height: 50px;
  padding: 0 25px;
  color: #D2C1AF;
  font-weight: 700;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  font-size: 13px;
  text-transform: uppercase;
  background-color: #0B0C0C;
  border: 1px solid #D2C1AF;
  transition: all 0.3s;
}
.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 39.99875rem) {
  .btn-main {
    padding: 0 20px;
    height: 44px;
  }
}
.btn-main:hover {
  transform: translateY(-3px);
}
.btn-main.bg-white {
  background-color: #ffffff;
  color: #FFD700;
}
.btn-main.bg-white:hover {
  border-color: #FFD700;
  background-color: #FFD700;
  color: #ffffff;
}
.btn-main.bg-transparent {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-main.bg-transparent:hover {
  background-color: #ffffff;
  color: #FFD700;
}
.btn-main:hover {
  color: #ffffff;
  background-color: #26474D;
  border-color: #26474D;
}

.section-breadcrumb {
  overflow: hidden;
  position: relative;
}
.section-breadcrumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 12, 12, 0.7490196078);
}
.section-breadcrumb .breadcrumb-bg {
  display: block;
  width: 100%;
  height: 400px;
}
.section-breadcrumb .breadcrumb-bg::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.section-breadcrumb .breadcrumb-bg img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.section-breadcrumb .container {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
}
.section-breadcrumb .container .breadcrumb-title {
  font-family: "Cormorant Infant", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  color: #ffffff;
  margin-bottom: 0;
  line-height: normal;
}
.section-breadcrumb .container .breadcrumb-title {
  font-size: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .section-breadcrumb .container .breadcrumb-title {
    font-size: 4.25rem;
  }
}
.section-breadcrumb #breadcrumbs {
  display: none;
  padding: 10px 0;
  margin: 0;
  list-style-type: none;
  font-size: 14px;
}
@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-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: 13px;
  margin: 0 10px;
  color: #1C1C1C;
}
@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.current {
  font-weight: 600;
}
.section-breadcrumb #breadcrumbs li .home {
  font-weight: 400;
}

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

.archive-post .heading-title {
  color: #FFD700;
}
.archive-post .heading-title {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post .heading-title {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-post .heading-title {
    margin-bottom: 2.5rem;
  }
}
.archive-post .heading-title {
  font-size: 1.75rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post .heading-title {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-post .heading-title {
    font-size: 4.5rem;
  }
}
.archive-post .sl-featured {
  margin-bottom: 30px;
}
.archive-post .sl-featured .sl-featured-title {
  font-weight: 700;
}
.archive-post .sl-featured .sl-featured-title {
  font-size: 1.375rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post .sl-featured .sl-featured-title {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-post .sl-featured .sl-featured-title {
    font-size: 1.875rem;
  }
}
.archive-post .sl-featured .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .sl-featured .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive-post .sl-featured .wrapper .item {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.archive-post .sl-featured .wrapper .item:hover .cover .scale::before {
  opacity: 1;
  visibility: visible;
}
.archive-post .sl-featured .wrapper .item .cover {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.archive-post .sl-featured .wrapper .item .cover .scale::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.archive-post .sl-featured .wrapper .item .cover .link-cover {
  z-index: 2;
}
.archive-post .sl-featured .wrapper .content {
  padding: 24px;
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .sl-featured .wrapper .content {
    padding: 16px;
  }
}
.archive-post .sl-featured .wrapper .content .tag span {
  display: inline-block;
  height: 24px;
  padding: 0 12px;
  border-radius: 50px;
  background-color: #D2C1AF;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-right: 12px;
}
.archive-post .sl-featured .wrapper .content .tag span:last-child {
  margin-right: 0;
}
.archive-post .sl-featured .wrapper .content .title {
  font-weight: 700;
  margin-top: 16px;
}
.archive-post .sl-featured .wrapper .content .title {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .sl-featured .wrapper .content .title {
    font-size: 1.125rem;
  }
}
.archive-post .sl-featured .wrapper .content .title a {
  line-height: 1.4;
}
.archive-post .sl-featured .wrapper .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .sl-featured .wrapper .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .sl-featured .wrapper .content .title a:hover {
  color: #FFD700;
}
.archive-post .sl-featured .wrapper .content .author-info .avatar img {
  border-radius: 50%;
}
.archive-post .sl-featured .wrapper .content .author-info .name {
  font-size: 14px;
  font-weight: 700;
}
.archive-post .sl-featured .wrapper .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .archive-post .sl-featured .wrapper .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .all-posts .heading-title {
  font-weight: 700;
}
.archive-post .all-posts .heading-title {
  font-size: 1.375rem;
}
@media only screen and (min-width: 48rem) {
  .archive-post .all-posts .heading-title {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 64rem) {
  .archive-post .all-posts .heading-title {
    font-size: 1.875rem;
  }
}
.archive-post .all-posts #category {
  margin-bottom: 20px;
  height: 35px;
  padding-left: 10px;
  border-radius: 50px;
  border: 1px solid #000000;
  width: 100%;
  color: #000000;
  -webkit-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M201.4%20374.6c12.5%2012.5%2032.8%2012.5%2045.3%200l160-160c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L224%20306.7%2086.6%20169.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3l160%20160z%22%2F%3E%3C%2Fsvg%3E") no-repeat right center;
  background-size: 12px;
  background-position: right 10px center;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: 500;
  padding-right: 35px;
}
.archive-post .archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .archive-post .archive-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .archive-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive-post .archive-list .cell .item {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.archive-post .archive-list .cell .item:hover .cover .scale::before {
  opacity: 1;
  visibility: visible;
}
.archive-post .archive-list .cell .item .cover {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.archive-post .archive-list .cell .item .cover .scale::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.archive-post .archive-list .cell .item .cover .link-cover {
  z-index: 2;
}
.archive-post .archive-list .cell .item .content {
  padding: 24px;
}
@media only screen and (max-width: 39.99875rem) {
  .archive-post .archive-list .cell .item .content {
    padding: 16px;
  }
}
.archive-post .archive-list .cell .item .content .tag span {
  display: inline-block;
  height: 24px;
  padding: 0 12px;
  border-radius: 50px;
  background-color: #D2C1AF;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-right: 12px;
}
.archive-post .archive-list .cell .item .content .tag span:last-child {
  margin-right: 0;
}
.archive-post .archive-list .cell .item .content .title {
  font-weight: 700;
  margin-top: 16px;
}
.archive-post .archive-list .cell .item .content .title {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .archive-post .archive-list .cell .item .content .title {
    font-size: 1.125rem;
  }
}
.archive-post .archive-list .cell .item .content .title a {
  line-height: 1.4;
}
.archive-post .archive-list .cell .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .archive-post .archive-list .cell .item .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .archive-list .cell .item .content .title a:hover {
  color: #FFD700;
}
.archive-post .archive-list .cell .item .content .author-info .avatar img {
  border-radius: 50%;
}
.archive-post .archive-list .cell .item .content .author-info .name {
  font-size: 14px;
  font-weight: 700;
}
.archive-post .archive-list .cell .item .content .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 3) {
  .archive-post .archive-list .cell .item .content .excerpt {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.archive-post .nav-pagination .pagination li {
  border: 1px solid #ddd;
  border-radius: 3px;
}

.single-post .section-page {
  margin-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-page {
    margin: 20px auto;
  }
}
.single-post .sidebar {
  width: 340px;
}
.single-post .sidebar {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .single-post .sidebar {
    padding-left: 0.9375rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .sidebar {
    width: 100%;
  }
}
.single-post .sidebar .sidebar-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}
.single-post .sidebar .widget_form {
  background-color: #FFD700;
  border-radius: 23px;
  padding: 35px 15px 20px;
  color: #ffffff;
}
.single-post .sidebar .widget_form {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .sidebar .widget_form {
    margin-bottom: 1.875rem;
  }
}
.single-post .sidebar .widget_form .title {
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}
.single-post .sidebar .widget_form .title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .sidebar .widget_form .title {
    font-size: 1.3125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .sidebar .widget_form .title {
    font-size: 1.4375rem;
  }
}
.single-post .sidebar .widget_form .desc {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}
.single-post .sidebar .widget_form form input {
  width: 100%;
  padding: 0 12px;
  height: 42px;
  border: 1px solid #ffffff;
  background-color: #098E5B;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffff;
  border-radius: 8px;
}
.single-post .sidebar .widget_form form input::-webkit-input-placeholder {
  color: #ffffff;
}
.single-post .sidebar .widget_form form input::placeholder {
  color: #ffffff;
}
.single-post .sidebar .widget_form form .btn-submit {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  margin-top: 5px;
  width: -webkit-fit-content;
  width: fit-content;
  background-color: #BE2025;
  border-radius: 100px;
  border: 1px solid #ffffff;
  padding: 0 20px;
}
.single-post .sidebar .widget_form form .btn-submit:hover {
  background-color: #db0c13;
}
.single-post .sidebar .widget_form form .btn-submit i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 22px;
  z-index: 0;
}
.single-post .sidebar .widget_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;
}
.single-post .sidebar .widget_form form .btn-submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  bottom: 8px;
  left: -50px;
}
.single-post .sidebar .widget_form form .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #dcc932;
  margin-top: -5px;
  margin-bottom: 5px;
}
.single-post .sidebar .widget_form form .wpcf7-response-output {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 0;
  border-radius: 4px;
}
.single-post .sidebar .widget_related_posts {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 35px 15px 20px;
  border: 1px solid #DDDDDD;
}
.single-post .sidebar .widget_related_posts .related-title {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #FFD700;
}
.single-post .sidebar .widget_related_posts .related-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .sidebar .widget_related_posts .related-title {
    font-size: 1.3125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .sidebar .widget_related_posts .related-title {
    font-size: 1.375rem;
  }
}
.single-post .sidebar .widget_related_posts .posts-list .cell {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #EBEBEB;
}
.single-post .sidebar .widget_related_posts .posts-list .cell:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item {
  display: flex;
  align-items: center;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .cover {
  width: 100px;
  border-radius: 4px;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .content {
  width: calc(100% - 100px);
  padding-left: 15px;
  padding-right: 0;
  display: flex;
  flex-direction: column;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .content .post-date {
  font-size: 13px;
  color: #5C5C5C;
  order: 2;
  line-height: normal;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .content .title {
  font-size: 14px;
  margin-bottom: 2px;
  order: 1;
  line-height: 22px;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .content .title a {
  color: #292929;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .content .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .single-post .sidebar .widget_related_posts .posts-list .cell .item .content .title a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .content .title a:hover {
  color: #FFD700;
  text-decoration: none;
}
.single-post .sidebar .widget_related_posts .posts-list .cell .item .content .excerpt {
  display: none;
}
.single-post .content-post {
  width: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post {
    width: 100%;
  }
}
.single-post .content-post .post-category {
  font-size: 14px;
  text-align: center;
  display: block;
}
.single-post .content-post .heading-title {
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  color: #D2C1AF;
  margin-bottom: 25px;
}
.single-post .content-post .heading-title {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .content-post .heading-title {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .content-post .heading-title {
    font-size: 1.5rem;
  }
}
.single-post .content-post .meta {
  display: flex;
  align-items: center;
  padding: 5px 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .meta {
    padding: 5px 0 15px;
  }
}
.single-post .content-post .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-post .meta > div:last-child {
  border-right: unset;
  padding-right: 0;
  margin-right: 0;
}
.single-post .content-post .meta > div i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #101210;
}
.single-post .content-post .meta > div i {
  width: 1rem;
  height: 1rem;
}
.single-post .content-post .meta ._author {
  text-transform: capitalize;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .meta ._date {
    border-right: unset;
    padding-right: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .meta ._time {
    display: none;
  }
}
.single-post .content-post .content-fix {
  padding: 40px 0;
  text-align: center;
  font-weight: 500;
}
.single-post .content-post .content-fix .widget_text strong {
  color: #FFD700;
}
.single-post .content-post .content-fix .widget_text strong {
  font-size: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .content-post .content-fix .widget_text strong {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .content-post .content-fix .widget_text strong {
    font-size: 1.5rem;
  }
}
.single-post .content-post .content-fix .widget_text a {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .single-post .content-post .content-fix .widget_text a {
    font-size: 1.25rem;
  }
}
.single-post .content-post .content-fix .group-btn {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .content-fix .group-btn {
    flex-wrap: wrap;
  }
}
.single-post .content-post .content-fix .group-btn .btn {
  height: 58px;
  background-color: #FFD700;
  color: #ffffff;
  font-weight: 700;
  border-radius: 30px;
  width: 26%;
}
.single-post .content-post .content-fix .group-btn .btn {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .single-post .content-post .content-fix .group-btn .btn {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .single-post .content-post .content-fix .group-btn .btn {
    font-size: 1.1875rem;
  }
}
.single-post .content-post .content-fix .group-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .content-fix .group-btn .btn {
    width: 33%;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .content-fix .group-btn .btn {
    width: 80%;
  }
}
.single-post .content-post .content-fix .group-btn .btn:hover {
  background-color: #ffffff;
  text-decoration: none;
  color: #FFD700;
}
.single-post .content-post .content-fix .group-btn .btn:hover span {
  border-color: #FFD700;
}
.single-post .content-post .content-fix .group-btn .btn span {
  position: relative;
  height: 50px;
  width: calc(100% - 8px);
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 0 24px;
}
.single-post .content-post .content-fix .group-btn .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .content-fix .group-btn .btn span {
    line-height: normal;
  }
}
.single-post .content-post .hashtags {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .hashtags .hashtag-links {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    gap: 10px 0;
    grid-gap: 10px 0;
  }
}
.single-post .content-post .hashtags .hashtag-links i {
  margin-right: 20px;
  font-style: normal;
}
.single-post .content-post .hashtags .hashtag-links i::before {
  content: "Từ khoá:";
  font-family: "Inter", sans-serif;
  line-height: 21px;
  font-weight: 500;
  color: #000914;
}
.single-post .content-post .hashtags .hashtag-links i::before {
  font-size: 0.875rem;
}
.single-post .content-post .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-post .hashtags .hashtag-links a {
  font-size: 0.875rem;
}
.single-post .content-post .hashtags .hashtag-links a:hover {
  background: #FFD700;
  color: #ffffff;
}
.single-post .content-post .wp-comments-area.comments-area {
  border: 1px solid #DBE1E9;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .wp-comments-area.comments-area {
    padding: 12px;
    border-radius: 12px;
  }
}
.single-post .content-post .wp-comments-area.comments-area .comments-title {
  font-family: "Inter", sans-serif;
  color: #000914;
}
.single-post .content-post .wp-comments-area.comments-area .comments-title span {
  font-weight: 400;
}
.single-post .content-post .wp-comments-area.comments-area .fs-16.medium.block {
  font-weight: 700;
  color: #000914;
}
.single-post .content-post .wp-comments-area.comments-area .no-icons {
  color: #718093;
  text-align: center;
  margin-bottom: 0;
}
.single-post .content-post .wp-comments-area.comments-area .no-icons {
  font-size: 2.5rem;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .wp-comments-area.comments-area .no-icons {
    font-size: 1.5rem;
  }
}
.single-post .content-post .wp-comments-area.comments-area .no-comments {
  color: #2A3645;
  text-align: center;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond .comment-reply-title, .single-post .content-post .wp-comments-area.comments-area .comment-respond ._label_title, .single-post .content-post .wp-comments-area.comments-area .comment-respond .comment-notes {
  display: none;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form .comment-form-comment, .single-post .content-post .wp-comments-area.comments-area .comment-respond form .form-submit {
  flex: 0 0 100%;
  max-width: 100%;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form .comment-form-author, .single-post .content-post .wp-comments-area.comments-area .comment-respond form .comment-form-email {
  flex: 0 0 49%;
  max-width: 49%;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .wp-comments-area.comments-area .comment-respond form .comment-form-author, .single-post .content-post .wp-comments-area.comments-area .comment-respond form .comment-form-email {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form textarea {
  background: #F6F9FF;
  border-radius: 8px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 21px;
  font-style: italic;
  border: unset;
  width: 100%;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form textarea {
  font-size: 0.875rem;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form input#author {
  line-height: 21px;
  font-style: italic;
  padding-left: 10px;
  padding-right: 10px;
  background: #F6F9FF;
  border-radius: 8px;
  width: 100%;
  border: unset;
  height: 45px;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form input#author {
  font-size: 0.875rem;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form input#email {
  line-height: 21px;
  font-style: italic;
  padding-left: 10px;
  padding-right: 10px;
  background: #F6F9FF;
  border-radius: 8px;
  width: 100%;
  border: unset;
  height: 45px;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form input#email {
  font-size: 0.875rem;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form .form-submit {
  text-align: center;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form .form-submit button {
  padding: 15px 25px;
  background: #26474D;
  border: unset;
  box-shadow: unset;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.4s;
}
.single-post .content-post .wp-comments-area.comments-area .comment-respond form .form-submit button:hover {
  background: #FFD700;
  transform: translateY(-5px);
}
.single-post .content-post .wp-comments-area.comments-area .comment-list {
  list-style: none;
  margin: 0;
  padding-top: 15px;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-avatar {
  border-radius: 100%;
  overflow: hidden;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-info span {
  display: block;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-info .comment-author {
  text-transform: capitalize;
  font-weight: 600;
  color: #000914;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-info .comment-author {
  font-size: 0.875rem;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-meta .comment-info .comment-date {
  font-size: 0.75rem;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-content {
  flex: 0 0 100%;
  max-width: 100%;
}
.single-post .content-post .wp-comments-area.comments-area .comment-list .comment .comment-body .comment-awaiting-moderation {
  flex: 0 0 100%;
  max-width: 100%;
}
.single-post .content-post .post-author {
  border: 1px solid #DFDFDF;
  -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;
  border-radius: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .post-author {
    padding: 12px;
    margin-bottom: 20px;
  }
}
.single-post .content-post .post-author .post-author-inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .post-author .post-author-inner {
    flex-flow: row wrap;
  }
}
.single-post .content-post .post-author .post-author-inner ._iamges {
  flex: 0 0 162px;
  max-width: 162px;
  border-radius: 100%;
  overflow: hidden;
}
.single-post .content-post .post-author .post-author-inner ._iamges {
  width: 10.125rem;
  height: 10.125rem;
}
.single-post .content-post .post-author .post-author-inner ._iamges img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post .content-post .post-author .post-author-inner ._content {
  flex: 1;
  padding-left: 15px;
  display: flex;
  flex-flow: row wrap;
}
.single-post .content-post .post-author .post-author-inner ._content {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .post-author .post-author-inner ._content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.single-post .content-post .post-author .post-author-inner ._content ._title {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  position: relative;
  padding-bottom: 10px;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .post-author .post-author-inner ._content ._title {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.single-post .content-post .post-author .post-author-inner ._content ._title::after {
  position: absolute;
  content: "";
  width: 65px;
  height: 4px;
  border-radius: 4px;
  background: #D7CEBE;
  left: 0;
  bottom: 0;
}
.single-post .content-post .post-author .post-author-inner ._content ._title span {
  display: block;
}
.single-post .content-post .post-author .post-author-inner ._content ._title span:first-child {
  color: #FFD700;
}
.single-post .content-post .post-author .post-author-inner ._content ._title span:last-child {
  text-transform: uppercase;
  color: #FFD700;
  font-weight: 600;
  line-height: 37px;
}
.single-post .content-post .post-author .post-author-inner ._content ._title span:last-child {
  font-size: 1.5rem;
}
@media only screen and (max-width: 63.99875rem) {
  .single-post .content-post .post-author .post-author-inner ._content ._title span:last-child {
    line-height: 37px;
  }
  .single-post .content-post .post-author .post-author-inner ._content ._title span:last-child {
    font-size: 1.25rem;
  }
}
.single-post .content-post .post-author .post-author-inner ._content ._network {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  display: flex;
  justify-content: flex-end;
}
.single-post .content-post .post-author .post-author-inner ._content ._network {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .content-post .post-author .post-author-inner ._content ._network {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 15px;
    display: none;
  }
}
.single-post .content-post .post-author .post-author-inner ._content ._network ._item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #BFBAB1;
  position: relative;
  transition: 0.4s;
}
.single-post .content-post .post-author .post-author-inner ._content ._network ._item {
  width: 2rem;
  height: 2rem;
}
.single-post .content-post .post-author .post-author-inner ._content ._network ._item svg {
  fill: #606961;
  color: #606961;
}
.single-post .content-post .post-author .post-author-inner ._content ._network ._item svg {
  width: 0.875rem;
  height: 0.875rem;
}
.single-post .content-post .post-author .post-author-inner ._content ._network ._item a {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.single-post .content-post .post-author .post-author-inner ._content ._network ._item:hover {
  transform: translateY(-5px);
  border: 1px solid #FFD700;
}
.single-post .content-post .post-author .post-author-inner ._content ._network ._item:hover svg {
  fill: #FFD700;
  color: #FFD700;
}
.single-post .content-post .post-author .post-author-inner ._content ._desc {
  flex: 0 0 100%;
  max-width: 100%;
  color: #1C1C1C;
}
.single-post .section-related-post .container {
  padding-left: 0;
  padding-right: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide {
  width: 33.3333333333%;
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-container .swiper-slide {
    width: 50%;
  }
}
.single-post .section-related-post .swiper-container .swiper-slide .content {
  width: 100%;
  padding-top: 10px;
  padding-left: 0;
}
.single-post .section-related-post .swiper-container .swiper-slide .content .title a {
  color: #000000;
}
.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 .excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .single-post .section-related-post .swiper-container .swiper-slide .content .excerpt {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-prev {
    left: -12px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .single-post .section-related-post .swiper-controls .swiper-button.swiper-button-next {
    right: -12px;
  }
}

.page-template-default .section-page {
  margin: 10px 0px auto;
}
.page-template-default .section-page {
  padding-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .page-template-default .section-page {
    padding-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-template-default .section-page {
    margin: 20px auto;
  }
}

.section-page {
  margin: 40px auto 0px;
}
.section-page {
  padding-bottom: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .section-page {
    padding-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .section-page {
    margin: 20px auto;
  }
}

.page-about-us .banner-page-about img {
  width: 100%;
}
.page-about-us .sc-about-content {
  overflow: hidden;
}
.page-about-us .sc-about-content {
  padding-top: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-content {
    padding-top: 5rem;
  }
}
.page-about-us .sc-about-content .wrapper {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 48rem) {
  .page-about-us .sc-about-content .wrapper {
    margin-top: 3.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-content .wrapper {
    margin-top: 5rem;
  }
}
.page-about-us .sc-about-content .wrapper .col-img {
  width: 55%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-content .wrapper .col-img {
    width: 100%;
  }
}
.page-about-us .sc-about-content .wrapper .col-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.page-about-us .sc-about-content .wrapper .col-content {
  width: 45%;
  font-weight: 500;
  line-height: 1.6;
}
.page-about-us .sc-about-content .wrapper .col-content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-content .wrapper .col-content {
    padding-left: 3.75rem;
  }
}
.page-about-us .sc-about-content .wrapper .col-content {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-content .wrapper .col-content {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-content .wrapper .col-content {
    padding-top: 30px;
    width: 100%;
  }
}
.page-about-us .sc-about-content .img-circle-bot {
  z-index: -1;
  right: -100px;
  bottom: -100px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-content .img-circle-bot {
    display: none;
  }
}
.page-about-us .sc-about-content .img-circle-top {
  z-index: -1;
  top: -50px;
  right: 0;
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-content .img-circle-top {
    display: none;
  }
}
.page-about-us .sc-about-content .img-circle-left {
  z-index: -1;
  top: 50%;
  left: -50px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-content .img-circle-left {
    display: none;
  }
}
.page-about-us .sc-about-develop .container {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-develop .container {
    top: 30px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-about-us .sc-about-develop .container {
    top: 20px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-about-us .sc-about-develop .container .heading-group .logo {
    display: none;
  }
}
.page-about-us .sc-about-develop .container .heading-group .heading-title {
  color: #ffffff;
}
.page-about-us .sc-about-develop .container .heading-group .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .page-about-us .sc-about-develop .container .heading-group .heading-title {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-develop .container .heading-group .heading-title {
    font-size: 4.5rem;
  }
}
.page-about-us .sc-about-develop .container .heading-group .heading-title {
  margin-bottom: 0;
}
@media only screen and (min-width: 48rem) {
  .page-about-us .sc-about-develop .container .heading-group .heading-title {
    margin-bottom: 0.3125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-develop .container .heading-group .heading-title {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .page-about-us .sc-about-develop .container .heading-group .heading-title {
    margin-top: 0;
  }
}
.page-about-us .sc-about-develop .container .heading-group img.wave {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.page-about-us .sc-about-develop .img img {
  width: 100%;
}
.page-about-us .sc-about-network {
  background: linear-gradient(180deg, #F1F2F0 29.81%, #E1EDDF 100%);
}
.page-about-us .sc-about-network .heading-group .heading-title {
  color: #004631;
}
.page-about-us .sc-about-network .desc {
  text-align: center;
  color: #231F20;
  margin-bottom: 30px;
}
.page-about-us .sc-about-network .desc {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .page-about-us .sc-about-network .desc {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-network .desc {
    font-size: 1.25rem;
  }
}
.page-about-us .sc-about-network .img img {
  width: 100%;
}
.page-about-us .sc-about-process {
  padding-top: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-process {
    padding-top: 5rem;
  }
}
.page-about-us .sc-about-process {
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-process {
    padding-bottom: 5rem;
  }
}
.page-about-us .sc-about-process .wrapper .item {
  padding: 25px 0;
}
.page-about-us .sc-about-process .wrapper .item {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-process .wrapper .item {
    margin-bottom: 3.75rem;
  }
}
.page-about-us .sc-about-process .wrapper .item:nth-child(2n+1) {
  background-color: rgba(146, 200, 74, 0.8);
}
.page-about-us .sc-about-process .wrapper .item:nth-child(2n) {
  background-color: rgba(246, 146, 30, 0.7490196078);
}
.page-about-us .sc-about-process .wrapper .item:nth-child(2n) .container {
  flex-direction: row-reverse;
}
.page-about-us .sc-about-process .wrapper .item:nth-child(2n) .container .col-left {
  padding-right: 0;
}
.page-about-us .sc-about-process .wrapper .item:nth-child(2n) .container .col-left {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-process .wrapper .item:nth-child(2n) .container .col-left {
    padding-left: 1.875rem;
  }
}
.page-about-us .sc-about-process .wrapper .item:nth-child(2n) .container .col-left .content {
  color: #ffffff;
}
.page-about-us .sc-about-process .wrapper .item:last-child {
  margin-bottom: 0;
}
.page-about-us .sc-about-process .wrapper .item .col-left {
  width: 70%;
}
.page-about-us .sc-about-process .wrapper .item .col-left {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-process .wrapper .item .col-left {
    padding-right: 1.875rem;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-process .wrapper .item .col-left {
    width: 100%;
  }
}
.page-about-us .sc-about-process .wrapper .item .col-left .content {
  margin-top: 10px;
  font-weight: 500;
  color: #114930;
  line-height: 1.5;
}
.page-about-us .sc-about-process .wrapper .item .col-left .content {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .page-about-us .sc-about-process .wrapper .item .col-left .content {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .page-about-us .sc-about-process .wrapper .item .col-left .content {
    font-size: 1.25rem;
  }
}
.page-about-us .sc-about-process .wrapper .item .col-right {
  width: 30%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-process .wrapper .item .col-right {
    width: 100%;
    padding-top: 30px;
  }
}
.page-about-us .sc-about-process .wrapper .item .col-right .img-product img {
  width: 100%;
  transform: translateY(20px) scale(1.1);
}
@media only screen and (max-width: 47.99875rem) {
  .page-about-us .sc-about-process .wrapper .item .col-right .img-product img {
    transform: translateY(0) scale(1);
  }
}

@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .container {
    background-color: #372D24;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .container.container-map {
    background-color: #0B0C0C;
  }
}
.page-contact-us .wrapper .cell {
  background-color: #372D24;
  padding: 60px;
  flex: 0 0 50%;
  max-width: 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .wrapper .cell {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 0;
  }
}
.page-contact-us .wrapper .cell.cell-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px dotted rgba(255, 255, 255, 0.2392156863);
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .wrapper .cell.cell-contact {
    border-right: none;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .wrapper .cell.cell-contact .heading-title {
    text-align: center;
  }
}
.page-contact-us .wrapper .cell.cell-contact .desc {
  font-size: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .wrapper .cell.cell-contact .desc {
    text-align: center;
  }
}
.page-contact-us .wrapper .cell.cell-contact .lists {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item {
  margin-bottom: 20px;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item:last-child {
  margin-bottom: 0;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a {
  align-items: center;
  transition: all 0.3s;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a:hover {
  transform: translateY(-3px);
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a .icon {
  background-color: #D2C1AF;
  color: rgba(11, 12, 12, 0.7490196078);
  margin-right: 16px;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a .icon {
  font-size: 1.125rem;
}
@media only screen and (min-width: 64rem) {
  .page-contact-us .wrapper .cell.cell-contact .lists .item a .icon {
    font-size: 1.25rem;
  }
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a .icon {
  width: 2.75rem;
  height: 2.75rem;
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .wrapper .cell.cell-contact .lists .item a .icon {
    margin-right: 12px;
  }
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a .number {
  line-height: normal;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a .number .text {
  font-weight: 600;
  color: #ffffff;
}
.page-contact-us .wrapper .cell.cell-contact .lists .item a .number .sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7215686275);
}
.page-contact-us .wrapper .cell.cell-img img {
  width: 100%;
}
.page-contact-us .iframe-map {
  margin-top: 20px;
}
.page-contact-us .iframe-map iframe {
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-contact-us .iframe-map iframe {
    height: 350px;
  }
}

.section-404 {
  text-align: center;
}
.section-404 img {
  width: 90%;
}

.group-title {
  margin-bottom: 30px;
}
.group-title .sub-title {
  font-size: 20px;
  margin-bottom: 0;
  color: #caa343;
  font-family: "Dancing Script", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
}
.group-title .heading-title {
  color: #000000;
  margin-bottom: 0;
}

.home-slider .swiper-container:hover .swiper-button {
  background-color: #FFD700;
}
.home-slider .item-wrap picture {
  display: block;
  width: 100%;
}
.home-slider .item-wrap picture img {
  width: 100%;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .wrapper {
    flex-direction: column-reverse;
  }
}
.home-slider .wrapper .item {
  position: relative;
}
.home-slider .wrapper .item .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .wrapper .item .content {
    top: 40%;
    left: 0;
    transform: translateX(0);
    text-align: left;
    padding-left: 20px;
  }
}
.home-slider .wrapper .cell {
  flex: 0 0 50%;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .wrapper .cell {
    flex: 0 0 100%;
    width: 100%;
  }
}
.home-slider .wrapper .cell.cell-content {
  padding-right: 0;
}
@media only screen and (min-width: 64rem) {
  .home-slider .wrapper .cell.cell-content {
    padding-right: 1.875rem;
  }
}
.home-slider .wrapper .cell.cell-content {
  padding-top: 1.25rem;
}
@media only screen and (min-width: 64rem) {
  .home-slider .wrapper .cell.cell-content {
    padding-top: 0;
  }
}
.home-slider .wrapper .cell.cell-content .title {
  font-family: "Cormorant Infant", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  font-weight: 400;
  line-height: 1;
  color: #FFD700;
}
.home-slider .wrapper .cell.cell-content .title {
  font-size: 3rem;
}
@media only screen and (min-width: 64rem) {
  .home-slider .wrapper .cell.cell-content .title {
    font-size: 4.5rem;
  }
}
.home-slider .wrapper .cell.cell-content .title span {
  color: #D2C1AF;
}
.home-slider .wrapper .cell.cell-content .content {
  margin: 24px 0;
}
.home-slider .wrapper .cell.cell-content .content {
  font-size: 1rem;
}
@media only screen and (min-width: 48rem) {
  .home-slider .wrapper .cell.cell-content .content {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 64rem) {
  .home-slider .wrapper .cell.cell-content .content {
    font-size: 1.25rem;
  }
}
.home-slider .wrapper .cell.cell-content .button-group {
  gap: 15px;
}
.home-slider .wrapper .cell.cell-content .button-group .btn-main {
  height: 51px;
  margin: 0;
  font-size: 19px;
  padding: 0 35px;
}
@media only screen and (max-width: 39.99875rem) {
  .home-slider .wrapper .cell.cell-content .button-group .btn-main {
    height: 42px;
  }
}
.home-slider .wrapper .cell.cell-content .scroll-body {
  border-radius: 50%;
  border: 1px solid #000000;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.home-slider .wrapper .cell.cell-content .scroll-body {
  margin-top: 3rem;
}
@media only screen and (min-width: 64rem) {
  .home-slider .wrapper .cell.cell-content .scroll-body {
    margin-top: 3.125rem;
  }
}
.home-slider .wrapper .cell.cell-content .scroll-body {
  width: 2rem;
  height: 2rem;
}
.home-slider .wrapper .cell.cell-content .scroll-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.home-slider .wrapper .cell.cell-content .scroll-body:hover .arrow-1 {
  top: 40px;
}
.home-slider .wrapper .cell.cell-content .scroll-body:hover .arrow-2 {
  top: 50%;
  transform: translateY(-50%);
}
.home-slider .wrapper .cell.cell-content .scroll-body svg {
  position: absolute;
  width: 16px;
  height: 16px;
}
.home-slider .wrapper .cell.cell-content .scroll-body svg.arrow-1 {
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.home-slider .wrapper .cell.cell-content .scroll-body svg.arrow-2 {
  top: -22px;
  transition: 0.5s;
}
.home-slider .wrapper .cell.cell-content .scroll-body svg path {
  fill: #000000;
}
.home-slider .wrapper .cell.cell-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-slider .swiper-controls .swiper-button {
  border-radius: 50%;
}
.home-slider .swiper-controls .swiper-button {
  width: 2.25rem;
  height: 2.25rem;
}
.home-slider .swiper-controls .swiper-button::before {
  opacity: 1;
  content: "\f054";
  border-color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  color: #ffffff;
  font-size: 16px;
}
.home-slider .swiper-controls .swiper-button.swiper-button-prev {
  transform: rotate(180deg);
}
.home-slider .swiper-controls .swiper-button:focus-visible {
  outline: none;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .swiper-controls .swiper-pagination {
    bottom: 0;
  }
}
.home-slider .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  background-color: #D6D6D6;
  opacity: 1;
  transform: scale(1.2) !important;
  margin: 0 5px !important;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .swiper-controls .swiper-pagination .swiper-pagination-bullet {
    transform: scale(1) !important;
  }
}
.home-slider .swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  background-color: #ffffff;
  transform: scale(1.7) !important;
}
@media only screen and (max-width: 47.99875rem) {
  .home-slider .swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
    transform: scale(1.2) !important;
  }
}

.home-partner {
  width: 100%;
  min-height: 200px;
  overflow-x: hidden;
}
.home-partner {
  margin-top: 4rem;
}
@media only screen and (min-width: 64rem) {
  .home-partner {
    margin-top: 6rem;
  }
}
.home-partner .gallery-wrapper {
  overflow: hidden;
  width: 100%;
  min-height: 200px;
}
.home-partner .gallery-track {
  display: flex;
  align-items: center;
  min-height: 200px;
  gap: 40px;
}
.home-partner .gallery-track .item {
  flex: 0 0 auto;
}
.home-partner .gallery-track .item img {
  display: block;
  width: 250px;
  height: 85px;
  object-fit: contain;
  -webkit-filter: opacity(0.5);
          filter: opacity(0.5);
}
.home-partner .gallery-track .item img:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-gallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.services-banner .wrapper .cell.cell-img .img {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .services-banner .wrapper .cell.cell-img .img {
    padding-left: 1.25rem;
  }
}
.services-banner .wrapper .cell.cell-img .img img {
  height: 548px;
}
.services-banner .wrapper .cell.cell-content {
  padding-right: 0;
}
.services-banner .wrapper .cell.cell-content .content {
  max-width: 77%;
  color: #08292f;
  line-height: 27px;
}
@media only screen and (max-width: 47.99875rem) {
  .services-banner .wrapper .cell.cell-content .content {
    max-width: 100%;
  }
}
.services-banner .wrapper .cell.cell-content .scroll-body {
  margin-top: 0;
  transform: translateY(130px);
}
.services-banner .wrapper .cell.cell-content .button-group .btn-main {
  height: 42px;
  font-size: 16px;
}

.services-title-sc {
  margin-bottom: 30px;
}
.services-title-sc {
  padding-top: 2.5rem;
}
@media only screen and (min-width: 64rem) {
  .services-title-sc {
    padding-top: 3.125rem;
  }
}

.services-about.content-no-pt .home-about-us__content {
  padding-top: 0;
}
.services-about .wrapper {
  margin-bottom: 0;
}
.services-about.reverse .wrapper {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 47.99875rem) {
  .services-about.reverse .wrapper {
    flex-direction: column-reverse;
  }
}
.services-about.reverse .wrapper .cell-content {
  padding-right: 0;
}
.services-about.reverse .wrapper .cell-content {
  padding-left: 0;
}
@media only screen and (min-width: 64rem) {
  .services-about.reverse .wrapper .cell-content {
    padding-left: 3.125rem;
  }
}
.services-about .btn {
  font-weight: 700;
}
.services-about .btn i {
  font-size: 14px;
}
.services-about .btn:hover {
  color: #FFD700;
}

.home-why .top {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .home-why .top {
    max-width: 100%;
  }
}
.home-why .top .content {
  margin: 30px 0;
}
.home-why .top .content {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .home-why .top .content {
    font-size: 1.125rem;
  }
}
.home-why .wrapper {
  padding: 0;
  margin: 50px 0 0;
  list-style-type: none;
}
@media only screen and (max-width: 47.99875rem) {
  .home-why .wrapper {
    margin-top: 20px;
  }
}
.home-why .wrapper .item {
  flex: 0 0 33.3333%;
  padding: 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .home-why .wrapper .item {
    flex: 0 0 100%;
    padding: 0 0 20px;
  }
}
.home-why .wrapper .item.item-line {
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px;
}
@media only screen and (max-width: 47.99875rem) {
  .home-why .wrapper .item.item-line {
    padding: 20px 10px;
  }
}
.home-why .wrapper .item .icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.home-why .wrapper .item .icon {
  width: 2.625rem;
  height: 2.625rem;
}
.home-why .wrapper .item .icon img {
  object-fit: contain;
}
.home-why .wrapper .item .content.content-element.hide-line {
  display: none;
}
.home-why .wrapper .item .title {
  line-height: 1.2;
}
.home-why .wrapper .item .title {
  font-size: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .home-why .wrapper .item .title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .home-why .wrapper .item .title {
    font-size: 1.75rem;
  }
}

.services-team {
  background-color: #FFD700;
  color: #ffffff;
}
.services-team .heading-group {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 47.99875rem) {
  .services-team .heading-group {
    max-width: 100%;
  }
}
.services-team .heading-group .heading-title {
  color: #ffffff;
}
.services-team .wrapper {
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  list-style-type: none;
}
@media only screen and (max-width: 47.99875rem) {
  .services-team .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services-team .wrapper .cell .img::before {
  content: "";
  display: block;
  padding-bottom: 120%;
}
.services-team .wrapper .cell .img img {
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-team .wrapper .cell .inf {
  padding-top: 15px;
}
.services-team .wrapper .cell .inf .name {
  line-height: 1.1;
  margin-bottom: 5px;
}
.services-team .wrapper .cell .inf .name {
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .services-team .wrapper .cell .inf .name {
    font-size: 1.125rem;
  }
}
.services-team .wrapper .cell .inf .position {
  font-weight: 400;
  font-size: 14px;
}
.services-team .wrapper .cell .content {
  font-size: 12px;
  font-style: italic;
  line-height: 1.4;
}

.services-why {
  background-color: #F9F9F9;
  gap: 12px;
}
.services-why .wrapper {
  gap: 12px;
  margin-bottom: 30px;
}
.services-why .wrapper .item {
  padding: 10px 16px;
  border-radius: 8px;
  flex: 0 0 calc(25% - 10px);
  display: flex;
  align-items: center;
  background-color: #ffffff;
  gap: 12px;
}
@media only screen and (max-width: 47.99875rem) {
  .services-why .wrapper .item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media only screen and (max-width: 39.99875rem) {
  .services-why .wrapper .item {
    flex: 0 0 100%;
  }
}
.services-why .wrapper .item.item-line .title {
  margin-bottom: 12px;
}
.services-why .wrapper .item.item-line .title {
  font-size: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .services-why .wrapper .item.item-line .title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .services-why .wrapper .item.item-line .title {
    font-size: 1.75rem;
  }
}
.services-why .wrapper .item .icon {
  margin-bottom: 0;
}
.services-why .wrapper .item .title {
  line-height: 1.2;
  margin-bottom: 0;
  font-size: 16px;
}
.services-why .btn-main {
  gap: 10px;
}

.services-content-lists {
  background-color: #FFD700;
  color: #ffffff;
}
@media only screen and (max-width: 47.99875rem) {
  .services-content-lists {
    padding-bottom: 60px;
  }
}
.services-content-lists.bg-white {
  background-color: #ffffff;
  color: #000000;
}
.services-content-lists.bg-white .top .heading-title {
  color: #000000;
}
.services-content-lists.bg-white .top .btn {
  color: #000000;
}
.services-content-lists .top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}
@media only screen and (max-width: 47.99875rem) {
  .services-content-lists .top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services-content-lists .top .heading-title {
  line-height: 1.2;
  text-transform: none;
  color: #ffffff;
}
.services-content-lists .top .heading-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 48rem) {
  .services-content-lists .top .heading-title {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .services-content-lists .top .heading-title {
    font-size: 2.5rem;
  }
}
.services-content-lists .top .desc {
  margin-bottom: 10px;
}
.services-content-lists .top .btn {
  font-weight: 700;
  color: #ffffff;
}
.services-content-lists .top .btn i {
  font-size: 14px;
}
.services-content-lists .top .btn:hover {
  color: #f9d309;
}
.services-content-lists .wrapper {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0;
  margin: 30px 0 0;
}
@media only screen and (max-width: 47.99875rem) {
  .services-content-lists .wrapper {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.services-content-lists .wrapper.content-lists {
  gap: 0;
}
.services-content-lists .wrapper.content-lists .item {
  padding: 0 10px;
  position: relative;
}
.services-content-lists .wrapper.content-lists .item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  background-color: #E1EDDF;
  width: 1px;
  height: 100%;
}
.services-content-lists .wrapper.content-lists .item .title {
  padding: 0;
}
.services-content-lists .wrapper .item {
  border-radius: 4px;
  background-color: #ffffff;
}
.services-content-lists .wrapper .item:hover .img img {
  transform: scale(1.05);
  transition: 0.4s;
}
.services-content-lists .wrapper .item .img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
}
.services-content-lists .wrapper .item .img::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.services-content-lists .wrapper .item .img img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s;
}
.services-content-lists .wrapper .item .title {
  font-size: 15px;
  padding: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 47.99875rem) {
  .services-content-lists .wrapper .item .title {
    padding: 15px;
  }
}
.services-content-lists .wrapper .item .title:hover {
  color: #FFD700;
}
.services-content-lists .btn-main {
  margin-top: 30px;
}

.home-quote {
  background-color: #FFD700;
}
.home-quote {
  padding-top: 4rem;
}
@media only screen and (min-width: 64rem) {
  .home-quote {
    padding-top: 6rem;
  }
}
.home-quote {
  padding-bottom: 4rem;
}
@media only screen and (min-width: 64rem) {
  .home-quote {
    padding-bottom: 6rem;
  }
}
.home-quote.bg-white {
  background-color: #ffffff;
}
.home-quote.bg-white .wrapper {
  color: #000000;
}
.home-quote.bg-white .wrapper .btn-main {
  color: #000000;
}
.home-quote.bg-white .wrapper .btn-main:hover {
  color: #FFD700;
}
.home-quote .wrapper {
  color: #ffffff;
}
.home-quote .wrapper i {
  font-size: 20px;
}
.home-quote .wrapper .content {
  font-family: "Cormorant Infant", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  font-weight: 700;
  line-height: 1.2;
}
.home-quote .wrapper .content {
  font-size: 1.625rem;
}
@media only screen and (min-width: 64rem) {
  .home-quote .wrapper .content {
    font-size: 2.25rem;
  }
}
.home-quote .wrapper .inf {
  margin-top: 30px;
}
.home-quote .wrapper .inf .name {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}
.home-quote .wrapper .inf .btn-main {
  margin-top: 20px;
  margin-left: 0;
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.home-quote .wrapper .inf .btn-main:hover {
  background-color: #ffffff;
  color: #FFD700;
}

.services-solutions {
  background-color: #F9F9F9;
}
.services-solutions .wrapper {
  margin: 30px 0 0;
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 47.99875rem) {
  .services-solutions .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services-solutions .wrapper .item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
}
@media only screen and (max-width: 47.99875rem) {
  .services-solutions .wrapper .item {
    padding: 20px;
  }
}
@media only screen and (max-width: 39.99875rem) {
  .services-solutions .wrapper .item {
    padding: 15px;
  }
}
.services-solutions .wrapper .item .icon {
  width: 50px;
}
.services-solutions .wrapper .item .icon img {
  object-fit: contain;
}
.services-solutions .wrapper .item .content {
  padding-top: 10px;
}
.services-solutions .wrapper .item .content .title {
  font-size: 16px;
}
.services-solutions .wrapper .item .content .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .services-solutions .wrapper .item .content .title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.services-solutions .wrapper .item .content .btn i {
  font-size: 14px;
}

.page-gallery .gallery-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery .gallery-row {
    flex-wrap: wrap;
  }
}
.page-gallery .gallery-row:nth-child(2n+1) .gallery-item:first-child {
  width: 10%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery .gallery-row:nth-child(2n+1) .gallery-item:first-child {
    width: calc(50% - 5px);
  }
}
.page-gallery .gallery-row:nth-child(2n+1) .gallery-item:nth-child(2n+1) {
  width: 10%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery .gallery-row:nth-child(2n+1) .gallery-item:nth-child(2n+1) {
    width: calc(50% - 5px);
  }
}
.page-gallery .gallery-row:nth-child(2n+1) .gallery-item:nth-child(2n) {
  width: 25%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery .gallery-row:nth-child(2n+1) .gallery-item:nth-child(2n) {
    width: calc(50% - 5px);
  }
}
.page-gallery .gallery-row:nth-child(2n) .gallery-item:first-child, .page-gallery .gallery-row:nth-child(2n) .gallery-item:last-child {
  width: 15%;
}
.page-gallery .gallery-row:nth-child(2n) .gallery-item:nth-child(2n+1) {
  width: 30%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery .gallery-row:nth-child(2n) .gallery-item:nth-child(2n+1) {
    width: calc(50% - 5px);
  }
}
.page-gallery .gallery-row:nth-child(2n) .gallery-item:nth-child(2n) {
  width: 20%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery .gallery-row:nth-child(2n) .gallery-item:nth-child(2n) {
    width: calc(50% - 5px);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-gallery .gallery-row:nth-child(2n) .gallery-item:first-child, .page-gallery .gallery-row:nth-child(2n) .gallery-item:nth-child(2), .page-gallery .gallery-row:nth-child(2n) .gallery-item:nth-child(3) {
    width: calc(33.3333333333% - 7px);
  }
}
.page-gallery .gallery-row .gallery-item .img {
  height: 100%;
}
.page-gallery .gallery-row .gallery-item .img::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.page-gallery .gallery-row .gallery-item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-services .wrapper .services-inner {
  border-bottom: 1px solid #D2C1AF;
}
.page-services .wrapper .services-inner {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-services .wrapper .services-inner {
    margin-bottom: 3.125rem;
  }
}
.page-services .wrapper .services-inner {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 64rem) {
  .page-services .wrapper .services-inner {
    padding-bottom: 3.125rem;
  }
}
.page-services .wrapper .services-inner:last-child {
  border-bottom: none;
}
.page-services .wrapper .services-inner .heading-title {
  padding: 15px;
  background-color: #372D24;
  border: 1px solid #D2C1AF;
  color: #D2C1AF;
}
.page-services .wrapper .services-inner .services-inner_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-top: 30px;
}
@media only screen and (max-width: 47.99875rem) {
  .page-services .wrapper .services-inner .services-inner_box {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 15px;
  }
}
.page-services .wrapper .services-inner .services-inner_box .item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 10px;
  color: #D2C1AF;
  position: relative;
}
.page-services .wrapper .services-inner .services-inner_box .item .head::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border: 1px dashed #D2C1AF;
  z-index: 1;
}
.page-services .wrapper .services-inner .services-inner_box .item .head .title {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 2;
  background-color: #0b0c0c;
  padding-right: 2px;
}
.page-services .wrapper .services-inner .services-inner_box .item .head .price {
  position: relative;
  z-index: 2;
  background-color: #0b0c0c;
}
.page-services .wrapper .services-inner .services-inner_box .item .content {
  font-size: 14px;
}
.page-services .wrapper .services-inner .services-inner_box .item .content ul {
  padding-left: 30px;
}
.page-services .wrapper .services-inner.services-column {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 47.99875rem) {
  .page-services .wrapper .services-inner.services-column {
    flex-wrap: wrap;
  }
}
.page-services .wrapper .services-inner.services-column .heading-title {
  width: 40%;
}
@media only screen and (max-width: 47.99875rem) {
  .page-services .wrapper .services-inner.services-column .heading-title {
    width: 100%;
  }
}
.page-services .wrapper .services-inner.services-column .services-inner_box {
  width: 60%;
  margin-top: 0;
  padding-left: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (max-width: 47.99875rem) {
  .page-services .wrapper .services-inner.services-column .services-inner_box {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 47.99875rem) {
  .page-services .wrapper .services-inner.custom-line .services-inner_box .item .head {
    flex-wrap: wrap;
  }
  .page-services .wrapper .services-inner.custom-line .services-inner_box .item .head::after {
    content: none;
  }
}