@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ManifaPro";
  src: url("../fonts/Manifa-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --nomotion: none;
  }
}

:root {
  --font-family: "Lato", sans-serif;
  --font-heading: "ManifaPro", sans-serif;
  --opacity: 1;
  --background: var(--white);
  --white: 255 255 255;
  --red-500: 220 38 38;
  --yellow: 252 239 82;
  --navyblue: 62 68 143;
  --skyblue: 0 163 224;
  --gray-50: 250 250 250;
  --gray-100: 245 245 245;
  --gray-200: 229 229 229;
  --gray-300: 212 212 212;
  --gray-400: 163 163 163;
  --gray-500: 115 115 115;
  --gray-600: 82 82 82;
  --gray-700: 64 64 64;
  --gray-800: 38 38 38;
  --gray-900: 23 23 23;
  --gradient: linear-gradient(
    71.23deg,
    rgb(var(--yellow)) -12.86%,
    rgb(var(--skyblue)) 66.56%
  );
  --cubic-bezier: cubic-bezier(0.35, 1, 0.45, 1);
  --radius: 0.5rem;
  --marquee-elements-displayed: 2;
  --marquee-element-width: calc(100vw / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 10s);
  --marquee-gap: 2rem;
  --color-mode: "light";
}

@media (min-width: 640px) {
  :root {
    --marquee-elements-displayed: 3;
    --marquee-gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  :root {
    --marquee-elements-displayed: 4;
  }
}

@media (min-width: 1024px) {
  :root {
    --marquee-elements-displayed: 5;
    --marquee-gap: 3rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --marquee-elements-displayed: 6;
  }
}

* {
  margin: 0;
  padding: 0;
}

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

::selection {
  background-color: rgb(var(--skyblue) / 0.5);
  color: rgb(var(--navyblue));
  text-shadow: none;
}

html {
  scroll-behavior: var(--nomotion, smooth);
}

html,
body {
  min-height: 100%;
  scrollbar-width: thin;
}

html {
  font-size: 16px;
  font-kerning: normal;
  font-feature-settings: "kern";
  overflow: -moz-scrollbars-vertical;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: rgb(var(--gray-800));
  font-size: min(14px, 16px);
  font-family: var(--font-family);
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-variant-ligatures: common-ligatures;
  background-color: rgb(var(--background));
  transition: all 300ms var(--cubic-bezier);
  position: relative;
}

a {
  color: inherit;
  display: block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img,
img a {
  border: none;
  outline: none;
}
ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  appearance: none;
}

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

.container {
  width: 100%;
  max-width: 90rem;
  margin-inline-end: auto;
  margin-inline-start: auto;
  padding-inline-start: 1.25rem;
  padding-inline-end: 1.25rem;
}

@media (min-width: 48rem) {
  .container {
    padding-inline-start: 2rem;
    padding-inline-end: 2rem;
  }
}

@media (min-width: 64rem) {
  .container {
    padding-inline-start: 3rem;
    padding-inline-end: 3rem;
  }
}

.no-scroll {
  overflow: hidden;
}

.overlay {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(var(--gray-900) / 0.5);
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
}
.overlay.is-active {
  display: block;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: rgb(var(--gray-50));
  transition: color 0.75s var(--cubic-bezier);
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
}

header .css-dlogdv {
  display: none;
  background: linear-gradient(
    to left,
    rgb(var(--white) / 0.1) 0%,
    transparent 50%
  );
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 46rem) {
  header .css-dlogdv {
    display: block;
  }
}

header .css-dlogdv .css-vbpng {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

header .css-dlogdv .css-vbpng .css-5htw49 {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

header .css-dlogdv .css-vbpng .css-5htw49 > div {
  width: auto;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

header .css-dlogdv .css-vbpng .css-5htw49 > div img {
  width: auto;
  height: 100%;
}

header .css-dlogdv .css-vbpng .css-5htw49 > div span {
  font-size: 1rem;
}

header .css-header-main {
  width: 100%;
  transition-duration: 0.75s;
  transition-timing-function: var(--cubic-bezier);
  transition-property: transform, top;
  position: fixed;
  left: 0;
  top: var(--top, 0);
}

.header--hidden header .css-header-main {
  transform: translateY(-100%);
}

header .css-header-main .css-bckgrnd {
  height: 200%;
  background-color: transparent;
  transition-duration: 0.75s;
  transition-timing-function: var(--cubic-bezier);
  transition-property: background-color;
  position: absolute;
  z-index: -1;
  bottom: 0px;
  right: 0px;
  left: 0px;
}

.scrolled header .css-header-main .css-bckgrnd,
.nav--open header .css-header-main .css-bckgrnd,
.pages.nav--open header .css-header-main .css-bckgrnd,
.pages.scrolled header .css-header-main .css-bckgrnd {
  background-color: rgb(var(--gray-800));
}

.pages header .css-header-main .css-bckgrnd {
  background-color: rgb(var(--gray-800));
}

.scrolled header .css-header-main {
  top: 0;
}

header .css-header-main .css-header-inner {
  width: 100%;
  height: 4.5rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

header .css-header-main .css-header-inner .logo {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  position: relative;
  z-index: 1;
}

.css-logo {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
}

.css-logo img {
  width: auto;
  height: 100%;
}

.css-logo .css-logo-text {
  flex-shrink: 0;
  max-width: 10rem;
  font-weight: 700;
  font-size: min(1.125rem, 2.25rem);
  overflow-wrap: break-word;
}

.css-navigation {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 1rem 0;
}

.css-navlist {
  width: 100%;
  display: flex;
  flex-direction: column;
  column-gap: 1.5rem;
  row-gap: 1rem;
  opacity: 0;
  padding-top: 10.3125rem;
  padding-bottom: 7.5rem;
  padding-inline-start: 2rem;
  padding-inline-end: 2rem;
  background-color: rgb(var(--gray-800));
  transform: translateX(100%);
  transition-property: transform, opacity;
  transition-duration: 0.75s, 0.35s;
  transition-timing-function: var(--cubic-bezier);
  position: fixed;
  inset: 0;
}

.nav--open .css-navlist {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 64rem) {
  .css-navlist {
    opacity: 1;
    padding: 0;
    background-color: transparent;
    align-items: center;
    flex-direction: row;
    transform: translateX(0);
    margin-bottom: 1.25rem;
    margin-top: 2.25rem;
    position: static;
  }
}
.css-navitem {
  overflow: hidden;
}

.css-navlink,
.submenu-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  position: relative;
}

.css-navitem .css-navlink > svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.css-navlink {
  color: inherit;
  font-size: 1.3125rem;
  text-transform: uppercase;
}

.css-navlink:hover,
.submenu-link:hover {
  background-size: 100% 1px;
}

.css-navlink:hover,
.submenu-link:hover,
.css-navlink.is-active,
.css-navitem.active .css-navlink {
  color: rgb(var(--skyblue)) !important;
  outline: none;
}

.submenu {
  width: 100%;
  height: calc(100vh - 4.5rem);
  display: flex;
  background-color: rgb(var(--gray-800));
  flex-direction: column;
  padding-inline-start: 2rem;
  padding-inline-end: 2rem;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  transform: translateX(100%);
  transition-property: transform, opacity;
  transition-duration: 0.75s, 0.35s;
  transition-timing-function: var(--cubic-bezier);
  position: fixed;
  z-index: 11;
  top: var(--topSubMenu);
  bottom: 0;
  right: 0;
}

.submenu .close {
  display: inline-flex;
  align-items: center;
  color: rgb(var(--gray-300));
  align-self: flex-start;
  position: absolute;
  top: 3.25rem;
  left: 2rem;
}

.submenu .close > svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  display: inline-block;
  transform: rotate(180deg);
  margin-inline-end: 0.5rem;
  fill: currentColor;
}

@media (min-width: 64rem) {
  .css-navlink,
  .submenu-link {
    width: auto;
    display: inline-block;
    background: linear-gradient(currentColor, currentColor) left bottom
      no-repeat;
    background-size: 0% 1px;
    transition-property: color, background-size;
    transition-duration: 0.75s, 0.35s;
    transition-timing-function: var(--cubic-bezier);
  }
  .css-navitem .css-navlink > svg {
    display: none;
  }

  .submenu {
    max-width: 26.25rem;
    padding-inline-start: 3rem;
    padding-inline-end: 3rem;
  }
  .submenu .close {
    display: none;
  }
}

.scrolled .submenu {
  top: var(--topSubMenuScrolled);
}
.nav--open .submenu.is-active {
  transform: translateX(0%);
}

.submenu li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 62rem) {
  .css-1qyz34j li {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
.submenu li > * {
  font-size: 1.4375rem;
}

.submenu li .subnav-link {
  color: rgb(var(--gray-400));
  letter-spacing: 0.02em;
}

.submenu li .parent-link {
  color: rgb(var(--gray-100));
}

.js-menu-toggle {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  visibility: visible;
  position: relative;
}

@media (min-width: 64rem) {
  .js-menu-toggle {
    display: none;
    visibility: hidden;
  }
}

.js-menu-toggle .line {
  height: 1.5px;
  display: block;
  background: transparent;
  transform: translateY(-50%);
  position: absolute;
  right: 0px;
  left: 0px;
  top: 50%;
}

.js-menu-toggle .line::before,
.js-menu-toggle .line::after {
  content: "";
  width: 100%;
  height: 1.5px;
  display: block;
  background: rgb(var(--gray-50));
  transition-timing-function: var(--cubic-bezier);
  position: absolute;
  left: 0;
}

.pages.nav--open header .css-header-main .js-menu-toggle .line::before,
.pages.nav--open header .css-header-main .js-menu-toggle .line::after {
  background: rgb(var(--gray-800));
}

.pages header .css-header-main .js-menu-toggle .line::before,
.pages header .css-header-main .js-menu-toggle .line::after {
  background: rgb(var(--gray-800));
}

.js-menu-toggle .line::before {
  top: -5px;
}

.js-menu-toggle .line::after {
  bottom: -5px;
}

.js-menu-toggle--htx .line {
  transition: background 0s 0.3s;
}

.js-menu-toggle--htx .line::after,
.js-menu-toggle--htx .line::before {
  transition-duration: 0.5s, 0.5s;
  transition-delay: 0.3s, 0s;
}

.js-menu-toggle--htx .line::before {
  transition-property: top, transform;
}

.js-menu-toggle--htx .line::after {
  transition-property: bottom, transform;
}

.js-menu-toggle--htx.is-active .line {
  background: 0 0;
}

.js-menu-toggle--htx.is-active .line::before {
  top: 0;
  transform: rotate(45deg);
}

.js-menu-toggle--htx.is-active .line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.js-menu-toggle--htx.is-active .line::after,
.js-menu-toggle--htx.is-active .line::before {
  transition-delay: 0s, 0.3s;
}

main {
  min-height: 100vh;
  background-color: rgb(var(--background));
  position: relative;
  z-index: 3;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.675rem;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.breadcrumb li {
  --color: rgb(var(--gray-100));
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.675rem;
  color: var(--color);
  letter-spacing: 0.02em;
}

.breadcrumb li.css-breadcrumb-item {
  --color: rgb(var(--white));
  /* --max: 12.5rem;
  max-width: var(--max); */
  display: -webkit-box;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.breadcrumb li .seperator {
  width: 0.875rem;
  fill: currentColor;
}

.breadcrumb li .current-page,
.breadcrumb li a {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 3rem;
  color: inherit;
}

.page-banner .breadcrumb li {
  --color: rgb(var(--gray-600));
}

.page-banner .breadcrumb li.css-breadcrumb-item {
  --color: rgb(var(--gray-800));
}

/* .breadcrumb li .current-page {
} */

.breadcrumb li a:has(> img) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb li a img {
  width: auto;
  height: 1.5rem;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.8;
}

.page-banner .breadcrumb li a img {
  filter: grayscale(100%) brightness(1);
}

.breadcrumb li a:hover {
  color: rgb(var(--skyblue));
}

.breadcrumb li a:hover img {
  filter: grayscale(0%) brightness(1) invert(0);
  opacity: 1;
}

@media (min-width: 640px) {
  .breadcrumb-wrapper {
    display: block;
  }

  /* .breadcrumb li.css-breadcrumb-item {
    --max: 100%;
  } */
}

.slider-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(var(--gray-900));
  position: relative;
}

.slider {
  display: flex;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.75s var(--cubic-bezier), visibility 0s linear 0.75s;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transition: opacity 0.6s var(--cubic-bezier);
}

.slide:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(
      69deg,
      rgba(0, 0, 0, 0.76) 31.16%,
      rgba(0, 0, 0, 0) 90.51%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 27.65%);
}
@media screen and (min-width: 48rem) {
  .slide:after {
    background: linear-gradient(
        86deg,
        rgba(0, 0, 0, 0.6) 31.08%,
        rgba(0, 0, 0, 0) 71.97%,
        rgba(22, 19, 19, 0) 103.02%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 27.65%);
  }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  height: auto;
  color: rgb(var(--white));
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  left: 0;
}

.slide-content .container {
  overflow: hidden;
  max-width: 64rem;
  height: 100%;
}

.slide-content .container h2 {
  width: 100%;
  max-width: 40rem;
  font-weight: 400;
  font-size: 2.375rem;
  line-height: 1.05;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  word-break: normal;
}

.slide-content .container span {
  text-wrap: balance;
  font-size: 1.25rem;
  line-height: 1.25;
  /* margin-bottom: 12px; */
  display: inline-flex;
  /* display: none; Hidden on mobile by default */
}

.slide-content .container .btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #00a79d;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.slide-content .container .btn:hover {
  background-color: #00857c;
}

.slide-content .container > * {
  will-change: transform;
  transform-origin: center center;
  transition: transform 0.75s 0.1s var(--cubic-bezier);
  backface-visibility: hidden;
}

.slide-content .container h2 {
  transform: translate3d(5px, 150px, 0);
}

.slide-content .container span,
.slide-content .container .btn {
  transform: translateY(90px);
}

/* Ensure the active slide content is visible */
.slide.active .slide-content .container > * {
  transform: translate3d(0, 0, 0);
}

/* Stagger the animations */
.slide.active .slide-content .container h2 {
  transition-delay: 0.1s;
}
.slide.active .slide-content .container span {
  transition-delay: 0.3s;
}
.slide.active .slide-content .container .btn {
  transition-delay: 0.9s;
}

.slider-indicators {
  width: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  right: auto;
  left: auto;
}

.slider-indicator-container {
  width: 100%;
  max-width: 80rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(2rem, 100%), 1fr));
  gap: 1rem;
}

.slider-indicator {
  cursor: pointer;
  position: relative;
  padding: 8px 0;
}

.indicator-title {
  display: none;
  color: rgb(var(--gray-300));
  font-size: 1.125rem;
  font-weight: 550;
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-progress {
  width: 100%;
  height: 0.25rem;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 1px;
  background-color: rgba(var(--gray-500) / 0.6);
  position: relative;
}

.slider-indicator.is-active .indicator-title {
  color: rgb(var(--white));
}

.slider-progress .progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  /* background: var(--gradient); */
  background: rgb(var(--skyblue));
  animation: slide-progress 6s linear forwards;
  animation-play-state: paused;
  transform: translateX(-100%);
  will-change: transform;
  position: absolute;
  left: 0;
  top: 0;
}

/* When active, start animation */
.slider-progress.active .progress-bar {
  animation-play-state: running;
}

.slider-progress.paused .progress-bar {
  animation-play-state: paused;
}

/* Error State */
.slider-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  background-color: #f0f0f0;
  color: #333;
  text-align: center;
  padding: 20px;
}

