/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

:root {
  --color-primary: #002332;
  --color-secondary: #4F606E;
  --body-background-color-rgb: 245, 246, 250;
  --body-background-color: rgb(var(--body-background-color-rgb));
  --body-color: var(--color-primary);
  --typography-base-font: "Figtree", serif;
  --typography-heading-line-height: 1.25;
  --typography-h1-font-size: 36px;
  --typography-h1-font-weight: 700;
  --typography-h1-line-height: var(--typography-heading-line-height);
  --typography-h2-font-size: 30px;
  --typography-h2-font-weight: 500;
  --typography-h2-line-height: 1.1;
  --typography-h3-font-size: 25px;
  --typography-h3-font-weight: 500;
  --typography-h3-line-height: var(--typography-heading-line-height);
  --typography-paragraph-font-size: 16px;
  --typography-paragraph-font-weight: 300;
  --typography-paragraph-line-height: 1.25;
  --brand-color-home-assistant-blue: #18BCF2;
  --card-background-color-dark-blue-gradient: linear-gradient(118deg, #03161C 14.89%, #002332 83.09%);
  --card-background-color-light-blue-gradient: linear-gradient(90deg, #0898C7 0%, #006BA8 100%);
  --card-background-color-white-gradient: linear-gradient(94deg, rgba(255, 255, 255, 0.70) 0%, rgba(242, 244, 249, 0.70) 50%, rgba(249, 249, 252, 0.70) 100%);
  --layout-container-max-width: 1360px;
  --layout-container-padding: 16px;
  --layout-columns-gap: 16px 32px;
}

@media (min-width: 500px) {
  :root {
    --typography-h1-font-size: 45px;
  }
}
@media (min-width: 768px) {
  :root {
    --typography-h1-font-size: 60px;
    --typography-h2-font-size: 40px;
    --typography-h3-font-size: 30px;
    --typography-paragraph-font-size: 18px;
    --layout-container-padding: 24px;
    --layout-columns-gap: 16px 48px;
  }
}
@media (min-width: 1024px) {
  :root {
    --typography-h1-font-size: 100px;
    --typography-h2-font-size: 70px;
    --typography-h3-font-size: 48px;
    --typography-paragraph-font-size: 20px;
    --layout-container-padding: 40px;
    --layout-columns-gap: 16px 64px;
  }
}
body {
  font-family: var(--typography-base-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  transition: font-size 0.15s ease-out;
}

h1 {
  font-size: var(--typography-h1-font-size);
  font-weight: var(--typography-h1-font-weight);
  line-height: var(--typography-h1-line-height);
}

h2 {
  font-size: var(--typography-h2-font-size);
  font-weight: var(--typography-h2-font-weight);
  line-height: var(--typography-h2-line-height);
}

h3 {
  font-size: var(--typography-h3-font-size);
  font-weight: var(--typography-h3-font-weight);
  line-height: var(--typography-h3-line-height);
}

h4 {
  font-size: var(--typography-h4-font-size);
  font-weight: var(--typography-h4-font-weight);
  line-height: var(--typography-h4-line-height);
}

h5 {
  font-size: var(--typography-h5-font-size);
  font-weight: var(--typography-h5-font-weight);
  line-height: var(--typography-h5-line-height);
}

h6 {
  font-size: var(--typography-h6-font-size);
  font-weight: var(--typography-h6-font-weight);
  line-height: var(--typography-h6-line-height);
}

p {
  font-size: var(--typography-paragraph-font-size);
  font-weight: var(--typography-paragraph-font-weight);
  line-height: var(--typography-paragraph-line-height);
}

p:not(:last-child) {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 800;
}

a:not(.button) {
  align-self: flex-start;
  text-decoration: none;
  position: relative;
  color: initial;
}
a:not(.button):after {
  content: "";
  left: 0;
  width: 0%;
  height: 1px;
  position: absolute;
  top: calc(100% + 2px);
  background-color: var(--color-primary);
  transition: width 0.3s ease-out;
}
a:not(.button):hover:after {
  width: 100%;
}

[data-copy] {
  display: block;
  padding: 1rem;
  cursor: pointer;
}
[data-copy].copied {
  pointer-events: none;
}

html {
  scroll-padding-top: 100px;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 130px;
  }
}
@media (min-width: 1280px) {
  html {
    scroll-padding-top: 150px;
  }
}

body {
  background-color: var(--body-background-color);
  color: var(--body-color);
}

:root {
  --burger-bar-height: 2px;
  --burger-bar-width: 18px;
  --burger-border-radius: 2px;
  --burger-bar-spacing: 6px;
  --burger-bar-color: var(--body-color);
  --burger-transition-speed: 0.1s;
}

.burger {
  display: inline-block;
  height: calc(var(--burger-bar-height) * 2 + var(--burger-bar-spacing) * 2 - var(--burger-bar-height));
  width: var(--burger-bar-width);
  position: relative;
  cursor: pointer;
}
.burger:before {
  content: "";
  position: absolute;
  inset: -8px;
}
.burger span {
  background-color: var(--burger-bar-color);
  border-radius: var(--burger-border-radius);
  height: var(--burger-bar-height);
  width: var(--burger-bar-width);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color var(--burger-transition-speed);
}
.burger span:before, .burger span:after {
  background-color: var(--burger-bar-color);
  content: " ";
  height: var(--burger-bar-height);
  width: 100%;
  border-radius: var(--burger-border-radius);
  position: absolute;
  transition: transform var(--burger-transition-speed), top var(--burger-transition-speed), bottom var(--burger-transition-speed);
}
.burger span:before {
  top: calc(-1 * var(--burger-bar-spacing));
}
.burger span:after {
  bottom: calc(-1 * var(--burger-bar-spacing));
}
.burger.active span {
  background-color: transparent;
}
.burger.active span:before, .burger.active span:after {
  transform-origin: 50% 50%;
}
.burger.active span:before {
  transform: rotate(45deg);
  top: 0;
}
.burger.active span:after {
  transform: rotate(-45deg);
  bottom: 0;
}

.container {
  margin: 0 auto;
  max-width: var(--layout-container-max-width);
  width: 100%;
  padding: 0 var(--layout-container-padding);
}
.container .inner {
  margin: 0 auto;
  max-width: 1130px;
  width: 100%;
}

.cols {
  display: flex;
  flex-wrap: wrap;
  gap: var(--layout-columns-gap);
}
.cols .col {
  flex: 1;
}

.button {
  background: var(--brand-color-home-assistant-blue);
  border-radius: 40px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0);
  color: #FFFFFF;
  display: inline-flex;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 30px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out, background-position 0.3s ease-in-out;
}
.button.animated {
  background: linear-gradient(259deg, #0C88C8 -14.63%, #57FFC1 104.2%);
  background-size: 300% 300%;
  animation: gradient 5s ease-in-out infinite;
}
.button.animated:hover {
  animation-play-state: paused;
}
@media (min-width: 1024px) {
  .button.large {
    padding: 16px 40px;
    font-size: 24px;
  }
}
.button:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}
.header {
  padding: 20px 0;
  width: 100%;
  isolation: isolate;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(var(--body-background-color-rgb), 0.5);
  backdrop-filter: blur(10px);
  transition: padding 0.25s;
}
@media (min-width: 768px) {
  .header {
    padding: 30px 0;
  }
}
@media (min-width: 1280px) {
  .header {
    padding: 40px 0;
  }
}
.header .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 30px;
  z-index: 1;
}
.header .container > .cta,
.header .container > .nav {
  display: none;
}
@media (min-width: 1024px) {
  .header .container > .cta,
  .header .container > .nav {
    display: flex;
  }
}
.header .mobile-menu {
  display: flex;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: -1;
  padding-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .mobile-menu:before {
  background-color: var(--body-background-color);
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.header .mobile-menu:after {
  background-color: var(--body-background-color);
  content: "";
  position: absolute;
}
.header .mobile-menu .nav {
  flex-direction: column;
  padding: 20px 0;
  gap: 10px;
}
.header .mobile-menu .nav a {
  align-self: unset;
}
.header .logo {
  height: 30px;
}
.header .nav {
  align-items: center;
  display: flex;
  gap: 40px;
}
.header .nav-item {
  text-decoration: none;
  color: inherit;
  padding: 10px 10px;
  position: relative;
}
.header .nav-item:after {
  content: "";
  left: 10px;
  width: 0%;
  height: 1px;
  background-color: var(--body-color);
  position: absolute;
  top: calc(100% - 8px);
  transition: width 0.25s;
}
.header .nav-item:hover:after {
  width: calc(100% - 20px);
}
.header.open .mobile-menu {
  pointer-events: all;
  opacity: 1;
}
.header.open .mobile-menu,
.header.open .mobile-menu .nav,
.header.open .mobile-menu .cta {
  display: flex;
}
.header .burger {
  justify-self: flex-end;
}
@media (min-width: 1024px) {
  .header .burger {
    display: none;
  }
  .header .cta {
    display: block;
  }
  .header .nav {
    display: flex;
  }
}

.footer {
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .footer {
    padding: 100px 0;
  }
}
.footer .cols .col:first-child {
  flex-grow: 1;
}
.footer .cols .col:last-child {
  flex-grow: 0;
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  text-wrap: balance;
  gap: 10px;
}
@media (min-width: 1024px) {
  .footer .footer-contact {
    font-size: 20px;
  }
}
.footer .footer-contact strong {
  font-weight: 600;
}

.sticky-scroll {
  height: 300vh;
}
.sticky-scroll-inner {
  position: sticky;
  top: 0;
}

.wrapper {
  position: relative;
  overflow: hidden;
}
.wrapper .bg-lines {
  background-image: url(/img/lines-m.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  position: absolute;
  inset: 0;
  max-height: 22rem;
}
@media (min-width: 768px) {
  .wrapper .bg-lines {
    background-image: url(/img/lines.svg);
    background-size: 250% 50%;
    max-height: unset;
  }
}
.wrapper:before, .wrapper:after {
  --to: top;
  content: "";
  position: absolute;
  height: 10%;
  left: 0;
  right: 0;
  background: linear-gradient(to var(--to), rgba(255, 255, 255, 0) 0%, var(--body-background-color) 100%);
}
.wrapper:before {
  top: 0;
}
.wrapper:after {
  --to: bottom;
  bottom: 0;
}
.wrapper-a {
  background: url("/img/blue-gradient-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapper-b {
  background: url("/img/mesh.webp");
  background-repeat: no-repeat;
  background-position: 5% 50%;
}
@media (min-width: 1024px) {
  .wrapper-b {
    background-size: cover;
    background-position: center;
  }
}
.wrapper-b section:last-child {
  margin-bottom: 0;
}
.wrapper section {
  position: relative;
  z-index: 1;
}

section + .wrapper section {
  margin-top: 0;
}

section.hero {
  align-items: center;
  margin: 60px 0;
  text-align: center;
}
section.hero:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 1024px) {
  section.hero {
    margin: 60px 0;
  }
  section.hero:before {
    background-size: auto;
  }
}
section.hero .subtitle {
  color: var(--brand-color-home-assistant-blue);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 30px;
  justify-content: center;
  font-weight: 400;
  margin-top: 28px;
}
@media (min-width: 1024px) {
  section.hero .subtitle {
    gap: 2rem;
  }
}
section.hero .subtitle div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
}
section.hero .subtitle img {
  max-width: 160px;
}
@media (min-width: 1024px) {
  section.hero .subtitle img {
    margin-left: 0.75rem;
    max-width: 356px;
  }
}
section.hero .subtitle .ohf-tagline {
  font-size: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  section.hero .subtitle .ohf-tagline {
    align-items: center;
    flex-direction: row;
    font-size: 30px;
  }
}

section.purpose {
  z-index: unset;
  margin: 60px 0;
}
@media (min-width: 1024px) {
  section.purpose {
    margin: 200px 0 200px 0;
  }
}
section.purpose .container {
  display: flex;
}
section.purpose .inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
@media (min-width: 768px) {
  section.purpose .inner {
    flex-direction: row;
  }
}
section.purpose .purpose-content {
  max-width: 440px;
  width: 100%;
  font-size: 20px;
}
section.purpose .purpose-content p {
  color: #6E7B91;
  font-weight: 400;
}
section.purpose .purpose-content p:last-of-type {
  margin-bottom: 0;
}
section.purpose .purpose-content .button {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  section.purpose .purpose-content .button {
    margin-top: 60px;
  }
}
section.purpose .purpose-graphic {
  aspect-ratio: 1.5/1;
  width: 100%;
  position: relative;
  z-index: -1;
  order: -1;
}
@media (min-width: 768px) {
  section.purpose .purpose-graphic {
    aspect-ratio: 2/1;
    order: 1;
  }
}
section.purpose .purpose-graphic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 160%;
}
@media (min-width: 1024px) {
  section.purpose .purpose-graphic img {
    width: 115%;
    top: 40%;
  }
}

section.logo-slider {
  margin: 60px 0;
}
@media (min-width: 1024px) {
  section.logo-slider {
    margin: 150px 0;
  }
}
section.logo-slider .container {
  padding: 0;
}
section.logo-slider .swiper:before, section.logo-slider .swiper:after {
  --to: left;
  content: "";
  background: linear-gradient(to var(--to), transparent 0%, var(--body-background-color) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  width: 5rem;
  z-index: 2;
}
section.logo-slider .swiper:before {
  left: 0;
}
section.logo-slider .swiper:after {
  --to: right;
  right: 0;
}
section.logo-slider .swiper-wrapper {
  display: flex;
  justify-content: stretch;
  transition-timing-function: ease-in-out;
}
section.logo-slider .swiper-slide {
  height: 100%;
  border-radius: 20px;
  background-color: #ffffff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  user-select: none;
  justify-content: center;
  padding: 1rem;
}
section.logo-slider .swiper-slide a {
  align-self: unset;
}
section.logo-slider .swiper-slide a:after {
  content: unset;
}
section.logo-slider .swiper-slide img {
  max-width: 120px;
}

section.benefits {
  margin: 60px 0;
}
@media (min-width: 1024px) {
  section.benefits {
    margin: 150px 0;
  }
}
section.benefits > .container {
  padding: 0;
}
@media (min-width: 1024px) {
  section.benefits > .container {
    padding: 0 var(--layout-container-padding);
  }
}
section.benefits .benefits-card {
  max-width: 1280px;
  aspect-ratio: 1360/800;
  background: url("/img/globe-bg.webp") no-repeat;
  color: #ffffff;
  background-position: 85% 0;
  background-size: cover;
  padding: 60px 0 200px 0;
  width: 100%;
}
@media (min-width: 1024px) {
  section.benefits .benefits-card {
    background-position: 100% 5%;
  }
}
section.benefits .benefits-card h2 {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  section.benefits .benefits-card h2 {
    margin-bottom: 60px;
  }
}
section.benefits .benefits-card .cols {
  flex-direction: column;
}
@media (min-width: 1024px) {
  section.benefits .benefits-card .cols {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  section.benefits .benefits-card {
    padding: 100px 0;
    border-radius: 40px;
  }
}
section.benefits .benefits-card img {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  section.benefits .benefits-card img {
    margin-top: 40px;
  }
}

section.requirements {
  margin: 60px 0;
}
@media (min-width: 1024px) {
  section.requirements {
    margin: 150px 0;
  }
}
section.requirements h2 {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 1024px) {
  section.requirements h2 {
    margin-bottom: 60px;
  }
}
section.requirements .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  section.requirements .cards {
    display: grid;
    grid-template-areas: "c1 c1 c2 c2 c3 c3" "c4 c4 c4 c5 c5 c5" "c6 c6 c6 c5 c5 c5";
  }
}
section.requirements .cards .card {
  background: var(--card-background-color-white-gradient);
  border: 1px solid #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
@media (min-width: 1024px) {
  section.requirements .cards .card {
    border-radius: 20px;
    gap: 20px;
    padding: 40px;
  }
}
section.requirements .cards .card:nth-child(1) {
  grid-area: c1;
}
section.requirements .cards .card:nth-child(2) {
  grid-area: c2;
}
section.requirements .cards .card:nth-child(3) {
  grid-area: c3;
}
section.requirements .cards .card:nth-child(4) {
  grid-area: c4;
}
section.requirements .cards .card:nth-child(5) {
  grid-area: c5;
}
section.requirements .cards .card:nth-child(6) {
  grid-area: c6;
}
section.requirements .cards .card:nth-child(7) {
  grid-area: c7;
}
section.requirements .cards .card.active {
  background: var(--card-background-color-light-blue-gradient);
  color: #ffffff;
}
section.requirements .cards .card.active .description {
  color: #ffffff;
  font-weight: 300;
}
section.requirements .cards .card .title {
  line-height: var(--typography-h2-line-height);
  font-size: 20px;
  font-weight: 600;
}
section.requirements .cards .card .description {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: #6E7B91;
}
section.requirements .cards .card .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  section.requirements .cards .card .items .item {
    padding: 10px 20px;
  }
}
section.requirements .cards .card .items .title {
  margin-bottom: 8px;
}
section.requirements .requirements-row {
  display: flex;
}
section.requirements .requirements-row .content {
  max-width: 240%;
  width: 100%;
}

section.cta-text {
  font-family: var(--typography-base-font);
  font-weight: var(--typography-h3-font-weight);
  line-height: var(--typography-h3-line-height);
  font-size: var(--typography-h3-font-size);
  margin: 60px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  section.cta-text {
    margin: 150px 0;
  }
}
@media (min-width: 1024px) {
  section.cta-text {
    text-wrap: balance;
  }
}
section.cta-text span {
  font-weight: 700;
}

section.whats-involved {
  overflow: hidden;
  margin: 60px 0;
}
@media (min-width: 1024px) {
  section.whats-involved {
    margin: 150px 0;
  }
}
section.whats-involved h2 {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 1024px) {
  section.whats-involved h2 {
    margin-bottom: 60px;
  }
}
section.whats-involved .steps {
  display: flex;
  --size: 1;
  gap: 20px;
  flex-direction: column;
}
section.whats-involved .steps-pagination {
  align-items: center;
  justify-content: center;
  display: none;
  gap: 10px;
  margin-top: 60px;
}
@media (min-width: 1024px) {
  section.whats-involved .steps-pagination {
    display: flex;
  }
}
section.whats-involved .steps-pagination span {
  background: white;
  box-shadow: inset 0 0 0 1px #72787E;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  section.whats-involved .steps {
    --size: calc(4/12);
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  section.whats-involved .steps[data-step="0"] .step {
    transform: translateX(calc((-100% - 20px) * 0));
  }
}
section.whats-involved .steps[data-step="0"] + .steps-pagination span:nth-child(1) {
  background: linear-gradient(90deg, #0898C7 0%, #006BA8 100%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  section.whats-involved .steps[data-step="1"] .step {
    transform: translateX(calc((-100% - 20px) * 1));
  }
}
section.whats-involved .steps[data-step="1"] + .steps-pagination span:nth-child(2) {
  background: linear-gradient(90deg, #0898C7 0%, #006BA8 100%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  section.whats-involved .steps[data-step="2"] .step {
    transform: translateX(calc((-100% - 20px) * 2));
  }
}
section.whats-involved .steps[data-step="2"] + .steps-pagination span:nth-child(3) {
  background: linear-gradient(90deg, #0898C7 0%, #006BA8 100%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  section.whats-involved .steps[data-step="3"] .step {
    transform: translateX(calc((-100% - 20px) * 3));
  }
}
section.whats-involved .steps[data-step="3"] + .steps-pagination span:nth-child(4) {
  background: linear-gradient(90deg, #0898C7 0%, #006BA8 100%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  section.whats-involved .steps[data-step="4"] .step {
    transform: translateX(calc((-100% - 20px) * 3));
  }
}
section.whats-involved .steps[data-step="4"] + .steps-pagination span:nth-child(5) {
  background: linear-gradient(90deg, #0898C7 0%, #006BA8 100%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  section.whats-involved .steps[data-step="5"] .step {
    transform: translateX(calc((-100% - 20px) * 3));
  }
}
section.whats-involved .steps[data-step="5"] + .steps-pagination span:nth-child(6) {
  background: linear-gradient(90deg, #0898C7 0%, #006BA8 100%);
  pointer-events: none;
}
section.whats-involved .steps .step {
  display: flex;
  flex-shrink: 0;
  width: calc(var(--size) * 100%);
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step {
    flex-direction: column;
    width: calc(var(--size) * (100% - 40px));
    transition: transform 1s ease 0.25s;
  }
}
section.whats-involved .steps .step:last-child .indicator div {
  display: none;
}
section.whats-involved .steps .step:last-child .indicator:before, section.whats-involved .steps .step:last-child .indicator:after {
  content: unset;
}
section.whats-involved .steps .step .indicator {
  position: relative;
  width: 36px;
  height: auto;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .indicator {
    display: flex;
    width: auto;
    height: 36px;
    margin-right: -20px;
    margin-left: unset;
    margin-bottom: 40px;
  }
}
section.whats-involved .steps .step .indicator:before {
  --size: 100%;
  content: "";
  height: var(--size);
  background: var(--card-background-color-light-blue-gradient);
  width: 2px;
  position: absolute;
  top: 36px;
  margin-left: 17px;
  transition: width 0.5s ease-out;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .indicator:before {
    height: 2px;
    width: var(--size);
    margin-left: 0;
    left: 36px;
    top: unset;
  }
}
section.whats-involved .steps .step .indicator:after {
  --size: 0%;
  --rotation: 0deg;
  content: "";
  display: flex;
  background: repeating-linear-gradient(var(--rotation), #0898C7, #0898C7 10px, transparent 10px, transparent 16px);
  height: var(--size);
  width: 2px;
  margin-left: 17px;
  opacity: 0;
  transition: width 0.5s ease-out, opacity 0.25s;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .indicator:after {
    --rotation: 90deg;
    height: 2px;
    margin-left: 0;
    width: var(--size);
  }
}
section.whats-involved .steps .step .indicator div {
  width: 2px;
  height: 100%;
  position: absolute;
  left: 17px;
  bottom: -20px;
  background-color: #C1C4C8;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.25s;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .indicator div {
    height: 2px;
    width: 100%;
    left: 36px;
    bottom: unset;
  }
}
section.whats-involved .steps .step .indicator span {
  aspect-ratio: 1/1;
  height: 36px;
  border-radius: 50%;
  background: var(--card-background-color-light-blue-gradient);
  display: grid;
  place-items: center;
  position: relative;
}
section.whats-involved .steps .step .indicator span:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 10px solid transparent;
  border-radius: 50%;
  transition: border 0.25s, background-color 0.25s;
  transition-delay: 0s;
}
section.whats-involved .steps .step .indicator span:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='15' viewBox='0 0 18 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 14.1238L0 8.16633L2.1 6.08123L6 9.95357L15.9 0.123779L18 2.20889L6 14.1238Z' fill='white'/%3E%3C/svg%3E%0A");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: 50% 55%;
  opacity: 1;
  transition: opacity 0.25s;
}
section.whats-involved .steps .step.active + .step .indicator:after {
  --size: calc(100% - 16px);
  transition-delay: 0.5s;
}
section.whats-involved .steps .step.active + .step .indicator:before,
section.whats-involved .steps .step.active + .step + .step .indicator:before,
section.whats-involved .steps .step.active + .step + .step + .step .indicator:before,
section.whats-involved .steps .step.active + .step + .step + .step + .step .indicator:before,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .indicator:before,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .indicator:before {
  width: 0%;
}
section.whats-involved .steps .step.active + .step .indicator span,
section.whats-involved .steps .step.active + .step + .step .indicator span,
section.whats-involved .steps .step.active + .step + .step + .step .indicator span,
section.whats-involved .steps .step.active + .step + .step + .step + .step .indicator span,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .indicator span,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .indicator span {
  background: #C1C4C8;
}
section.whats-involved .steps .step.active + .step .indicator span:before,
section.whats-involved .steps .step.active + .step + .step .indicator span:before,
section.whats-involved .steps .step.active + .step + .step + .step .indicator span:before,
section.whats-involved .steps .step.active + .step + .step + .step + .step .indicator span:before,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .indicator span:before,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .indicator span:before {
  background-color: var(--body-background-color);
  border: 10px solid var(--body-background-color);
}
section.whats-involved .steps .step.active + .step .indicator span:after,
section.whats-involved .steps .step.active + .step + .step .indicator span:after,
section.whats-involved .steps .step.active + .step + .step + .step .indicator span:after,
section.whats-involved .steps .step.active + .step + .step + .step + .step .indicator span:after,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .indicator span:after,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .indicator span:after {
  opacity: 0;
}
section.whats-involved .steps .step.active + .step .step-card,
section.whats-involved .steps .step.active + .step + .step .step-card,
section.whats-involved .steps .step.active + .step + .step + .step .step-card,
section.whats-involved .steps .step.active + .step + .step + .step + .step .step-card,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .step-card,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .step-card {
  background: var(--body-background-color);
  border-color: #C1C4C8;
}
section.whats-involved .steps .step.active + .step .step-card .icon use.upcoming,
section.whats-involved .steps .step.active + .step + .step .step-card .icon use.upcoming,
section.whats-involved .steps .step.active + .step + .step + .step .step-card .icon use.upcoming,
section.whats-involved .steps .step.active + .step + .step + .step + .step .step-card .icon use.upcoming,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .step-card .icon use.upcoming,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .step-card .icon use.upcoming {
  opacity: 1;
}
section.whats-involved .steps .step.active + .step .step-card .icon use.current,
section.whats-involved .steps .step.active + .step .step-card .icon use.done,
section.whats-involved .steps .step.active + .step + .step .step-card .icon use.current,
section.whats-involved .steps .step.active + .step + .step .step-card .icon use.done,
section.whats-involved .steps .step.active + .step + .step + .step .step-card .icon use.current,
section.whats-involved .steps .step.active + .step + .step + .step .step-card .icon use.done,
section.whats-involved .steps .step.active + .step + .step + .step + .step .step-card .icon use.current,
section.whats-involved .steps .step.active + .step + .step + .step + .step .step-card .icon use.done,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .step-card .icon use.current,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step .step-card .icon use.done,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .step-card .icon use.current,
section.whats-involved .steps .step.active + .step + .step + .step + .step + .step + .step .step-card .icon use.done {
  opacity: 0;
}
section.whats-involved .steps .step.active .indicator:after,
section.whats-involved .steps .step.active + .step .indicator:after {
  opacity: 1;
}
section.whats-involved .steps .step.active .indicator div,
section.whats-involved .steps .step.active + .step .indicator div {
  opacity: 0;
  transition-delay: 0.25s;
}
section.whats-involved .steps .step.active .indicator span,
section.whats-involved .steps .step.active + .step .indicator span {
  background: var(--card-background-color-light-blue-gradient);
}
section.whats-involved .steps .step.active .indicator span:before,
section.whats-involved .steps .step.active + .step .indicator span:before {
  background-color: transparent;
}
section.whats-involved .steps .step.active .indicator:before {
  --size: calc(100% - 16px);
}
section.whats-involved .steps .step.active .indicator span:before {
  border: 0px solid transparent;
  transition-delay: 0s;
}
section.whats-involved .steps .step.active .indicator span:after {
  opacity: 1;
  transition-delay: 0.25s;
}
section.whats-involved .steps .step.active .step-card:before {
  opacity: 1;
  transition-delay: 0.25s;
}
section.whats-involved .steps .step.active .step-card .icon use {
  transition-delay: 0.25s;
}
section.whats-involved .steps .step.active .step-card .icon use.done {
  opacity: 0;
}
section.whats-involved .steps .step.active .step-card .icon use.current {
  opacity: 1;
}
section.whats-involved .steps .step.active .step-card,
section.whats-involved .steps .step.active .step-card .description {
  color: #ffffff;
}
section.whats-involved .steps .step.active .step-card .title span {
  opacity: 0.75;
}
section.whats-involved .steps .step .step-card {
  background: linear-gradient(94deg, #FFF 0%, #F2F4F9 50%, #F9F9FC 98.87%);
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  transition: background-color 0.5s, border-color 0.5s, color 0.5s;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .step-card {
    border-radius: 20px;
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  section.whats-involved .steps .step .step-card {
    height: 400px;
  }
}
section.whats-involved .steps .step .step-card:before {
  content: "";
  background: var(--card-background-color-light-blue-gradient);
  position: absolute;
  opacity: 0;
  inset: 0;
  transition: opacity 0.5s;
}
section.whats-involved .steps .step .step-card-inner {
  z-index: 1;
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
}
section.whats-involved .steps .step .step-card .icon {
  flex-grow: 1;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .step-card .icon {
    margin-bottom: 32px;
  }
}
section.whats-involved .steps .step .step-card .icon svg {
  height: 40px;
  width: 40px;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .step-card .icon svg {
    height: 60px;
    width: 60px;
  }
}
section.whats-involved .steps .step .step-card .icon use {
  transition: opacity 0.5s;
}
section.whats-involved .steps .step .step-card .icon use.current, section.whats-involved .steps .step .step-card .icon use.upcoming {
  opacity: 0;
}
section.whats-involved .steps .step .step-card .step-text {
  font-weight: 400;
  font-size: 10px;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .step-card .step-text {
    font-size: 14px;
  }
}
section.whats-involved .steps .step .step-card .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .step-card .title {
    font-size: 28px;
  }
}
section.whats-involved .steps .step .step-card .description {
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.3;
  color: var(--color-secondary);
}
@media (min-width: 1024px) {
  section.whats-involved .steps .step .step-card .description {
    font-size: 18px;
    margin-top: 12px;
  }
}

section.contact-us {
  background: url("/img/planet-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding: 60px 0 0;
}
@media (min-width: 1024px) {
  section.contact-us {
    padding: 150px 0 0;
  }
}
section.contact-us h2 {
  text-align: center;
}
section.contact-us h2,
section.contact-us p {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  section.contact-us h2,
  section.contact-us p {
    margin-bottom: 60px;
  }
}
section.contact-us .talk {
  margin-top: 60px;
}
@media (min-width: 1024px) {
  section.contact-us .talk {
    margin-top: 150px;
  }
}
section.contact-us .talk svg {
  height: auto;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-bottom: -1.5%;
}

/*# sourceMappingURL=index.css.map */
