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

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2"),
    url("../fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --font-family: "Roboto", sans-serif;
  --color-white: 255 255 255;
  --color-red: 211 63 64;
  --color-primary: 62 139 85;
  --color-secondary: 109 169 64;
  --color-gray-50: 250 250 250;
  --color-gray-100: 245 245 245;
  --color-gray-200: 229 229 229;
  --color-gray-300: 212 212 212;
  --color-gray-400: 163 163 163;
  --color-gray-500: 115 115 115;
  --color-gray-600: 82 82 82;
  --color-gray-700: 64 64 64;
  --color-gray-800: 38 38 38;
  --color-gray-900: 23 23 23;
  --gradient: linear-gradient(
    71.23deg,
    rgb(var(--color-primary) / 0.8) 33.44%,
    rgb(var(--color-primary) / 0.76) 66.56%
  );
  --gradient-1: linear-gradient(
    71.23deg,
    rgb(var(--color-primary)) 33.44%,
    rgb(var(--color-primary) / 0.9) 66.56%
  );
  --gradient-2: linear-gradient(
    71.23deg,
    rgb(var(--color-primary)) 33.44%,
    rgb(var(--color-secondary)) 66.56%
  );
  --gradient-secondary: linear-gradient(
    270deg,
    rgb(var(--color-red)) 8%,
    rgb(var(--color-secondary)) 55%,
    rgb(var(--color-primary)) 100%
  );
  --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(--color-secondary) / 0.5);
  color: rgb(var(--color-primary));
  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(--color-gray-700));
  font-weight: 400;
  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: rgb(var(--color-gray-50));
  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%;
  margin-inline-end: auto;
  margin-inline-start: auto;
  padding-inline-start: 1.25rem;
  padding-inline-end: 1.25rem;
  position: relative;
}

