/* index.scss */
/* utils/_variables.scss */
/* utils/_functions.scss */
/** $string - svg */
/** add unique id image url */
/** https://webdesign.tutsplus.com/tutorials/an-introduction-to-error-handling-in-sass--cms-19996 */
/** font size */
/* index.scss */
/* utils/_mixins.scss */
/* partials/_index.scss */
/* index.scss */
/* partials/_base.scss */
.as-1-1 {
  aspect-ratio: 1/1;
}

.as-3-2 {
  aspect-ratio: 3/2;
}

.as-4-3 {
  aspect-ratio: 4/3;
}

.as-16-9 {
  aspect-ratio: 16/9;
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  width: 320px;
  transform: translate(-320px);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  width: 320px;
  transform: translate(320px);
}

.off-canvas {
  transition: transform 0.15s ease;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.04);
}
.off-canvas .menu-lines {
  transition: 0.15s ease-in-out;
  transform: translateZ(3px);
}
.off-canvas .menu-lines .line {
  background-color: currentColor;
  transition: rotate 0.5s ease, background-color 0.15s ease;
}
.off-canvas .menu-lines:hover .line {
  background-color: #000;
}
.off-canvas .title-bar-title {
  transform: translateZ(3px);
}
.off-canvas .inline-search .frm-search {
  position: relative;
  width: 100%;
  height: 48px;
  color: #000;
  padding-inline: calc(var(--spacing) * 9) calc(var(--spacing) * 3);
  border-radius: var(--radius-md);
  background: var(--bg-light-color);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.02);
  transition: 0.15s ease-in-out;
}
.off-canvas .inline-search .frm-search:focus, .off-canvas .inline-search .frm-search:hover {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.5);
}
.off-canvas .inline-search .frm-search input {
  font-size: 14px;
  border: none;
  width: 100%;
  height: 100%;
}
.off-canvas .inline-search .frm-search button[type=submit] {
  position: absolute;
  left: 8px;
  top: 50%;
  translate: 0 -50%;
  color: var(--text-color);
}
.off-canvas .inline-search .frm-search button[type=submit]:hover {
  color: #000;
}
.off-canvas .menu.vertical {
  transform: translateZ(3px);
}
.off-canvas .menu.vertical a {
  display: inline-block;
}
.off-canvas .menu.vertical a:hover {
  color: #000;
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent {
  position: relative;
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent > a {
  margin-right: calc(var(--spacing) * 8);
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle {
  right: 0;
  top: 0;
  position: absolute;
  cursor: pointer;
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle {
  width: 1.625rem;
  height: 1.625rem;
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle::after, .off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle::before {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(var(--spacing) * 3);
  background-color: var(--text-color);
  transition: 0.15s ease-in-out;
  rotate: 0deg;
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle::after, .off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle::before {
  position: absolute;
  top: calc(50% - 0.0625rem);
  left: calc(50% - 0.375rem);
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle::after, .off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle::before {
  width: 0.75rem;
  height: 0.125rem;
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle[aria-expanded=false]::after {
  transform-origin: center;
  rotate: -90deg;
}
.off-canvas .menu.vertical li.is-accordion-submenu-parent .submenu-toggle .submenu-toggle-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  overflow-wrap: normal !important;
  white-space: nowrap;
  display: inline;
}
.off-canvas .menu.vertical li .menu.submenu {
  padding-right: 0;
  font-size: 15px;
}
.off-canvas .menu.vertical li .menu.submenu > li {
  padding-block: 8px;
  margin-left: 12px;
}
.off-canvas.is-transition-overlap {
  z-index: 1000001;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-open {
  visibility: visible;
  transform: translate(0) translateZ(3px);
}
.off-canvas.is-open .menu-lines {
  opacity: 1;
}
.off-canvas.is-open .menu-lines .line {
  transform-origin: center;
}
.off-canvas.is-open .menu-lines .line.line-1 {
  transition-delay: 0.15s;
  rotate: -45deg;
}
.off-canvas.is-open .menu-lines .line.line-2 {
  transition-delay: 0.3s;
  rotate: 45deg;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: 100%;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.submenu.menu {
  display: none;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  min-width: 280px;
  display: none;
  background-color: #f1f1f1;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.04);
  padding-block: calc(var(--spacing) * 4);
  padding-inline: calc(var(--spacing) * 3);
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu > li a {
  position: relative;
  display: flex;
  padding-inline: calc(var(--spacing) * 3);
  padding-block: calc(var(--spacing) * 2);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}
.is-dropdown-submenu > li a:hover {
  background-color: #e6e6e6;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.is-dropdown-submenu-item > a::after {
  content: "";
  position: absolute;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  rotate: -45deg;
  top: 50%;
  margin-top: -3px;
  transition: 0.15s;
  right: calc(var(--spacing) * 3);
}
.is-dropdown-submenu-parent.is-dropdown-submenu-item > a::after {
  width: 0.375rem;
  height: 0.375rem;
}
.is-dropdown-submenu-parent.is-dropdown-submenu-item.opens-left > a::after {
  rotate: 135deg;
}
.is-dropdown-submenu-parent:hover > a {
  color: var(--text-color-1);
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 16px;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  content: "";
  position: absolute;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  left: auto;
  right: 0;
  top: 50%;
  margin-top: -2px;
  rotate: 45deg;
  translate: 0 -50%;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  width: 0.5rem;
  height: 0.5rem;
}
.dropdown.menu > li.menu-mega > ul.submenu {
  padding-inline: 0;
}
.dropdown.menu > li.menu-mega > ul.submenu.js-dropdown-active {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.dropdown.menu > li.menu-mega > ul.submenu > li {
  padding-inline: calc(var(--spacing) * 3);
}
.dropdown.menu > li.menu-mega > ul.submenu > li > a::after {
  display: none;
}
.dropdown.menu > li.menu-mega > ul.submenu ul {
  display: block;
  position: static;
  border: none;
  padding-inline: 0;
  box-shadow: none;
  padding-block: 0;
  min-width: unset;
}
.dropdown.menu > li.menu-mega.col-2 > ul.submenu {
  min-width: 560px;
  left: -280px;
}
.dropdown.menu > li.menu-mega.col-2 > ul.submenu::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.08);
  height: 100%;
  top: 0;
  width: 1px;
  position: absolute;
  left: 50%;
}
.dropdown.menu > li.menu-mega.col-2 > ul.submenu > li {
  width: 50%;
}
.dropdown.menu > li.menu-mega.col-3 > ul.submenu {
  min-width: 840px;
  left: -420px;
}
.dropdown.menu > li.menu-mega.col-3 > ul.submenu::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.08);
  height: 100%;
  top: 0;
  width: 1px;
  position: absolute;
  left: 33.3333333333%;
}
.dropdown.menu > li.menu-mega.col-3 > ul.submenu::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.08);
  height: 100%;
  top: 0;
  width: 1px;
  position: absolute;
  right: 33.3333333333%;
}
.dropdown.menu > li.menu-mega.col-3 > ul.submenu > li {
  width: 33.3333333333%;
}

.menu.social-menu > li > a {
  display: block;
  color: var(--text-color);
  transition: 0.15s ease-in-out;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px;
}
.menu.social-menu > li > a:hover {
  opacity: 0.8;
  border-color: var(--text-color-1);
}

.wpcf7-form .wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: var(--text-color-1);
  font-size: 12px;
  text-align: center;
  padding-top: 8px;
}

.off-canvas-content .menu-lines .line > span::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
}
.off-canvas-content .menu-lines .line > span.line-2::before {
  left: 0;
  width: 85%;
  transition: 0.15s ease-in-out;
}
.off-canvas-content .menu-lines:hover .line > span::before {
  background-color: #000;
}
.off-canvas-content .menu-lines:hover .line > span.line-2::before {
  width: 100%;
}

.accordion .accordion-item {
  border: 1px solid transparent;
}
.accordion .accordion-item .accordion-title svg {
  right: 0;
  top: 50%;
  translate: 0 -50%;
  color: var(--text-color-2);
}
.accordion .accordion-item .accordion-title svg.minus {
  display: none;
}
.accordion .accordion-item .accordion-title svg.plus {
  display: block;
}
.accordion .accordion-item .accordion-content {
  display: none;
}
.accordion .accordion-item.is-active .accordion-title svg.minus {
  display: block;
}
.accordion .accordion-item.is-active .accordion-title svg.plus {
  display: none;
}
@media only screen and (min-width: 48rem) {
  .accordion .accordion-item.is-active, .accordion .accordion-item:hover {
    background-color: #fefefe;
    border: 1px solid rgba(0, 0, 0, 0.0784313725);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.0509803922);
  }
}
.accordion .accordion-item.is-active .accordion-title svg, .accordion .accordion-item:hover .accordion-title svg {
  color: var(--text-color-1);
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

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

.breadcrumbs {
  font-size: 13px;
}
.breadcrumbs > li {
  position: relative;
  color: var(--text-color);
}
.breadcrumbs > li:not(:last-child)::after {
  content: "|";
  color: var(--text-color);
  font-size: 13px;
  position: absolute;
  right: -10px;
  top: 0;
}
.breadcrumbs > li.current {
  font-weight: 500;
}
.breadcrumbs > li > a:hover {
  color: var(--text-color-1);
}

.pagination {
  font-size: 15px;
}
.pagination > li > :where(a, span:not(.sr-only)) {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--text-color);
}
.pagination > li > :where(a, span:not(.sr-only)) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination > li > :where(a, span:not(.sr-only)):hover {
  border-color: var(--text-color-1);
}
.pagination > li > .current {
  background-color: var(--text-color-1);
  border-color: var(--text-color-1);
  color: #fff;
}
.pagination > li > .dots {
  border-color: transparent !important;
}

.dropdown-pane {
  display: none;
  position: absolute;
  visibility: hidden;
  z-index: 10;
  background-color: #f1f1f1;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.04);
  padding: calc(var(--spacing) * 4);
}
@media only screen and (min-width: 40rem) {
  .dropdown-pane {
    width: 400px;
  }
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-trigger:not(.hover) .svg-close {
  display: none;
}
.dropdown-trigger.hover .svg-search {
  display: none;
}

.social-share .share-actions .share-icon {
  display: block;
  cursor: pointer;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.social-share .share-actions .share-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.social-share .share-actions .share-icon.icon-facebook {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20320%20512'%3e%3cpath%20d='M279.14%20288l14.22-92.66h-88.91v-60.13c0-25.35%2012.42-50.06%2052.24-50.06h40.42V6.26S260.43%200%20225.36%200c-73.22%200-121.08%2044.38-121.08%20124.72v70.62H22.89V288h81.39v224h100.17V288z'%20fill='currentColor'%20/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20320%20512'%3e%3cpath%20d='M279.14%20288l14.22-92.66h-88.91v-60.13c0-25.35%2012.42-50.06%2052.24-50.06h40.42V6.26S260.43%200%20225.36%200c-73.22%200-121.08%2044.38-121.08%20124.72v70.62H22.89V288h81.39v224h100.17V288z'%20fill='currentColor'%20/%3e%3c/svg%3e");
}
.social-share .share-actions .share-icon.icon-x {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20aria-hidden='true'%20fill='currentColor'%3e%3cpath%20d='M18.244%202.25h3.308l-7.227%208.26%208.502%2011.24H16.17l-5.214-6.817L4.99%2021.75H1.68l7.73-8.835L1.254%202.25H8.08l4.713%206.231zm-1.161%2017.52h1.833L7.084%204.126H5.117z'%20/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20aria-hidden='true'%20fill='currentColor'%3e%3cpath%20d='M18.244%202.25h3.308l-7.227%208.26%208.502%2011.24H16.17l-5.214-6.817L4.99%2021.75H1.68l7.73-8.835L1.254%202.25H8.08l4.713%206.231zm-1.161%2017.52h1.833L7.084%204.126H5.117z'%20/%3e%3c/svg%3e");
}
.social-share .share-actions .share-icon.icon-print {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3e%3cpath%20d='M112%20160l0-96c0-8.8%207.2-16%2016-16l229.5%200c4.2%200%208.3%201.7%2011.3%204.7l26.5%2026.5c3%203%204.7%207.1%204.7%2011.3l0%2069.5%2048%200%200-69.5c0-17-6.7-33.3-18.7-45.3L402.7%2018.7C390.7%206.7%20374.5%200%20357.5%200L128%200C92.7%200%2064%2028.7%2064%2064l0%2096%2048%200zm16%20208l256%200%200%2096-256%200%200-96zm-16-48c-17.7%200-32%2014.3-32%2032l-32%200%200-96c0-8.8%207.2-16%2016-16l384%200c8.8%200%2016%207.2%2016%2016l0%2096-32%200c0-17.7-14.3-32-32-32l-288%200zm320%2080l48%200c17.7%200%2032-14.3%2032-32l0-112c0-35.3-28.7-64-64-64L64%20192c-35.3%200-64%2028.7-64%2064L0%20368c0%2017.7%2014.3%2032%2032%2032l48%200%200%2080c0%2017.7%2014.3%2032%2032%2032l288%200c17.7%200%2032-14.3%2032-32l0-80z'/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3e%3cpath%20d='M112%20160l0-96c0-8.8%207.2-16%2016-16l229.5%200c4.2%200%208.3%201.7%2011.3%204.7l26.5%2026.5c3%203%204.7%207.1%204.7%2011.3l0%2069.5%2048%200%200-69.5c0-17-6.7-33.3-18.7-45.3L402.7%2018.7C390.7%206.7%20374.5%200%20357.5%200L128%200C92.7%200%2064%2028.7%2064%2064l0%2096%2048%200zm16%20208l256%200%200%2096-256%200%200-96zm-16-48c-17.7%200-32%2014.3-32%2032l-32%200%200-96c0-8.8%207.2-16%2016-16l384%200c8.8%200%2016%207.2%2016%2016l0%2096-32%200c0-17.7-14.3-32-32-32l-288%200zm320%2080l48%200c17.7%200%2032-14.3%2032-32l0-112c0-35.3-28.7-64-64-64L64%20192c-35.3%200-64%2028.7-64%2064L0%20368c0%2017.7%2014.3%2032%2032%2032l48%200%200%2080c0%2017.7%2014.3%2032%2032%2032l288%200c17.7%200%2032-14.3%2032-32l0-80z'/%3e%3c/svg%3e");
}
.social-share .share-actions .share-icon.icon-send-email {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3e%3cpath%20d='M464%2064H48C21.49%2064%200%2085.49%200%20112v288c0%2026.51%2021.49%2048%2048%2048h416c26.51%200%2048-21.49%2048-48V112c0-26.51-21.49-48-48-48zm0%2048v40.805c-22.422%2018.259-58.168%2046.651-134.587%20106.49c-16.841%2013.247-50.201%2045.072-73.413%2044.701c-23.208.375-56.579-31.459-73.413-44.701C106.18%20199.465%2070.425%20171.067%2048%20152.805V112h416zM48%20400V214.398c22.914%2018.251%2055.409%2043.862%20104.938%2082.646c21.857%2017.205%2060.134%2055.186%20103.062%2054.955c42.717.231%2080.509-37.199%20103.053-54.947c49.528-38.783%2082.032-64.401%20104.947-82.653V400H48z'%20fill='currentColor'%20/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3e%3cpath%20d='M464%2064H48C21.49%2064%200%2085.49%200%20112v288c0%2026.51%2021.49%2048%2048%2048h416c26.51%200%2048-21.49%2048-48V112c0-26.51-21.49-48-48-48zm0%2048v40.805c-22.422%2018.259-58.168%2046.651-134.587%20106.49c-16.841%2013.247-50.201%2045.072-73.413%2044.701c-23.208.375-56.579-31.459-73.413-44.701C106.18%20199.465%2070.425%20171.067%2048%20152.805V112h416zM48%20400V214.398c22.914%2018.251%2055.409%2043.862%20104.938%2082.646c21.857%2017.205%2060.134%2055.186%20103.062%2054.955c42.717.231%2080.509-37.199%20103.053-54.947c49.528-38.783%2082.032-64.401%20104.947-82.653V400H48z'%20fill='currentColor'%20/%3e%3c/svg%3e");
}
.social-share .share-actions .share-icon.icon-copy-link {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3e%3cpath%20d='M433.941%2065.941l-51.882-51.882A48%2048%200%200%200%20348.118%200H176c-26.51%200-48%2021.49-48%2048v48H48c-26.51%200-48%2021.49-48%2048v320c0%2026.51%2021.49%2048%2048%2048h224c26.51%200%2048-21.49%2048-48v-48h80c26.51%200%2048-21.49%2048-48V99.882a48%2048%200%200%200-14.059-33.941zM266%20464H54a6%206%200%200%201-6-6V150a6%206%200%200%201%206-6h74v224c0%2026.51%2021.49%2048%2048%2048h96v42a6%206%200%200%201-6%206zm128-96H182a6%206%200%200%201-6-6V54a6%206%200%200%201%206-6h106v88c0%2013.255%2010.745%2024%2024%2024h88v202a6%206%200%200%201-6%206zm6-256h-64V48h9.632c1.591%200%203.117.632%204.243%201.757l48.368%2048.368a6%206%200%200%201%201.757%204.243V112z'%20fill='currentColor'/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3e%3cpath%20d='M433.941%2065.941l-51.882-51.882A48%2048%200%200%200%20348.118%200H176c-26.51%200-48%2021.49-48%2048v48H48c-26.51%200-48%2021.49-48%2048v320c0%2026.51%2021.49%2048%2048%2048h224c26.51%200%2048-21.49%2048-48v-48h80c26.51%200%2048-21.49%2048-48V99.882a48%2048%200%200%200-14.059-33.941zM266%20464H54a6%206%200%200%201-6-6V150a6%206%200%200%201%206-6h74v224c0%2026.51%2021.49%2048%2048%2048h96v42a6%206%200%200%201-6%206zm128-96H182a6%206%200%200%201-6-6V54a6%206%200%200%201%206-6h106v88c0%2013.255%2010.745%2024%2024%2024h88v202a6%206%200%200%201-6%206zm6-256h-64V48h9.632c1.591%200%203.117.632%204.243%201.757l48.368%2048.368a6%206%200%200%201%201.757%204.243V112z'%20fill='currentColor'/%3e%3c/svg%3e");
}
.social-share .share-actions .share-icon.icon-web-share {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3e%3cpath%20d='M352%20320c-22.608%200-43.387%207.819-59.79%2020.895l-102.486-64.054a96.551%2096.551%200%200%200%200-41.683l102.486-64.054C308.613%20184.181%20329.392%20192%20352%20192c53.019%200%2096-42.981%2096-96S405.019%200%20352%200s-96%2042.981-96%2096c0%207.158.79%2014.13%202.276%2020.841L155.79%20180.895C139.387%20167.819%20118.608%20160%2096%20160c-53.019%200-96%2042.981-96%2096s42.981%2096%2096%2096c22.608%200%2043.387-7.819%2059.79-20.895l102.486%2064.054A96.301%2096.301%200%200%200%20256%20416c0%2053.019%2042.981%2096%2096%2096s96-42.981%2096-96s-42.981-96-96-96z'%20fill='currentColor'%20/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3e%3cpath%20d='M352%20320c-22.608%200-43.387%207.819-59.79%2020.895l-102.486-64.054a96.551%2096.551%200%200%200%200-41.683l102.486-64.054C308.613%20184.181%20329.392%20192%20352%20192c53.019%200%2096-42.981%2096-96S405.019%200%20352%200s-96%2042.981-96%2096c0%207.158.79%2014.13%202.276%2020.841L155.79%20180.895C139.387%20167.819%20118.608%20160%2096%20160c-53.019%200-96%2042.981-96%2096s42.981%2096%2096%2096c22.608%200%2043.387-7.819%2059.79-20.895l102.486%2064.054A96.301%2096.301%200%200%200%20256%20416c0%2053.019%2042.981%2096%2096%2096s96-42.981%2096-96s-42.981-96-96-96z'%20fill='currentColor'%20/%3e%3c/svg%3e");
}

.sharing-toolbox .share-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none !important;
  margin: 0 !important;
}
.sharing-toolbox .share-actions .share-button {
  display: block;
}

[id^=gallery-] {
  display: flex;
  flex-flow: row wrap;
  margin-top: 24px;
  margin-bottom: 24px;
}
[id^=gallery-] {
  gap: 0.75rem;
}
@media only screen and (min-width: 48rem) {
  [id^=gallery-] {
    gap: 1.5rem;
  }
}
[id^=gallery-] > .gallery-item {
  padding: 0;
  margin: 0;
  max-width: 100%;
  flex: 1 0 auto;
}
@media only screen and (max-width: 47.99875rem) {
  [id^=gallery-] > .gallery-item {
    width: 100% !important;
  }
}
[id^=gallery-] > .gallery-item .gallery-icon {
  height: 100%;
}
[id^=gallery-].gallery-columns-1 > .gallery-item {
  width: 100%;
}
[id^=gallery-].gallery-columns-1 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-1 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-2 > .gallery-item {
  width: calc(50% - 0.75rem);
}
[id^=gallery-].gallery-columns-2 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-2 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-3 > .gallery-item {
  width: calc(33.3333333333% - 1rem);
}
[id^=gallery-].gallery-columns-3 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-3 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-4 > .gallery-item {
  width: calc(25% - 1.125rem);
}
[id^=gallery-].gallery-columns-4 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-4 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-5 > .gallery-item {
  width: calc(20% - 1.2rem);
}
[id^=gallery-].gallery-columns-5 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-5 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-6 > .gallery-item {
  width: calc(16.6666666667% - 1.25rem);
}
[id^=gallery-].gallery-columns-6 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-6 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-7 > .gallery-item {
  width: calc(14.2857142857% - 1.2857142857rem);
}
[id^=gallery-].gallery-columns-7 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-7 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-8 > .gallery-item {
  width: calc(12.5% - 1.3125rem);
}
[id^=gallery-].gallery-columns-8 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-8 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[id^=gallery-].gallery-columns-9 > .gallery-item {
  width: calc(11.1111111111% - 1.3333333333rem);
}
[id^=gallery-].gallery-columns-9 > .gallery-item a {
  display: block;
  height: 100%;
}
[id^=gallery-].gallery-columns-9 > .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

:where(.dark, .dark *) body {
  background-image: url("../img/bg.png");
  background-position: center top 40px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
:where(.dark, .dark *) .off-canvas .menu-lines:hover .line {
  background-color: #fff;
}
:where(.dark, .dark *) .off-canvas-content .menu-lines:hover .line > span::before {
  background-color: #fff;
}
:where(.dark, .dark *) .off-canvas {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}
:where(.dark, .dark *) .off-canvas .title-bar-title .mobile-logo-link img {
  filter: brightness(0) invert(1) brightness(0.81) saturate(0);
}
:where(.dark, .dark *) .off-canvas .title-bar-title .mobile-logo-link:hover img {
  filter: inherit;
}
:where(.dark, .dark *) .off-canvas .inline-search .frm-search {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02);
}
:where(.dark, .dark *) .off-canvas .inline-search .frm-search:focus, :where(.dark, .dark *) .off-canvas .inline-search .frm-search:hover {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
:where(.dark, .dark *) .off-canvas .inline-search .frm-search button[type=submit]:hover {
  color: var(--color-white);
}
:where(.dark, .dark *) .off-canvas .menu.vertical a:hover {
  color: var(--color-white);
}
:where(.dark, .dark *) .is-dropdown-submenu {
  background-color: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}
:where(.dark, .dark *) .is-dropdown-submenu > li a:hover {
  background-color: #2c2c2c;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
}
:where(.dark, .dark *) .is-dropdown-submenu-parent:hover > a {
  color: var(--color-white);
}
:where(.dark, .dark *) .dropdown.menu > li.menu-mega.col-2 > ul.submenu::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.09);
}
:where(.dark, .dark *) .dropdown.menu > li.menu-mega.col-3 > ul.submenu::before {
  background-color: rgba(255, 255, 255, 0.09);
}
:where(.dark, .dark *) .dropdown.menu > li.menu-mega.col-3 > ul.submenu::after {
  background-color: rgba(255, 255, 255, 0.09);
}
@media only screen and (min-width: 48rem) {
  :where(.dark, .dark *) .accordion .accordion-item.is-active, :where(.dark, .dark *) .accordion .accordion-item:hover {
    background-color: #1d1d1d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
  }
}
:where(.dark, .dark *) .menu.social-menu > li > a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
:where(.dark, .dark *) .menu.social-menu > li > a:hover {
  color: #c9c9c9;
}
:where(.dark, .dark *) .pagination > li > :where(a, span:not(.sr-only)) {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
:where(.dark, .dark *) .dropdown-pane {
  background-color: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}

/* index.scss */
/* partials/_header.scss */
.masthead-placeholder {
  display: none;
}

.masthead {
  z-index: 999;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  border-bottom: 1px solid transparent;
  position: relative;
}
.masthead.is-sticky {
  top: 0;
  position: fixed;
  width: 100%;
  background-color: var(--bg-color);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.masthead .site-logo {
  transition: 0.15s ease-in-out;
}
.masthead .site-logo img.custom-logo {
  width: auto;
  display: block;
}
.masthead .site-logo img.custom-logo {
  max-height: 3.375rem;
}
@media only screen and (min-width: 48rem) {
  .masthead .site-logo img.custom-logo {
    max-height: 3.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .masthead .site-logo img.custom-logo {
    max-height: 4rem;
  }
}
.masthead .dropdown-search {
  display: flex;
  flex: 0 0 auto;
}
.masthead .dropdown-search .dropdown-trigger {
  transition: 0.3s;
  background-color: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  border-radius: var(--radius-md);
}
.masthead .dropdown-search .dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
}
.masthead .dropdown-search .dropdown-trigger {
  width: 2.625rem;
  height: 2.625rem;
}
.masthead .dropdown-search .dropdown-trigger > span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  overflow-wrap: normal !important;
  white-space: nowrap;
  display: inline;
}
.masthead .dropdown-search .dropdown-trigger.hover {
  border-color: var(--text-color-1);
  color: var(--text-color-1);
}
.masthead .dropdown-search .dropdown-trigger:hover {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 39.99875rem) {
  .masthead .dropdown-search .dropdown-pane {
    right: 12px !important;
    left: 12px !important;
  }
}
.masthead .dropdown-search .frm-container {
  position: relative;
}
.masthead .dropdown-search .frm-container [type=search] {
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  height: 44px;
  padding: 0 16px 0 44px;
  font-size: 15px;
  width: 100%;
}
.masthead .dropdown-search .frm-container [type=search]:hover {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.08);
}
.masthead .dropdown-search .frm-container [type=search]:focus {
  border-color: rgba(0, 0, 0, 0.5);
}
.masthead .dropdown-search .frm-container [type=submit] {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
}
.masthead .dropdown-search .frm-container [type=submit]:hover {
  color: var(--text-color);
}
.masthead .dropdown-search .frm-container [type=submit] span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  overflow-wrap: normal !important;
  white-space: nowrap;
  display: inline;
}

body.admin-bar .masthead.is-sticky {
  top: 32px;
}
@media screen and (max-width: 48.875rem) {
  body.admin-bar .masthead.is-sticky {
    top: 46px;
  }
}
@media screen and (max-width: 37.5rem) {
  body.admin-bar .masthead.is-sticky {
    position: absolute;
    top: var(--sticky-top, 41px);
  }
}

.site-header {
  position: relative;
}

.masthead-placeholder {
  height: var(--navbar-height, 0);
}

#main-nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
#main-nav .dropdown.menu.horizontal-menu {
  flex-wrap: nowrap;
  white-space: nowrap;
}
#main-nav .dropdown.menu.horizontal-menu li a {
  white-space: wrap;
}
#main-nav .dropdown.menu.horizontal-menu > li > a {
  height: 100%;
  white-space: nowrap;
}
#main-nav .dropdown.menu.horizontal-menu > li.more > a {
  font-size: 0;
  position: relative;
}
#main-nav .dropdown.menu.horizontal-menu > li.more > a {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-nav .dropdown.menu.horizontal-menu > li.more > a::after {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%20d%3D%22M6%2012h.01m6%200h.01m5.99%200h.01%22%2F%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%20d%3D%22M6%2012h.01m6%200h.01m5.99%200h.01%22%2F%3E%3C%2Fsvg%3E");
  rotate: none;
  border: none;
  background-color: var(--text-color);
  margin-top: 0;
}
#main-nav .dropdown.menu.horizontal-menu > li.more > a::after {
  width: 1.75rem;
  height: 1.75rem;
}