/* Tablet Styles */
@media (min-width: 600px) {
  .slider-container {
    height: 96vh;
  }
}
@media screen and (min-width: 48rem) {
  .slide-content .container h2 {
    margin-bottom: 0.75rem;
  }
}

/* Desktop Styles */
@media (min-width: 64rem) {
  .slide-content .container h2 {
    font-size: 3.25rem;
  }

  .slide-content .container span {
    font-size: 1.375rem;
    line-height: 1.375;
  }

  .slide-content .container .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .slider-indicators {
    bottom: 4rem;
  }

  .slider-indicator-container {
    gap: 1.5rem;
  }

  .indicator-title {
    display: block;
  }
}

.section-banner {
  width: 100%;
  position: relative;
}

.section-banner > .container {
  height: auto;
  padding-top: 8.5rem;
  position: absolute;
  z-index: 1;
  top: 0;
}

.section-banner.page-banner > .container {
  position: relative;
}

@media screen and (min-width: 48rem) {
  .section-banner > .container {
    padding-top: 10.5rem;
  }
}

.content-wrapper {
  width: 100%;
  position: relative;
}

.css-zxpognh {
  width: 100%;
  overflow: hidden;
  /* border-radius: calc(var(--radius) * 2.25); */
  background-color: rgb(var(--gray-300));
  position: relative;
}

