@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;
  --primary: rgb(0, 163, 224);
  --neutral-50: rgb(250, 250, 250);
  --neutral-100: rgb(245, 245, 245);
  --neutral-200: rgb(229, 229, 229);
  --neutral-300: rgb(212, 212, 212);
  --neutral-400: rgb(163, 163, 163);
  --neutral-500: rgb(115, 115, 115);
  --neutral-600: rgb(82, 82, 82);
  --neutral-700: rgb(64, 64, 64);
  --neutral-800: rgb(38, 38, 38);
  --neutral-900: rgb(23, 23, 23);

  --cubic-bezier: cubic-bezier(0.35, 1, 0.45, 1);
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
}

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

::selection {
  background-color: var(--primary);
  color: var(--neutral-50);
  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: var(--neutral-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: var(--neutral-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%;
  max-width: 74rem;
  margin-inline: auto;
  padding-inline: 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;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
}

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

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

header .css-header-main.scrolled {
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  box-shadow: 0 2px 8px rgba(0 0 0/ 0.15);
}
header .css-header-main.scrolled.is-active,
header .css-header-main.scrolled.is-active {
  color: var(--neutral-50);
}

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

header .css-header-main .css-header-inner .logo {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
}

.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: var(--neutral-800);
  transform: translateX(100%);
  transition-property: transform, opacity;
  transition-duration: 0.75s, 0.35s;
  transition-timing-function: var(--cubic-bezier);
  position: fixed;
  inset: 0;
}

.css-navlist.is-active {
  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);
    position: static;
  }
}
.css-navitem {
  overflow: hidden;
}

.css-navlink {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.036em;
  line-height: 2rem;
  position: relative;
}

@media (min-width: 64rem) {
  .css-navlink {
    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-navlink:hover {
  background-size: 100% 1px;
  color: var(--primary);
  outline: none;
}

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

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

header .css-header-main.is-active .js-menu-toggle .line::before,
header .css-header-main.is-active .js-menu-toggle .line::after {
  background: var(--neutral-50);
}

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

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

.section-banner > .container {
  height: auto;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
}

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

.css-zxpognh {
  width: 100%;
  overflow: hidden;
  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;
}

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

@media screen and (min-width: 48rem) {
  .content-wrapper .css-dwrfkng {
    padding-inline-start: 2rem;
    padding-inline-end: 2rem;
  }
}

@media (min-width: 64rem) {
  .content-wrapper .css-dwrfkng {
    padding-inline-start: 3rem;
    padding-inline-end: 3rem;
  }
}
.css-1m4d4jx {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--neutral-50);
}

.css-dwrfkng .css-1m4d4jx h1 {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.css-dwrfkng .css-1m4d4jx {
  max-width: 36.375rem;
}

.css-1m4d4jx .css-spndscp {
  max-width: 100%;
  display: block;
  line-height: 1.5;
  font-size: 1.125rem;
  padding-inline-end: 1rem;
  margin-bottom: 1.25rem;
  text-wrap: pretty;
}

.css-1m4d4jx .css-i72aif {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 48rem) {
  .css-dwrfkng .css-1m4d4jx h1 {
    font-size: 2.375rem;
    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 {
    font-size: 2.4375rem;
  }

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

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

.section-layout.pt {
  padding-top: 1rem;
}
.section-layout.pt-1\.5 {
  padding-top: 1.5rem;
}
.section-layout.alt {
  background: var(--neutral-100);
}
@media screen and (min-width: 48rem) {
  .section-layout {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

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

[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 {
  width: 100%;
  max-width: 36.68rem;
  font-size: 1.5rem;
  line-height: 1.4;
}

.css-text-lg {
  width: 100%;
  max-width: 46.86rem;
  font-size: 1.75rem;
  margin-bottom: 1.375rem;
  line-height: 1.3;
}

.css-1g3pu40 > p {
  font-size: 1rem;
  font-weight: 300;
  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-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-djgayjy {
  width: 100%;
  /* max-width: 68rem;
  margin-inline: auto; */
}

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

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

.css-djgayjy h2 {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin-bottom: 1.125rem;
}

.css-djgayjy p,
.css-djgayjy li,
.css-djgayjy td {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.01em;
  margin-bottom: 1.125rem;
}

@media screen and (min-width: 62rem) {
  .css-djgayjy h1 {
    font-size: 2.375rem;
    letter-spacing: 0.01em;
    line-height: 1.35;
    margin-bottom: 2.75rem;
  }
  .css-djgayjy h2 {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
  }

  .css-djgayjy p,
  .css-djgayjy li,
  .css-djgayjy td {
    font-size: 1.0625rem;
  }
}

.css-dhsplco {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline: auto;
  gap: 3rem;
}

.css-dhsplco > div {
  width: 100%;
  background-color: var(--neutral-50);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
}

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

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

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

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

.css-dhsplco > div .css-1r0kfpy {
  background-color: var(--neutral-200);
  margin-bottom: 1rem;
  position: relative;
}

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

.css-dhsplco > div .css-1r0kfpy .css-10klw3m {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.css-dhsplco > div .css-1r0kfpy .css-10klw3m 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: 500;
  font-size: 1.125rem;
  color: var(--primary);
  padding-inline: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.4;
}

.css-dhsplco > div .css-jn0q9w {
  display: flex;
  flex-direction: column;
  padding-inline: 1.25rem;
  padding-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.css-likw0oh {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: var(--neutral-600);
  margin-bottom: 0.5rem;
}

.css-1ifjwmd p,
.css-1ifjwmd li,
.css-1ifjwmd td {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-bottom: 0.25rem;
}

.css-1ifjwmd li {
  display: flex;
  gap: 0.375rem;
}
.css-1ifjwmd li::before {
  width: 0;
  height: 0;
  content: "";
  display: block;
  margin-top: 0.5rem;
  border: 1.5px solid var(--neutral-800);
}

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

.css-fyhggzt {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline: auto;
  gap: 3rem;
}

.css-fyhggzt > div {
  width: 100%;
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--neutral-50);
  color: var(--neutral-700);
  line-height: 1.625rem;
  padding: 1.25rem;
}

@media screen and (min-width: 30rem) {
  .css-fyhggzt {
    column-gap: 1.25rem;
    row-gap: 2.25rem;
  }

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

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

footer {
  padding-top: 3.5rem;
}

footer .top {
  padding-bottom: 2rem;
}

footer .top .container > div {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

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

footer .bottom {
  text-align: center;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  padding: 1rem 0;
}
