:root {
  --nav-height: 72px;
  --acc-green: #43f8be;
  --acc-green-rgb: 67 248 190;
  --acc-red: #f08080;
  --acc-red: #ff6c6c;
  --acc-yellow: #f1e194;
  --acc-red-rgb: 255 131 81;
}

/* Fix navbar language selector icon - ensure proper width for globe icon */
.navbar-nav[aria-label="Language selector"] {
  display: block !important;
  width: auto !important;
  min-width: 24px;
}

.navbar-nav[aria-label="Language selector"] .navbar-nav-list {
  display: flex;
  flex-direction: column;
}

/* Keep Point Mall height stable during hover */
.MainNavbar_navbarPointMall__NLfPD {
  height: 16px !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

html, body {
  line-height: 1.625;
  background-color: #000;
  font-weight: 400;
  color: #fff;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

a, button {
  text-decoration: none;
  transition: all 0.2s ease-in-out 0.2s;
  line-height: 1.5;
}
a, a:hover, a:focus, a:active, button, button:hover, button:focus, button:active {
  color: inherit;
}

/* IMPORTANT: Override global color inherit for Point Mall hover */
.MainNavbar_navbarPointMall__NLfPD:hover {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #c1ffbe 55.29%,
    rgba(29, 255, 187, 0.69) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  /* Prevent shifting when gradient is applied */
  line-height: 1 !important;
}

img, svg {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2 !important;
}

h1, .font-size-1 {
  font-size: 40px !important;
}
@media (min-width: 768px) {
  h1, .font-size-1 {
    font-size: 52px !important;
  }
}
@media (min-width: 992px) {
  h1, .font-size-1 {
    font-size: 56px !important;
  }
}

h2, .font-size-2 {
  font-size: 36px !important;
}
@media (min-width: 768px) {
  h2, .font-size-2 {
    font-size: 44px !important;
  }
}
@media (min-width: 992px) {
  h2, .font-size-2 {
    font-size: 48px !important;
  }
}

h3, .font-size-3 {
  font-size: 32px !important;
}
@media (min-width: 768px) {
  h3, .font-size-3 {
    font-size: 36px !important;
  }
}
@media (min-width: 992px) {
  h3, .font-size-3 {
    font-size: 40px !important;
  }
}

h4, .font-size-4 {
  font-size: 24px !important;
}
@media (min-width: 768px) {
  h4, .font-size-4 {
    font-size: 28px !important;
  }
}
@media (min-width: 992px) {
  h4, .font-size-4 {
    font-size: 32px !important;
  }
}

h5, .font-size-5 {
  font-size: 20px !important;
}
@media (min-width: 768px) {
  h5, .font-size-5 {
    font-size: 24px !important;
  }
}

h6, .font-size-6 {
  font-size: 18px !important;
}
@media (min-width: 768px) {
  h6, .font-size-6 {
    font-size: 20px !important;
  }
}

.line-clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.line-clamp-1 {
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

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

.text-acc-green {
  color: var(--acc-green);
}

.text-acc-red {
  color: var(--acc-red);
}

.text-acc-yellow {
  color: var(--acc-yellow);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.font-size-md {
  font-size: 1rem !important;
}

.font-size-sm {
  font-size: 0.875rem !important;
}

.font-size-xs {
  font-size: 0.8125rem !important;
}

.font-size-mini {
  font-size: 0.75rem !important;
}

.height-100 {
  height: 100%;
}

.display-flex {
  display: flex;
}

.display-flex-column {
  display: flex;
  flex-direction: column;
}

.flex-grow {
  flex: 1 0 0;
}

.flex-auto {
  flex: 0 0 auto;
}

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

.justify-content-start {
  justify-content: flex-start;
}

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

.btn-hover-acc-green {
  display: block;
  padding: 0.25em 0.5em;
  border-radius: 0.25rem;
}
.btn-hover-acc-green:hover, .btn-hover-acc-green:focus, .btn-hover-acc-green:active {
  background-color: rgb(var(--acc-green-rgb)/0.5);
}
.btn-hover-acc-green.is-active {
  background-color: var(--acc-green);
  color: #000;
}

.container {
  margin: 0 auto;
  width: 100%;
  overflow: visible;
}
@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    padding-inline: 12px;
  }
}
@media (max-width: 1023.98px) and (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding-inline: 20px;
  }
}

.unstyled-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.ft-wrap {
  --section-gap: 48px;
  padding-top: calc(var(--nav-height) * 2);
  padding-bottom: var(--section-gap);
  min-height: 100vh;
  background-image: linear-gradient(rgb(2, 9, 17) 60%, rgb(6, 78, 59) 100%);
}
@media (max-width: 767.98px) {
  .ft-wrap {
    --section-gap: 36px;
  }
}
.ft-title {
  margin-bottom: 0.5rem;
  background-image: linear-gradient(90deg, #c0fff0, #fff);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}
.ft-action-btn {
  --btn-op: 0.8;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: rgb(var(--acc-green-rgb)/var(--btn-op)) solid 1px;
  border-radius: 9999em;
  line-height: 1.5;
  color: #000;
}
.ft-action-btn:hover, .ft-action-btn:focus, .ft-action-btn:active {
  --btn-op: 1;
  color: #000;
  outline: none;
}
.ft-action-btn span {
  flex: 1 0 0;
  padding: 0.125em 1.25em;
  background-color: rgb(255, 255, 255, var(--btn-op));
  border-radius: 9999em;
}
.ft-box {
  --box-pd: 14px;
  --box-bdr: 1rem;
  --box-bdw: 1px;
  padding: var(--box-pd);
  height: 100%;
  position: relative;
  background-color: rgb(128, 128, 128, var(--box-op, 0.4));
  border-radius: var(--box-bdr);
  transition: all 0.2s ease-in-out 0.2s;
}
.ft-box.box-lg {
  --box-pd: 14px;
  --box-bdr: 22px;
  --box-bdw: 2px;
}
.ft-box:has(.ft-box-link:hover, .ft-box-link:focus) {
  background-color: rgb(128, 128, 128, calc(var(--box-op, 0.4) * 2));
  box-shadow: rgba(0, 0, 0, 0.125) 1px 1px 5px 5px;
}
.ft-box-border {
  position: absolute;
  top: calc(var(--box-bdw) * -0.5);
  right: calc(var(--box-bdw) * -0.5);
  bottom: calc(var(--box-bdw) * -0.5);
  left: calc(var(--box-bdw) * -0.5);
  border-style: solid;
  border-width: var(--box-bdw);
  border-radius: calc(var(--box-bdr) + var(--box-bdw) * 0.5);
  border-color: rgb(230, 230, 230, var(--box-op, 0.4));
  -webkit-mask-image: linear-gradient(90deg, #000, transparent);
          mask-image: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
}
.ft-box-link {
  position: absolute;
  top: calc(var(--box-bdw) * -0.5);
  right: calc(var(--box-bdw) * -0.5);
  bottom: calc(var(--box-bdw) * -0.5);
  left: calc(var(--box-bdw) * -0.5);
  border-radius: calc(var(--box-bdr) + var(--box-bdw) * 0.5);
  text-indent: -9999em;
}
.ft-box-body > * {
  border-radius: calc(var(--box-bdr) - var(--box-pd));
}
.ft-box-body > *:not(:first-child) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ft-box-body > *:not(:last-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ft-box-body-row {
  --gap: 16px;
  margin-inline: calc(var(--gap) * -0.5);
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .ft-box-body-row {
    height: 100%;
  }
}
@media (max-width: 767.98px) and (min-width: 576px) {
  .ft-box-body-row {
    flex-direction: row;
  }
}
@media (max-width: 575.98px) {
  .ft-box-body-row {
    flex-direction: column;
  }
}
.ft-box-body-col {
  padding-inline: calc(var(--gap) * 0.5);
}
.ft-box-body-col-img {
  max-width: 100%;
}
.ft-box-body-col-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: calc(var(--box-bdr) - var(--box-pd));
}
@media (min-width: 768px) {
  .ft-box-body-col-img {
    flex: 0 0 auto;
  }
}
@media (max-width: 767.98px) and (min-width: 576px) {
  .ft-box-body-col-img {
    flex: 0 0 auto;
    width: 205px;
    height: 205px;
  }
}
@media (max-width: 575.98px) {
  .ft-box-body-col-img {
    margin-bottom: var(--gap);
    flex: 0 0 auto;
    width: 100%;
  }
}
.ft-box-body-col.ft-box-body-col-cont {
  max-width: 100%;
}
.ft-box-body-col.ft-box-body-col-cont p {
  margin-bottom: var(--gap);
}
@media (min-width: 576px) {
  .ft-box-body-col.ft-box-body-col-cont {
    flex: 1 0 0;
  }
}
@media (max-width: 575.98px) and (min-width: 400px) {
  .ft-box-body-col.ft-box-body-col-cont {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 399.98px) {
  .ft-box-body-col.ft-box-body-col-cont {
    flex: 0 0 auto;
    width: 100%;
  }
}
.ft-box-body-footer {
  margin-top: var(--gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.ft-box-body-footer.justify-content-start {
  justify-content: flex-start;
}
@media (max-width: 575.98px) and (min-width: 400px) {
  .ft-box-body-footer {
    margin-top: auto;
  }
}
@media (max-width: 399.98px) {
  .ft-box-body-footer {
    margin-top: 1rem;
  }
}
.ft-box-body-footer > *:not(:only-child) {
  flex: 0 0 auto;
  max-width: 50%;
}
.ft-box-body-footer-tag, .ft-box-body-footer-info {
  font-size: 13px;
}
.ft-box-body-footer-tag {
  padding: 0.125em 1em;
  background-image: linear-gradient(90deg, rgba(192, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
  border-radius: 999em;
  backdrop-filter: blur(1rem);
}
.ft-box-body-footer-info {
  display: inline-flex;
  gap: 0.25em;
  align-items: center;
}
.ft-box-body-footer-info svg {
  width: 1.25em;
}
.ft-box-body-footer-info span {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .ft-box.box-v .ft-box-body {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) and (min-width: 576px) {
  .ft-box.box-v .ft-box-body {
    flex-direction: row;
  }
}
@media (max-width: 575.98px) {
  .ft-box.box-v .ft-box-body {
    flex-direction: column;
  }
}
.ft-box.box-v .ft-box-body-col.ft-box-body-col-img {
  flex: 1 0 0;
}
@media (min-width: 576px) {
  .ft-box.box-v .ft-box-body-col.ft-box-body-col-img {
    margin-bottom: var(--gap);
  }
}
@media (min-width: 576px) {
  .ft-box.box-v .ft-box-body-col.ft-box-body-col-cont {
    flex: 0 0 auto;
  }
}
.ft-box.box-h .ft-box-body {
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .ft-box.box-h .ft-box-body-col.ft-box-body-col-img {
    flex: 0 0 auto;
    width: calc(205px + var(--gap));
    height: 205px;
  }
}
@media (max-width: 575.98px) and (min-width: 400px) {
  .ft-box.box-h .ft-box-body-col.ft-box-body-col-img {
    height: 153.75px;
  }
}
@media (min-width: 576px) {
  .ft-box.box-h .ft-box-body-col.ft-box-body-col-cont {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
  }
  .ft-box.box-h .ft-box-body-col.ft-box-body-col-cont .ft-box-body-footer {
    margin-top: auto;
  }
}
@media (max-width: 399.98px) {
  .ft-box.box-h .ft-box-body-col.ft-box-body-col-cont {
    flex: 0 0 auto;
    width: 100%;
  }
}
.ft-box.box-cta {
  --box-op: 0.2;
  --box-pd: 28px;
}
.ft-box.box-cta .ft-box-body {
  align-items: center;
}
.ft-box.box-cta .ft-box-body-col.ft-box-body-col-img img {
  aspect-ratio: 264/254;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .ft-box.box-cta .ft-box-body-col.ft-box-body-col-img {
    width: calc(264px + var(--gap));
    order: 1;
  }
  .ft-box.box-cta .ft-box-body-col.ft-box-body-col-img img {
    margin-top: calc(var(--section-gap) * -1);
  }
}
@media (max-width: 767.98px) {
  .ft-box.box-cta .ft-box-body-col.ft-box-body-col-img {
    width: 220px;
    translate: 0 -50%;
    opacity: 0.75;
    position: absolute;
    top: 50%;
    right: calc(var(--gap) * -1);
  }
}
@media (max-width: 399.98px) {
  .ft-box.box-cta .ft-box-body-col.ft-box-body-col-img {
    opacity: 0.5;
    width: calc(100% - var(--box-pd) * 2);
    height: calc(100% - var(--box-pd) * 2);
    translate: -50% -15%;
    top: 0;
    left: 50%;
    right: auto;
  }
}
@media (max-width: 767.98px) {
  .ft-box.box-cta .ft-box-body-col.ft-box-body-col-cont {
    margin-right: 25%;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 399.98px) {
  .ft-box.box-cta .ft-box-body-col.ft-box-body-col-cont {
    margin-righg: 0;
    text-align: center;
    filter: drop-shadow(rgba(0, 0, 0, 0.5) 0 0 1px) drop-shadow(rgba(0, 0, 0, 0.5) 0 0 5px);
  }
  .ft-box.box-cta .ft-box-body-col.ft-box-body-col-cont .ft-box-body-footer {
    justify-content: center;
  }
}
.ft-box.box-quote {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  position: relative;
}
.ft-box.box-quote:before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--acc-green);
}
.ft-box.box-mini {
  --box-pd: 0.5rem;
  --box-bdr: 0.75rem;
}
.ft-box.box-mini .ft-box-body-row {
  --gap: 0.75rem;
}
.ft-box.box-mini.box-h .ft-box-body-col.ft-box-body-col-img {
  margin-bottom: 0;
  aspect-ratio: 16/9;
  width: auto;
  height: 60px;
}
.ft-section {
  padding-block: var(--section-gap);
}
.ft-feat {
  --box-op: .2;
  padding-top: calc(var(--nav-height) + var(--section-gap));
}
.ft-feat-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .ft-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(235px, 1fr));
  }
}
@media (max-width: 991.98px) {
  .ft-feat-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.ft-feat-grid-item:first-child {
  grid-row: span 3/span 3;
}
.ft-input {
  padding: 0.25em 1em;
  width: 100%;
  font-size: inherit;
  line-height: 1.5;
  border: rgba(179, 179, 179, 0.25) solid 3px;
  border-radius: 9999em;
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.ft-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.5);
}
.ft-input[type=search] {
  padding-inline: 2em 0.5em;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="8.03" cy="8.03" r="7" fill="none" stroke="%23fff" stroke-miterlimit="10" stroke-width="2"/><line x1="12.97" y1="12.97" x2="18.97" y2="18.97" fill="none" stroke="%23fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></svg>');
  background-size: 20px 20px;
  background-position: 0.5em center;
  background-repeat: no-repeat;
}
.ft-input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><line x1="3.64" y1="3.64" x2="16.36" y2="16.36" fill="none" stroke="%23fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><line x1="16.36" y1="3.64" x2="3.64" y2="16.36" fill="none" stroke="%23fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/></svg>');
}
.ft-filter {
  padding-inline: 20px;
}
.ft-filter-list {
  --gap: 12px;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--gap) * -1);
  margin-inline: calc(var(--gap) * -0.5);
}
.ft-filter-item {
  margin-top: var(--gap);
  padding-inline: calc(var(--gap) * 0.5);
  flex: 1 0 0;
}
@media (max-width: 399.98px) {
  .ft-filter-item {
    flex: 0 0 auto;
    width: 50%;
  }
}
.ft-filter-item.ft-filter-item-search {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
@media (max-width: 767.98px) {
  .ft-filter-item.ft-filter-item-search {
    width: 100%;
  }
}
.ft-filter-tab {
  --btn-op: 0.3;
  --btn-bdw: 3px;
  display: block;
  width: 100%;
  padding: 0;
  border: transparent solid var(--btn-bdw);
  line-height: 1.5;
  text-align: center;
  font-size: 1rem;
  border-radius: 999em;
  background-color: rgb(255, 255, 255, calc(0.5 * var(--btn-op)));
  position: relative;
  cursor: pointer;
}
.ft-filter-tab:hover, .ft-filter-tab:focus, .ft-filter-tab:active {
  --btn-op: 0.8;
}
.ft-filter-tab.is-active {
  --btn-op: 0.3;
  background-color: rgb(46, 255, 170);
  color: #000;
}
.ft-filter-tab-border {
  position: absolute;
  top: calc(var(--btn-bdw) * -1);
  right: calc(var(--btn-bdw) * -1);
  bottom: calc(var(--btn-bdw) * -1);
  left: calc(var(--btn-bdw) * -1);
}
.ft-filter-tab-border:before, .ft-filter-tab-border:after {
  display: block;
  content: "";
  border-radius: 999em;
  border-width: var(--btn-bdw);
  border-style: solid;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-in-out 0.2s;
}
.ft-filter-tab-border:before {
  border-color: rgb(255, 255, 255, var(--btn-op));
  -webkit-mask-image: linear-gradient(90deg, #000, transparent);
          mask-image: linear-gradient(90deg, #000, transparent);
}
.ft-filter-tab-border:after {
  border-color: rgb(77, 77, 77, var(--btn-op));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
          mask-image: linear-gradient(90deg, transparent, #000);
}
.ft-filter-tab-body {
  display: block;
  padding: 0.25em 1em;
}
.ft-no-result {
  display: none;
}
.ft-no-result-inner {
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.ft-no-result-inner img {
  margin-inline: auto;
  width: 60%;
  max-width: 240px;
  filter: drop-shadow(rgba(255, 255, 255, 0.5) 0 0 5px);
}
.ft-no-result-inner p {
  margin-top: -1.5em;
}
.ft-wrap:has(input[type=radio][name=filter-item]:checked) .ft-result {
  display: block;
}
.ft-articles {
  --box-op: .4;
}
.ft-articles-list {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .ft-articles-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.ft-education .ft-box {
  --box-op: 0.2;
}
@media (min-width: 768px) {
  .ft-education .ft-box {
    --box-pd: 28px;
  }
}
@media (max-width: 767.98px) {
  .ft-education .ft-box {
    --box-pd: 28px 0;
  }
}
@media (max-width: 767.98px) {
  .ft-education .ft-box-body {
    --gap: 0;
  }
}
.ft-education .ft-title {
  margin-bottom: 1em;
  text-align: center;
  flex: 1 0 0;
}
@media (max-width: 767.98px) {
  .ft-education .ft-title {
    padding-inline: 28px;
  }
}
.ft-carousel {
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767.98px) {
  .ft-carousel {
    margin-inline: -20px;
  }
}
.ft-carousel-list {
  display: flex;
  flex-wrap: nowrap;
}
.ft-carousel-item {
  flex: 0 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .ft-carousel-item {
    width: 33.3333333333%;
    transition: transform 0.5s ease-in;
    will-change: transform;
    transform: scale(0.8);
  }
  .ft-carousel-item.is-active {
    transform: scale(1);
  }
}
@media (max-width: 767.98px) {
  .ft-carousel-item {
    width: 100%;
    padding-inline: 48px;
  }
}
.ft-carousel-item-inner {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ft-carousel-item-inner .ft-title {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.ft-carousel-item-img {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}
.ft-carousel-item-img img {
  width: 60%;
  border-radius: 12px;
  box-shadow: rgba(255, 255, 255, 0.45) 0 0 4px;
}
.ft-carousel-item-action {
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.ft-carousel-arrows {
  width: 18px;
  height: 100%;
  position: absolute;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  top: 0;
  opacity: 0.6;
  text-indent: -999em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 62px;
}
@media (max-width: 767.98px) {
  .ft-carousel-arrows {
    margin-inline: 28px;
    padding-inline: 20px;
  }
}
.ft-carousel-arrows:hover, .ft-carousel-arrows:focus, .ft-carousel-arrows:active {
  opacity: 1;
}
.ft-carousel-arrows.ft-carousel-arrows-prev {
  left: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 62"><polygon points="0 31 18 0 18 62 0 31" fill="%23666"/></svg>');
}
.ft-carousel-arrows.ft-carousel-arrows-next {
  right: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 62"><polygon points="18 31 0 0 0 62 18 31" fill="%23666"/></svg>');
}
.ft-carousel-arrows.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.ft-header {
  display: flex;
  flex-direction: column;
  margin-top: calc(var(--nav-height) * -1);
  position: relative;
}
@media (min-width: 768px) {
  .ft-header {
    aspect-ratio: 21/9;
  }
}
@media (max-width: 767.98px) and (min-width: 400px) {
  .ft-header {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 399.98px) {
  .ft-header {
    aspect-ratio: 1/1;
  }
}
.ft-header-bg {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.5) calc(100% - 2rem), transparent);
          mask-image: linear-gradient(rgba(0, 0, 0, 0.5) calc(100% - 2rem), transparent);
}
.ft-header-inner {
  padding-block: 2rem;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ft-header-info {
  margin-block: 1rem;
  display: flex;
  gap: 24px;
  text-shadow: rgba(0, 0, 0, 0.75) 0 0 5px;
}
.ft-header-title {
  text-shadow: rgba(0, 0, 0, 0.75) 0 0 5px;
}
.ft-back {
  margin-left: -0.5rem;
  margin-bottom: 2rem;
  display: inline-flex;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  z-index: 10;
}
.ft-back-btn {
  padding: 0.25em 1em 0.25em 0.75em;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 999em;
  backdrop-filter: blur(1rem);
}
.ft-back-btn:hover, .ft-back-btn:focus, .ft-back-btn:active {
  background-color: var(--acc-green);
  color: #000;
}
.ft-back-btn svg {
  width: 1.25em;
}
.ft-ele-section {
  margin-bottom: 48px;
  position: relative;
}
.ft-ele-section-anchor {
  position: absolute;
  top: calc(var(--nav-height) * -1 - 1rem);
}
.ft-ele-title {
  margin-block: 0.25rem 1rem;
}
.ft-ele-title-eyebrow {
  padding-left: 2em;
  position: relative;
  color: var(--acc-green);
  letter-spacing: 0.04em;
}
.ft-ele-title-eyebrow:before {
  content: "";
  display: block;
  width: 1.75em;
  height: 2px;
  background-color: currentColor;
  translate: 0 -50%;
  position: absolute;
  top: 50%;
  left: 0;
}
.ft-ele-title-pre {
  padding-left: 0.75em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: rgba(255, 255, 255, 0.25) solid 1px;
  position: relative;
}
.ft-ele-title-pre:before {
  content: "";
  display: block;
  width: 3px;
  height: 1em;
  background-color: var(--acc-green);
  border-radius: 1.5px;
  position: absolute;
  top: 0.25em;
  left: 0;
}
.ft-ele-para {
  margin-block: 1rem;
}
.ft-ele-strong {
  font-weight: 700;
  color: var(--acc-green);
}
.ft-ele-fig {
  margin-block: 1.5rem;
}
.ft-ele-fig-img {
  width: 100%;
  border-radius: 12px;
}
.ft-ele-fig-cap {
  margin-block: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.ft-ele-hr {
  margin-block: 1rem;
  border: none;
  border-top: #fff solid 1px;
  opacity: 0.2;
}
.ft-ele-row {
  --gap: 16px;
  margin-top: calc(var(--gap) * -1);
  margin-inline: calc(var(--gap) * -0.5);
  display: flex;
  flex-wrap: wrap;
}
.ft-ele-col {
  margin-top: var(--gap);
  padding-inline: calc(var(--gap) * 0.5);
}
.ft-ele-col.ft-ele-col-auto {
  flex: 0 0 auto;
}
.ft-ele-col.ft-ele-col-grow {
  flex: 1 0 0;
}
.ft-ele-col.ft-ele-col-full {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .ft-ele-col-md-half {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .ft-ele-col-md-half {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .ft-ele-col-md-third {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
}
@media (max-width: 767.98px) {
  .ft-ele-col-md-third {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .ft-ele-col-md-forth {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .ft-ele-col-md-forth {
    flex: 0 0 auto;
    width: 100%;
  }
}
.ft-ele-col-md-auto {
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .ft-ele-col-md-auto {
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .ft-ele-col-md-auto {
    width: 100%;
  }
}
.ft-ele-btn-green {
  display: block;
  padding: 0.25em 1em;
  border-radius: 0.5rem;
  color: #000;
  background-color: var(--acc-green);
  border: var(--acc-green) solid 1px;
}
.ft-ele-btn-green:hover, .ft-ele-btn-green:focus, .ft-ele-btn-green:active {
  background-color: rgb(var(--acc-green-rgb)/0.1);
  color: #fff;
}
.ft-ele-badge {
  display: block;
  padding: 0.25em 0.75em;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 999em;
}
.ft-ele-table {
  border-collapse: collapse;
  overflow: hidden;
}
.ft-ele-table > thead > tr > * {
  background-color: rgba(0, 0, 0, 0.25);
}
.ft-ele-table > * > * > * {
  font-weight: 400;
  text-align: left;
  padding: 0.625rem 1rem;
  border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
}
.ft-ele-table > *:not(thead) > *:last-child > *, .ft-ele-table > *:not(thead) > *:only-child > * {
  border-bottom: none;
}
.ft-page {
  gap: 48px;
  display: grid;
}
@media (min-width: 992px) {
  .ft-page {
    grid-template-columns: 1fr 300px;
    grid-template-rows: 1fr;
  }
}
@media (max-width: 991.98px) {
  .ft-page {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .ft-page-sidebar-inner {
    position: sticky;
    top: var(--nav-height);
  }
}
.ft-author {
  padding-block: 24px;
  border-top: rgb(var(--acc-green-rgb)/0.5) solid 1px;
  border-bottom: rgb(var(--acc-green-rgb)/0.5) solid 1px;
}
.ft-author-avantor {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 2.5em;
  border-radius: 9999em;
  background-image: linear-gradient(135deg, #1c5030, #0d2c1a);
  color: var(--acc-green);
  border: #1b3922 solid 2px;
  font-weight: 600;
}
.ft-author-content-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.ft-author-share {
  display: flex;
  gap: 6px;
}
.ft-author-share-btn {
  display: flex;
  padding: 0.25rem;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  border: currentColor solid 1px;
}
.ft-author-share-btn:hover, .ft-author-share-btn:focus, .ft-author-share-btn:active {
  color: rgba(0, 0, 0, 0.75);
  background-color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.75);
}
.ft-author-share-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}
.ft-scrollspy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}/*# sourceMappingURL=fisg-times-style.css.map */