.css-zxpognh::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 140%;
}

@media screen and (min-width: 48rem) {
  .css-zxpognh::before {
    padding-bottom: 68.6%;
  }
}

@media screen and (min-width: 62rem) {
  .css-zxpognh::before {
    padding-bottom: 47.65%;
  }
}

.css-zxpognh .css-grepjjm {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  inset: 0px;
}

.css-zxpognh .css-grepjjm:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
      69deg,
      rgba(0, 0, 0, 0.76) 31.16%,
      rgba(0, 0, 0, 0) 90.51%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 27.65%);
  position: absolute;
  top: 0px;
}

@media screen and (min-width: 48rem) {
  .css-zxpognh .css-grepjjm:after {
    background: linear-gradient(
        86deg,
        rgba(0, 0, 0, 0.6) 31.08%,
        rgba(0, 0, 0, 0) 71.97%,
        rgba(22, 19, 19, 0) 103.02%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 27.65%);
  }
}

.css-zxpognh .css-grepjjm .css-1yrt95h {
  width: 100%;
  height: 120%;
  position: absolute;
}

.css-zxpognh .css-grepjjm .css-1yrt95h img {
  min-width: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  inset: 0;
}

.content-wrapper .css-cntrddv {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.breadcrumb-top .css-1gjmx7m {
  width: 100%;
}

.css-1gjmx7m {
  transition-duration: 0.75s;
  transition-timing-function: var(--cubic-bezier);
  transition-property: all;
  display: none;
}

.css-1gjmx7m .container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media screen and (min-width: 48rem) {
  .css-1gjmx7m {
    display: block;
  }
}

/* .content-wrapper .css-dwrfkng,
.content-wrapper .css-hwtjjbm {
  padding-inline-start: 1.5rem;
  padding-inline-end: 1.5rem;
} */
.content-wrapper .css-dwrfkng {
  height: 100%;
}

.content-wrapper .css-dwrfkng {
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: rgb(var(--white));
}

.content-wrapper .css-hwtjjbm {
  padding-top: 1.5rem;
  color: rgb(var(--gray-800));
}

@media screen and (min-width: 48rem) {
  .content-wrapper .css-dwrfkng,
  .content-wrapper .css-hwtjjbm {
    padding-inline-start: 2rem;
    padding-inline-end: 2rem;
  }
  /* .content-wrapper .css-dwrfkng {
    padding-top: 6rem;
    padding-bottom: 6rem;
  } */

  .content-wrapper .css-hwtjjbm {
    padding-top: 3rem;
  }
}

@media (min-width: 64rem) {
  .content-wrapper .css-dwrfkng,
  .content-wrapper .css-hwtjjbm {
    padding-inline-start: 3rem;
    padding-inline-end: 3rem;
  }
}

.css-1m4d4jx {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.css-hwtjjbm .css-1m4d4jx {
  height: auto;
  justify-content: flex-start;
  padding-bottom: 3.5rem;
}

@media screen and (min-width: 48rem) {
  .content-wrapper .css-hwtjjbm .css-1m4d4jx {
    padding-bottom: 4.5rem;
  }
}

.css-dwrfkng .css-1m4d4jx h1,
.css-hwtjjbm .css-1m4d4jx h1 {
  font-weight: 400;
  font-size: 2.4375rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.css-dwrfkng .css-1m4d4jx,
.css-hwtjjbm .css-1m4d4jx {
  max-width: 48.875rem;
}

.css-1m4d4jx .css-spndscp {
  max-width: 100%;
  display: block;
  line-height: 1.4;
  font-size: 1.125rem;
  padding-inline-end: 1rem;
  text-wrap: balance;
}

.css-dwrfkng .css-1m4d4jx .css-spndscp {
  margin-bottom: 1.25rem;
}

.css-hwtjjbm .css-1m4d4jx .css-spndscp {
  color: rgb(var(--gray-500));
}
.css-1m4d4jx .css-i72aif {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 48rem) {
  .css-1m4d4jx .css-i72aif {
    flex-direction: row;
  }
}
.css-1jesjge {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  margin-top: 1.5rem;
  gap: 1rem;
}
.css-1jesjge > div {
  background-color: rgb(var(--gray-200));
  border-radius: calc(var(--radius) * 2.25);
  overflow: hidden;
  position: relative;
}

.css-1jesjge > div:before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.css-1jesjge > div > img {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
}

@media screen and (min-width: 48rem) {
  .css-dwrfkng .css-1m4d4jx h1,
  .css-hwtjjbm .css-1m4d4jx h1 {
    font-size: 2.75rem;
    margin-bottom: 1.625rem;
    line-height: 1.125;
  }

  .css-1m4d4jx .css-spndscp {
    max-width: 40.375rem;
    padding-inline-end: 0px;
  }

  .css-dwrfkng .css-1m4d4jx .css-spndscp {
    margin-bottom: 1.5rem;
  }
}

@media screen and (min-width: 62rem) {
  .css-dwrfkng .css-1m4d4jx h1,
  .css-hwtjjbm .css-1m4d4jx h1 {
    font-size: 3.25rem;
    /* letter-spacing: -0.02em; */
  }

  .css-1m4d4jx .css-spndscp {
    line-height: 1.333;
    font-size: 1.1875rem;
  }
}

.section-layout {
  width: 100%;
  color: rgb(var(--gray-800));
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.section-layout.pt-1\.5 {
  padding-top: 1.5rem;
}
.section-layout.pt-2\.5 {
  padding-top: 2.5rem;
}
.section-layout.alt {
  background: rgb(var(--gray-50));
}
.section-layout.default {
  background: rgb(var(--gray-700));
}
@media screen and (min-width: 48rem) {
  .section-layout {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

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

.css-1gcxmez {
  width: 100%;
  max-width: 74rem;
  display: flex;
  padding-bottom: 2rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
  flex-direction: column;
  gap: 0px;
}

@media screen and (min-width: 48rem) {
  .css-1gcxmez {
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 62rem) {
  .css-1gcxmez {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.css-qzmxlm1 {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}

.css-d64kte {
  display: flex;
  flex-basis: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}

@media screen and (min-width: 62rem) {
  .css-qzmxlm1,
  .css-d64kte {
    flex-basis: 50%;
  }
}

.css-qd2zlo {
  margin-top: 0.5rem;
  margin-bottom: 1.375rem;
  text-align: right;
}

@media screen and (min-width: 48rem) {
  .css-qd2zlo {
    margin-top: 0px;
    margin-bottom: 0.125rem;
  }
}

.heading {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.275rem;
}

.css-seperator {
  width: 1rem;
  height: 0.5rem;
  display: inline-flex;
  position: relative;
}
.css-seperator::before {
  width: 2px;
  height: 2px;
  content: "";
  background-color: currentColor;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

[class*="css-text-"] {
  font-family: var(--font-family);
  font-weight: 400;
}

.section-layout.default [class*="css-text-"] {
  color: rgb(var(--white));
}

.css-text-sm {
  font-size: 1rem;
  line-height: 2.25rem;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.css-text-md {
  font-size: 1.5rem;
  line-height: 1.4;
}

.css-text-lg {
  font-size: 1.75rem;
  margin-bottom: 1.375rem;
  line-height: 1.3;
}

.css-1g3pu40 > p {
  font-size: 1rem;
  font-weight: 300;
  font-family: var(--font-family);
  /* color: rgb(var(--gray-700)); */
  letter-spacing: 0.01em;
  line-height: 1.75rem;
}

@media screen and (min-width: 62rem) {
  .heading {
    font-size: 1.25rem;
    line-height: 1.125rem;
    letter-spacing: 0.09em;
  }

  .css-text-md {
    font-size: 1.625rem;
    line-height: 1.375;
  }

  .css-text-lg {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .css-1g3pu40 > p {
    font-size: 1.0625rem;
  }
}

.css-wslrtcq {
  width: 100%;
  max-width: 74rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(10rem, 100%), 1fr));
  gap: 2rem;
}

.css-wslrtcq > div {
  display: flex;
  flex-direction: column;
}

.css-wslrtcq > div h3 {
  font-weight: 300;
  font-size: 2.5rem;
  color: rgb(var(--gray-50));
  letter-spacing: 0.01em;
  line-height: 2.375rem;
  margin-bottom: 1.75rem;
  transition: all 0.3s var(--cubic-bezier);
}

.css-wslrtcq.alt > div h3 {
  color: rgb(var(--skyblue));
}

@media screen and (min-width: 62rem) {
  .css-wslrtcq {
    gap: 3rem;
  }

  .css-wslrtcq > div h3 {
    font-size: 3.625rem;
    line-height: 2.5rem;
  }
}

.css-wslrtcq > div p {
  font-weight: 300;
  font-size: 0.9375rem;
  font-family: var(--font-family);
  color: rgb(var(--gray-50));
  line-height: 1.25rem;
  letter-spacing: 0.02em;
}

.css-wslrtcq.alt > div p {
  color: rgb(var(--gray-800));
}

.css-dhsplco,
.css-pqednsr {
  width: 100%;
  max-width: 80rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
}
.css-dhsplco {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.css-dhsplco.css-0 {
  justify-content: flex-start;
}

.css-dhsplco > div {
  width: 100%;
}

.css-dhsplco > div > * {
  display: flex;
  width: 100%;
  flex-direction: column;
  cursor: pointer;
}

.css-dhsplco > div .css-1m7tg19 .css-1r0kfpy {
  color: rgb(var(--white));
  transition: color 0.75s var(--cubic-bezier);
}

.css-dhsplco > div .css-1m7tg19:hover .css-1r0kfpy {
  color: rgb(var(--skyblue));
}

@media screen and (min-width: 30rem) {
  .css-dhsplco {
    gap: 1.25rem;
  }

  .css-dhsplco > div {
    width: calc(50% - 0.625rem);
    padding-bottom: 2.5rem;
  }
}

@media screen and (min-width: 62rem) {
  .css-dhsplco > div {
    width: calc(33.333% - 0.833rem);
  }
}

.css-dhsplco > div .css-1r0kfpy {
  background-color: rgb(var(--gray-200));
  border-radius: calc(var(--radius) * 2);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

.css-dhsplco > div .css-1r0kfpy:before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.css-dhsplco > div .css-1r0kfpy .css-10klw3m,
.css-dhsplco > div .css-1r0kfpy .css-1fezybe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.css-dhsplco > div .css-1r0kfpy .css-1fezybe::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.css-dhsplco > div .css-1r0kfpy .css-1fezybe .play {
  height: 2.75rem;
  width: 2.75rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
}

.css-dhsplco > div .css-1r0kfpy .css-1fezybe .play .css-rcojvf {
  display: inline-block;
  line-height: 1em;
  flex-shrink: 0;
  color: currentColor;
  width: 12px;
  height: auto;
  margin-inline-start: 2px;
  margin-inline-end: 0px;
  fill: transparent;
  stroke: currentColor;
}

@media screen and (min-width: 48rem) {
  .css-dhsplco > div .css-1r0kfpy .css-1fezybe .play {
    height: 3.625rem;
    width: 3.625rem;
  }

  .css-dhsplco > div .css-1r0kfpy .css-1fezybe .play .css-rcojvf {
    width: 20px;
    margin-inline-start: 0.25rem;
  }
}

.css-dhsplco > div .css-1r0kfpy .css-10klw3m img,
.css-fhggnty > div .css-1r0kfpy .css-1fezybe img {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 48rem) {
  .css-dhsplco > div .css-1r0kfpy {
    margin-bottom: 1.25rem;
  }
}

.css-dhsplco > div .css-f8q6k4 {
  font-weight: 400;
  font-size: 1.25rem;
  font-family: var(--font-family);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  line-height: 1.4;
}

.css-dhsplco > div .css-likw0oh {
  font-weight: 300;
  line-height: 1.75rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

@media screen and (min-width: 62rem) {
  .css-dhsplco > div .css-f8q6k4 {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.css-pqednsr .css-scroll-container {
  overflow: hidden;
  margin-inline-start: -1.5rem;
  margin-inline-end: -1.5rem;
}

.css-scroll-snap {
  width: 100%;
  display: flex;
  align-items: stretch;
  padding-bottom: 0.5rem;
  gap: 1.25rem;
}

.css-pqednsr .css-scroll-container .css-scroll-snap {
  padding-inline-start: 1.5rem;
  padding-inline-end: 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-padding-left: 1.5rem;
  scroll-padding-right: 1.5rem;
  scroll-behavior: smooth;
  overflow-x: auto;
}

.css-scroll-item {
  min-width: 16rem;
  max-width: 430px;
  width: calc(25% - 15px);
  transform: translate(0, 0);
  scroll-snap-align: start;
  transition-property: all;
  transition-timing-function: var(--cubic-bezier);
  transition-duration: 200ms;
}

.css-scroll-item .css-jn0q9w {
  background: rgb(var(--white));
  color: rgb(var(--white)); /* change this for the alt color */
  overflow: hidden;
  position: relative;
  border-radius: calc(var(--radius) * 2.25);
  cursor: pointer;
}

.css-scroll-item .css-jn0q9w.alt {
  color: rgb(var(--gray-800)); /* change this for the alt color */
}

.css-scroll-item .css-jn0q9w::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 150%;
}

.css-scroll-item .css-jn0q9w > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  inset: 0px;
}

.css-scroll-item .css-jn0q9w > a .css-777tmp {
  position: absolute;
  z-index: 0;
  inset: 0px;
}

.css-scroll-item .css-jn0q9w > a .css-777tmp::after {
  content: "";
  background-color: rgb(0 0 0/0.45);
  position: absolute;
  inset: 0;
}

.css-scroll-item .css-jn0q9w > a .css-777tmp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.5s var(--cubic-bezier);
  vertical-align: bottom;
}

.css-scroll-item .css-jn0q9w > a .css-11pzah {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.css-scroll-item .css-jn0q9w > a .css-11pzah .css-1ewxxaj {
  width: 100%;
  position: absolute;
  top: 0px;
}

.css-scroll-item .css-jn0q9w > a .css-11pzah .css-1ewxxaj > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) * 2.25);
  background-color: rgb(var(--gray-300));
  position: absolute;
  top: 0;
}

.css-scroll-item .css-jn0q9w > a .css-11pzah .css-1ewxxaj .css-0 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--gray-100));
  font-size: 1.125rem;
  font-weight: 500;
}

.css-scroll-item .css-jn0q9w > a .css-11pzah .css-1ewxxaj .css-1 img {
  min-width: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.css-scroll-item .css-jn0q9w > a .css-11pzah .css-1ewxxaj::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.css-scroll-snap .css-scroll-item .css-jn0q9w > a .css-11pzah .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.css-scroll-snap .css-scroll-item .css-jn0q9w > a .css-11pzah .content.alt {
  height: 69.8%;
  background-color: rgb(var(--white));
  border-top-left-radius: calc(var(--radius) * 2.25);
  border-top-right-radius: calc(var(--radius) * 2.25);
  transition-property: height;
  transition-duration: 0.3s;
  transition-timing-function: var(--cubic-bezier);
  position: relative;
  z-index: 1;
}

.css-scroll-snap
  .css-scroll-item
  .css-jn0q9w
  > a:hover
  .css-11pzah
  .content.alt {
  height: 72.6%;
}

.css-scroll-snap
  .css-scroll-item
  .css-jn0q9w
  > a
  .css-11pzah
  .content
  .content-inner {
  display: flex;
  flex-direction: column;
}

.css-scroll-snap
  .css-scroll-item
  .css-jn0q9w
  > a
  .css-11pzah
  .content
  .content-inner
  .css-j6dog9 {
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
  line-height: 1.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
}

.css-scroll-snap
  .css-scroll-item
  .css-jn0q9w
  > a
  .css-11pzah
  .content
  .css-zi8b0h {
  align-self: flex-end;
}

.css-scroll-snap
  .css-scroll-item
  .css-jn0q9w
  > a
  .css-11pzah
  .content
  .css-zi8b0h
  .css-11619d {
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  color: rgb(var(--white));
  border: 2px solid rgb(var(--gray-50));
  border-radius: var(--radius);
}

.css-scroll-snap
  .css-scroll-item
  .css-jn0q9w.alt
  > a
  .css-11pzah
  .content
  .css-zi8b0h
  .css-11619d {
  color: rgb(var(--skyblue));
  border: 2px solid rgb(var(--skyblue));
}

.css-pqednsr .marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5rem,
    black calc(100% - 5rem),
    transparent
  );
}

.css-pqednsr .marquee .marquee-list {
  width: 100%;
  height: 2.5rem;
  display: flex;
  gap: var(--marquee-gap);
  animation: marquee var(--marquee-animation-duration) linear infinite;
  will-change: transform;
}

.css-pqednsr .marquee .marquee-list .marquee-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* padding: 0 1rem; */
}

.css-pqednsr .marquee .marquee-list .marquee-item img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s var(--cubic-bezier);
}
.css-pqednsr .marquee .marquee-list .marquee-item:hover img {
  transform: scale(1.05);
}

.css-8inwkk {
  width: 100%;
  max-width: 74rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-inline-start: auto;
  margin-inline-end: auto;
  gap: 3rem;
}

.css-esi49d {
  flex-basis: 100%;
  width: 100%;
}
.css-esi49d .css-k6ujn2 {
  position: relative;
  min-width: 100%;
}
.css-esi49d .css-k6ujn2::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 80%;
}

.css-10klw4m {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) * 2.25);
  overflow: hidden;
  position: absolute;
  inset: 0px;
}

.css-10klw4m .css-img {
  max-width: 100%;
  min-width: 100%;
  border-radius: calc(var(--radius) * 2.25);
}

.css-7c3snx {
  flex: 0 0 100%;
  width: 100%;
  padding-inline: 0px;
}

.css-9q5d2i {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0.02em;
}

.css-jd3qco {
  margin-top: 1rem;
  column-count: auto;
  column-gap: normal;
  padding-inline-end: 0px;
  max-width: none;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.02em;
}

.css-jd3qco p,
.css-jd3qco li,
.css-jd3qco td {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.css-ztfcfi {
  margin-top: 1.25rem;
}
.css-ztfcfi > a {
  display: inline-block;
}

@media screen and (min-width: 48rem) {
  .css-8inwkk {
    flex-direction: row;
    gap: 4rem;
  }
  .css-data:nth-child(even) .css-8inwkk {
    flex-direction: row-reverse;
    gap: 4rem;
  }
  .css-esi49d {
    flex-basis: 50%;
    width: 50%;
  }
  .css-7c3snx {
    flex: 0 0 50%;
    width: 50%;
  }
  .css-jd3qco {
    margin-top: 1.5rem;
  }
  .css-ztfcfi {
    margin-top: 1.75rem;
  }
}

@media screen and (min-width: 62rem) {
  .css-7c3snx {
    padding-inline-start: 0.625rem;
  }
  .css-9q5d2i {
    font-size: 2.5rem;
    letter-spacing: 0em;
    line-height: 1;
  }
  .css-jd3qco {
    font-size: 1.125rem;
  }
  .css-jd3qco p,
  .css-jd3qco li,
  .css-jd3qco td {
    font-size: 1.125rem;
  }
}

.css-column {
  width: 100%;
  max-width: 74rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.75rem;
  margin-inline: auto;
}

.css-column > p {
  flex-basis: 100%;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75rem;
  letter-spacing: 0.01em;
}

@media (min-width: 48rem) {
  .css-column {
    gap: 3rem;
    flex-direction: row;
    justify-content: center;
  }
  .css-column > p {
    flex-basis: calc(50% - 1.5rem);
  }
}

@media screen and (min-width: 62rem) {
  .css-column > p {
    font-size: 1.125rem;
    flex-basis: calc(100% / 3 - 2rem);
  }
}

.css-wxlq5hf {
  flex-basis: 100%;
  width: 100%;
}
@media (min-width: 48rem) {
  .css-wxlq5hf {
    flex-basis: 60%;
    width: 60%;
    margin-inline: auto;
  }
}

.css-wxlq5hf a {
  display: inline-block;
  color: rgb(var(--skyblue));
  text-decoration: underline;
}

.css-djgayjy {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
}

@media screen and (min-width: 48rem) {
  .css-djgayjy {
    column-count: 2;
    column-gap: 3rem;
  }
}

.css-wxlq5hf h2,
.css-djgayjy h2 {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 1.625rem;
}

.css-wxlq5hf p,
.css-wxlq5hf li,
.css-wxlq5hf td,
.css-djgayjy p,
.css-djgayjy li,
.css-djgayjy td {
  font-weight: 300;
  font-size: 1rem;
  color: rgb(var(--gray-800));
  line-height: 1.75rem;
  letter-spacing: 0.01em;
  margin-bottom: 1.125rem;
}

@media screen and (min-width: 62rem) {
  .css-wxlq5hf h2,
  .css-djgayjy h2 {
    font-size: 2.5rem;
    letter-spacing: 0.01em;
    line-height: 1.35;
    margin-bottom: 3.25rem;
  }
  .css-wxlq5hf p,
  .css-wxlq5hf li,
  .css-wxlq5hf td,
  .css-djgayjy p,
  .css-djgayjy li,
  .css-djgayjy td {
    font-size: 1.125rem;
  }
}

.css-cjbbrvt {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
  position: relative;
}

.css-cjbbrvt::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 56.8%;
}

.css-cjbbrvt > div {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) * 2.25);
  background-color: rgb(var(--gray-100));
  position: absolute;
  inset: 0;
}