.nav-container {
  flex: 1 1 0;
  min-width: 0;
}
@media only screen and (max-width: 63.99875rem) {
  .nav-container {
    display: none;
  }
}

/** dark mode */
:where(.dark, .dark *) .top-header a:hover {
  color: var(--color-white);
}
:where(.dark, .dark *) .masthead.is-sticky {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
:where(.dark, .dark *) .masthead .dropdown-search .dropdown-trigger {
  background-color: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}
:where(.dark, .dark *) .masthead .dropdown-search .dropdown-trigger:hover {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}
:where(.dark, .dark *) .masthead .dropdown-search .frm-container [type=search] {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.05);
}
:where(.dark, .dark *) .masthead .dropdown-search .frm-container [type=search]:hover {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}
:where(.dark, .dark *) .masthead .dropdown-search .frm-container [type=search]:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
:where(.dark, .dark *) .masthead .dropdown-search .frm-container [type=submit] {
  color: rgba(255, 255, 255, 0.7);
}
:where(.dark, .dark *) .masthead .dropdown-search .frm-container [type=submit]:hover {
  color: var(--text-color);
}

/* index.scss */
/* partials/_footer.scss */
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo img {
  height: 40px;
  flex: 0 0 auto;
  width: auto;
}
@media only screen and (min-width: 64rem) {
  .footer-logo img {
    height: 50px;
  }
}
.footer-logo .logo-title {
  line-height: 1;
  color: var(--header-text-color);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.1px;
}

