@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: #161A47;
  --body-bg: #ffffff;
  --link-color: #eb1f28;
  --link-hover-color: rgb(188, 24.8, 32);
  --gutter: 15px;
  --gutter-xs: 10px;
  --gap: 30px;
  --gap-xs: 20px;
  --line-height-header: 1.4;
  --line-height-paragraph: 24px;
  --Primary-01: #161A47;
  --Primary-02: #eb1f28;
  --Primary-03: #F93939;
  --Primary-04: #8C5C0A;
  --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: 0.625rem;
    height: 0.3125rem;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: #161A47;
  background: #ffffff;
  font-size: 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  /*scroll-behavior: smooth;*/
}

: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: vars.$line-height-paragraph;*/
}
* > p:not(:last-child) {
  margin-bottom: 15px;
}
* > 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: "";
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-family: "Playfair Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Ubuntu", Arial, cursive, serif;
  font-optical-sizing: auto;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 0;
  font-weight: 600;
}
: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;
}

.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: "Playfair Display", -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: #eb1f28;
}
a:hover {
  color: rgb(188, 24.8, 32);
  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: 15px;
  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;
}

:is(.clearfix, .clear)::before, :is(.clearfix, .clear)::after {
  display: table;
  content: "";
  flex-basis: 0;
  order: 1;
}
:is(.clearfix, .clear)::after {
  clear: both;
}

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

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

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

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

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

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

.hidden {
  display: none;
}

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

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

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