.css-cjbbrvt > div > img {
  min-width: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.css-fhggnty {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
@media screen and (min-width: 30rem) {
  .css-fhggnty {
    gap: 1.25rem;
  }
}

.css-fhggnty .css-15uc9s8 {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.5);
  background-color: rgb(var(--gray-50));
}

.css-fhggnty .css-15uc9s8 .css-rbpcet {
  flex: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
}

.css-fhggnty .css-15uc9s8 .css-rbpcet h3 {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.css-fhggnty .css-15uc9s8 .css-10klw3m {
  width: 100%;
  position: relative;
}

.css-fhggnty .css-15uc9s8 .css-10klw3m::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 56.8%;
}

.css-fhggnty .css-15uc9s8 .css-10klw3m > div {
  max-width: 100%;
  max-height: 100%;
  /* overflow: hidden;
  border-radius: calc(var(--radius) * 2.25); */
  background-color: rgb(var(--gray-100));
  position: absolute;
  inset: 0;
}

.css-fhggnty .css-15uc9s8 .css-10klw3m > div > img {
  min-width: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 30rem) {
  .css-fhggnty .css-15uc9s8 {
    width: calc(50% - 0.625rem);
  }
}

@media (min-width: 62rem) {
  .css-fhggnty .css-15uc9s8 {
    flex-direction: row;
  }

  .css-fhggnty .css-15uc9s8 .css-rbpcet h3 {
    font-size: 1.25rem;
    line-height: 1.333;
  }

  .css-fhggnty .css-15uc9s8 .css-10klw3m {
    width: 25%;
    position: relative;
  }

  .css-fhggnty .css-15uc9s8 .css-10klw3m::before {
    padding-bottom: 120%;
  }
}

.css-1tjjksc {
  width: 100%;
  max-width: 74rem;
  font-size: 1.0625rem;
  color: rgb(var(--gray-800));
  margin-inline: auto;
}

.css-x10fnwm {
  width: 100%;
  max-width: 74rem;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  gap: 1rem;
}
.css-x10fnwm > a {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgb(var(--gray-50));
  border-radius: calc(var(--radius) * 1.75);
  padding: 0.75rem 1rem;
  gap: 1.25rem;
}

.css-x10fnwm > a .css-16eprl9 {
  display: block;
  align-items: center;
  flex-grow: 1;
}

.css-x10fnwm > a .css-16eprl9 .css-1vdp24e {
  /* font-weight: 300; */
  display: inline;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.01em;
  background: linear-gradient(currentColor, currentColor) left bottom no-repeat;
  background-size: 0% 1px;
  transition-property: color, background-size;
  transition-duration: 0.75s, 0.35s;
  transition-timing-function: var(--cubic-bezier);
  position: relative;
}

.css-x10fnwm > a:hover .css-16eprl9 .css-1vdp24e {
  background-size: 100% 1px;
}

@media screen and (min-width: 48rem) {
  .css-x10fnwm > a {
    padding: 1rem 1.5rem;
  }
  .css-x10fnwm > a .css-16eprl9 {
    display: flex;
  }
}
@media screen and (min-width: 62rem) {
  .css-x10fnwm > a .css-16eprl9 .css-1vdp24e {
    font-size: 1.125rem;
  }
}

.css-12ih7m {
  width: 100%;
  max-width: 80rem;
  display: flex;
  flex-flow: wrap;
  margin-inline: auto;
  gap: 2.5rem;
}

.css-12ih7m .css-1ffto7m {
  /* background-color: rgb(var(--gray-100)); */
  flex-basis: 100%;
}

.css-evq0tx {
  font-size: 1rem;
  column-count: auto;
  column-gap: normal;
}

.css-evq0tx p,
.css-evq0tx li,
.css-evq0tx td {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.css-evq0tx > * > a {
  color: rgb(var(--skyblue));
  display: inline-block;
  background: linear-gradient(currentColor, currentColor) left bottom no-repeat;
  background-size: 0% 1px;
  transition-property: color, background-size;
  transition-duration: 0.75s, 0.35s;
  transition-timing-function: var(--cubic-bezier);
}
.css-evq0tx > * > a:hover {
  background-size: 100% 1px;
}
.css-18klm8jk {
  max-width: 200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.css-18klm8jk > a {
  width: 2.875rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--skyblue));
  border: 1.5px solid rgb(var(--skyblue));
  border-radius: 9999px;
}
.css-18klm8jk > a > svg {
  width: 1.375rem;
  height: 1.375rem;
  fill: currentColor;
}
@media screen and (min-width: 30rem) {
  .css-12ih7m .css-1ffto7m {
    flex-basis: calc(50% - 1.5rem);
  }
}
@media screen and (min-width: 62rem) {
  .css-12ih7m .css-1ffto7m {
    flex-basis: calc(33.333% - 3rem);
  }
}

.css-5sxn50 {
  margin-top: 0.25rem;
}

.css-5sxn50 .css-zi8b0h {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0;
}

/* Video Popup Styles */
.popup--vid {
  opacity: 0;
  width: 100%;
  height: 100%;
  max-width: 64rem;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%);
  transition: opacity 0.35s var(--cubic-bezier),
    visibility 0.35s var(--cubic-bezier);
  visibility: hidden;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
}