/** */
.seo-footer .footer-address {
  display: flex;
  flex-flow: column nowrap;
  gap: 4px;
}
.seo-footer .footer-address a {
  font-weight: 500;
}

/** */
.newsletter-footer .wpcf7-form .c-wpcf7-form-submit {
  align-items: center;
  gap: 12px;
  display: flex;
}
.newsletter-footer .wpcf7-form .c-wpcf7-form {
  gap: calc(var(--spacing) * 4);
  flex-direction: column;
  display: flex;
}
.newsletter-footer .wpcf7-form .c-wpcf7-form > label {
  display: block;
}
.newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap input {
  width: 100%;
  color: #000;
  padding-block: 12px;
  padding-inline: 16px;
  border-radius: var(--radius-md);
  font-size: 15px;
  background: var(--bg-light-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.02);
  transition: 0.15s ease-in-out;
}
@media only screen and (min-width: 64rem) {
  .newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap input {
    padding-block: 16px;
  }
}
.newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap input:focus, .newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap input:hover {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.6);
}
.newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  padding-top: 8px;
}
.newsletter-footer .wpcf7-form .c-wpcf7-form .c-wpcf7-form-submit .wpcf7-submit {
  padding: 8px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: 0.15s ease-in-out;
  border: 1px solid var(--text-color-1);
  color: var(--text-color);
  cursor: pointer;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.04);
  font-family: var(--font-header);
}
.newsletter-footer .wpcf7-form .c-wpcf7-form .c-wpcf7-form-submit .wpcf7-submit:hover {
  border-color: var(--text-color-2);
  color: #000;
}
.newsletter-footer .wpcf7-form .c-wpcf7-form .c-wpcf7-form-submit .wpcf7-spinner {
  margin: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.newsletter-footer .wpcf7-form .wpcf7-response-output {
  border: none;
  padding: 0;
  margin: 24px 0 0 0;
  font-size: 14px;
  color: var(--text-color);
}

/** dark mode */
:where(.dark, .dark *) .footer-logo .logo-title:hover {
  color: var(--color-white);
}
:where(.dark, .dark *) .seo-footer .footer-address a:hover {
  color: var(--color-white);
}
:where(.dark, .dark *) .footer-menu ul.menu a:hover {
  color: var(--color-white);
}
:where(.dark, .dark *) .newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap input {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02);
}
:where(.dark, .dark *) .newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap input:focus, :where(.dark, .dark *) .newsletter-footer .wpcf7-form .c-wpcf7-form > label .wpcf7-form-control-wrap input:hover {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
:where(.dark, .dark *) .newsletter-footer .wpcf7-form .c-wpcf7-form .c-wpcf7-form-submit .wpcf7-submit {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}
:where(.dark, .dark *) .newsletter-footer .wpcf7-form .c-wpcf7-form .c-wpcf7-form-submit .wpcf7-submit:hover {
  color: #fff;
}
:where(.dark, .dark *) .newsletter-footer .wpcf7-form .c-wpcf7-form .c-wpcf7-form-submit .wpcf7-spinner {
  background-color: rgba(201, 201, 201, 0.4);
}

@media only screen and (min-width: 80rem) {
  .container {
    width: 1280px;
  }
}

.policy-nav .menu-thumb > a {
  align-items: center;
}
.policy-nav .menu-thumb > a > img {
  display: block;
  width: 28px;
}

.p-projects-list .p-thumb > span {
  scale: 1.0001;
  will-change: scale;
  transition: scale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
}
.p-projects-list .p-thumb .p-link {
  transition: height 0.2s;
  background-color: rgba(0, 0, 0, 0.3);
  height: 0;
  left: 0;
  top: 0;
  right: 0;
  position: absolute;
}
@media only screen and (max-width: 47.99875rem) {
  .p-projects-list .p-thumb .p-link {
    position: static;
    justify-content: flex-start;
    row-gap: 0;
    height: auto;
    background: none;
    margin-top: 12px;
    align-items: center;
  }
}
.p-projects-list .p-thumb .p-link > a {
  transition: opacity 0.3s;
  font-weight: 700;
}
@media only screen and (min-width: 48rem) {
  .p-projects-list .p-thumb .p-link > a {
    opacity: 0;
    border-radius: var(--radius-md);
    border: 1px solid rgba(254, 82, 66, 0.7);
    background-color: rgba(254, 82, 66, 0.7);
    backdrop-filter: blur(2px);
    padding-block: 16px;
    padding-inline: 16px;
    color: var(--color-white);
  }
  .p-projects-list .p-thumb .p-link > a:hover {
    box-shadow: 0 4px 29px -9px rgba(12, 142, 57, 0.5);
    border: 1px solid rgba(12, 142, 57, 0.7);
    background-color: rgba(12, 142, 57, 0.7);
  }
  .p-projects-list .p-thumb .p-link > a:not(:last-child) {
    border: 1px solid rgba(12, 142, 57, 0.7);
    background-color: rgba(12, 142, 57, 0.7);
  }
  .p-projects-list .p-thumb .p-link > a:not(:last-child):hover {
    box-shadow: 0 4px 29px -9px rgba(254, 82, 66, 0.5);
    border: 1px solid rgba(254, 82, 66, 0.7);
    background-color: rgba(254, 82, 66, 0.7);
  }
}
@media only screen and (max-width: 47.99875rem) {
  .p-projects-list .p-thumb .p-link > a {
    opacity: 1;
    color: var(--text-color-1);
    font-size: 14px;
  }
  .p-projects-list .p-thumb .p-link > a:hover {
    color: var(--text-color-2);
  }
  .p-projects-list .p-thumb .p-link > a:not(:last-child) {
    color: var(--text-color-2);
  }
  .p-projects-list .p-thumb .p-link > a:not(:last-child):hover {
    color: var(--text-color-1);
  }
}
@media only screen and (min-width: 48rem) {
  .p-projects-list .p-thumb:hover > span {
    scale: 1.06;
    opacity: 1;
  }
  .p-projects-list .p-thumb:hover .p-link {
    height: 100%;
  }
  .p-projects-list .p-thumb:hover .p-link > a {
    opacity: 1;
    transition-delay: 0.3s;
  }
}

.p-news-list .c-cover {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.p-news-list .item-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media only screen and (max-width: 63.99875rem) {
  .p-news-list .item-img {
    display: none;
  }
}
.p-news-list .item-img > img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.p-news-list .first-item {
  position: relative;
}
@media only screen and (min-width: 64rem) {
  .p-news-list .first-item .c-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 24px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    color: #fff;
    pointer-events: none;
  }
  .p-news-list .first-item .c-content .c-terms,
  .p-news-list .first-item .c-content .view-more {
    display: none;
  }
}

#toc_container {
  width: 100% !important;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
}
#toc_container .toc_title {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  position: relative;
  padding-left: 52px;
}
#toc_container .toc_title {
  font-size: clamp(1.0625rem, 0.6875rem + 0.9375vw, 1.4375rem);
}
#toc_container .toc_title::before {
  content: "";
  border-radius: 50%;
  padding: 12px;
  z-index: 1;
  top: 50%;
  left: 6px;
  position: absolute;
  background-color: #fff;
  transform: translateY(-50%);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M10.779%2017.779L4.36%2019.918L6.5%2013.5m4.279%204.279l8.364-8.643a3.027%203.027%200%200%200-2.14-5.165a3.03%203.03%200%200%200-2.14.886L6.5%2013.5m4.279%204.279L6.499%2013.5m2.14%202.14l6.213-6.504M12.75%207.04L17%2011.28%22%2F%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M10.779%2017.779L4.36%2019.918L6.5%2013.5m4.279%204.279l8.364-8.643a3.027%203.027%200%200%200-2.14-5.165a3.03%203.03%200%200%200-2.14.886L6.5%2013.5m4.279%204.279L6.499%2013.5m2.14%202.14l6.213-6.504M12.75%207.04L17%2011.28%22%2F%3E%3C%2Fsvg%3E");
}
#toc_container .toc_title::before {
  width: 1.75rem;
  height: 1.75rem;
}
#toc_container .toc_title::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: 0;
  background-color: var(--text-color-1);
  box-shadow: 3px 1px 12px rgba(254, 82, 66, 0.2);
}
#toc_container .toc_title::after {
  width: 2.5rem;
  height: 2.5rem;
}
#toc_container .toc_toggle {
  position: relative;
}
#toc_container .toc_toggle {
  width: 2rem;
  height: 2rem;
}
#toc_container .toc_toggle .toc_brackets {
  display: none;
}
#toc_container .toc_toggle > a {
  font-size: 0;
}
#toc_container .toc_toggle > a::after {
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.15s ease-in-out;
  background-color: var(--text-color);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22m16%2014l-4-4l-4%204%22%2F%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22m16%2014l-4-4l-4%204%22%2F%3E%3C%2Fsvg%3E");
}
#toc_container .toc_toggle > a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
#toc_container .toc_list {
  margin-top: 20px;
  margin-left: 12px;
  list-style: none;
  margin-bottom: 0;
  overflow: auto;
  scrollbar-width: thin;
  max-height: 400px;
}
#toc_container .toc_list li {
  padding-block: 0 !important;
}
#toc_container .toc_list li a {
  display: flex;
  padding-block: 5px;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
}
#toc_container .toc_list li a:hover {
  color: var(--text-color-1);
}
#toc_container .toc_list li a .toc_number {
  font-weight: 500;
  font-size: 13px;
  text-decoration: underline;
}
#toc_container .toc_list li > ul {
  list-style: none;
  margin-left: 12px;
  margin-bottom: 0;
}
#toc_container.contracted .toc_toggle > a::after {
  transform: rotate(180deg);
  transform-origin: center;
}