:is(.container, .flex-container, .grid-container) {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
:is(.container, .flex-container, .grid-container):not(.full) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 700px;
  }
}
@media only screen and (min-width: 64rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 80rem) {
  :is(.container, .flex-container, .grid-container):not(.full) {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 96rem) {
  :is(.container, .flex-container, .grid-container):not(.full).xxl {
    max-width: 1416px;
  }
}
:is(.container, .flex-container, .grid-container).full {
  /*max-width: 100%;*/
  padding-left: 0;
  padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 48rem) {
  :is(.flex, .\!flex):not(.gap):not(.flex-gap).md-up-1 > .cell {
    width: 100%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.md-1 {
    width: 8.3333333333%;
  }
  :is(.flex, .\!flex):not(.gap):not(.flex-gap) > .cell.\!md-1 {
    width: 8.3333333333% !important;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap).md-up-1 > .cell {
    width: 100%;
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-1 {
    width: calc(8.3333333333% - 1.71875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-1 {
    width: calc(8.3333333333% - 1.71875rem) !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.9375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-2 {
    width: calc(16.6666666667% - 1.5625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-2 {
    width: calc(16.6666666667% - 1.5625rem) !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.25rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-3 {
    width: calc(25% - 1.40625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-3 {
    width: calc(25% - 1.40625rem) !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.40625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-4 {
    width: calc(33.3333333333% - 1.25rem) !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.5rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-5 {
    width: calc(41.6666666667% - 1.09375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-5 {
    width: calc(41.6666666667% - 1.09375rem) !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.5625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-6 {
    width: calc(50% - 0.9375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-6 {
    width: calc(50% - 0.9375rem) !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.6071428571rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-7 {
    width: calc(58.3333333333% - 0.78125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-7 {
    width: calc(58.3333333333% - 0.78125rem) !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.640625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-8 {
    width: calc(66.6666666667% - 0.625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-8 {
    width: calc(66.6666666667% - 0.625rem) !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.6666666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-9 {
    width: calc(75% - 0.46875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-9 {
    width: calc(75% - 0.46875rem) !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.6875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-10 {
    width: calc(83.3333333333% - 0.3125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-10 {
    width: calc(83.3333333333% - 0.3125rem) !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.7045454545rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.md-11 {
    width: calc(91.6666666667% - 0.15625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!md-11 {
    width: calc(91.6666666667% - 0.15625rem) !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.71875rem);
  }
  :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.71875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-1 {
    width: calc(8.3333333333% - 1.71875rem) !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.9375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-2 {
    width: calc(16.6666666667% - 1.5625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-2 {
    width: calc(16.6666666667% - 1.5625rem) !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.25rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-3 {
    width: calc(25% - 1.40625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-3 {
    width: calc(25% - 1.40625rem) !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.40625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-4 {
    width: calc(33.3333333333% - 1.25rem) !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.5rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-5 {
    width: calc(41.6666666667% - 1.09375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-5 {
    width: calc(41.6666666667% - 1.09375rem) !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.5625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-6 {
    width: calc(50% - 0.9375rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-6 {
    width: calc(50% - 0.9375rem) !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.6071428571rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-7 {
    width: calc(58.3333333333% - 0.78125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-7 {
    width: calc(58.3333333333% - 0.78125rem) !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.640625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-8 {
    width: calc(66.6666666667% - 0.625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-8 {
    width: calc(66.6666666667% - 0.625rem) !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.6666666667rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-9 {
    width: calc(75% - 0.46875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-9 {
    width: calc(75% - 0.46875rem) !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.6875rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-10 {
    width: calc(83.3333333333% - 0.3125rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-10 {
    width: calc(83.3333333333% - 0.3125rem) !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.7045454545rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.lg-11 {
    width: calc(91.6666666667% - 0.15625rem);
  }
  :is(.flex, .\!flex):where(.gap, .flex-gap) > .cell.\!lg-11 {
    width: calc(91.6666666667% - 0.15625rem) !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.71875rem);
  }
  :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;
  width: 100%;
  height: 100%;
}
.res :where(iframe, embed, object, video) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.res.after-overlay::after {
  background: transparent;
  content: "";
  -webkit-user-select: none;
          user-select: none;
  z-index: 1;
}
.res.after-overlay::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.res.after-overlay > img {
  -webkit-user-select: none;
          user-select: none;
}

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

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

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

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

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

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

:is(.mt-0, .mt\[0px\]) {
  margin-top: 0;
}

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

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

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

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

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

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

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

:is(.mt-10, .mt\[10px\]) {
  margin-top: 0.625rem;
}

:is(.\!mt-10, .\!mt\[10px\]) {
  margin-top: 0.625rem !important;
}

:is(.mb-10, .mb\[10px\]) {
  margin-bottom: 0.625rem;
}

:is(.\!mb-10, .\!mb\[10px\]) {
  margin-bottom: 0.625rem !important;
}

:is(.pt-10, .pt\[10px\]) {
  padding-top: 0.625rem;
}

:is(.\!pt-10, .\!pt\[10px\]) {
  padding-top: 0.625rem !important;
}

:is(.pb-10, .pb\[10px\]) {
  padding-bottom: 0.625rem;
}

:is(.\!pb-10, .\!pb\[10px\]) {
  padding-bottom: 0.625rem !important;
}

:is(.mt-20, .mt\[20px\]) {
  margin-top: 1.25rem;
}

:is(.\!mt-20, .\!mt\[20px\]) {
  margin-top: 1.25rem !important;
}

:is(.mb-20, .mb\[20px\]) {
  margin-bottom: 1.25rem;
}

:is(.\!mb-20, .\!mb\[20px\]) {
  margin-bottom: 1.25rem !important;
}

:is(.pt-20, .pt\[20px\]) {
  padding-top: 1.25rem;
}

:is(.\!pt-20, .\!pt\[20px\]) {
  padding-top: 1.25rem !important;
}

:is(.pb-20, .pb\[20px\]) {
  padding-bottom: 1.25rem;
}

:is(.\!pb-20, .\!pb\[20px\]) {
  padding-bottom: 1.25rem !important;
}

:is(.mt-30, .mt\[30px\]) {
  margin-top: 1.875rem;
}

:is(.\!mt-30, .\!mt\[30px\]) {
  margin-top: 1.875rem !important;
}

:is(.mb-30, .mb\[30px\]) {
  margin-bottom: 1.875rem;
}

:is(.\!mb-30, .\!mb\[30px\]) {
  margin-bottom: 1.875rem !important;
}

:is(.pt-30, .pt\[30px\]) {
  padding-top: 1.875rem;
}

:is(.\!pt-30, .\!pt\[30px\]) {
  padding-top: 1.875rem !important;
}

:is(.pb-30, .pb\[30px\]) {
  padding-bottom: 1.875rem;
}

:is(.\!pb-30, .\!pb\[30px\]) {
  padding-bottom: 1.875rem !important;
}

:is(.mt-40, .mt\[40px\]) {
  margin-top: 2.5rem;
}

:is(.\!mt-40, .\!mt\[40px\]) {
  margin-top: 2.5rem !important;
}

:is(.mb-40, .mb\[40px\]) {
  margin-bottom: 2.5rem;
}

:is(.\!mb-40, .\!mb\[40px\]) {
  margin-bottom: 2.5rem !important;
}

:is(.pt-40, .pt\[40px\]) {
  padding-top: 2.5rem;
}

:is(.\!pt-40, .\!pt\[40px\]) {
  padding-top: 2.5rem !important;
}

:is(.pb-40, .pb\[40px\]) {
  padding-bottom: 2.5rem;
}

:is(.\!pb-40, .\!pb\[40px\]) {
  padding-bottom: 2.5rem !important;
}

:is(.mt-50, .mt\[50px\]) {
  margin-top: 3.125rem;
}

:is(.\!mt-50, .\!mt\[50px\]) {
  margin-top: 3.125rem !important;
}

:is(.mb-50, .mb\[50px\]) {
  margin-bottom: 3.125rem;
}

:is(.\!mb-50, .\!mb\[50px\]) {
  margin-bottom: 3.125rem !important;
}

:is(.pt-50, .pt\[50px\]) {
  padding-top: 3.125rem;
}

:is(.\!pt-50, .\!pt\[50px\]) {
  padding-top: 3.125rem !important;
}

:is(.pb-50, .pb\[50px\]) {
  padding-bottom: 3.125rem;
}

:is(.\!pb-50, .\!pb\[50px\]) {
  padding-bottom: 3.125rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[id^=gallery-] {
  display: flex;
  flex-flow: row wrap;
}
[id^=gallery-] {
  grid-gap: 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;
}
.site-header .popup-container {
  display: none;
}

#inside-header {
  position: relative;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header {
    background: none;
  }
}
#inside-header > .container {
  position: relative;
  z-index: 1;
  justify-content: space-between;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header > .container {
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#inside-header .cell-logo {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell-logo {
    margin-top: 0;
    margin-bottom: 0;
  }
}
#inside-header .cell-logo .custom-logo {
  width: auto;
  max-height: 80px;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell-logo .custom-logo {
    max-height: 60px;
  }
}
@media only screen and (max-width: 79.99875rem) {
  #inside-header .cell-logo {
    flex: 1 1 0;
  }
  #inside-header .cell-logo {
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }
  #inside-header .cell-logo a.logo {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell-logo {
    grid-gap: 0;
    gap: 0;
  }
}
@media only screen and (max-width: 79.99875rem) {
  #inside-header .cell-search {
    display: none;
  }
}
#inside-header .cell-search .inline-search {
  height: 100%;
  display: flex;
  align-items: center;
}
#inside-header .cell-search .frm-search {
  position: relative;
}
#inside-header .cell-search .frm-search input {
  box-shadow: none;
  background: none;
  padding: 0 20px;
  border: 1px solid rgba(22, 26, 71, 0.4);
  height: 42px;
  border-radius: 50px;
  width: 440px;
  max-width: 100%;
}
#inside-header .cell-search .frm-search input.is-invalid-input {
  border-color: #F93939;
}
#inside-header .cell-search .frm-search button[type=submit] {
  border-radius: 100%;
  background-color: #161A47;
  position: absolute;
  right: 5px;
  top: 5px;
}
#inside-header .cell-search .frm-search button[type=submit] {
  width: 1.875rem;
  height: 1.875rem;
}
#inside-header .cell-search .frm-search button[type=submit]::before {
  color: #fff;
}
#inside-header .cell-search .frm-search button[type=submit]:hover {
  background-color: #eb1f28;
}
#inside-header .cell-hotline {
  display: flex;
  align-items: center;
}
#inside-header .cell-hotline {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #inside-header .cell-hotline {
    grid-gap: 0.9375rem;
    gap: 0.9375rem;
  }
}
@media only screen and (min-width: 64rem) {
  #inside-header .cell-hotline {
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }
}
#inside-header .cell-hotline .pll-switcher-select {
  border: 0;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  white-space: nowrap;
}
@media only screen and (min-width: 80rem) {
  #inside-header .cell-hotline .dropdown-search {
    display: none;
  }
}
#inside-header .cell-hotline .dropdown-search .trigger-s {
  border-radius: 50%;
  background-color: #161A47;
}
#inside-header .cell-hotline .dropdown-search .trigger-s {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#inside-header .cell-hotline .dropdown-search .trigger-s {
  width: 2.125rem;
  height: 2.125rem;
}
#inside-header .cell-hotline .dropdown-search .trigger-s span {
  display: none;
}
#inside-header .cell-hotline .dropdown-search .trigger-s::before {
  color: #fff;
  font-weight: 300;
}
#inside-header .cell-hotline .select2 {
  width: auto !important;
}
#inside-header .cell-hotline .select2 .select2-selection {
  cursor: pointer;
  padding: 0 12px;
  height: 34px;
  border: 1px solid #BBC3C4;
  border-radius: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
#inside-header .cell-hotline .select2 .select2-selection::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: 12px;
  margin-left: 5px;
}
#inside-header .cell-hotline .select2 .select2-selection .select2-selection__rendered {
  padding: 0 5px;
  display: block;
}
#inside-header .cell-hotline .select2-results__options {
  list-style: none;
  padding: 6px 12px;
  border: 1px solid #BBC3C4;
  border-radius: 10px;
  min-width: 66px;
  margin: 1px 0 0;
  font-size: 15px;
  background-color: #fff;
}
#inside-header .cell-hotline .select2-results__options > li {
  cursor: pointer;
}
#inside-header .cell-hotline .select2-results__options > li:not(:last-child) {
  border-bottom: 1px solid #BBC3C4;
}
#inside-header .cell-hotline .select2-results__options > li:hover {
  color: #F93939;
}
#inside-header .cell-hotline .header-hotline {
  padding: 0 12px;
  height: 34px;
  border: 1px solid #BBC3C4;
  border-radius: 30px;
  display: flex;
  align-items: center;
}
#inside-header .cell-hotline .header-hotline {
  grid-gap: 0.25rem;
  gap: 0.25rem;
}
@media only screen and (max-width: 47.99875rem) {
  #inside-header .cell-hotline .header-hotline {
    display: none;
  }
}
#inside-header .cell-hotline .header-hotline > span {
  color: #F93939;
  font-weight: 700;
  white-space: nowrap;
}

#menu-header {
  height: 60px;
  background-color: #161A47;
  position: relative;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#menu-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 52px;
  background-color: rgba(22, 26, 71, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: menuSlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#menu-header.is-sticky .header-button {
  height: 38px;
  font-size: 14px;
}
@media only screen and (max-width: 79.99875rem) {
  #menu-header {
    display: none;
  }
}
#menu-header .cell-menu {
  justify-content: space-between;
  align-items: center;
}
#menu-header #main-nav {
  flex: 1 1 0;
  max-width: calc(100% - 240px);
}
@media only screen and (max-width: 95.99875rem) {
  #menu-header #main-nav {
    max-width: calc(100% - 200px);
  }
}
#menu-header nav.nav {
  overflow: hidden;
  width: 100%;
}
#menu-header .header-button {
  white-space: nowrap;
  height: 44px;
  border-radius: 53px;
  background-color: #F93939;
  font-weight: 700;
  padding: 0 30px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  flex: 0 0 auto;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#menu-header .header-button:hover {
  background-color: #eb1f28;
}
@media only screen and (max-width: 95.99875rem) {
  #menu-header .header-button {
    padding: 0 15px;
    height: 38px;
    font-size: 15px;
  }
}
#menu-header .dropdown.menu.desktop-menu {
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
#menu-header .dropdown.menu.desktop-menu li a {
  color: rgba(255, 255, 255, 0.8509803922);
  font-weight: 500;
  line-height: 26px;
}
#menu-header .dropdown.menu.desktop-menu > li {
  position: relative;
}
#menu-header .dropdown.menu.desktop-menu > li > a {
  padding: 6px 12px;
}
@media only screen and (max-width: 95.99875rem) {
  #menu-header .dropdown.menu.desktop-menu > li > a {
    padding: 6px;
  }
}
#menu-header .dropdown.menu.desktop-menu > li > a:hover {
  color: #FFFFFF;
}
#menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a {
  padding-right: 30px;
}
@media only screen and (max-width: 95.99875rem) {
  #menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a {
    padding-right: 24px;
  }
}
#menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: 12px;
  border: none;
  aspect-ratio: 1/1;
  line-height: 1;
  margin-top: -5px;
  right: 12px;
}
#menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a::after {
  width: 0.75rem;
  height: 0.75rem;
}
@media only screen and (max-width: 95.99875rem) {
  #menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent > a::after {
    right: 6px;
  }
}
#menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent.more > a {
  font-size: 0;
}
#menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent.more > a::after {
  display: none;
}
#menu-header .dropdown.menu.desktop-menu > li.is-dropdown-submenu-parent.more > a::before {
  font-size: 18px;
  display: flex;
  align-items: center;
  content: "\f141";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
}
#menu-header .dropdown.menu.desktop-menu > li.current-menu-item > a {
  color: #161A47;
  font-weight: 700;
  line-height: 20px;
  border-bottom: 1px solid #F58023;
  background: #FFFFFF;
  border-radius: 30px;
}
#menu-header .dropdown.menu.desktop-menu > li:not(:last-child) {
  padding-right: 6px;
}
#menu-header .dropdown.menu.desktop-menu > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
}
#menu-header .dropdown.menu.desktop-menu > li:not(:first-child) {
  padding-left: 6px;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu {
  border: 1px solid #BBC3C4;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li:not(:last-child) {
  border-bottom: 1px solid #BBC3C4;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li > a {
  color: #161A47;
  font-size: 15px;
  padding: 9px 18px;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li > a:hover {
  background: none;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li:first-child > a {
  padding-top: 15px;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li:last-child > a {
  padding-bottom: 15px;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-active > a {
  background: none;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item > a::after {
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: 12px;
  border: none;
  aspect-ratio: 1/1;
  line-height: 1;
  margin-top: -9px;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item > a::after {
  width: 0.75rem;
  height: 0.75rem;
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item.opens-right > a::after {
  content: "\f054";
}
#menu-header .dropdown.menu.desktop-menu > li ul.sub-menu > li.is-dropdown-submenu-item.opens-left > a::after {
  content: "\f053";
}

@keyframes menuSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.site-footer {
  position: relative;
  width: 100%;
  color: #d4d4d4;
  line-height: 24px;
}
.site-footer {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .site-footer {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .site-footer {
    margin-top: 3.125rem;
  }
}
.site-footer .footer-bg {
  pointer-events: none;
  width: 100%;
  height: auto;
  position: absolute;
  top: 175px;
  left: 0;
  z-index: -1;
  color: #161A47;
}
.site-footer::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3csvg%20width='1728'%20height='927'%20viewBox='0%200%201728%20927'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0%20159.999C0%20159.999%20291%20-63.5001%20724.5%2018C1158%2099.5001%201436%20198%201728%20159.999C1728%20178.5%201728%20928.126%201728%20928.126C1728%20928.126%201244.5%20926.16%20919.5%20928.126C594.5%20930.091%200%20928.126%200%20928.126V159.999Z'%20fill='%23161A47'/%3e%3c/svg%3e");
  z-index: 0;
  top: 175px;
  left: 0;
  width: 100%;
  bottom: 0;
  background-position: top left;
  background-size: 100% auto;
  pointer-events: none;
}
.site-footer::after {
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(251, 174, 23, 0.2) 0%, rgba(251, 174, 23, 0) 100%) left center no-repeat;
  background-size: 1100px 1100px;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
  position: absolute;
  pointer-events: none;
  right: 0;
  top: -366px;
  z-index: -2;
}
.site-footer::after {
  width: 34.375rem;
  height: 68.75rem;
}
.site-footer a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

.social-links .social-menu {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
.social-links .social-menu > li > a {
  display: block;
  padding: 0;
}
.social-links .social-menu > li > a > img:first-child {
  height: 24px;
  width: auto;
  display: block;
}
@media only screen and (max-width: 47.99875rem) {
  .social-links .social-menu > li > a > img:first-child {
    height: 32px;
  }
}

#footer-credit {
  background-color: #161A47;
  padding-bottom: 20px;
}
#footer-credit > .container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-credit > .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
  }
}
#footer-credit > .container::before, #footer-credit > .container:after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
#footer-credit > .container::before, #footer-credit > .container:after {
  left: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #footer-credit > .container::before, #footer-credit > .container:after {
    left: 0.9375rem;
  }
}
#footer-credit > .container::before, #footer-credit > .container:after {
  right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #footer-credit > .container::before, #footer-credit > .container:after {
    right: 0.9375rem;
  }
}
#footer-credit > .container::before {
  top: 0;
}
#footer-credit > .container::after {
  bottom: 0;
}
#footer-credit .copyright {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
}
#footer-credit .copyright > span {
  color: #eb1f28;
}
#footer-credit .social-links {
  display: flex;
  flex-wrap: wrap;
}
#footer-credit .social-links {
  grid-gap: 0 1.25rem;
  gap: 0 1.25rem;
}
#footer-credit .social-links .txt {
  font-weight: 500;
  font-size: 14px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-credit .social-links .txt {
    display: none;
  }
}