@media (min-width: 36rem) {
  .container {
    max-width: 33.75rem;
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}

@media (min-width: 48rem) {
  .container {
    max-width: 45.5rem;
  }
}

@media (min-width: 64rem) {
  .container {
    max-width: 61.5rem;
  }
}
@media (min-width: 75rem) {
  .container {
    max-width: 72.1875rem;
  }
}
@media (min-width: 87.5rem) {
  .container {
    max-width: 75rem;
  }
}

.no-scroll {
  overflow: hidden;
}

.overlay {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(var(--color-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;
  position: sticky;
  z-index: 10;
  left: 0;
  top: 0;
}

header .component {
  width: 100%;
  height: 0.375rem;
  background: var(--gradient-secondary);
  position: relative;
  z-index: 12;
}

header .header-main {
  width: 100%;
  color: rgb(var(--color-gray-700));
  background-color: rgb(var(--color-white));
  position: relative;
  z-index: 12;
}

header .header-main.is-active,
header .header-main.scrolled {
  box-shadow: 0 2px 8px rgba(var(--color-gray-900) / 0.1);
}

header .header-main .header-inner {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0.625rem 0;
}

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

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

.css-logo img {
  width: auto;
  height: 2.25rem;
}

@media (min-width: 48rem) {
  .css-logo img {
    height: 2.75rem;
  }
}
.css-logo .css-logo-text {
  flex-shrink: 0;
  max-width: 14rem;
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

@media (min-width: 48rem) {
  .css-logo .css-logo-text {
    font-size: 1.375rem;
  }
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: end;
}

.navlist {
  width: 100%;
  display: flex;
  flex-direction: column;
  column-gap: 1.875rem;
  row-gap: 0.75rem;
  opacity: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-inline-start: 1.25rem;
  padding-inline-end: 1.25rem;
  background-color: rgb(var(--color-primary));
  transform: translateX(100%);
  transition-property: transform, opacity;
  transition-duration: 0.75s, 0.35s;
  transition-timing-function: var(--cubic-bezier);
  position: fixed;
  top: var(--top);
  bottom: 0;
  right: 0;
  left: 0;
}

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

/* @media (min-width: 48rem) {
  .navlist {
    max-width: 45.5rem;
  }
} */

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

@media (min-width: 64rem) {
  .navlist {
    opacity: 1;
    padding: 0;
    align-items: center;
    flex-direction: row;
    background-color: transparent;
    transform: translateX(0);
    position: static;
  }
}

.navlink,
.submenu-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  font-weight: 600;
  font-size: 1.625rem;
  color: rgb(var(--color-white));
  letter-spacing: -0.03em;
  text-transform: capitalize;
  transition: color 0.35s var(--cubic-bezier);
  cursor: pointer;
  position: relative;
}

.navitem .navlink > span {
  flex-shrink: 0;
}

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

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

.submenu {
  width: 100%;
  display: flex;
  background-color: rgb(var(--color-primary));
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 5rem;
  transform: translateX(100%);
  transition-property: transform, opacity;
  transition-duration: 0.75s, 0.35s;
  transition-timing-function: var(--cubic-bezier);
  position: fixed;
  z-index: 13;
  top: var(--top);
  bottom: 0;
  right: 0;
}

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

.submenu .container {
  padding-top: 3rem;
}
.submenu .close {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: rgb(var(--color-white));
  font-weight: 600;
  position: absolute;
  left: 1.125rem;
  top: 0;
}

.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) {
  .navlink,
  .submenu-link {
    width: auto;
    display: inline-flex;
    font-size: 1.125rem;
    gap: 0.25rem;
  }
  .navlink {
    color: rgb(var(--color-gray-700));
  }
  .navitem .navlink > svg {
    display: none;
  }
  .submenu {
    transform: translateY(-200%);
    z-index: 11;
    bottom: auto;
  }
  .submenu .container {
    padding-top: 0rem;
  }
  .nav--open .submenu.is-active {
    transform: translateY(0%);
  }
  .submenu .close {
    display: none;
  }
}

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

@media screen and (min-width: 64rem) {
  .css-1qyz34j li {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.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(--color-gray-700));
  transition-timing-function: var(--cubic-bezier);
  position: absolute;
  left: 0;
}

.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;
  position: relative;
  z-index: 3;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  overflow: hidden;
}

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

.breadcrumb li:not(:last-child) {
  margin-bottom: 0 !important;
}
.breadcrumb li.breadcrumb-item {
  --color: rgb(var(--color-primary));
  color: var(--color);
  font-weight: 600;
  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.75rem;
  fill: currentColor;
}

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

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

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

.slider-container {
  width: 100%;
  height: calc(100dvb - var(--top));
  overflow: hidden;
  background-color: rgb(var(--color-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;
  inset: 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 {
  width: 100%;
  color: rgb(var(--color-white));
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
}
.slide-content .container > div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  max-width: 50rem;
  height: 100%;
}

.slide-content .container h2 {
  width: 100%;
  max-width: 40rem;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.05;
  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.125rem;
  font-weight: 300;
  line-height: 1.25rem;
  display: inline-flex;
}

.slide-content .container .css-qd2zlo {
  margin-top: 1rem;
}
.slide-content .container .css-qd2zlo .css-zi8b0h {
  color: rgb(var(--color-white));
}
/* Error State */
.slider-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100dvb - var(--top));
  background-color: rgb(var(--color-gray-600));
  color: rgb(var(--color-white));
  font-size: 1.125rem;
  line-height: 1.25rem;
  text-align: center;
  padding: 20px;
}

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

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

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

.section-banner > .container {
  height: auto;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.breadcrumb-top {
  width: 100%;
  display: none;
  padding-top: 0.75rem;
  transition-property: all;
  transition-duration: 0.75s;
  transition-timing-function: var(--cubic-bezier);
}

@media screen and (min-width: 48rem) {
  .breadcrumb-top {
    display: block;
  }
}

.css-1m4d4jx {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* padding-bottom: 3rem; */
  padding-top: 1.125rem;
}

.css-1m4d4jx:has(.css-spndscp, .css-nfqedrt) {
  padding-bottom: 0.5rem;
}

.css-1m4d4jx.split {
  margin-top: 1.5rem;
  gap: 1.125rem;
}

.block-text p:first-of-type::first-letter {
  font-weight: 500;
  line-height: 0.65;
  align-items: center;
  display: flex;
  float: left;
  justify-content: center;
  margin-right: 0.25rem;
  margin-top: 0.5rem;
  text-align: center;
  color: rgb(var(--color-primary));
  font-size: 2.75rem;
}

.button--split {
  display: flex;
  align-items: center;
  align-self: center;
}
@media screen and (min-width: 48rem) {
  .css-1m4d4jx.split {
    flex-direction: row;
    gap: 1.75rem;
  }

  .css-split {
    width: 50%;
  }
  .css-split-left {
    width: 30%;
  }
  .css-split-right {
    width: 70%;
  }

  .block-text p:first-of-type::first-letter {
    line-height: 0.9;
    margin-top: 0.15rem;
    font-size: 3.625rem;
  }
}

@media screen and (min-width: 66.875rem) {
  .css-split {
    width: 50%;
  }
}

.css-1m4d4jx h1 {
  width: 100%;
  font-weight: 600;
  font-size: 1.75rem;
  color: rgb(var(--color-gray-700));
  letter-spacing: -0.02em;
  line-height: 1.125;
}

.css-1m4d4jx .css-spndscp {
  display: block;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: rgb(var(--color-gray-500));
}

.css-1m4d4jx h1 + .css-spndscp {
  margin-top: 0.5rem;
}

.css-1m4d4jx .css-spndscp div {
  width: 100%;
  max-width: 65rem;
  letter-spacing: -0.02em;
}

.css-1m4d4jx .css-nfqedrt {
  margin-top: 1.75rem;
  padding-top: 0.625rem;
  border-top: 1px solid rgb(var(--color-gray-200));
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.css-1m4d4jx .css-nfqedrt span {
  color: rgb(var(--color-gray-500));
}

.css-1jesjge {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: 1rem;
}
.css-1m4d4jx + .css-1jesjge {
  margin-top: 1.5rem;
}
.css-1jesjge > div {
  background-color: rgb(var(--color-primary));
  overflow: hidden;
  position: relative;
}

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

.css-split .css-1jesjge > div:before {
  padding-bottom: 130%;
}

.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) {
  div .css-1m4d4jx h1 {
    line-height: 1;
  }

  .css-1m4d4jx h1 + .css-spndscp {
    margin-top: 1.375rem;
  }
}

@media screen and (min-width: 64rem) {
  div .css-1m4d4jx h1 {
    font-size: 2.875rem;
  }

  .css-1m4d4jx .css-spndscp {
    line-height: 1.2;
    font-size: 1.25rem;
  }
}

.section-banner + .section-layout {
  padding-top: 0;
}
.section-layout {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.section-layout.default {
  background: rgb(var(--color-gray-200));
}

.section-layout.inverted {
  background: rgb(var(--color-primary));
}
.section-layout.bg-gradient {
  color: rgb(var(--color-white));
  background: var(--gradient-2);
}
@media screen and (min-width: 48rem) {
  .section-layout {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

[class*="css-"] p,
[class*="css-"] li,
[class*="css-"] td {
  font-size: 1rem;
  color: rgb(var(--color-gray-700));
  line-height: 1.625rem;
  letter-spacing: 0.01em;
}
[class*="css-"] p:not(:last-child),
[class*="css-"] li:not(:last-child),
[class*="css-"] td:not(:last-child) {
  margin-bottom: 1.125rem;
}

[class*="css-"] ul + p {
  margin-top: 1.125rem;
}
@media (min-width: 64rem) {
  [class*="css-"] p,
  [class*="css-"] li,
  [class*="css-"] td {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.pagination-top {
  margin-bottom: 1.75rem;
}

.pagination-top .count {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(var(--color-gray-600));
}

.pagination {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 1.5rem;
  padding-top: 2.5rem;
}

@media screen and (min-width: 48rem) {
  .pagination {
    padding-top: 3.5rem;
  }
}

.pagination-next,
.pagination-prev {
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .pagination-next,
  .pagination-prev {
    height: 3rem;
  }
}

.pagination-next.disabled,
.pagination-prev.disabled {
  color: rgb(var(--color-gray-400));
  cursor: default;
}

.pagination-prev-link,
.pagination-next-link {
  color: rgb(var(--color-primary));
}

.pagination-prev-link:hover,
.pagination-next-link:hover {
  background-color: rgb(var(--color-secondary) / 0.2);
}

.pagination-prev,
.pagination-firstPage {
  margin-right: 0.75rem;
}

.pagination-next,
.pagination-lastPage {
  margin-left: 0.75rem;
}

.pagination-pages {
  display: flex;
  gap: 0.75rem;
}

.pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-page-link,
.pagination-page-current {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
}

.pagination-page-link {
  color: rgb(var(--color-primary));
}

.pagination-page-current {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
}

.pagination-page-link:hover,
.pagination-page-link:focus {
  background-color: rgb(var(--color-secondary) / 0.2);
  color: rgb(var(--color-primary));
}

@media (min-width: 768px) {
  .pagination-page-link,
  .pagination-page-current {
    height: 3rem;
    width: 3rem;
  }
}

.css-2gcxmez {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.css-1gcxmez {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

@media screen and (min-width: 64rem) {
  .css-1gcxmez {
    gap: 4rem;
  }
}

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

.css-1gcxmez .css-qzmxlm1 + .css-pwrjj5d {
  margin-top: 1.125rem;
}

.css-2gcxmez .css-qzmxlm1 + .css-d64kte {
  margin-top: 3rem;
}

.css-2gcxmez .css-qzmxlm1 {
  width: 100%;
  margin-inline: auto;
}

.css-2gcxmez .css-qzmxlm1 p {
  color: rgb(var(--color-white));
}

@media screen and (min-width: 36rem) {
  .css-2gcxmez .css-qzmxlm1 {
    max-width: 33.75rem;
  }
  .css-2gcxmez .css-qzmxlm1 p {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 48rem) {
  .css-1gcxmez .css-qzmxlm1 + .css-pwrjj5d {
    margin-top: 0rem;
  }
  .css-2gcxmez .css-qzmxlm1 {
    max-width: 45.5rem;
  }
  .css-2gcxmez .css-qzmxlm1 p {
    font-size: 1.25rem;
  }
  .css-2gcxmez .css-qzmxlm1 + .css-d64kte {
    margin-top: 4rem;
  }
  .css-d64ktq {
    align-self: flex-end;
  }
}
@media screen and (min-width: 64rem) {
  .css-2gcxmez .css-qzmxlm1 {
    max-width: 62.25rem;
  }
  .css-2gcxmez .css-qzmxlm1 p {
    font-size: 1.375rem;
  }
}

.css-pwrjj5d a {
  display: inline-block;
  color: rgb(var(--color-secondary));
  text-decoration: underline;
}
.css-pwrjj5d a:hover {
  color: rgb(var(--color-primary));
}
.css-pwrjj5d a .css-zi8b0h {
  transition-property: color;
}

.css-d64ktq {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media screen and (min-width: 36rem) {
  .css-d64ktq {
    margin-top: 0;
  }
}
.css-d64kte {
  display: flex;
}

.css-2gcxmez .css-d64kte {
  margin-bottom: -3.5rem;
}
@media screen and (min-width: 48rem) {
  .css-2gcxmez .css-d64kte {
    margin-bottom: -3.5rem;
  }
}
@media screen and (min-width: 80rem) {
  .css-2gcxmez .css-d64kte {
    margin-bottom: -6rem;
  }
}

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

.css-sjjdgkw {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.css-sjjdgkw::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 68.85%;
}
.css-sjjdgkw::after {
  content: "";
  position: absolute;
  inset: 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%);
}
.css-sjjdgkw .content-block {
  width: 100%;
  padding-bottom: 3rem;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}

.css-sjjdgkw .content-block .content-block-inner {
  max-width: 48rem;
  color: rgb(var(--color-white));
}

.css-sjjdgkw .content-block .content-block-inner > * {
  color: rgb(var(--color-white));
}

.css-sjjdgkw .content-block .content-block-inner > p {
  font-size: 1rem;
  line-height: 1.36;
}

.css-sjjdgkw .content-block .content-block-inner .css-qd2zlo {
  margin-top: 0.875rem;
}

.css-sjjdgkw .content-block .content-block-inner .css-qd2zlo .css-zi8b0h {
  color: rgb(var(--color-white));
}

@media screen and (min-width: 48rem) {
  .css-sjjdgkw::before {
    padding-bottom: 42.25%;
  }
  .css-sjjdgkw::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(0deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 27.65%);
  }

  .css-sjjdgkw .content-block .content-block-inner {
    width: 36rem;
  }
  .css-sjjdgkw .content-block .content-block-inner > p {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 64rem) {
  .css-sjjdgkw .content-block {
    padding-bottom: 6rem;
  }
}

.css-sjjdgkw .image-block {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.css-sjjdgkw .image-block > img {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.css-pzhjjlt {
  display: inline-flex;
}

.css-qd2zlo {
  display: inline-flex;
  margin-top: 2rem;
}

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

.css-i72aif {
  display: inline-flex;
}

.heading {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1rem;
  color: rgb(var(--color-gray-500));
  text-transform: uppercase;
}

.heading + [class*="css-text-"] {
  margin-top: 1.275rem;
}

[class*="css-text-"] {
  color: inherit;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

.css-text-lg {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.36;
}
.css-text-xl {
  width: 100%;
  font-size: 1.75rem;
  line-height: 1.25;
}
.css-text-xl + p,
.heading + p {
  margin-top: 1.875rem;
}
.css-text-xl + .heading {
  margin-top: 0.875rem;
}
.css-text-lg + p {
  margin-top: 1.375rem;
}
.css-1g3pu40 {
  width: 100%;
  max-width: 48rem;
}
@media screen and (min-width: 64rem) {
  .heading {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }

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

  .css-text-lg {
    font-size: 2rem;
    line-height: 1.16;
  }

  .css-text-xl {
    font-size: 2.875rem;
    line-height: 1.125;
  }
  .css-text-xl + p,
  .heading + p {
    margin-top: 3rem;
  }
}

.css-wslrtcq {
  width: 100%;
  max-width: 52rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: 1rem;
  margin-inline: auto;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.css-1gcxmez + .css-wslrtcq {
  margin-top: 2rem;
}

.css-wslrtcq > div {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .css-1gcxmez + .css-wslrtcq {
    margin-top: 1.125rem;
  }

  .css-wslrtcq > div {
    row-gap: 0.75rem;
    column-gap: 0rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}
.css-wslrtcq > div h3 {
  line-height: 1;
  font-weight: 500;
  font-size: 1.75rem;
  transition: all 0.3s var(--cubic-bezier);
}
@media screen and (min-width: 48rem) {
  .css-wslrtcq > div h3 {
    font-size: 2rem;
    line-height: 1;
  }
}

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

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

.css-wslrtcq > div p {
  font-weight: 500;
  font-size: 1.125rem;
  color: inherit;
  line-height: 1.25rem;
}

.css-pqednsr,
.css-x10fnwm {
  width: 100%;
  max-width: 80rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.css-2gcxmez + .css-pqednsr,
.css-1gcxmez + .css-pqednsr,
.css-1gcxmez + .css-x10fnwm,
.css-1gcxmez + .css-cjbbrvt,
.css-1gcxmez + .css-1tjjksc {
  margin-top: 2rem;
}

@media screen and (min-width: 48rem) {
  .css-2gcxmez + .css-pqednsr,
  .css-1gcxmez + .css-pqednsr,
  .css-1gcxmez + .css-x10fnwm,
  .css-1gcxmez + .css-cjbbrvt,
  .css-1gcxmez + .css-1tjjksc {
    margin-top: 3rem;
  }
}

.topic-teaser__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 48rem) {
  .topic-teaser__wrapper {
    gap: 1.125rem;
  }
}

.topic-teaser__item {
  width: 100%;
  position: relative;
}

.topic-teaser__item.topic-teaser__item--highlighted {
  flex: 1 0 100%;
  min-height: 12.5rem;
  margin-bottom: 0.25rem;
}
.topic-teaser__item__image-container {
  width: 100%;
  position: relative;
}

.topic-teaser__item__image-container::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.topic-teaser__item__image-container > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-gray-50));
  position: absolute;
  top: 0;
  left: 0;
}
.topic-teaser__item__image-container > div > img {
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.topic-teaser__item .card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  background-color: rgb(var(--color-white));
  padding: 1rem;
}

.topic-teaser__item .card-subtitle {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
  color: rgb(var(--color-gray-500));
  margin-bottom: 0.625rem;
}
.topic-teaser__item .card-subtitle.bold {
  font-weight: 500;
}

.topic-teaser__item__title {
  --font-weight: 500;
  --color: rgb(var(--color-gray-700));
  --font-size: 1.5rem;
  --line-height: 1.35;
  --spacing: 1rem;
  color: var(--color);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-weight: var(--font-weight);
  margin-bottom: var(--spacing);
}
.topic-teaser__item.topic-teaser__item--highlighted .topic-teaser__item__title {
  --font-weight: 500;
  --font-size: 1.875rem;
  --line-height: 1.2;
  --spacing: 1.5rem;
}

.topic-teaser__item .card-body .css-zi8b0h {
  margin-top: auto;
  color: rgb(var(--color-secondary));
}
.topic-teaser__item__highlight-label {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  color: rgb(var(--color-white));
  background: var(--gradient-2);
  position: absolute;
  left: 0;
  top: 1rem;
}
@media only screen and (min-width: 48rem) {
  .topic-teaser__item {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: calc(50% - 1.125rem);
  }
  .topic-teaser__item .card-body {
    padding: 1.5rem;
  }
  .topic-teaser__item .card-subtitle {
    font-size: 0.9375rem;
    line-height: 1.375rem;
    margin-bottom: 0.5rem;
  }
  .topic-teaser__item__title {
    --spacing: 1.5rem;
  }
  .topic-teaser__item__highlight-label {
    font-size: 0.875rem;
    top: 1.5rem;
  }
}

@media only screen and (min-width: 64rem) {
  .topic-teaser__item.topic-teaser__item--highlighted {
    display: flex;
    flex-flow: row;
    min-height: 18.75rem;
  }
  .topic-teaser__item.topic-teaser__item--highlighted
    .topic-teaser__item__image-container {
    width: 50%;
    flex: 1 0 50%;
  }
}

.css-scroll-snap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(18rem, 100%), 1fr));
  align-items: stretch;
  column-gap: 1.25rem;
  row-gap: 2.25rem;
}

.css-scroll-item {
  cursor: pointer;
  overflow: hidden;
  color: rgb(var(--color-gray-700));
  position: relative;
}

.section-layout.inverted .css-scroll-item {
  color: rgb(var(--color-white));
}

.css-scroll-item > .css-jn0q9w {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.css-scroll-item > .css-jn0q9w > [class*="css-"] {
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.css-scroll-item > .css-jn0q9w > [class*="css-"]::before {
  height: 0px;
  content: "";
  display: block;
}

.css-scroll-item > .css-jn0q9w > .css-1ewxxaj::before {
  padding-bottom: 56.25%;
}

.css-scroll-item > .css-jn0q9w > .css-1r0kfpy::before {
  padding-bottom: 130%;
}

.css-scroll-item > .css-jn0q9w > [class*="css-"] > div {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-gray-50));
  position: absolute;
  top: 0;
  left: 0;
}

.section-layout.inverted
  .css-scroll-item
  > .css-jn0q9w
  > [class*="css-"]
  > div {
  background-color: rgb(var(--color-secondary));
}

.css-scroll-item > .css-jn0q9w > [class*="css-"] .css-0 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 500;
}

.css-scroll-item > .css-jn0q9w > [class*="css-"] .css-1 img {
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.css-scroll-item > .css-jn0q9w .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

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

.css-scroll-item > .css-jn0q9w .content .content-inner .css-j6dog8 {
  color: rgb(var(--color-gray-400));
  font-weight: 500;
  font-size: 0.8125rem;
  margin-bottom: 0.625rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.css-scroll-item > .css-jn0q9w .content .content-inner .css-j6dog9 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.css-scroll-item > .css-jn0q9w .content .content-inner p {
  font-size: 1rem;
  color: rgb(var(--color-gray-500));
  line-height: 1.5rem;
  margin-top: 0.625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.css-scroll-item > .css-jn0q9w .content .content-inner .css-dtfns {
  font-weight: 400;
  font-size: 0.875rem;
  color: rgb(var(--color-gray-700));
  margin-top: 0.625rem;
}

.css-scroll-item > .css-jn0q9w .content .css-zi8b0h {
  margin-top: 2rem;
  color: rgb(var(--color-gray-500));
  transition-property: color;
}
.css-scroll-item > .css-jn0q9w:hover .content .css-zi8b0h {
  color: rgb(var(--color-primary));
}

@media (min-width: 48rem) {
  .css-scroll-item > .css-jn0q9w .content .css-dtfns {
    margin-top: 8rem;
  }
}

.section-layout.inverted .css-scroll-item > .css-jn0q9w .content .css-dtfns {
  color: rgb(var(--color-gray-50));
}

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

.css-pqednsr .marquee .marquee-list .marquee-item img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* filter: brightness(100%) contrast(100%) saturate(0%) blur(0px)
    hue-rotate(0deg); */
  transition: all 0.3s var(--cubic-bezier);
}
/* .css-pqednsr .marquee .marquee-list .marquee-item:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
    hue-rotate(0deg);
  transform: scale(1.05);
} */

.css-8inwkk {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.125rem;
}

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

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

.css-10klw4m .css-img {
  max-width: 100%;
  min-width: 100%;
}

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

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

@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%;
    order: 2;
  }
  .css-7c3snx {
    flex: 0 0 50%;
    width: 50%;
    order: 1;
  }
  .css-jd3qco {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 64rem) {
  .css-7c3snx {
    padding-inline-start: 0.625rem;
  }

  .css-jd3qco {
    font-size: 1.125rem;
  }
}

.css-wxlq5hf + .css-12ih7m {
  margin-top: 2rem;
}

.css-wxlq5hf {
  flex-basis: 100%;
  width: 100%;
}

.css-wxlq5hf .css-text-xl {
  padding-top: 0.75rem;
}
@media screen and (min-width: 64rem) {
  .css-wxlq5hf {
    flex-basis: 76%;
    width: 76%;
    margin-inline: auto;
  }

  .css-wxlq5hf + .css-12ih7m {
    margin-top: 3rem;
  }
}

.css-wxlq5hf a {
  color: rgb(var(--color-secondary));
  display: inline-block;
}

.css-wxlq5hf a:hover {
  color: rgb(var(--color-primary));
  text-decoration: underline;
}

.css-wxlq6gy {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
  margin-top: 3.25rem;
  gap: 1.25rem;
}

.css-wxlq6gy > a {
  background-color: rgb(var(--color-primary));
  overflow: hidden;
  position: relative;
}
.css-wxlq6gy > a:before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 78.25%;
}
.css-wxlq6gy > a:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.67) 0%,
    rgba(0, 0, 0, 0) 47.65%
  );
}
.css-wxlq6gy > a > img {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
}
.css-wxlq6gy > a .content {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  transition: all 0.75s var(--cubic-bezier);
  padding: 1.5rem;
  position: absolute;
  z-index: 1;
  inset: 2px;
}
.css-wxlq6gy > a .content .content-header {
  display: flex;
  flex-direction: column;
  color: rgb(var(--color-white));
  gap: 1rem;
}
.css-wxlq6gy > a .content .content-header p,
.css-wxlq6gy > a .content .css-zi8b0h {
  opacity: 0;
  transition: opacity 0.75s var(--cubic-bezier);
}
.css-wxlq6gy > a .content .content-header p {
  font-weight: 500;
  font-size: 1rem;
  color: inherit;
  line-height: 1.2;
}
.css-wxlq6gy > a .content .css-zi8b0h {
  margin-top: auto;
  color: rgb(var(--color-gray-200));
}
.css-wxlq6gy > a:hover .content .content-header p,
.css-wxlq6gy > a:hover .content .css-zi8b0h {
  opacity: 1;
}
.css-wxlq6gy > a:hover .content {
  background-color: rgb(var(--color-primary));
}
@media screen and (min-width: 64rem) {
  .css-wxlq6gy {
    margin-top: 5.6rem;
  }
}

.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-djgayjy h2 {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 1.625rem;
}

@media screen and (min-width: 64rem) {
  .css-djgayjy h2 {
    font-size: 2.5rem;
    letter-spacing: 0.01em;
    line-height: 1.35;
    margin-bottom: 3.25rem;
  }
}

.css-cjbbrvt {
  width: 100%;
  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;
  background-color: rgb(var(--color-primary));
  position: absolute;
  inset: 0;
}

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

.css-1tjjksc {
  width: 100%;
  max-width: 50rem;
  font-size: 1.125rem;
  line-height: 1.8125rem;
  color: rgb(var(--color-gray-700));
  letter-spacing: 0.02em;
}

.css-x10fnwm {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  gap: 1rem;
}
.css-x10fnwm > a {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(var(--color-gray-200));
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
  gap: 1.25rem;
}

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

.css-x10fnwm > a .css-16eprl9 .css-1vdp24e {
  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 {
    flex-direction: row;
  }
  .css-x10fnwm > a {
    width: 50%;
    padding-bottom: 0.8125rem;
    padding-top: 0.8125rem;
  }
  .css-x10fnwm > a .css-16eprl9 {
    display: flex;
  }
}
@media screen and (min-width: 64rem) {
  .css-x10fnwm > a {
    width: 33.33%;
  }
  .css-x10fnwm > a .css-16eprl9 .css-1vdp24e {
    font-size: 1.125rem;
  }
}

.css-12ih7m {
  width: 100%;
  flex-basis: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(16rem, 100%), 1fr));
  column-gap: 1.5rem;
  row-gap: 1.25rem;
}

@media screen and (min-width: 64rem) {
  .css-12ih7m {
    flex-basis: 76%;
    width: 76%;
    margin-inline: auto;
  }
}

.css-evq0tx {
  column-count: auto;
  column-gap: normal;
}
.css-evq0tx p {
  font-size: 0.9375rem;
  line-height: 1.36;
}
.css-evq0tx p a {
  color: rgb(var(--color-secondary));
  display: inline-block;
  transition: color 0.35s var(--cubic-bezier);
}
.css-evq0tx p a:hover {
  color: rgb(var(--color-primary));
  text-decoration: underline;
}
.css-18klm8jk {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(2.5rem, 100%), 1fr));
  margin-top: 0.625rem;
  gap: 1rem;
}
.css-18klm8jk > a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-gray-600));
  transition: all 0.35s var(--cubic-bezier);
}