.suggestion-list ul {
  list-style: none !important;
  margin-left: 0 !important;
}
.suggestion-list ul li {
  position: relative;
  padding-left: 36px;
  font-size: 15px;
}
.suggestion-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.15s ease-in-out;
  background-color: var(--text-color-1);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212.1%22%20cy%3D%2212.1%22%20r%3D%221%22%2F%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212.1%22%20cy%3D%2212.1%22%20r%3D%221%22%2F%3E%3C%2Fsvg%3E");
}
.suggestion-list ul li::before {
  width: 2.25rem;
  height: 2.25rem;
}
.suggestion-list ul li .title {
  font-weight: 500;
}
.suggestion-list ul li .title:hover {
  color: var(--text-color-1);
}

:where(.terms-links, .hashtag-links) {
  margin-top: 16px;
}
:where(.terms-links, .hashtag-links) svg {
  color: var(--text-color-1);
}
:where(.terms-links, .hashtag-links) a {
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1px 12px;
  border-radius: 4px;
}
:where(.terms-links, .hashtag-links) a:hover {
  color: var(--text-color-1);
}

.section.singular .meta .terms a {
  font-weight: 500;
  color: var(--text-color-1);
}
.section.singular .entry-content .excerpt {
  font-weight: 500;
  margin-bottom: 24px;
}
.section.singular .entry-content :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 16px;
  font-weight: 700;
}
.section.singular .entry-content h6 {
  font-size: 16px;
}
.section.singular .entry-content h5 {
  font-size: clamp(1rem, 0.8125rem + 0.46875vw, 1.1875rem);
}
.section.singular .entry-content h4 {
  font-size: clamp(1.0625rem, 0.6875rem + 0.9375vw, 1.4375rem);
}
.section.singular .entry-content h3 {
  font-size: clamp(1.1875rem, 0.625rem + 1.40625vw, 1.75rem);
}
.section.singular .entry-content h2 {
  font-size: clamp(1.375rem, 0.625rem + 1.875vw, 2.125rem);
}
.section.singular .entry-content h1 {
  font-size: clamp(1.625rem, 0.6875rem + 2.34375vw, 2.5625rem);
}
.section.singular .entry-content :where(ul, ol) {
  margin-left: 25px;
  margin-bottom: 16px;
}
.section.singular .entry-content :where(ul, ol) li {
  padding-block: 4px;
}
.section.singular .entry-content ul {
  list-style: disc;
}
.section.singular .entry-content ol {
  list-style: decimal;
}
.section.singular .entry-content img {
  border-radius: 6px;
  height: auto;
}
.section.singular .entry-content figure figcaption {
  font-size: 14px;
  font-weight: 500;
  padding-top: 12px;
}
.section.singular .entry-content blockquote {
  position: relative;
  padding: 24px 12px 24px 40px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 32px;
}
.section.singular .entry-content blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  transform: scaleX(-1) scaleY(-1);
  background-color: var(--text-color-1);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6%206a2%202%200%200%200-2%202v3a2%202%200%200%200%202%202h3a3%203%200%200%201-3%203H5a1%201%200%201%200%200%202h1a5%205%200%200%200%205-5V8a2%202%200%200%200-2-2zm9%200a2%202%200%200%200-2%202v3a2%202%200%200%200%202%202h3a3%203%200%200%201-3%203h-1a1%201%200%201%200%200%202h1a5%205%200%200%200%205-5V8a2%202%200%200%200-2-2z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6%206a2%202%200%200%200-2%202v3a2%202%200%200%200%202%202h3a3%203%200%200%201-3%203H5a1%201%200%201%200%200%202h1a5%205%200%200%200%205-5V8a2%202%200%200%200-2-2zm9%200a2%202%200%200%200-2%202v3a2%202%200%200%200%202%202h3a3%203%200%200%201-3%203h-1a1%201%200%201%200%200%202h1a5%205%200%200%200%205-5V8a2%202%200%200%200-2-2z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