#footer-columns {
  position: relative;
  z-index: 1;
}
#footer-columns::before {
  content: "";
  left: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #161A47;
  height: calc(100% - 360px);
  z-index: -1;
}
@media only screen and (min-width: 80rem) {
  #footer-columns::before {
    height: calc(100% - 400px);
  }
}
#footer-columns .row-form {
  margin-bottom: 40px;
}
#footer-columns .row-form .footer-form-contact {
  background: #161A47;
  border: 2px solid #ffffff;
  border-radius: 24px;
  padding: 40px;
  width: 1148px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 95.99875rem) {
  #footer-columns .row-form .footer-form-contact {
    width: 100%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row-form .footer-form-contact {
    padding: 20px;
  }
}
#footer-columns .row-form .footer-form-contact .wpcf7-form label {
  display: block;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .flex-contact {
  row-gap: 15px;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .flex-contact .cell-title .form-title {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row-form .footer-form-contact .wpcf7-form .flex-contact .cell-title .form-title {
    font-size: 20px;
    line-height: 37px;
    text-transform: uppercase;
  }
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .flex-contact .cell-title .form-desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 10px;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .flex-contact .cell-title .form-desc a {
  color: #fff;
  font-weight: 700 !important;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row-form .footer-form-contact .wpcf7-form .flex-contact .cell-title .form-desc {
    line-height: 150%;
    font-size: 15px;
  }
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .flex-contact .cell-submit {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap input,
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap textarea {
  border-radius: 8px;
  padding: 0 15px;
  height: 48px;
  border: 1px solid transparent;
  background-color: #fff4e2 !important;
  width: 100%;
  font-weight: 700;
  color: #161A47;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap input::-webkit-input-placeholder, #footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #6c6c6c;
  font-weight: 400;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap input::placeholder,
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap textarea::placeholder {
  color: #6c6c6c;
  font-weight: 400;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap input:focus, #footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap input:active,
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap textarea:focus,
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap textarea:active {
  border: 1px solid #ffa100;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap textarea {
  height: auto;
  padding: 15px;
  background-color: #fff4e2;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 12px;
  color: #ff0000;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-spinner {
  margin: 0 15px;
}
#footer-columns .row-form .footer-form-contact .wpcf7-form .wpcf7-response-output {
  padding: 0;
  border: none;
  font-size: 15px;
  margin: 15px 0 0 0;
}
#footer-columns .row-logo {
  background-color: #161A47;
}
#footer-columns .row-logo > .container {
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row-logo > .container {
    flex-direction: column;
  }
  #footer-columns .row-logo > .container {
    grid-gap: 0.625rem;
    gap: 0.625rem;
  }
}
#footer-columns .row-logo > .container::after {
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
}
#footer-columns .row-logo > .container::after {
  left: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #footer-columns .row-logo > .container::after {
    left: 0.9375rem;
  }
}
#footer-columns .row-logo > .container::after {
  right: 0.625rem;
}
@media only screen and (min-width: 48rem) {
  #footer-columns .row-logo > .container::after {
    right: 0.9375rem;
  }
}
#footer-columns .row-logo > .container .site-logo > a {
  display: block;
}
#footer-columns .row-logo > .container .site-logo img {
  width: auto;
  display: block;
  max-height: 80px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#footer-columns .row-logo > .container .footer-subtitle {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  min-width: 28%;
  text-transform: capitalize;
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row-logo > .container .footer-subtitle {
    font-size: 36px;
    line-height: 150%;
    text-align: center;
  }
}
#footer-columns .row-info {
  background-color: #161A47;
  padding-bottom: 20px;
}
#footer-columns .row-info > .container {
  padding-top: 20px;
}
@media only screen and (min-width: 96rem) {
  #footer-columns .row-info > .container {
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }
}
#footer-columns .row-info > .container .footer-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
#footer-columns .row-info > .container .footer-title.title-color {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
#footer-columns .row-info > .container .footer-title.title-color {
  background-image: linear-gradient(90deg, #fbae17 0% 0%, #f27405 82.05% 100%);
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row-info > .container .footer-title {
    position: relative;
    cursor: pointer;
    line-height: 100%;
  }
  #footer-columns .row-info > .container .footer-title:not(.no-toggle)::after {
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
    content: "+";
    position: absolute;
    font-weight: 300;
    font-size: 11px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    line-height: 1.1;
    right: 0;
    top: 3px;
  }
  #footer-columns .row-info > .container .footer-title:not(.no-toggle)::after {
    width: 1.125rem;
    height: 1.125rem;
  }
  #footer-columns .row-info > .container .footer-title:not(.no-toggle)::after {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  #footer-columns .row-info > .container .footer-title:not(.no-toggle).active::after {
    content: "\f068";
  }
  #footer-columns .row-info > .container .footer-title:not(.no-toggle):not(.active) {
    margin-bottom: 0;
  }
  #footer-columns .row-info > .container .footer-title:not(.no-toggle):not(.active) ~ .footer-info, #footer-columns .row-info > .container .footer-title:not(.no-toggle):not(.active) ~ .footer-icon-list, #footer-columns .row-info > .container .footer-title:not(.no-toggle):not(.active) ~ .footer-menu {
    transition: height 0.3s ease-out;
    height: 0;
    overflow: hidden;
    margin: 0;
  }
}
#footer-columns .row-info > .container .gr_google_map {
  overflow: hidden;
  margin-top: 16px;
}
#footer-columns .row-info > .container .gr_google_map iframe {
  border: none;
  width: 100%;
  border-radius: 4px;
}
#footer-columns .row-info > .container .footer-menu ul.menu {
  list-style: none;
  margin: 0;
  display: block;
}
#footer-columns .row-info > .container .footer-menu ul.menu li:not(:last-child) {
  margin-bottom: 20px;
}
#footer-columns .row-info > .container .footer-menu ul.menu li a {
  color: currentColor;
  display: inline-block;
  line-height: 24px;
  padding: 0;
}
#footer-columns .row-info > .container .footer-form-newsletter label {
  display: block;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter {
  position: relative;
  margin-top: 20px;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-form-control-wrap input {
  border: 1px solid rgba(255, 255, 255, 0.2784313725);
  border-radius: 44px;
  font-size: 14px;
  height: 48px;
  padding: 0 20px;
  margin-bottom: 0;
  background: none;
  width: 100%;
  color: #fff;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-form-control-wrap input::-webkit-input-placeholder {
  color: #cdcdcd;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-form-control-wrap input::placeholder {
  color: #cdcdcd;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: 400;
  left: 0;
  position: absolute;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-submit {
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: 5px;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-submit {
  width: 2.5rem;
  height: 2.5rem;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-submit::before {
  font-size: 14px;
  color: #161A47;
  font-weight: 900;
  transition: 0.3s all;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-submit:hover::before {
  color: #eb1f28;
}
#footer-columns .row-info > .container .footer-form-newsletter .newsletter .wpcf7-spinner {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  margin: 0;
  background: rgba(235, 31, 40, 0.5);
}
#footer-columns .row-info > .container .footer-form-newsletter .wpcf7-response-output {
  border: none;
  font-size: 13px;
  padding: 0;
}
#footer-columns .row-info > .container .security-badges {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
#footer-columns .row-info > .container .security-badges {
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}
#footer-columns .row-info > .container .security-badges img {
  display: block;
}
#footer-columns .row-info > .container .security-badges .bct {
  flex: 0 0 auto;
}
#footer-columns .row-info > .container .security-badges .bct img {
  max-height: 75px;
}
#footer-columns .row-info > .container .security-badges .dmca {
  flex: 1 1 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