.css-18klm8jk > a:hover {
  color: rgb(var(--color-primary));
}
.css-18klm8jk > a > svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
@media screen and (min-width: 30rem) {
  .css-18klm8jk {
    max-width: 12.5rem;
    margin-top: 0;
  }
}

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

.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(--color-white));
  transition: color 0.75s var(--cubic-bezier);
  position: absolute;
  z-index: 10;
  right: 1.5rem;
  top: 1.5rem;
}
.popup--vid .exit:hover {
  color: rgb(var(--color-secondary));
}
.popup--vid .exit > svg {
  width: 1rem;
  fill: currentColor;
}

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

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .popup--vid .exit {
    top: 30px;
    right: 30px;
    font-size: 28px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .popup--vid iframe {
    width: 90%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .popup--vid iframe {
    width: 80%;
    max-width: 1200px;
  }

  .popup--vid .exit {
    top: 40px;
    right: 40px;
    font-size: 32px;
  }
}

/* Buttons */
.css-zi8b0h {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  display: inline-flex;
  align-items: center;
  transition-duration: 0.75s;
  transition-timing-function: var(--cubic-bezier);
  gap: 1.125rem;
}

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

.arrow-slider-container {
  width: 100%;
  max-width: 74rem;
  overflow: hidden;
  margin-inline: auto;
  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: 46.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(--color-gray-50));
  transition: all 0.3s var(--cubic-bezier);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.arrow-btn:hover {
  color: rgb(var(--color-secondary));
}

.arrow-btn svg {
  width: 1.625rem;
  height: 1.625rem;
  line-height: 1em;
  display: inline-block;
  color: currentColor;
  fill: currentColor;
}

.scroll-to-top {
  width: 3rem;
  height: 3rem;
  border-radius: calc(infinity * 1px);
  border: 1.5px solid rgb(var(--color-gray-800));
  color: rgb(var(--color-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(--color-secondary));
  color: rgb(var(--color-white));
  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 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-gray-900));
  overflow: hidden;
}