.popup--vid.is-active {
  opacity: 1;
  visibility: visible;
}

.popup--vid .exit {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(var(--white));
  transition: color 0.75s var(--cubic-bezier);
  position: absolute;
  z-index: 10;
  right: 1rem;
  top: 1rem;
}
.popup--vid .exit:hover {
  color: rgb(var(--skyblue));
}
.popup--vid .exit > svg {
  width: 1rem;
  fill: currentColor;
}

.popup--vid iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
}

/* @media (min-width: 46rem) {
  .popup--vid .exit {
    right: 1.5rem;
    top: 1.5rem;
  }
} */

/* Buttons */
.css-zi8b0h {
  font-size: 1.0625rem;
  color: rgb(var(--skyblue));
  display: inline-flex;
  margin-top: 1.25rem;
  align-items: center;
}

.css-qd2zlo .css-zi8b0h {
  font-size: 1.1875rem;
  margin-top: 0;
}

.css-i72aif > a .css-zi8b0h,
.css-x10fnwm > a .css-zi8b0h {
  margin-top: 0;
}

.css-zi8b0h .css-11619d {
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  margin-inline-start: 1.25rem;
  position: relative;
}

.css-qd2zlo .css-zi8b0h .css-11619d {
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(var(--skyblue));
  border-radius: var(--radius);
}

