@charset "UTF-8";
:root {
  --base-fonts: "Microsoft JhengHei", 微軟正黑體, 微軟雅黑體, 細明體_HKSCS, Arial, sans-serif;
  --theme-fonts: "Montserrat", var(--base-fonts);
  --font-base-size: 1rem;
  --font-xxl-size: 2em;
  --font-xl-size: 1.25em;
  --font-lg-size: 1.125em;
  --font-md-size: var(--font-base-size);
  --font-sm-size: 0.875em;
  --font-xs-size: 0.75em;
  --heading-line-height: 1.2em;
  --general-line-height: 1.4em;
  --p-space: 1.25em;
  --figure-space: 1.5em;
  --swiper-theme-color: var(--theme-base-color);
  --popup-mt: 64px;
  --popup-mb: 64px;
  --popup-mx: 32px;
  --common-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --common-border-radius: 20px;
}
@media screen and (max-width: 991.98px) {
  :root {
    --popup-mt: 32px;
    --popup-mb: 32px;
    --popup-mx: 20px;
  }
}
:root body:not([data-theme]) {
  --theme-main-color: #152650;
  --theme-sec-color: #7ed0e8;
  --theme-thi-color: #C45A00;
  --theme-base-color: #222;
  --theme-bg-color: #d9edfb;
  --signal-danger-color: red;
  --signal-warning-color: orange;
  --signal-success-color: green;
  --light-1-color: #f0f0eb;
  --light-2-color: #f8f7ee;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
input,
textarea,
select,
option,
button {
  color: currentColor;
  font-family: var(--base-fonts);
}
html, html::placeholder,
body,
body::placeholder,
input,
input::placeholder,
textarea,
textarea::placeholder,
select,
select::placeholder,
option,
option::placeholder,
button,
button::placeholder {
  font-size: var(--font-base-size);
}
html::placeholder,
body::placeholder,
input::placeholder,
textarea::placeholder,
select::placeholder,
option::placeholder,
button::placeholder {
  font-family: var(--base-fonts);
  opacity: 0.6;
  font-weight: 400;
}

body {
  position: relative;
  color: var(--theme-base-color);
  background-color: #FFF;
}
body.lock-scroll, body[data-scrollable=false], body[data-scrollable="0"] {
  overflow: hidden;
  height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}
img:not([src]) {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 50px;
  border: 1px solid #ccc;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7b3BhY2l0eTouMjtzdHJva2U6IzAwMDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9PC9zdHlsZT48L2RlZnM+PGxpbmUgY2xhc3M9ImNscy0xIiB4MT0iNTAiIHgyPSIwIiB5Mj0iNTAiLz48bGluZSBjbGFzcz0iY2xzLTEiIHgxPSIzNy41IiB5MT0iLTEyLjUiIHgyPSItMTIuNSIgeTI9IjM3LjUiLz48bGluZSBjbGFzcz0iY2xzLTEiIHgxPSI2Mi41IiB5MT0iMTIuNSIgeDI9IjEyLjUiIHkyPSI2Mi41Ii8+PC9zdmc+");
}

a,
button {
  cursor: pointer;
}
a:disabled, a.disabled,
button:disabled,
button.disabled {
  pointer-events: none;
  opacity: 0.6;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

iframe {
  border: none;
}

hr {
  margin: var(--figure-space) auto;
}

pre {
  overflow: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--theme-fonts);
}

.ck-content,
.static {
  text-align: justify;
}
.ck-content p,
.static p {
  font-size: 1em !important;
  margin-bottom: var(--p-space);
}
.ck-content li,
.static li {
  font-size: 1em !important;
  margin-bottom: calc(var(--p-space) / 2);
}
.ck-content h2,
.ck-content h3,
.ck-content h4,
.static h2,
.static h3,
.static h4 {
  margin-bottom: var(--p-space);
}
.ck-content h2:not(:first-child),
.ck-content h3:not(:first-child),
.ck-content h4:not(:first-child),
.static h2:not(:first-child),
.static h3:not(:first-child),
.static h4:not(:first-child) {
  margin-top: calc(var(--p-space) * 2);
}
.ck-content h2 a,
.ck-content h3 a,
.ck-content h4 a,
.static h2 a,
.static h3 a,
.static h4 a {
  text-decoration: none !important;
}
.ck-content h2 a:hover,
.ck-content h3 a:hover,
.ck-content h4 a:hover,
.static h2 a:hover,
.static h3 a:hover,
.static h4 a:hover {
  color: var(--theme-thi-color) !important;
}
.ck-content h2 a .i,
.ck-content h3 a .i,
.ck-content h4 a .i,
.static h2 a .i,
.static h3 a .i,
.static h4 a .i {
  display: inline-block;
  translate: 0 0.12em;
}
.ck-content h2,
.static h2 {
  font-size: 1.5em;
  color: var(--theme-main-color);
  font-weight: bold;
  line-height: 1.3333333333;
  border-bottom: 1px solid var(--theme-thi-color);
  padding-bottom: 0.1666666667em;
}
.ck-content h3,
.static h3 {
  font-size: 1.375em;
  line-height: 1.2727272727;
  font-weight: bold;
  color: #002289;
}
.ck-content h3 a,
.static h3 a {
  text-decoration: underline !important;
}
.ck-content a:not(.btn),
.static a:not(.btn) {
  text-decoration: underline;
  color: #002289;
}
.ck-content a:not(.btn):hover,
.static a:not(.btn):hover {
  color: var(--theme-thi-color);
}
.ck-content a[target=_blank]:not(.js-video-popup):not(.no-external-icon):not([href^="/"])::after,
.static a[target=_blank]:not(.js-video-popup):not(.no-external-icon):not([href^="/"])::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.35em;
  translate: 0 0.06em;
  background-color: #008080;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA3NjggNzY4Ij48cGF0aCBmaWxsPSIjMDAwIiBkPSJNNTQ0IDQxNnYxOTJjMCA4LjgzMi0zLjU1MiAxNi44LTkuMzc2IDIyLjYyNHMtMTMuNzkyIDkuMzc2LTIyLjYyNCA5LjM3NmgtMzUyYy04LjgzMiAwLTE2LjgtMy41NTItMjIuNjI0LTkuMzc2cy05LjM3Ni0xMy43OTItOS4zNzYtMjIuNjI0di0zNTJjMC04LjgzMiAzLjU1Mi0xNi44IDkuMzc2LTIyLjYyNHMxMy43OTItOS4zNzYgMjIuNjI0LTkuMzc2aDE5MmMxNy42NjQgMCAzMi0xNC4zMzYgMzItMzJzLTE0LjMzNi0zMi0zMi0zMmgtMTkyYy0yNi40OTYgMC01MC41NiAxMC43ODQtNjcuODcyIDI4LjEyOHMtMjguMTI4IDQxLjM3Ni0yOC4xMjggNjcuODcydjM1MmMwIDI2LjQ5NiAxMC43ODQgNTAuNTYgMjguMTI4IDY3Ljg3MnM0MS4zNzYgMjguMTI4IDY3Ljg3MiAyOC4xMjhoMzUyYzI2LjQ5NiAwIDUwLjU2LTEwLjc4NCA2Ny44NzItMjguMTI4czI4LjEyOC00MS4zNzYgMjguMTI4LTY3Ljg3MnYtMTkyYzAtMTcuNjY0LTE0LjMzNi0zMi0zMi0zMnMtMzIgMTQuMzM2LTMyIDMyek0zNDIuNjI0IDQ3MC42MjRsMjk3LjM3Ni0yOTcuMzc2djExNC43NTJjMCAxNy42NjQgMTQuMzM2IDMyIDMyIDMyczMyLTE0LjMzNiAzMi0zMnYtMTkyYzAtNC4zNTItMC44NjQtOC40OC0yLjQzMi0xMi4yNTZzLTMuODcyLTcuMjk2LTYuOTEyLTEwLjMzNmMtMC4wMzItMC4wMzItMC4wMzItMC4wMzItMC4wNjQtMC4wNjQtMi45NDQtMi45NDQtNi40NjQtNS4zMTItMTAuMzM2LTYuOTEyLTMuNzc2LTEuNTY4LTcuOTA0LTIuNDMyLTEyLjI1Ni0yLjQzMmgtMTkyYy0xNy42NjQgMC0zMiAxNC4zMzYtMzIgMzJzMTQuMzM2IDMyIDMyIDMyaDExNC43NTJsLTI5Ny4zNzYgMjk3LjM3NmMtMTIuNTEyIDEyLjUxMi0xMi41MTIgMzIuNzY4IDAgNDUuMjQ4czMyLjc2OCAxMi41MTIgNDUuMjQ4IDB6Ii8+PC9zdmc+") no-repeat center/contain;
  mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA3NjggNzY4Ij48cGF0aCBmaWxsPSIjMDAwIiBkPSJNNTQ0IDQxNnYxOTJjMCA4LjgzMi0zLjU1MiAxNi44LTkuMzc2IDIyLjYyNHMtMTMuNzkyIDkuMzc2LTIyLjYyNCA5LjM3NmgtMzUyYy04LjgzMiAwLTE2LjgtMy41NTItMjIuNjI0LTkuMzc2cy05LjM3Ni0xMy43OTItOS4zNzYtMjIuNjI0di0zNTJjMC04LjgzMiAzLjU1Mi0xNi44IDkuMzc2LTIyLjYyNHMxMy43OTItOS4zNzYgMjIuNjI0LTkuMzc2aDE5MmMxNy42NjQgMCAzMi0xNC4zMzYgMzItMzJzLTE0LjMzNi0zMi0zMi0zMmgtMTkyYy0yNi40OTYgMC01MC41NiAxMC43ODQtNjcuODcyIDI4LjEyOHMtMjguMTI4IDQxLjM3Ni0yOC4xMjggNjcuODcydjM1MmMwIDI2LjQ5NiAxMC43ODQgNTAuNTYgMjguMTI4IDY3Ljg3MnM0MS4zNzYgMjguMTI4IDY3Ljg3MiAyOC4xMjhoMzUyYzI2LjQ5NiAwIDUwLjU2LTEwLjc4NCA2Ny44NzItMjguMTI4czI4LjEyOC00MS4zNzYgMjguMTI4LTY3Ljg3MnYtMTkyYzAtMTcuNjY0LTE0LjMzNi0zMi0zMi0zMnMtMzIgMTQuMzM2LTMyIDMyek0zNDIuNjI0IDQ3MC42MjRsMjk3LjM3Ni0yOTcuMzc2djExNC43NTJjMCAxNy42NjQgMTQuMzM2IDMyIDMyIDMyczMyLTE0LjMzNiAzMi0zMnYtMTkyYzAtNC4zNTItMC44NjQtOC40OC0yLjQzMi0xMi4yNTZzLTMuODcyLTcuMjk2LTYuOTEyLTEwLjMzNmMtMC4wMzItMC4wMzItMC4wMzItMC4wMzItMC4wNjQtMC4wNjQtMi45NDQtMi45NDQtNi40NjQtNS4zMTItMTAuMzM2LTYuOTEyLTMuNzc2LTEuNTY4LTcuOTA0LTIuNDMyLTEyLjI1Ni0yLjQzMmgtMTkyYy0xNy42NjQgMC0zMiAxNC4zMzYtMzIgMzJzMTQuMzM2IDMyIDMyIDMyaDExNC43NTJsLTI5Ny4zNzYgMjk3LjM3NmMtMTIuNTEyIDEyLjUxMi0xMi41MTIgMzIuNzY4IDAgNDUuMjQ4czMyLjc2OCAxMi41MTIgNDUuMjQ4IDB6Ii8+PC9zdmc+") no-repeat center/contain;
}
.ck-content .grid-list a[target=_blank]::after,
.static .grid-list a[target=_blank]::after {
  content: none;
}
.ck-content a[target=_blank]:has(img)::after,
.static a[target=_blank]:has(img)::after {
  content: none;
}
.ck-content hr,
.ck-content figure,
.ck-content table,
.ck-content .responsive-table,
.static hr,
.static figure,
.static table,
.static .responsive-table {
  margin-top: var(--figure-space);
  margin-bottom: var(--figure-space);
}
.ck-content hr,
.static hr {
  border: none;
  border-top: 1px solid currentColor;
}
.ck-content table,
.static table {
  border-collapse: collapse;
  background-color: #e9f6ff;
}
.ck-content table tbody tr:not(:last-child):not(:only-child) th,
.ck-content table tbody tr:not(:last-child):not(:only-child) td,
.static table tbody tr:not(:last-child):not(:only-child) th,
.static table tbody tr:not(:last-child):not(:only-child) td {
  border-bottom: 1px solid currentColor;
}
.ck-content table th,
.ck-content table td,
.static table th,
.static table td {
  padding: 0.625em 1.25em;
  vertical-align: top;
  text-align: left;
}
.ck-content table th:not(:first-child),
.ck-content table td:not(:first-child),
.static table th:not(:first-child),
.static table td:not(:first-child) {
  border-left: 1px solid #ccc;
}
.ck-content table th,
.static table th {
  border-bottom: 2px solid currentColor;
  color: var(--theme-main-color);
  font-weight: bold;
}
.ck-content table[border="0"] th,
.ck-content table[border="0"] td,
.static table[border="0"] th,
.static table[border="0"] td {
  border: 0;
}
.ck-content img,
.static img {
  display: initial;
}
.ck-content table,
.ck-content ul,
.ck-content ol,
.static table,
.static ul,
.static ol {
  margin: 0 0 var(--figure-space);
}
.ck-content ul,
.ck-content ol,
.static ul,
.static ol {
  padding-left: 1.5em;
}
.ck-content ul ul,
.ck-content ul ol,
.ck-content ol ul,
.ck-content ol ol,
.static ul ul,
.static ul ol,
.static ol ul,
.static ol ol {
  margin-top: var(--p-space);
}
.ck-content ol,
.static ol {
  list-style: none;
  counter-reset: item;
}
.ck-content ol > li,
.static ol > li {
  counter-increment: item;
}
.ck-content ol > li::marker,
.static ol > li::marker {
  content: "(" counter(item) ") ";
}
.ck-content ol ol,
.static ol ol {
  list-style: upper-alpha;
}
.ck-content ol ol > li::marker,
.static ol ol > li::marker {
  content: normal;
}
.ck-content ol ol ol,
.static ol ol ol {
  list-style: lower-roman;
}
.ck-content ol ol ol > li::marker,
.static ol ol ol > li::marker {
  content: normal;
}
.ck-content dl,
.static dl {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 0.75em 1em;
  line-height: 1.5;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .container {
    padding: 0 16px;
  }
}
.container--no-padding {
  padding: 0;
}
.container--full {
  max-width: 100% !important;
}
.container--sm {
  max-width: 540px;
}
.container--md {
  max-width: 720px;
}
.container--lg {
  max-width: 960px;
}
.container--xl {
  max-width: 1140px;
}
.container--xxl {
  max-width: 1440px;
}
.container--hd {
  max-width: 1920px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  padding: 0.75em 1em;
  background-color: #fff;
  color: var(--theme-main-color, #152650);
  font-weight: 600;
  text-decoration: underline;
  border: 2px solid var(--theme-main-color, #152650);
  border-radius: 0 0 8px 0;
  transform: translateY(-120%);
  transition: transform 0.15s ease;
}
.skip-link:focus, .skip-link:focus-visible {
  outline: 3px solid var(--theme-thi-color, #f0781f);
  outline-offset: 2px;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--theme-main-color, #152650);
  outline-offset: 2px;
}

main:focus {
  outline: none;
}

main:focus-visible {
  outline: none;
}

.cus-select {
  position: relative;
  display: inline-flex;
}
.cus-select:after {
  position: absolute;
  inset: 0 0.125em 0 auto;
  content: "▼";
  margin-left: auto;
  font-size: 0.625em;
  display: flex;
  align-items: center;
}
.cus-select__box {
  position: relative;
  padding: 0.25em 0.125em;
  gap: 0.75em;
  width: 100%;
  cursor: pointer;
}
.cus-select > select {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0 !important;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 100%;
}

.field-style {
  display: inline-flex;
  font-size: 1em;
  background-color: transparent;
  gap: 1em;
  padding: 0.5em 0.75em 0.4375em;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ccc;
  outline: none !important;
  line-height: 1.125;
}

.accordion {
  position: relative;
}
.accordion__btn {
  cursor: pointer;
}
.accordion__body {
  display: none;
}
.accordion--absolute .accordion__body {
  position: absolute;
  top: calc(100% + 6px);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--theme-bg-color);
}
body:not(.loading) .preloader {
  opacity: 0 !important;
  pointer-events: none !important;
}
.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes Rota360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.preloader .icon {
  position: relative;
  flex: 0 0 2em;
  border-radius: 999px;
  aspect-ratio: 1;
  overflow: hidden;
  outline: 4px solid var(--theme-main-color);
  outline-offset: -5px;
  animation: Rota360 1s ease;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 100% 100%, 100% 50%, 0 50%);
}
.preloader .icon:before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 1px solid var(--theme-bg-color);
  z-index: 2;
}
body.loading .preloader .icon {
  animation-iteration-count: infinite;
}