.section.singular .entry-content blockquote::before {
  width: 2rem;
  height: 2rem;
}
.section.singular .nocomments {
  font-size: 15px;
  margin-top: 32px;
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--text-color-1);
  padding-left: 16px;
  padding-block: 12px;
  border-radius: 3px;
}

.section.section-about-us .breadcrumbs {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  overflow-wrap: normal !important;
  white-space: nowrap;
  display: inline;
}

.section.section-contact .breadcrumbs {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  overflow-wrap: normal !important;
  white-space: nowrap;
  display: inline;
}
.section.section-contact .wpcf7-form :where(input, textarea) {
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  font-size: 15px;
  width: 100%;
  margin-bottom: 16px;
}
.section.section-contact .wpcf7-form :where(input, textarea):focus {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.08);
}
.section.section-contact .wpcf7-form input {
  height: 48px;
  padding: 0 16px;
}
.section.section-contact .wpcf7-form textarea {
  padding: 16px;
}
.section.section-contact .wpcf7-form .contact-form {
  background-color: #f1f1f1;
  max-width: 768px;
  margin: 24px auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-flow: row wrap;
  gap: 0 16px;
}
.section.section-contact .wpcf7-form .contact-form {
  padding: 1.5rem;
}
@media only screen and (min-width: 64rem) {
  .section.section-contact .wpcf7-form .contact-form {
    padding: 2rem;
  }
}
.section.section-contact .wpcf7-form .contact-form .group-item {
  flex: 0 0 auto;
  width: calc(50% - 8px);
}
.section.section-contact .wpcf7-form .contact-form .group-item > label > span {
  margin-bottom: 4px;
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.section.section-contact .wpcf7-form .contact-form .group-item > label > span sup {
  color: var(--text-color-1);
  font-size: 95%;
  top: -2px;
}
.section.section-contact .wpcf7-form .contact-form .group-item.span-2 {
  width: 100%;
}
.section.section-contact .wpcf7-form .contact-form .group-item.c-wpcf7-form-submit {
  position: relative;
  text-align: center;
}
.section.section-contact .wpcf7-form .contact-form .group-item.c-wpcf7-form-submit .wpcf7-submit {
  display: inline-flex;
  height: 40px;
  align-items: center;
  padding: 0 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--text-color-1);
  color: var(--text-color-1);
  transition: 0.15s;
  font-weight: 500;
}
.section.section-contact .wpcf7-form .contact-form .group-item.c-wpcf7-form-submit .wpcf7-submit {
  font-size: clamp(1rem, 0.96875rem + 0.1315789474vw, 1.125rem);
}
.section.section-contact .wpcf7-form .contact-form .group-item.c-wpcf7-form-submit .wpcf7-submit:hover {
  box-shadow: 0 0 12px rgba(254, 82, 66, 0.5);
}
.section.section-contact .wpcf7-form .contact-form .group-item.c-wpcf7-form-submit .wpcf7-spinner {
  position: absolute;
  margin: 0 0 0 12px;
  top: 50%;
  transform: translateY(-50%);
}
.section.section-contact .wpcf7-form .contact-form .group-item .wpcf7-form-control-wrap {
  position: relative;
}
.section.section-contact .wpcf7-form .contact-form .group-item .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  padding-top: 0;
  position: absolute;
  right: 4px;
  top: 4px;
  font-weight: 300;
}
.section.section-contact .wpcf7-form .wpcf7-response-output {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  padding: 0;
  font-size: 15px;
}