.css-zi8b0h .css-11619d > * {
  width: 1rem;
  height: auto;
  line-height: 1em;
  display: inline-block;
  color: currentColor;
  fill: currentColor;
  transition: transform 0.5s var(--cubic-bezier);
}
.css-qd2zlo .css-zi8b0h .css-11619d > *,
.css-x10fnwm > a .css-zi8b0h .css-11619d > * {
  width: 1.375rem;
}
.css-zi8b0h .css-11619d .css-hidden {
  transform: translateX(-150%);
  position: absolute;
}
.css-zi8b0h .css-11619d .css-visible {
  transform: translateX(0);
}
div > a:hover .css-zi8b0h .css-11619d .css-hidden {
  transform: translateX(0);
}
div > a:hover .css-zi8b0h .css-11619d .css-visible {
  transform: translateX(150%);
}

.arrow-slider-container {
  max-width: 74rem;
  overflow: hidden;
  margin-inline: auto;
  border-radius: calc(var(--radius) * 2.25);
  background-color: rgb(var(--gray-100));
  position: relative;
}

.arrow-slider {
  display: flex;
  transition: transform 500ms var(--cubic-bezier);
  will-change: transform;
}

.arrow-slide {
  min-width: 100%;
  position: relative;
}

.arrow-slide::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 56.8%;
}