#footer-columns .row-info > .container .security-badges .dmca img {
  max-height: 50px;
}
#footer-columns .row-info > .container .footer-icon-list {
  list-style: none;
  margin: 20px 0 0;
}
#footer-columns .row-info > .container .footer-icon-list > li {
  display: flex;
  align-items: flex-start;
}
#footer-columns .row-info > .container .footer-icon-list > li {
  grid-gap: 0.3125rem;
  gap: 0.3125rem;
}
#footer-columns .row-info > .container .footer-icon-list > li > img {
  flex: 0 0 auto;
  width: 21px;
  height: auto;
  position: relative;
  top: 2px;
  pointer-events: none;
}
#footer-columns .row-info > .container .footer-icon-list > li > .footer-icon-text > a {
  color: inherit;
}
#footer-columns .row-info > .container .footer-icon-list > li:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 47.99875rem) {
  #footer-columns .row-info > .container .footer-icon-list > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
#footer-columns .row-info > .container :where(.cell.cell-1, .cell.cell-2, .cell.cell-3, .cell.cell-4) {
  flex: 0 0 auto;
  width: 100%;
}
@media only screen and (min-width: 64rem) {
  #footer-columns .row-info > .container .cell.cell-1 {
    width: 28%;
  }
  #footer-columns .row-info > .container .cell.cell-2 {
    flex: 1 1 0;
    width: auto;
  }
  #footer-columns .row-info > .container .cell.cell-3 {
    flex: 1 1 0;
    width: auto;
  }
  #footer-columns .row-info > .container .cell.cell-4 {
    width: 28%;
  }
}
@media only screen and (max-width: 63.99875rem) {
  #footer-columns .row-info > .container .cell.cell-4 {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
  }
  #footer-columns .row-info > .container .cell.cell-4 .security-badges {
    justify-content: space-evenly;
  }
  #footer-columns .row-info > .container .cell.cell-4 .security-badges .dmca {
    flex: 0 0 auto;
  }
}