.responsive-table {
  overflow: auto;
  max-width: 100%;
}
.responsive-table table {
  margin: 0;
}

.media-holder {
  position: relative;
}
.media-holder > img,
.media-holder > video,
.media-holder > iframe,
.media-holder .media-holder__body {
  position: absolute;
  inset: 0;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
}
.media-holder--contain > img,
.media-holder--contain > video {
  object-fit: contain;
}
.media-holder--1 {
  aspect-ratio: 1;
}
.media-holder--standard {
  aspect-ratio: 1.3333333333;
}
.media-holder--wide {
  aspect-ratio: 1.7777777778;
}
.media-holder--u-wide {
  aspect-ratio: 2.3333333333;
}

.common-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
}
.common-popup:not(.active) {
  display: none;
  background-color: transparent;
}
.common-popup__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--theme-main-color)22;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.common-popup__container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: var(--popup-mt) var(--popup-mx) var(--popup-mb);
}
.common-popup__wrapper {
  position: relative;
  max-height: 100%;
  max-width: 1100px;
  transition: 0.2s ease;
  transition-delay: 0.2s;
  z-index: 2;
  background-color: var(--theme-bg-color);
  box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.1), 4px 4px 4px rgba(0, 0, 0, 0.1), -2px -2px 6px rgba(0, 0, 0, 0.1);
}
.common-popup:not(.active) .common-popup__wrapper {
  transform: scale(0.86);
  opacity: 0;
  transition-delay: 0s;
}
.common-popup__body, .common-popup__media {
  max-height: calc(100vh - var(--popup-mt) - var(--popup-mb));
}
.common-popup__body {
  position: relative;
  width: 100%;
  overflow: auto;
}
.common-popup__close-btn {
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  cursor: pointer;
  color: var(--theme-sec-color);
}
@media screen and (max-width: 991.98px) {
  .common-popup__close-btn {
    font-size: 0.8552631579em;
    right: 20px;
  }
}
.common-popup__close-btn:hover {
  color: var(--theme-thi-color);
}
.common-popup__close-btn .icon {
  font-size: 1.625em;
}
.common-popup__close-btn span {
  display: inline-block;
}
.common-popup__wrapper > .common-popup__close-btn {
  top: -2.375em;
  right: 0;
}
.common-popup:not(.active) .common-popup__close-btn {
  opacity: 0;
  transition-delay: 0s;
}
.common-popup[data-mode=mp4] .common-popup__wrapper {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.common-popup[data-mode=mp4] .common-popup__wrapper video {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: #000;
}
.common-popup[data-mode=youtube] .common-popup__wrapper {
  width: 100%;
}
.common-popup[data-mode=youtube] .media-holder {
  position: relative;
  width: 1280px;
  max-width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}
.common-popup[data-mode=youtube] .media-holder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.common-popup[data-mode=iframe] .common-popup__wrapper {
  width: 1440px;
  max-width: 100%;
}

.messager {
  pointer-events: none;
  position: fixed;
  inset: 0;
  padding: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.messager__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}
.messager__wrapper > div {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  padding: 0.5em 1.25em;
  pointer-events: all;
  box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.1), 4px 4px 4px rgba(0, 0, 0, 0.1), -2px -2px 6px rgba(0, 0, 0, 0.1);
}
.messager__wrapper > div:hover {
  background-color: #eee;
}
.messager__wrapper > div.hide {
  opacity: 0;
  translate: 0 -20px;
  transition: translate 0.3s ease, opacity 0.3s linear;
}