.arrow-slide > div {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.arrow-slide > div > img {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* Navigation arrows */
.arrow-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding-inline: 1.5rem;
  position: absolute;
  z-index: 10;
  top: 50%;
}

.arrow-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--gray-50));
  transition: all 0.3s var(--cubic-bezier);
  border: 1.5px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.arrow-btn:hover {
  color: rgb(var(--skyblue));
  border-color: currentColor;
}

.arrow-btn > * {
  width: 1rem;
  height: auto;
  line-height: 1em;
  display: inline-block;
  color: currentColor;
  fill: currentColor;
  transition: transform 0.5s var(--cubic-bezier);
}

.arrow-prev .css-hidden {
  transform: translateX(150%);
  position: absolute;
}
.arrow-next .css-hidden {
  transform: translateX(-150%);
  position: absolute;
}
.arrow-btn .css-visible {
  transform: translateX(0);
}
.arrow-btn:hover .css-hidden {
  transform: translateX(0);
}
.arrow-prev:hover .css-visible {
  transform: translateX(-150%);
}

.arrow-next:hover .css-visible {
  transform: translateX(150%);
}

/* Responsive design */
@media (min-width: 48rem) {
  .arrow-btn {
    width: 4rem;
    height: 4rem;
  }
  .arrow-btn svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.scroll-to-top {
  width: 3rem;
  height: 3rem;
  border-radius: calc(infinity * 1px);
  border: 1.5px solid rgb(var(--gray-800));
  color: rgb(var(--gray-800));
  cursor: pointer;
  transition: all 0.3s var(--cubic-bezier);
  position: relative;
}

.scroll-to-top > svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.tooltip {
  transform: translateX(-50%);
  background: rgb(var(--yellow));
  color: rgb(var(--navyblue));
  padding: 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.75s var(--cubic-bezier);
  margin-bottom: 5px;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
}

.tooltip:after {
  content: "";
  margin-inline-start: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(var(--yellow)) transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
}

.scroll-to-top:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

.site-footer {
  background-color: rgb(var(--gray-50));
  color: rgb(var(--gray-800));
  padding-top: 2.5rem;
  padding-bottom: 1.75rem;
  transition-duration: 0.75s;
  transition-timing-function: var(--cubic-bezier);
  transition-property: color, background, background-color;
  will-change: transform;
  overflow: hidden;
}

@media (min-width: 64rem) {
  .site-footer {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 74rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

@media (min-width: 64rem) {
  .footer-content {
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo img {
  height: 4rem;
}
.footer-logo .logo-text {
  flex-shrink: 0;
  max-width: 10rem;
  font-weight: 700;
  font-size: min(1.125rem, 2.25rem);
  overflow-wrap: break-word;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 786px;
  margin-top: 2.25rem;
  gap: 2rem;
}

.links-column {
  width: 100%;
}

@media screen and (min-width: 30rem) {
  .footer-links {
    flex-flow: row;
  }
  .links-column {
    width: 33.33%;
  }
}
@media screen and (min-width: 48rem) {
  .footer-links {
    flex-grow: 1;
  }

  .links-column {
    width: 33.33%;
  }
}

@media screen and (min-width: 62rem) {
  .footer-links {
    margin-top: 0;
  }
}

.links-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: rgb(var(--gray-700));
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.links-column a {
  font-size: 0.9375rem;
  color: rgb(var(--gray-700));
  line-height: 1rem;
}

.footer-bottom {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-flow: column-reverse;
  max-width: 74rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.footer-bottom .css-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom .css-bottom p {
  font-size: 0.8125rem;
  font-weight: 500;
}
.footer-bottom .css-social {
  display: flex;
  align-items: center;
  margin-bottom: 1.125rem;
  gap: 0.75rem;
}
.footer-bottom .css-social a {
  color: rgb(var(--gray-800));
}
.footer-bottom .css-social a > svg {
  width: 1.375rem;
  height: 1.375rem;
  fill: currentColor;
}
@media (min-width: 48rem) {
  .footer-bottom {
    align-items: flex-end;
    justify-content: space-between;
    flex-flow: row;
  }

  .footer-bottom .css-bottom {
    align-items: flex-end;
    width: calc(50% + 3.5rem);
  }
  .footer-bottom .css-social {
    margin-bottom: 0;
  }
}
/* @media (min-width: 48rem) {
  .footer-bottom {
    padding-inline-start: 5rem;
    padding-inline-end: 5rem;
  }
}
@media (min-width: 64rem) {
  .footer-bottom {
    padding-inline-start: 5rem;
    padding-inline-end: 5rem;
  }
} */

@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(
      calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
    );
  }
}