.section.section-author {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode {
  transition: 0.3s;
  cursor: pointer;
  border-radius: var(--radius-md);
  background-color: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.02);
  flex: 0 0 auto;
}
.dark-mode {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark-mode {
  width: 2.625rem;
  height: 2.625rem;
}
.dark-mode:hover {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.08);
}

:where(.dark, .dark *) .dark-mode {
  background-color: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}
:where(.dark, .dark *) .dark-mode:hover {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}
:where(.dark, .dark *) .p-projects-list .p-thumb .p-link {
  background-color: rgba(22, 22, 22, 0.7);
}
:where(.dark, .dark *) .p-news-list .c-cover {
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
:where(.dark, .dark *) .section.singular .nocomments {
  background-color: rgba(255, 255, 255, 0.05);
}
:where(.dark, .dark *) #toc_container {
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04);
}
:where(.dark, .dark *) :where(.terms-links, .hashtag-links) a {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
:where(.dark, .dark *) .section.section-contact .wpcf7-form :where(input, textarea) {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: rgba(255, 255, 255, 0.05) 0 0 12px inset;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
:where(.dark, .dark *) .section.section-contact .wpcf7-form :where(input, textarea):focus {
  box-shadow: rgba(255, 255, 255, 0.08) 0 0 12px inset;
  border-color: rgba(255, 255, 255, 0.4);
}
:where(.dark, .dark *) .section.section-contact .wpcf7-form .contact-form {
  background-color: #2c2c2c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 24px rgba(44, 44, 44, 0.5);
}
:where(.dark, .dark *) .section.section-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-inline {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cta-inline svg {
  width: 22px;
}

.cta-btn-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 15px;
}

.cta-btn-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.cta-phone {
  background: linear-gradient(135deg, #ff4d4d, #d93636);
}

.cta-zalo {
  background: linear-gradient(135deg, #0068ff, #3399ff);
}

.cta-map {
  background: linear-gradient(135deg, #34a853, #2c8e46);
}

div#mobile-cta-bar {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #ddd;
  padding: 8px;
  box-shadow: -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  font-size: 15px;
  color: #ee6d11;
}

.section-topaz {
  background: url(../img/bg_toplist.png) no-repeat;
  background-size: cover;
}

.section-sg-stories {
  background: url(../img/handbooktravek_bg.png) right top no-repeat;
  background-size: cover;
}