.site-footer .top {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--gradient-1);
}
@media screen and (min-width: 48rem) {
  .site-footer .top {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.footer_top--component {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.footer_top--component > div {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.footer_top--component > div:nth-child(:last-child) {
  margin-bottom: 0;
}
@media screen and (min-width: 48rem) {
  .footer_top--component > div {
    width: 50%;
  }
  .footer_top--component > div:nth-child(n + 3):nth-child(-n + 4) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 64rem) {
  .footer_top--component > div {
    width: 25%;
    margin-bottom: 0;
  }
}

.footer_top--component .css-text-sm {
  color: rgb(var(--color-white));
  font-weight: 700;
}

.footer_top--component > div > ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer_top--component > div > ul li a {
  display: inline-block;
  font-size: 1rem;
  line-height: 2.25rem;
  transition: all 0.35s var(--cubic-bezier);
}
.footer_top--component > div > ul li a:hover {
  color: rgb(var(--color-gray-300));
}
@media screen and (min-width: 36rem) {
  .footer_top--component .css-text-sm {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 48rem) {
  .footer_top--component .css-text-sm {
    font-size: 1.25rem;
  }
  .footer_top--component > div > ul li a {
    font-size: 1.125rem;
  }
}

.footer_top--component .footer_social {
  width: 10rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  column-gap: 1.25rem;
  row-gap: 0.625rem;
}
@media screen and (min-width: 64rem) {
  .footer_top--component .footer_social {
    margin-top: 2.5rem;
  }
}
.footer_top--component .footer_social a > svg {
  width: 1.375rem;
  height: 1.375rem;
  fill: currentColor;
  transition: all 0.35s var(--cubic-bezier);
}
.footer_top--component .footer_social a:hover > svg {
  fill: rgb(var(--color-gray-300));
}
@media screen and (min-width: 48rem) {
  .footer_top--component .footer_social a > svg {
    width: 1.625rem;
    height: 1.625rem;
  }
}
@media screen and (min-width: 64rem) {
  .footer_top--component .footer_social a > svg {
    width: 2rem;
    height: 2rem;
  }
}
.site-footer .bottom {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: var(--gradient);
}

.footer_bottom--component {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer_copy {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer_copy li {
  font-size: 0.875rem;
  line-height: 1.375;
}

.footer_copy li:hover > * {
  color: rgb(var(--color-gray-300));
}

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

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