.smart-flex {
  --smart-flex-gap: 12px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.smart-flex > hr:not(:last-child) {
  margin: 0 0 var(--smart-flex-gap);
}
.smart-flex > .smart-flex__item:not(:has(+ br)):not(:last-child) {
  margin-right: var(--smart-flex-gap);
}
.smart-flex > hr {
  flex: 0 0 100%;
}
.smart-flex > .smart-flex__item:has(~ br:not(:last-child)) {
  margin-bottom: var(--smart-flex-gap);
}
.smart-flex > br + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item:last-child {
  flex: 0 0 100%;
  width: 100%;
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > br + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > br + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child:has(+ br),
.smart-flex > .smart-flex__item:first-child:last-child {
  flex: 0 0 100%;
  width: 100%;
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + br) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 1) / 2);
  width: calc((100% - var(--smart-flex-gap) * 1) / 2);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 2) / 3);
  width: calc((100% - var(--smart-flex-gap) * 2) / 3);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 3) / 4);
  width: calc((100% - var(--smart-flex-gap) * 3) / 4);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 4) / 5);
  width: calc((100% - var(--smart-flex-gap) * 4) / 5);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 5) / 6);
  width: calc((100% - var(--smart-flex-gap) * 5) / 6);
}
.smart-flex > .smart-flex__item:first-child:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item + .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ .smart-flex__item:last-child) {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:has(+ br),
.smart-flex > .smart-flex__item:first-child + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item + .smart-flex__item:last-child {
  flex: 0 0 calc((100% - var(--smart-flex-gap) * 6) / 7);
  width: calc((100% - var(--smart-flex-gap) * 6) / 7);
}

.js-inview-animate {
  opacity: 0;
}
.js-inview-animate.is-inview {
  opacity: 1;
  animation-duration: var(--inview-duration, 0.6s);
  animation-timing-function: ease;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
.js-inview-animate.is-inview[data-inview=fade-up] {
  animation-name: fadeInUp;
}
.js-inview-animate.is-inview[data-inview=fade-down] {
  animation-name: fadeInDown;
}
.js-inview-animate.is-inview[data-inview=fade-left] {
  animation-name: fadeInLeft;
}
.js-inview-animate.is-inview[data-inview=fade-right] {
  animation-name: fadeInRight;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
a {
  color: currentColor;
  text-decoration: none;
}

html {
  scroll-padding-top: 10em;
}
@media screen and (max-width: 991.98px) {
  html {
    scroll-padding-top: 3.5em;
  }
}

body {
  position: relative;
  padding-top: 12.5em;
}
@media screen and (max-width: 991.98px) {
  body {
    padding-top: 3.5em;
  }
}
body.menu-enabled {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

.media-holder--map {
  border: 1px #ccc solid;
}

.header {
  position: fixed;
  z-index: 99999;
  inset: 0 0 auto;
}
@media screen and (max-width: 991.98px) {
  .header:before {
    content: "";
    display: block;
    height: 5px;
    background-color: var(--theme-sec-color);
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
  }
}
.header__body {
  position: relative;
  background-color: #fff;
  box-shadow: var(--common-shadow);
  padding: 1.25em 1.25em 0em;
}
@media (min-width: 992px) {
  .header__body {
    border-radius: 0 0 var(--common-border-radius) var(--common-border-radius);
  }
}
@media screen and (max-width: 991.98px) {
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6875em 1em 0.375em;
  }
}
.header__logo {
  display: block;
  height: 4em;
}
@media (min-width: 992px) {
  .header__logo {
    margin-bottom: 0.75em;
  }
}
@media screen and (max-width: 1199.98px) {
  .header__logo {
    height: 2.625em;
  }
}
@media screen and (max-width: 991.98px) {
  .header__logo {
    height: 2.125em;
  }
}
.header__logo img {
  height: 100%;
}
.header__menu-toggle {
  align-self: center;
  line-height: 0;
  min-width: 1.5em;
  min-height: 1.5em;
}
@media (min-width: 992px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__menu-toggle .icon-cross {
  display: none;
}
body.menu-enabled .header__menu-toggle .icon-bars {
  display: none;
}
body.menu-enabled .header__menu-toggle .icon-cross {
  display: inline-block;
}
.header__top-row {
  position: absolute;
  inset: 0 0 auto auto;
  padding: 0.5em 1em 0.5em 1.5em;
  background-color: var(--theme-sec-color);
  display: flex;
  align-items: center;
  gap: 1.25em;
  border-radius: 0 0 0 var(--common-border-radius);
}
@media screen and (max-width: 991.98px) {
  .header__top-row {
    display: none;
  }
}
.header__top-hr {
  width: 1px;
  height: 1.2em;
  background-color: currentColor;
}
.header__top-item:hover {
  color: var(--theme-thi-color);
}
.header__top-item.has-share {
  position: relative;
}
.header__share-menu {
  position: absolute;
  top: calc(100% + 0.625em);
  z-index: 10;
  min-width: 12.5em;
  padding: 0.5em;
  background-color: #fff;
  border-radius: 0.875em;
  box-shadow: var(--common-shadow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  translate: 0 -0.5em;
  transition: opacity 0.2s ease, translate 0.2s ease, visibility 0.2s;
}
@media (min-width: 992px) {
  .header__share-menu {
    right: 0;
  }
}
@media screen and (max-width: 991.98px) {
  .header__share-menu {
    left: 0;
  }
}
.header__share-menu.is-open {
  opacity: 1;
  visibility: visible;
  translate: 0;
}
.header__share-item {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.5625em 0.75em;
  border-radius: 0.5em;
  white-space: nowrap;
  color: var(--theme-main-color);
  transition: 0.2s ease;
}
.header__share-item span:last-child {
  font-size: 1em;
}
.header__share-item .i {
  width: 1.5em;
  font-size: 1.25em;
  text-align: center;
}
.header__share-item:hover {
  background-color: var(--theme-bg-color);
  color: var(--theme-thi-color);
}
.header__nav {
  display: flex;
  justify-content: space-between;
  gap: 1.25em;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 991.98px) {
  .header__nav {
    position: absolute;
    inset: 100% 0 auto;
    background-color: #fff;
    flex-direction: column;
    gap: 0;
    min-height: calc(100dvh - 3.5em);
    max-height: calc(100dvh - 3.5em);
    overflow-y: auto;
    box-shadow: 0 8px 8px -4px #ddd;
    padding-bottom: 1.25em;
    justify-content: flex-start;
    visibility: hidden;
    opacity: 0;
    translate: 0 -0.5em;
    transition: opacity 0.3s ease, translate 0.3s ease, visibility 0.3s;
  }
  body.menu-enabled .header__nav {
    visibility: visible;
    opacity: 1;
    translate: 0;
  }
}
@media (min-width: 992px) {
  .header__nav-item {
    display: flex;
    align-items: stretch;
    padding: 0.75em;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-link, .header__dropdown-item {
    padding: 0.375em 1em;
  }
}
@media (min-width: 992px) {
  .header__nav-link {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-link {
    flex: 0 0 auto;
    max-width: calc(100% - 52px);
  }
}
.header__nav-link:hover {
  color: var(--theme-thi-color);
}
.header__nav-link span {
  font-weight: 500;
  font-size: 1.125em;
}
.header__nav-link.nowrap span {
  white-space: nowrap;
}
@media screen and (max-width: 991.98px) {
  .header__nav-br {
    display: none;
  }
}
@media (min-width: 992px) {
  .header__nav-caret {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-caret {
    flex: 0 0 auto;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em;
  }
  .header__nav-caret .i {
    rotate: 90deg;
    transition: rotate 0.2s ease;
    font-size: 0.75em;
  }
}
.header__nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .header__nav-dropdown {
    position: absolute;
    inset: calc(100% - 20px) 0 auto;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 2.5em 1.25em 1.25em;
    z-index: -1;
    box-shadow: 0 0 8px #ddd;
    gap: 0.75em;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-dropdown {
    flex-basis: 100%;
    position: relative;
    padding-left: 1em;
    overflow: hidden;
    max-height: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, visibility 0.3s;
  }
  .header__nav-dropdown:before {
    content: "";
    position: absolute;
    inset: 0.5em auto 0.5em 1em;
    width: 2px;
    background-color: #ccc;
  }
}
@media (min-width: 992px) {
  .header__nav-item:not(:hover):not(:focus-within) .header__nav-dropdown {
    opacity: 0;
    pointer-events: none;
    translate: 0 -1.5em;
  }
}
@media screen and (max-width: 991.98px) {
  .header__nav-item.is-open .header__nav-dropdown {
    max-height: 37.5em;
    visibility: visible;
  }
  .header__nav-item.is-open .header__nav-caret .i {
    rotate: -90deg;
  }
}
.header__dropdown-item {
  position: relative;
  margin-left: 1.1111111111em;
  font-size: 1.125em;
}
@media (min-width: 992px) {
  .header__dropdown-item:before {
    content: "";
    position: absolute;
    inset: -0.75em auto 0 -1.25em;
    width: 2px;
    background-color: var(--theme-main-color);
  }
}
.header__dropdown-item:hover {
  color: var(--theme-thi-color);
}
.header__dropdown-item:first-child:before {
  top: 0;
}
.header__mb-tool {
  display: flex;
  align-items: center;
  gap: 0.5em 1em;
  flex-wrap: wrap;
  background-color: var(--theme-sec-color);
  padding: 0.75em 1em;
  margin-bottom: 0.75em;
}
@media (min-width: 992px) {
  .header__mb-tool {
    display: none;
  }
}
.header__mb-tool .search-form {
  flex: 0 0 100%;
  width: 100%;
}
.header__mb-tool .search-form__input {
  flex: 1 0 auto;
}
@media screen and (max-width: 991.98px) {
  .header .container {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header__nav,
  .header__nav-dropdown,
  .header__nav-caret .i {
    transition: none;
  }
}
.search-form {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding-right: 0.75em;
  font-size: 1.125em;
  border-radius: 999px;
  background-color: #fff;
  overflow: hidden;
}
.search-form__input {
  border: none;
  line-height: 1;
  padding: 0.25em 0.5em 0.1875em 0.75em;
}
@media screen and (max-width: 1199.98px) {
  .search-form__input {
    width: 7.5em;
  }
}
.search-form__submit {
  color: var(--theme-main-color);
}

.footer {
  background-color: var(--theme-main-color);
  color: #fff;
  padding: 3.5em 0em 0em;
}
.footer__main {
  display: flex;
  gap: 2.5em;
  margin-bottom: 2em;
}
@media screen and (max-width: 991.98px) {
  .footer__main {
    flex-direction: column;
    gap: 1.625em;
  }
}
@media (min-width: 992px) {
  .footer__info {
    padding-right: 1.125em;
    flex: 0 0 26.25em;
    border-right: 1px solid #fff;
  }
}
@media screen and (max-width: 991.98px) {
  .footer__info {
    padding-bottom: 1.625em;
    border-bottom: 1px solid #fff;
  }
}
.footer__brand {
  display: block;
  margin-bottom: 1.25em;
  height: 4em;
}
@media screen and (max-width: 1199.98px) {
  .footer__brand {
    height: 2.625em;
  }
}
@media screen and (max-width: 991.98px) {
  .footer__brand {
    height: 2.25em;
  }
}
.footer__brand img {
  width: auto;
  height: 100%;
}
.footer__map {
  border-radius: var(--common-border-radius);
  overflow: hidden;
  margin-bottom: 1.5em;
}
.footer__contact {
  display: grid;
  grid-template-columns: 4.25em 1fr;
  gap: 0.5em;
}
.footer__contact dt {
  font-weight: bold;
}
.footer__contact dd a:hover {
  color: var(--theme-sec-color);
}
.footer__nav {
  column-count: 4;
  column-gap: 1em;
}
@media screen and (max-width: 1199.98px) {
  .footer__nav {
    column-count: 3;
  }
}
@media screen and (max-width: 991.98px) {
  .footer__nav {
    column-count: 2;
  }
}
.footer__group {
  width: 100%;
  margin-bottom: 1em;
  display: inline-block;
}
.footer__group-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.8888888889em;
  color: #7092be;
}
@media screen and (max-width: 991.98px) {
  .footer__group-title {
    font-size: 0.875em;
  }
}
.footer__link {
  display: block;
  line-height: 1.4;
  margin-bottom: 0.8em;
  color: #fff;
  opacity: 0.9;
}
@media screen and (max-width: 991.98px) {
  .footer__link {
    font-size: 0.875em;
  }
}
.footer__link:hover {
  opacity: 1;
  color: var(--theme-sec-color);
}
.footer__review {
  text-align: right;
  font-size: 0.875em;
  margin-top: 1.1428571429em;
}
@media screen and (max-width: 991.98px) {
  .footer__review {
    text-align: center;
  }
}
.footer__bottom {
  background-color: #fff;
  color: var(--theme-base-color);
}
.footer__bottom-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25em;
  padding: 1.25em 0em;
}
@media screen and (max-width: 991.98px) {
  .footer__bottom-body {
    flex-direction: column;
    align-items: center;
  }
}
.footer__copyright {
  margin-right: auto;
}
@media screen and (max-width: 991.98px) {
  .footer__copyright {
    text-align: center;
    font-size: 0.875em;
  }
}
.menu-icon {
  display: inline-block;
  line-height: 1;
  height: 1.5em;
  width: 1.5em;
  position: relative;
}
.menu-icon span {
  position: absolute;
  height: 3px;
  background-color: currentColor;
  width: 100%;
  border-radius: 999px;
  left: 0;
  transition: 0.3s ease;
}
.menu-icon span:nth-child(1) {
  top: 10%;
}
.menu-icon span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.menu-icon span:nth-child(3) {
  bottom: 10%;
}
.menu-enabled .menu-icon span:nth-child(1) {
  top: 50%;
  rotate: 45deg;
  translate: 0 -50%;
}
.menu-enabled .menu-icon span:nth-child(2) {
  opacity: 0;
}
.menu-enabled .menu-icon span:nth-child(3) {
  bottom: 50%;
  rotate: -45deg;
  translate: 0 50%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.inner-hero {
  position: relative;
  background-color: #fff;
  background-image: radial-gradient(#f2f2f2 2px, transparent 0);
  background-size: 24px 24px;
  overflow: hidden;
  max-width: 100%;
}
.inner-hero__body {
  max-width: 100%;
}
@media (min-width: 992px) {
  .inner-hero__body {
    height: 360px;
    display: flex;
  }
}
.inner-hero__content {
  padding: 2em 0;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .inner-hero__content {
    max-width: 60%;
  }
}
.inner-hero__img {
  background-image: url(/images/visual-grap-v.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 0 0 38.8252148997%;
  transform: rotate(4deg);
}
body[data-nav-section=about] .inner-hero__img {
  background-image: url("/images/banner-about.svg");
}
body[data-nav-section=news] .inner-hero__img {
  background-image: url("/images/banner-news.svg");
}
body[data-nav-section=regulation] .inner-hero__img {
  background-image: url("/images/banner-regulation.svg");
}
body[data-nav-section=public] .inner-hero__img {
  background-image: url("/images/banner-public.svg");
}
body[data-nav-section=industry] .inner-hero__img {
  background-image: url("/images/banner-industry.svg");
}
body[data-nav-section=resources] .inner-hero__img {
  background-image: url("/images/banner-resources.svg");
}
@media screen and (max-width: 991.98px) {
  .inner-hero__img {
    position: absolute;
    inset: auto -2% -2% auto;
    aspect-ratio: 1;
    height: 8.75em;
    background-position: top left;
    background-size: 120%;
  }
}
.inner-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 auto;
  color: var(--theme-main-color);
}
@media screen and (max-width: 991.98px) {
  .inner-hero__info {
    padding: 7.5em 0em;
  }
}
.inner-hero__info h1 {
  font-size: 2.625em;
  font-weight: bold;
  line-height: 1.3333333333;
}
@media screen and (max-width: 991.98px) {
  .inner-hero__info h1 {
    font-size: 2em;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.625em;
  border-bottom: 2px solid var(--theme-thi-color);
  line-height: 1;
  gap: 0.375em 0.75em;
  color: var(--theme-main-color);
}
@media (min-width: 992px) {
  .breadcrumb {
    font-size: 1.125em;
  }
}
.breadcrumb a,
.breadcrumb span {
  font-weight: bold;
}
.breadcrumb a:hover {
  color: var(--theme-thi-color);
}

.inner-body {
  margin: 2em auto 7.5em;
  font-size: 18px;
}
@media screen and (max-width: 991.98px) {
  .inner-body {
    font-size: 14px;
  }
}
.inner-body--block {
  border-radius: var(--common-border-radius);
  background-color: #edf8ff;
  padding: 1em;
}

.content-body {
  border-radius: var(--common-border-radius);
  background-color: #edf8ff;
  padding: 1em;
  margin-bottom: var(--figure-space);
}

.accord {
  overflow: hidden;
  background-color: var(--theme-bg-color);
  border-radius: var(--common-border-radius);
  box-shadow: var(--common-shadow);
}
.accord + .accord {
  margin-top: 0.75em;
}
.accord__btn {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
  padding: 1.25em 1.5em;
  text-align: left;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  border: none;
}
.accord__btn h2,
.accord__btn h3 {
  flex: 1 1 auto;
  border-bottom: 0;
  margin-bottom: 0;
}
.accord__btn .i {
  flex: 0 0 auto;
  rotate: 90deg;
  transition: rotate 0.3s ease;
}
.accord__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0em 1.5em;
}
.accord__body:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--theme-thi-color);
  margin-bottom: 0.75em;
}
.accord.is-open .accord__btn .i {
  rotate: -90deg;
}
.accord.is-open .accord__body {
  max-height: none;
  padding-bottom: 1.5em;
}

@media (prefers-reduced-motion: reduce) {
  .accord__btn .i,
  .accord__body {
    transition: none;
  }
}
.grid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}
.grid-list > * {
  flex: 0 0 21.875em;
}
.grid-list > * img {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 4px;
  color: #fff;
  background-color: var(--theme-main-color);
  transition: 0.2s;
}
.btn:hover {
  color: var(--theme-thi-color);
}
.btn--orange {
  background-color: #ef7822;
  color: #fff;
}
.btn--orange:hover {
  color: var(--theme-main-color);
}
.btn--light {
  background-color: var(--theme-sec-color);
  color: var(--theme-main-color);
}
.btn--light:hover {
  color: #fff;
}
.btn--l {
  font-size: 1.5em;
}

.table-responsive {
  max-width: 100%;
  overflow-x: auto;
}

.table-list {
  width: 100%;
  border-radius: var(--common-border-radius);
}

.static table.contact-table,
.static table.contact-table table {
  background: none;
}
.static table.contact-table table {
  margin: 0;
}
.static table.contact-table tbody tr:not(:last-child) th,
.static table.contact-table tbody tr:not(:last-child) td,
.static table.contact-table th,
.static table.contact-table td {
  padding: 0.375em 1.5em 0.375em 0em;
  border: 0;
}

.indent {
  position: relative;
  margin-left: var(--figure-space);
}
.indent > span:first-child {
  position: absolute;
  inset: 0 100% 0 auto;
  text-align: right;
  padding-right: 4px;
}

.btns {
  display: flex;
  gap: 0.5em 1em;
  flex-wrap: wrap;
}

.term {
  font-weight: bold;
  color: #1a367b;
}

.search-page {
  margin: 3em auto 7.5em;
}
@media screen and (max-width: 991.98px) {
  .search-page {
    margin: 2em auto 5em;
  }
}
.search-page__title {
  font-size: 2.625em;
  font-weight: bold;
  color: var(--theme-main-color);
  margin-bottom: 0.6666666667em;
}
@media screen and (max-width: 991.98px) {
  .search-page__title {
    font-size: 1.875em;
  }
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5em;
  max-width: 48.75em;
  padding: 0.625em 0.75em 0.625em 1.5em;
  background-color: #fff;
  border-radius: 999px;
  box-shadow: var(--common-shadow);
}
.search-bar__input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 1.125em;
  line-height: 1.2;
}
.search-bar__input:focus {
  outline: none;
}
@media screen and (max-width: 991.98px) {
  .search-bar__input {
    font-size: 1em;
  }
}
.search-bar__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  color: var(--theme-main-color);
  font-size: 1.25em;
  cursor: pointer;
  transition: color 0.2s;
}
.search-bar__submit:hover {
  color: var(--theme-thi-color);
}

.search-results {
  margin-top: 1.75em;
  padding-top: 1.5em;
  border-top: 1px solid #ccc;
}
.search-results__summary {
  color: #555;
  font-size: 1em;
  margin-bottom: 1.75em;
}
.search-results__summary strong {
  color: var(--theme-main-color);
}
.search-results__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-results__empty {
  color: #555;
  font-size: 1.125em;
  padding: 1.5em 0em;
}
.search-results__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.375em 0.875em;
  margin-top: 3em;
}
.search-results__page {
  color: var(--theme-main-color);
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1;
  padding: 0.375em 0.25em;
}
.search-results__page:hover {
  color: var(--theme-thi-color);
}
.search-results__page.is-active {
  color: var(--theme-thi-color);
  font-weight: bold;
}
.search-results__page--nav {
  font-weight: bold;
}

.search-result {
  padding: 1.25em 0em;
}
.search-result + .search-result {
  border-top: 1px solid #e6e6e6;
}
.search-result__type {
  text-transform: lowercase;
  color: var(--theme-thi-color);
  font-weight: bold;
}
.search-result__title {
  display: inline-block;
  font-size: 1.375em;
  font-weight: bold;
  line-height: 1.4;
  color: var(--theme-main-color);
  margin-bottom: 0.3636363636em;
}
.search-result__title strong {
  color: var(--theme-thi-color);
}
.search-result__title:hover {
  text-decoration: underline;
}
@media screen and (max-width: 991.98px) {
  .search-result__title {
    font-size: 1.125em;
  }
}
.search-result__summary {
  color: var(--theme-base-color);
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 0.625em;
}
.search-result__summary strong {
  color: var(--theme-thi-color);
  font-weight: bold;
}
.search-result__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25em 0.75em;
  color: #6b6b6b;
  font-size: 0.875em;
  word-break: break-word;
}
.search-result__url {
  color: #4a7a2f;
}
.search-result__cache {
  color: #6b6b6b;
  text-decoration: underline;
}
.search-result__cache:hover {
  color: var(--theme-main-color);
}
.search-result__sep {
  color: #bbb;
}

.share-qr {
  padding: 3em 2.75em;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .share-qr {
    padding: 2.5em 1.75em;
  }
}
.share-qr__title {
  font-size: 1.375em;
  font-weight: 600;
  color: var(--theme-main-color);
  margin-bottom: 1.5em;
}
.share-qr__code {
  display: inline-block;
  line-height: 0;
  padding: 0.75em;
  background-color: #fff;
  border-radius: 0.75em;
  box-shadow: 0 0 0 1px #eee;
}
.share-qr__code img {
  display: block;
  width: 15em;
  height: auto;
}
@media screen and (max-width: 991.98px) {
  .share-qr__code img {
    width: 12.5em;
  }
}
.share-qr__hint {
  max-width: 17.5em;
  margin: 1.25em auto 0;
  font-size: 0.875em;
  line-height: 1.5;
  color: #666;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 2.5em;
  z-index: 100000;
  max-width: calc(100% - 2.5em);
  padding: 0.75em 1.375em;
  background-color: var(--theme-main-color);
  color: #fff;
  font-size: 0.9375em;
  line-height: 1.4;
  text-align: center;
  border-radius: 1.5em;
  box-shadow: var(--common-shadow);
  opacity: 0;
  visibility: hidden;
  translate: -50% 1.25em;
  transition: opacity 0.25s ease, translate 0.25s ease, visibility 0.25s;
}
.share-toast.is-visible {
  opacity: 1;
  visibility: visible;
  translate: -50% 0;
}

.swiper-pagination-bullet {
  width: 2em !important;
  height: 2em !important;
  aspect-ratio: 1;
  display: inline-flex !important;
  margin: 0 -0.25em !important;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
}
.swiper-pagination-bullet:before {
  content: "";
  display: block;
  border-radius: 999px;
  background-color: currentColor;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  transition: 0.2s ease;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  color: var(--theme-thi-color);
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

@media print {
  html {
    scroll-padding-top: 0;
  }
  body {
    margin-top: 0;
    background-color: #fff;
  }
  .skip-link,
  .header,
  .footer,
  .common-popup,
  .share-toast,
  .search-form,
  .search-bar,
  .inner-hero__img,
  .landing-hero__controls,
  .accord__btn .i {
    display: none !important;
  }
  .js-inview-animate {
    opacity: 1 !important;
    animation: none !important;
  }
  .accord {
    overflow: visible;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .accord__body {
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 1.5em;
  }
  .table-responsive {
    overflow: visible !important;
  }
  table,
  img,
  figure,
  li {
    break-inside: avoid;
  }
  h1,
  h2,
  h3,
  h4 {
    break-after: avoid;
  }
  .inner-body a[href^=http]:after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    word-break: break-all;
  }
}