/** Poppins fonts */
:is(.ajax-loading, .ajax-loader) {
  position: relative;
}
:is(.ajax-loading, .ajax-loader)::before {
  z-index: 99998;
  content: "";
  background-color: rgba(0, 0, 0, 0.05);
}
:is(.ajax-loading, .ajax-loader)::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
:is(.ajax-loading, .ajax-loader)::after {
  content: "";
  z-index: 99999;
  border: 2px solid;
  border-color: #161A47 #f3f3f3 #161A47 #f3f3f3;
  border-radius: 50%;
  animation: spin 2.5s linear infinite;
  position: absolute;
  top: calc(50% - 17px);
  left: calc(50% - 17px);
}
:is(.ajax-loading, .ajax-loader)::after {
  width: 1.875rem;
  height: 1.875rem;
}

@-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 .share-title {
  bottom: 35px;
  color: #161A47;
  font-size: 13px;
  font-weight: 400;
  position: relative;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.sharing-toolbox .share-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.sharing-toolbox .share-title::before {
  background: #ccc;
  content: "";
  height: 1px;
  margin-right: 3px;
  width: 10px;
}
.sharing-toolbox .social-share > .share-label {
  display: none;
}
.sharing-toolbox .social-share ul.share-actions {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action {
  display: flex;
  margin-bottom: 10px;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action > button.share-button {
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
}
.sharing-toolbox .social-share ul.share-actions > li.share-action > button.share-button:hover {
  opacity: 1;
}

.share-icon {
  background: rgba(240, 240, 240, 0.1);
  border: 1px solid rgba(22, 26, 71, 0.5);
  border-radius: 50%;
  display: block;
  padding: 0;
  position: relative;
}
.share-icon {
  width: 2.375rem;
  height: 2.375rem;
}
.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 {
  position: absolute;
  top: calc(50% - 0.625rem);
  left: calc(50% - 0.625rem);
}
.share-icon::before {
  width: 1.25rem;
  height: 1.25rem;
}
.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: #161A47;
}

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

:is(span, label) > a {
  color: #161A47;
}
:is(span, label) > a:hover {
  color: #161A47;
  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 #eb1f28;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}
.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: #eb1f28;
}
.back-to-top > svg {
  width: 1.75rem;
  height: 1.75rem;
}
.back-to-top:hover {
  border-color: #F93939;
}
.back-to-top:hover > svg {
  color: #F93939;
}

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

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

.off-canvas {
  background-color: #fff;
}
.off-canvas.is-open {
  transform: translate(0) translateZ(3px);
}
.off-canvas .menu-lines {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  z-index: 9999;
  opacity: 0;
  transition: 0.6s 0.5s ease-in-out;
  transform: translateZ(3px);
  padding: 0;
  color: #161A47;
  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: absolute;
  top: 25px;
  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 {
  font-size: 1.125rem;
}
@media only screen and (min-width: 48rem) {
  .off-canvas .title-bar-title > a {
    font-size: 1.25rem;
  }
}
.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: 100px;
}
.off-canvas .menu-outer .inline-search {
  display: none;
}
.off-canvas .menu-outer .inline-search .frm-search {
  border: none;
  border-radius: 0;
  background: none;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] {
  position: absolute;
  background: none;
  left: 2px;
}
.off-canvas .menu-outer .inline-search .frm-search button[type=submit] span {
  display: none;
}
.off-canvas ul.vertical.menu {
  position: relative;
  z-index: 9998;
  height: 100%;
  overflow: hidden;
  transform: translateZ(3px);
}
.off-canvas ul.vertical.menu li a {
  font-size: 15px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 24px;
  display: block;
  color: #161A47;
}
.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(22, 26, 71, 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: 15px !important;
  right: 15px !important;
  width: calc(100% - 30px);
  padding: 0;
  font-size: 15px;
  border: none;
  background: none;
}
@media only screen and (max-width: 47.99875rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open {
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px);
  }
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container {
  position: relative;
  background-color: #fff;
  border: 1px solid #D9DBF5;
  box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.2);
  border-radius: 10px;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.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: 700px;
  }
}
@media only screen and (min-width: 64rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 80rem) {
  .dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container:not(.full) {
    max-width: 1200px;
  }
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container button[type=submit] > span {
  display: none;
}
.dropdown-search:not(.popup-overlay) .dropdown-pane.is-open .frm-container .trigger-s-close {
  display: none;
}

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

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

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

.color1 {
  color: #161A47;
}

.color2 {
  color: #eb1f28;
}

.color3 {
  color: #F93939;
}

.color4 {
  color: #8C5C0A;
}

.popup-container {
  display: none;
}

/** button */
.btn.btn-submit {
  background: #ff0000;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  border-radius: 30px;
  height: 48px;
  padding: 0 24px;
  color: #fff;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  cursor: pointer;
}
.btn.btn-submit {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
.btn.btn-submit:hover {
  background: #eb1f28;
}
.btn.btn-submit::before {
  font-weight: 400;
  font-size: 16px;
}

/** breadcrumb */
.breadcrumb-nav {
  z-index: 10;
  position: relative;
}
.breadcrumb-nav ul.breadcrumbs {
  border: 1px solid #d9dbf5;
  list-style: none;
  box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.0509803922);
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0 40px 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 47.99875rem) {
  .breadcrumb-nav ul.breadcrumbs {
    padding: 7px 15px;
    margin: 10px 0 20px 0;
  }
}
.breadcrumb-nav ul.breadcrumbs > li > a {
  color: #828b8c;
}
@media only screen and (max-width: 47.99875rem) {
  .breadcrumb-nav ul.breadcrumbs > li > a {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
}
.breadcrumb-nav ul.breadcrumbs > li.current {
  font-weight: 600;
  color: #101212;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 47.99875rem) {
  .breadcrumb-nav ul.breadcrumbs > li.current {
    font-size: 14px;
    line-height: 24px;
  }
}
.breadcrumb-nav ul.breadcrumbs > li:not(:last-child)::after {
  color: #828b8c;
  content: "\f061";
  margin: 0 6px;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  font-size: 13px;
  font-weight: 300;
}

/** section-title */
.section .border-title {
  margin-bottom: 35px;
}
.section .border-title > span {
  position: relative;
  border-radius: 60px;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  height: 68px;
  line-height: 48px;
  font-weight: 600;
  font-size: 36px;
  padding: 0 30px;
  z-index: 1;
  color: #161A47;
}
@media only screen and (max-width: 63.99875rem) {
  .section .border-title > span {
    font-weight: 600;
    font-size: 20px;
    line-height: 37px;
    height: 43px;
  }
}
.section .border-title > span::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 60px;
  background: linear-gradient(90deg, #161A47 31.99%, rgba(245, 128, 35, 0) 32%, rgba(245, 128, 35, 0) 68%, #161A47 68%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.section .border-title > span .line {
  position: absolute;
  border-bottom: 1px solid #161A47;
  bottom: -7px;
  left: 30px;
  right: 30px;
}
.section .border-title > span .line::before, .section .border-title > span .line::after {
  content: "";
  background-color: #161A47;
  position: absolute;
  border-radius: 50%;
  bottom: -3.5px;
}
.section .border-title > span .line::before, .section .border-title > span .line::after {
  width: 0.375rem;
  height: 0.375rem;
}
.section .border-title > span .line::before {
  left: -3px;
}
.section .border-title > span .line::after {
  right: -3px;
}

/** */
.section.section-page {
  position: relative;
  width: 100%;
}
.section.section-page::before {
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(251, 174, 23, 0.2) 0%, rgba(251, 174, 23, 0) 100%) right center no-repeat;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 60px;
  z-index: -2;
  background-size: 1000px 1000px;
}
.section.section-page::before {
  width: 31.25rem;
  height: 62.5rem;
}
@media only screen and (max-width: 63.99875rem) {
  .section.section-page::before {
    top: -95px;
    background-size: 537px 537px;
  }
  .section.section-page::before {
    width: 18.75rem;
    height: 33.5625rem;
  }
}
.section.section-page .main-office .main-office-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 37px;
  text-transform: uppercase;
  color: #161A47;
  margin-bottom: 20px;
}
.section.section-page .main-office .main-office-list {
  list-style: none;
  width: 1148px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.section.section-page .main-office .main-office-list li {
  color: #161A47;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  padding: 20px;
}
.section.section-page .main-office .main-office-list li .name {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 37px;
  position: relative;
  text-align: center;
  margin-bottom: 16px;
}
.section.section-page .main-office .main-office-list li .name::after {
  position: absolute;
  content: "";
  background-color: #d7cebe;
  height: 4px;
  width: 65px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}
.section.section-page .main-office .main-office-list li .address {
  text-align: center;
}
.section.section-page .branch-wrapper {
  background: #161a47;
  border-radius: 20px;
  color: #fff;
}
.section.section-page .branch-wrapper {
  padding: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .section.section-page .branch-wrapper {
    padding: 1.875rem;
  }
}
.section.section-page .branch-wrapper .desc {
  margin-bottom: 30px;
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section.section-page .branch-wrapper .branch-meta {
  align-items: flex-end;
}
.section.section-page .branch-wrapper .branch-meta {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .section.section-page .branch-wrapper .branch-meta {
    margin-bottom: 1.875rem;
  }
}
.section.section-page .branch-wrapper .branch-meta {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
.section.section-page .branch-wrapper .branch-meta label > span {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  display: block;
  margin-bottom: 10px;
}
.section.section-page .branch-wrapper .branch-meta label > select {
  background: rgba(255, 255, 255, 0.1019607843);
  padding: 0 12px;
  border: 1px solid #bababa;
  border-radius: 8px;
  height: 48px;
  color: #fff;
  font-weight: 500;
}
.section.section-page .branch-wrapper .branch-meta label > select option {
  color: #161A47;
  font-weight: 400;
}
.section.section-page .branch-wrapper .branch-content {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media only screen and (max-width: 63.99875rem) {
  .section.section-page .branch-wrapper .branch-content {
    display: block;
  }
}
.section.section-page .branch-wrapper .branch-content .branch-list {
  background: rgba(255, 255, 255, 0.1019607843);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
  padding: 15px;
}
.section.section-page .branch-wrapper .branch-content .branch-list .region {
  margin-bottom: 20px;
}
.section.section-page .branch-wrapper .branch-content .branch-list .region label select {
  background: rgba(255, 255, 255, 0.1019607843);
  padding: 0 15px;
  /*border: 1px solid #BABABA;*/
  border-radius: 8px;
  height: 48px;
  color: #fff;
  font-weight: 500;
}
.section.section-page .branch-wrapper .branch-content .branch-list .region label select option {
  color: #161A47;
  font-weight: 400;
}
.section.section-page .branch-wrapper .branch-content .branch-list .title {
  background-color: #161A47;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  border-radius: 8px;
  min-height: 48px;
}
.section.section-page .branch-wrapper .branch-content .branch-list .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav {
  max-height: 550px;
  min-height: 450px;
  padding-left: 5px;
}
@media only screen and (max-width: 63.99875rem) {
  .section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav {
    min-height: auto;
    max-height: 400px;
  }
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list {
  list-style: none;
  margin: 0;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  align-items: flex-start;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li {
  grid-gap: 0.625rem;
  gap: 0.625rem;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .region-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .region-title .toggle::after {
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
  content: "\f078";
  position: absolute;
  font-weight: 300;
  font-size: 14px;
  right: 0;
  top: 0;
  line-height: 1;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .num {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  flex: 0 0 auto;
  position: relative;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .branch-item {
  color: #d2d2d2;
  font-weight: 400;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .branch-item strong {
  color: #fff;
  font-weight: 600;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .content {
  flex: 1 1 0;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .content ul {
  font-size: 15px;
  margin-top: 10px;
  list-style: none;
  margin-left: 0;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .content ul li a {
  color: #fff;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .content ul li a:hover {
  color: #d2d2d2;
  text-decoration: none;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item {
  list-style: none;
  margin: 0;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > a, .section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 1) {
  .section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > a, .section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > span {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > a {
  color: #d2d2d2;
  font-weight: 400;
}
.section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > a strong {
  color: #fff;
  font-weight: 600;
}
.section.section-page .branch-wrapper .branch-content .cell-branch-map {
  display: block !important;
}
@media only screen and (max-width: 63.99875rem) {
  .section.section-page .branch-wrapper .branch-content .cell-branch-map {
    margin-top: 15px;
  }
}
.section.section-page .branch-wrapper .branch-content .branch-map {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
@media only screen and (max-width: 63.99875rem) {
  .section.section-page .branch-wrapper .branch-content .branch-map {
    height: auto;
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.section.section-page .branch-wrapper .branch-content .branch-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.section.section-page .branch-wrapper .branch-content .branch-map iframe {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/** section-branch */
.section.section-branch .section-title {
  text-align: center;
}
.section.section-branch .main-office .main-office-list {
  display: flex;
  flex-flow: row wrap;
}
.section.section-branch .main-office .main-office-list {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .section.section-branch .main-office .main-office-list {
    grid-gap: 1.875rem;
    gap: 1.875rem;
  }
}
.section.section-branch .main-office .main-office-list > li {
  flex: 0 0 auto;
  max-width: 100%;
  min-width: 0;
}
.section.section-branch .main-office .main-office-list > li {
  width: 100%;
}
@media only screen and (min-width: 48rem) {
  .section.section-branch .main-office .main-office-list > li {
    width: calc(50% - 0.9375rem);
  }
}

/** section-contact */
.section.section-contact .section-title {
  text-align: center;
}
.section.section-contact .main-office .main-office-list {
  width: 100%;
}
.section.section-contact .main-office .main-office-list {
  display: flex;
  flex-flow: row wrap;
}
.section.section-contact .main-office .main-office-list {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .section.section-contact .main-office .main-office-list {
    grid-gap: 1.875rem;
    gap: 1.875rem;
  }
}
.section.section-contact .main-office .main-office-list > li {
  flex: 0 0 auto;
  max-width: 100%;
  min-width: 0;
}
.section.section-contact .main-office .main-office-list > li {
  width: 100%;
}
@media only screen and (min-width: 48rem) {
  .section.section-contact .main-office .main-office-list > li {
    width: calc(33.3333333333% - 1.25rem);
  }
}
.section.section-contact .contact-form-banner {
  align-items: center;
}
.section.section-contact .contact-form-banner {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 48rem) {
  .section.section-contact .contact-form-banner {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 64rem) {
  .section.section-contact .contact-form-banner {
    margin-bottom: 3.125rem;
  }
}
.section.section-contact .contact-form-banner .cell-form .forms {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
}
.section.section-contact .contact-form-banner .cell-form .forms {
  padding: 1.25rem;
}
@media only screen and (min-width: 48rem) {
  .section.section-contact .contact-form-banner .cell-form .forms {
    padding: 1.875rem;
  }
}
.section.section-contact .contact-form-banner .cell-form .forms .form-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 37px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section.section-contact .contact-form-banner .cell-form .forms .form-title::after {
  content: "";
  height: 4px;
  background-color: #d7cebe;
  position: absolute;
  width: 65px;
  bottom: -8px;
  left: 0;
}
.section.section-contact .contact-form-banner .cell-form .forms .form-desc a {
  color: #ff7000;
  font-weight: 500;
}
.section.section-contact .contact-form-banner .cell-form .forms .flex-contact {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
.section.section-contact .contact-form-banner .cell-form .forms .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.section.section-contact .contact-form-banner .cell-form .forms .wpcf7-form-control-wrap input {
  background: rgba(255, 255, 255, 0.1019607843);
  color: #161A47;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  height: 48px;
  padding: 0 12px;
  width: 100%;
}
.section.section-contact .contact-form-banner .cell-form .forms .wpcf7-form-control-wrap input::-webkit-input-placeholder {
  font-weight: 400;
  color: #bababa;
}
.section.section-contact .contact-form-banner .cell-form .forms .wpcf7-form-control-wrap input::placeholder {
  font-weight: 400;
  color: #bababa;
}
.section.section-contact .contact-form-banner .cell-form .forms .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-size: 13px;
  position: absolute;
  top: 4px;
  right: 4px;
}
.section.section-contact .contact-form-banner .cell-form .forms .cell-submit {
  position: relative;
  display: flex;
  align-items: center;
}
.section.section-contact .contact-form-banner .cell-form .forms .wpcf7-response-output {
  padding: 0;
  border: none;
  font-size: 15px;
  margin: 15px 0 0 0;
}
/** */
.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.icon-button {
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.icon-button::before {
  font-size: 14px;
  order: 1;
}
.icon-button > i {
  order: 1;
  font-size: 14px;
}

.section.archives.archive-post {
  padding-top: 0 !important;
}

/** */
@media only screen and (max-width: 47.99875rem) {
  .site-footer.has-contact-link {
    padding-bottom: 62px;
  }
}

.add-this.contact-link {
  position: fixed;
  bottom: 20%;
  right: 15px;
  margin: 0;
  list-style: none;
  border-radius: 10px;
  padding: 15px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
  box-shadow: 0 0 12px rgba(22, 26, 71, 0.2);
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-filter: drop-shadow(0 0 6px rgba(22, 26, 71, 0.2));
          filter: drop-shadow(0 0 6px rgba(22, 26, 71, 0.2));
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
@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: #161A47;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.add-this.contact-link li a > svg, .add-this.contact-link li a > i {
  background-color: #eb1f28;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #eb1f28;
  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: #eb1f28;
}
@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: #eb1f28;
  color: #fff;
}
.add-this.contact-link li a:hover.messenger > i {
  background: none;
  color: #eb1f28;
}

/** */
#form_popup {
  width: 700px;
  max-width: 100%;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
}
#form_popup form.wpcf7-form .flex.flex-x {
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell {
  width: 100% !important;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell label {
  display: block;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell .wpcf7-form-control-wrap input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0 15px;
  font-size: 16px;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 16px;
  border-radius: 8px;
  background: none;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 13px;
  font-weight: 300;
  top: 4px;
  right: 4px;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell.cell-submit {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
#form_popup form.wpcf7-form .flex.flex-x > .cell .wpcf7-response-output {
  padding: 0;
  border: none;
  margin: 20px 0 0 0;
  font-size: 15px;
}

.fancybox__content > .f-button.is-close-btn {
  top: 5px;
  right: 5px;
  color: #161A47;
}

/** */
.grecaptcha-badge {
  display: none !important;
}

#footer-columns .row-info > .container .security-badges img {
  width: auto;
}

.section.singular.sinlge-post .post-inner .post-left .col-content {
  flex: 1 1 0;
}

@media only screen and (max-width: 47.99875rem) {
  .section.singular.sinlge-post .post-inner .post-left .sharing-toolbox {
    display: none;
  }
}

/** */
.breadcrumb-nav ul.breadcrumbs {
  background: #fff;
}

.cd-popup-container form .form-submit input {
  background: #f93939 !important;
  box-shadow: unset !important;
  border-radius: 100px;
}

.cd-popup-container form .form-submit input:hover {
  background: #161a47 !important;
}

/* About us */
.hb_about_section .hb_cvm ._title_container ._title > span,
.hb_about_section .hb_system ._system_inner ._title.mobile > span {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.hb_about_section .hb_service .lists-container ._title > span {
  color: white;
}

.hb_about_section .hb_teamwork {
  padding-bottom: 0;
}

.hb_about_section .hb_about .hb_about_bottom .hb_about_item {
  border: 1px solid var(--Primary-04);
}

.hb_about_section .hb_about .hb_about_bottom .hb_about_item:nth-child(2),
.hb_about_section .hb_service .lists-container .lists-container-inner {
  background: var(--Primary-04);
}

.hb_about_section .hb_system ._system_inner ._system_left ._left_inner ._title,
.hb_about_section .hb_teamwork .title-container ._title {
  margin-bottom: 25px;
}

.hb_about_section .hb_system ._system_inner ._system_left ._left_inner ._title > span {
  background: transparent;
  color: #fff;
}

.sidebar-posts .sidebar-content .news-list article.item .cover-content .h6 a:hover {
  color: var(--Primary-02);
}

.sidebar-form form .form-submit {
  display: inline-flex;
  left: 100%;
  transform: translateX(-100%);
  transition: 0.4s;
}

.sidebar-form form .form-submit:hover input {
  background: var(--Primary-02);
}

@media only screen and (max-width: 63.9988rem) {
  .hb_about_section ._title.mobile > span {
    height: 48px;
  }
  .hb_about_section .hb_service .lists-container ._title > span {
    padding: 0 20px;
    height: 56px;
    color: #fff;
  }
  .hb_about_section .hb_teamwork .title-container ._title {
    margin-bottom: 20px;
  }
  .hb_about_section .hb_teamwork .title-container ._title > span {
    padding: 0 20px;
    height: 56px;
  }
  .hb_about_section .hb_about::before {
    top: -15%;
    left: -70%;
  }
  .hb_about_section .hb_about {
    overflow: unset;
  }
  .hb_about_section ._title.mobile {
    z-index: 2;
    position: relative;
  }
  .hb_about_section .hb_about .hb_about_inner {
    padding-top: 0;
  }
  .hb_about_section .hb_about::after {
    width: 330px;
    height: 330px;
    right: 0;
  }
  .hb_about_section .hb_cvm ._title_container ._title > span {
    line-height: 30px;
  }
}
/* End about us */
/* Ceo manager */
.hb_manager_section {
  padding-top: 0 !important;
}

/* End ceo manager */
.hb_manager_section::after {
  display: none;
}

/* Liên hệ */
@media only screen and (max-width: 63.9988rem) {
  .section.section-contact .contact-form-banner .cell-form .forms {
    border-radius: 12px;
    padding: 12px;
  }
  .section.section-contact .contact-form-banner .cell-form .forms .form-title {
    font-size: 20px;
    line-height: 37px;
  }
  .section.section-contact .contact-form-banner .cell-form .forms .cell-submit {
    justify-content: flex-end;
  }
  .section.section-contact .contact-form-banner .cell-form .forms .cell-submit .btn.btn-submit {
    padding: 0 44px 0 24px;
  }
  .section.section-contact .contact-form-banner .cell-form .forms .cell-submit:after {
    display: inline-block;
    content: "\f061";
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #fff;
    font-weight: 700;
  }
  .section.section-contact .contact-form-banner .cell-form .forms .cell-submit .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .section.section-contact .main-office,
  .section.section-contact .branch-wrapper {
    display: none;
  }
  /* Danh sách chi nhánh */
  .section.section-page .branch-wrapper {
    padding: 12px;
    border-radius: 12px;
  }
  .section.section-page .branch-wrapper .branch-content .branch-list .title {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    min-height: 40px;
  }
  .section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list > li .region-title {
    font-size: 16px;
    line-height: 24px;
  }
  .section.section-page .branch-wrapper .branch-meta label > select {
    height: 43px;
  }
  .section.section-page .branch-wrapper .branch-content .branch-list {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
  .section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > a,
  .section.section-page .branch-wrapper .branch-content .branch-list .branch-list-nav ul.list .list-item > li > span {
    -webkit-line-clamp: unset;
    font-size: 14px;
  }
  .section.section-page .branch-wrapper .branch-content .branch-list {
    padding: 12px;
  }
  .section.section-page .main-office .main-office-title,
  .section.section-page .main-office .main-office-list li .name {
    font-size: 18px;
    line-height: 26px;
  }
  .section.section-page .branch-wrapper .branch-meta .cell-button {
    flex: 0 0 100%;
    text-align: right;
  }
  .section.section-page .branch-wrapper .branch-meta .cell-button .btn.btn-submit {
    font-size: 18px;
    height: 45px;
    padding: 0 20px;
  }
  .section.section-page .branch-wrapper .branch-content .cell-branch-map {
    display: none;
  }
  /* End danh sách chi nhánh */
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .section.section-contact .contact-form-banner .cell-form .forms .flex-contact .cell {
    width: 100%;
  }
  .section.section-contact .contact-form-banner .cell-form .forms .flex-contact .cell.cell-title .form-title {
    font-size: 18px;
  }
  .section.section-contact .contact-form-banner .cell-form .forms .wpcf7-form-control-wrap input {
    height: 43px;
  }
}
/* End Liên hệ */