@font-face {
  font-family: "Poppins";
  font-weight: 300; /* Light */
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins.light.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 400; /* Regular */
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins.regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600; /* SemiBold */
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins.semibold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 700; /* Bold */
  font-style: normal;
  font-display: swap;
  src: url("/assets/fonts/poppins.bold.ttf") format("truetype");
}
/* 
  Font variant map (Base: 1rem = 16px)
  Format: (font-size, line-height, letter-spacing, font-weight)
*/
.hero__container, .companies__container, .features__container, .faq__container, .testimonials__container, .footer__container, .header__container {
  padding: 0 1rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__container, .companies__container, .features__container, .faq__container, .testimonials__container, .footer__container, .header__container {
    padding: 0 2.25rem;
  }
}
@media (min-width: 1280px) {
  .hero__container, .companies__container, .features__container, .faq__container, .testimonials__container, .footer__container, .header__container {
    width: 1280px;
  }
}

.button {
  border-radius: 28rem;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  text-wrap: nowrap;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.button > * {
  min-width: 0;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button__icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.button__icon > * {
  min-width: 0;
}
.button__icon i {
  font-size: 1.25rem;
}

.chip {
  border-radius: 99rem;
  padding: 0.5rem 1rem;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
}
.chip > * {
  min-width: 0;
}
.chip {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0em;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .chip {
    font-size: 1rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.chip i {
  font-size: 1.25rem;
}

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

/* Button reset */
button {
  all: unset;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

::-moz-selection {
  background-color: #0e2e2e;
  color: #ecfcfd;
}

::selection {
  background-color: #0e2e2e;
  color: #ecfcfd;
}

::-moz-selection {
  background-color: #0e2e2e;
  color: #ecfcfd;
}

::-webkit-scrollbar {
  width: 0.5rem;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #ecfcfd;
  border-radius: 0.25rem;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", Arial, sans-serif;
  color: #ecfcfd;
  background-color: #061212;
}
body {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}

label {
  display: block;
  font-size: 1.125rem;
  line-height: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=url] {
  font-family: "Poppins", Arial, sans-serif;
  border: none;
  width: 100%;
  border-radius: 50rem;
  padding: 1rem 2rem;
  background-color: #dafafa;
  color: #071717;
}
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=url] {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder {
  color: rgba(6, 18, 18, 0.1882352941);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder {
  color: rgba(6, 18, 18, 0.1882352941);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus {
  outline: none;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  color: #ecfcfd;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.2rem solid #ecfcfd;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
input[type=checkbox] > * {
  min-width: 0;
}
input[type=checkbox]::before {
  content: "";
  width: 0.35rem;
  height: 0.7rem;
  border-right: 0.2rem solid #ecfcfd;
  border-bottom: 0.2rem solid #ecfcfd;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.2s ease-in-out;
}
input[type=checkbox]:checked {
  border-color: #ecfcfd;
}
input[type=checkbox]:checked::before {
  transform: rotate(45deg) scale(1);
}
input[type=checkbox]:hover {
  border-color: #c7f7f8;
}

.header {
  height: 4rem;
  margin: 2.5rem 0rem 5.5rem 0rem;
}
.header__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: 2rem;
}
.header__container > * {
  min-width: 0;
}
.header__logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__logo-link > * {
  min-width: 0;
}
.header__logo:hover {
  transform: scale(1.05);
  filter: opacity(0.8);
}
.header__logo {
  transition: all 0.5s ease-in-out !important;
}
.header__navigation {
  display: none;
}
@media (min-width: 1024px) {
  .header__navigation {
    flex: 1 1 auto;
    display: block;
  }
}
.header__list {
  gap: 2rem;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header__list > * {
  min-width: 0;
}
.header__list {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
.header__item--selected {
  font-weight: 600;
}
.header__link {
  color: #ecfcfd;
  text-decoration: none;
}
.header__link:hover {
  color: #7cedee;
}
.header__link {
  transition: all 0.5s ease-in-out !important;
}
.header__buttons {
  display: none;
}
@media (min-width: 1024px) {
  .header__buttons {
    margin-left: auto;
    flex: 0 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .header__buttons > * {
    min-width: 0;
  }
}
.header__hamburger-menu {
  display: block;
  cursor: pointer;
  font-size: 1.5rem;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.header__hamburger-menu > * {
  min-width: 0;
}
.header__hamburger-menu:hover {
  transform: scale(0.95);
  filter: opacity(0.8);
}
.header__hamburger-menu {
  transition: all 0.5s ease-in-out !important;
}
@media (min-width: 1024px) {
  .header__hamburger-menu {
    display: none;
  }
}

.footer {
  width: 100%;
  margin-top: 2rem;
  background: linear-gradient(to top, #0e2e2e 0%, #061212 100%);
}
.footer__container {
  padding: 6.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: 2rem;
  flex-wrap: wrap;
}
.footer__container > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .footer__container {
    padding: 8rem 6.25rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}
.footer__logo-link {
  margin-bottom: auto;
}
.footer__logo-link:hover {
  transform: scale(1.05);
  filter: opacity(0.8);
}
.footer__logo-link {
  transition: all 0.5s ease-in-out !important;
}
.footer__navigation {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 3.625rem;
}
@media (min-width: 768px) {
  .footer__navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__navigation {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__navigation-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ecfcfd;
  letter-spacing: -0.025em;
  line-height: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .footer__navigation-title {
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
}
.footer__navigation-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__navigation-links > * {
  min-width: 0;
}
.footer__navigation-link {
  color: #c7f7f8;
  text-decoration: none;
}
.footer__navigation-link {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .footer__navigation-link {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.footer__navigation-link:hover {
  color: #8feff1;
}
.footer__navigation-link {
  transition: all 0.5s ease-in-out !important;
}
.footer__copyright {
  text-align: center;
  margin-top: 5rem;
  color: #ecfcfd;
}
.footer__copyright {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0em;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .footer__copyright {
    font-size: 1rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}

.button--xs {
  padding: 0.25rem 0.75rem;
}
.button--xs {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0em;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .button--xs {
    font-size: 1rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.button--sm {
  padding: 0.5rem 1rem;
}
.button--sm {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .button--sm {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.button--base {
  padding: 0.875rem 2rem;
}
.button--base {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .button--base {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.button--lg {
  padding: 1rem 2rem;
}
.button--lg {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .button--lg {
    font-size: 1.25rem;
    line-height: 2.5rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.button--xl {
  padding: 1.25rem 2.5rem;
}
.button--xl {
  font-size: 1.25rem;
  line-height: 2.5rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .button--xl {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.025em;
    font-weight: 700;
  }
}
.button--2xl {
  padding: 1.5rem 3rem;
}
.button--2xl {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .button--2xl {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.025em;
    font-weight: 700;
  }
}
.button--primary {
  background-color: #44e5e7;
  color: #0e2e2e;
  box-shadow: 0 0 25px 0 rgba(68, 229, 231, 0.3);
}
.button--primary:hover {
  transform: scale(0.97);
  box-shadow: 0 0 25px rgba(68, 229, 231, 0.1);
  filter: opacity(0.8);
  background-color: #3dced0;
  color: #144545;
}
.button--primary {
  transition: all 0.5s ease-in-out !important;
}
.button--primary:active {
  transform: scale(0.94);
}
.button--secondary {
  background-color: transparent;
  color: #ecfcfd;
  border: 0.2rem solid #ecfcfd;
}
.button--secondary:hover {
  transform: scale(0.97);
  background-color: #44e5e7;
  color: #0e2e2e;
  border-color: #44e5e7;
}
.button--secondary {
  transition: all 0.5s ease-in-out !important;
}
.button--secondary:active {
  transform: scale(0.94);
}
.button__icon--left {
  margin-right: 0.5rem;
}
.button__icon--right {
  margin-left: 0.5rem;
}

.chip--primary {
  color: #0e2e2e;
  background-color: #44e5e7;
  box-shadow: 0 0 25px 0 rgba(68, 229, 231, 0.3);
}
.chip--primary:hover {
  transform: scale(0.97);
  box-shadow: 0 0 25px rgba(68, 229, 231, 0.2);
  background-color: #3dced0;
  color: #144545;
}
.chip--primary {
  transition: all 0.5s ease-in-out !important;
}
.chip--secondary {
  color: #ecfcfd;
  background-color: transparent;
  border: 0.15rem solid #ecfcfd;
}
.chip--secondary:hover {
  transform: scale(0.97);
  background-color: #44e5e7;
  color: #0e2e2e;
  border-color: #44e5e7;
}
.chip--secondary {
  transition: all 0.5s ease-in-out !important;
}
.chip__icon {
  width: 1em;
  height: 1em;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.chip__icon > * {
  min-width: 0;
}
.chip__icon--left {
  margin-right: 0.25rem;
}
.chip__icon--right {
  margin-left: 0.25rem;
}

.modal {
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal > * {
  min-width: 0;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 92, 92, 0.1254901961);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal__content {
  position: relative;
  display: flex;
  z-index: 1;
  width: 90%;
  height: auto;
  max-width: 900px;
  background-color: #071717;
  border-radius: 1rem;
  transform: scale(0.8);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (min-width: 1024px) {
  .modal__content {
    width: 50%;
    height: 46%;
  }
}
.modal__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
}
.modal__wrapper > * {
  min-width: 0;
}
.modal__info {
  display: none;
}
@media (min-width: 1024px) {
  .modal__info {
    flex: 1;
    height: 100%;
    background-color: #0e2e2e;
    padding: 0rem 2.5rem;
    text-align: center;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: no-wrap;
    gap: 1rem;
  }
  .modal__info > * {
    min-width: 0;
  }
}
@media (min-width: 1024px) {
  .modal__title {
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
  }
}
@media (min-width: 1024px) {
  .modal__description {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.modal__close-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
.modal__close-wrapper > * {
  min-width: 0;
}
.modal__close-button {
  border: 2px solid #ecfcfd;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.88rem;
  border-radius: 0.875rem;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.modal__close-button > * {
  min-width: 0;
}
.modal__close-button:hover {
  transform: scale(0.95);
}
.modal__close-button {
  transition: all 0.5s ease-in-out !important;
}
.modal__close-icon {
  font-size: 1rem;
}
.modal__terms-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal__terms-wrapper > * {
  min-width: 0;
}
.modal__terms {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0em;
  font-weight: 400;
}
.modal__form-wrapper {
  height: 100%;
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}
.modal__inputs {
  margin: 6rem 0rem 2rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal__inputs > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .modal__inputs {
    margin: 6rem 0rem 6rem 0rem;
  }
}
.modal__form-group {
  width: 100%;
}
.modal__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal__actions > * {
  min-width: 0;
}
.modal__submit {
  width: 100%;
  padding: 1rem 0;
}
.modal--show {
  display: flex;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu > * {
  min-width: 0;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 92, 92, 0.1254901961);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu__content {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 95%;
  max-width: 55rem;
  padding: 2rem;
  background-color: #071717;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.mobile-menu__content > * {
  min-width: 0;
}
.mobile-menu__close-wrapper {
  display: flex;
  flex-direction: row;
  margin-bottom: 4rem;
}
.mobile-menu__close-wrapper > * {
  min-width: 0;
}
.mobile-menu__close-button {
  border: 2px solid #ecfcfd;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.88rem;
  border-radius: 0.875rem;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close-button > * {
  min-width: 0;
}
.mobile-menu__close-button:hover {
  transform: scale(0.95);
}
.mobile-menu__close-button {
  transition: all 0.5s ease-in-out !important;
}
.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: no-wrap;
  gap: 1.5rem;
}
.mobile-menu__list > * {
  min-width: 0;
}
.mobile-menu__list {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
.mobile-menu__item--selected {
  font-weight: 600;
}
.mobile-menu__link {
  width: 100%;
  color: #ecfcfd;
  text-decoration: none;
}
.mobile-menu__link:hover {
  color: #7cedee;
}
.mobile-menu__link {
  transition: all 0.5s ease-in-out !important;
}
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.mobile-menu__footer > * {
  min-width: 0;
}
.mobile-menu__button {
  flex: 1;
  padding: 0.75rem 0rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.hero {
  width: 100%;
  background: linear-gradient(to top, #0e2e2e 0%, #061212 100%);
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__content > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .hero__content {
    display: flex;
    flex-direction: row;
    align-items: space-between;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero__content > * {
    min-width: 0;
  }
}
.hero__content-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__content-left > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .hero__content-left {
    width: 60%;
  }
}
.hero__title {
  color: #ecfcfd;
}
.hero__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: -0.05em;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: -0.05em;
    font-weight: 600;
  }
}
.hero__subtitle {
  color: #c7f7f8;
}
.hero__subtitle {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.25rem;
    line-height: 2.5rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.hero__image {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .hero__image {
    min-width: 30%;
    max-width: 40%;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 4rem 1rem;
  }
}

.trusted-avatars {
  width: 100%;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trusted-avatars > * {
  min-width: 0;
}
.trusted-avatars__images {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.trusted-avatars__images > * {
  min-width: 0;
}
.trusted-avatars__image {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid #c7f7f8;
  -o-object-fit: cover;
     object-fit: cover;
}
.trusted-avatars__image:not(:first-child) {
  margin-left: -1.5rem;
}
.trusted-avatars__image:hover {
  transform: scale(1.2);
  filter: grayscale(0.5);
  background-color: #0e2e2e;
}
.trusted-avatars__image {
  transition: all 0.5s ease-in-out !important;
}
.trusted-avatars__image:hover:first-child {
  margin-right: 1.75rem;
}
.trusted-avatars__image:hover:not(:first-child) {
  margin-left: 0.25rem;
  margin-right: 1.75rem;
}
.trusted-avatars__text {
  color: #c7f7f8;
}
.trusted-avatars__text {
  font-size: 1.25rem;
  line-height: 2.5rem;
  letter-spacing: 0em;
  font-weight: 300;
}
.trusted-avatars__count {
  color: #44e5e7;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .trusted-avatars {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
  }
  .trusted-avatars > * {
    min-width: 0;
  }
}

.companies {
  width: 100%;
  padding: 2rem 1rem;
  margin-bottom: 10rem;
  background: linear-gradient(to bottom, #0e2e2e 0%, #061212 100%);
}
.companies__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.companies__header {
  color: #ecfcfd;
  text-align: center;
  margin-top: 4rem;
}
.companies__header {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .companies__header {
    font-size: 1.25rem;
    line-height: 2.5rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.companies__highlight {
  font-weight: 700;
}
.companies__logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem 0rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .companies__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3rem;
  }
}
@media (min-width: 1024px) {
  .companies__logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 4rem;
  }
}
.companies__logos-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
.companies__logos-row > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .companies__logos-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
}
.companies__logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.companies__logo-link > * {
  min-width: 0;
}
.companies__logo {
  width: 100%;
  max-width: 10rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.companies__logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}
.companies__logo {
  transition: all 0.5s ease-in-out !important;
}

.features {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.features__header {
  width: 100%;
  margin: 8rem 0;
  color: #c7f7f8;
  text-align: center;
}
.features__header {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: -0.05em;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .features__header {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: -0.05em;
    font-weight: 600;
  }
}
.features__highlight {
  position: relative;
  font-weight: 700;
  color: #44e5e7;
  text-shadow: 0 0 25px rgba(68, 228, 231, 0.1882352941);
  transition: all 0.3s ease-in-out;
}
.features__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 4px;
  background-color: #44e5e7;
  transition: width 0.3s ease-in-out;
}
.features__highlight:hover {
  color: #7cedee;
}
.features__highlight:hover::after {
  width: 100%;
  background-color: #7cedee;
}
.features__content {
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6rem;
}
.features__content > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .features__content {
    align-items: center;
    gap: 4rem;
  }
}
.features__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  flex-wrap: nowrap;
  gap: 2rem;
}
.features__item > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .features__item {
    align-items: center;
    justify-content: space-between;
  }
  .features__item--left {
    flex-direction: row-reverse;
  }
  .features__item--right {
    flex-direction: row;
  }
}
.features__image {
  width: 50%;
}
.features__image:hover {
  transform: scale(1.05) translateY(-10px);
  filter: grayscale(0.5);
}
.features__image {
  transition: all 0.5s ease-in-out !important;
}
@media (min-width: 1024px) {
  .features__image {
    min-width: 30%;
    max-width: 40%;
  }
}
.features__description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
.features__description > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .features__description {
    width: 50%;
  }
}
.features__title {
  color: #ecfcfd;
}
.features__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: -0.05em;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .features__title {
    font-size: 3rem;
    line-height: 3.5rem;
    letter-spacing: -0.05em;
    font-weight: 600;
  }
}
.features__text {
  color: #c7f7f8;
}
.features__text {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .features__text {
    font-size: 1.25rem;
    line-height: 2.5rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.features__decorator {
  position: absolute;
  z-index: -1;
  width: 62.5rem;
  height: 62.5rem;
  border-radius: 50%;
  background-color: rgba(20, 69, 69, 0.3137254902);
  top: 20%;
  right: -60%;
  filter: blur(300px);
}

.faq {
  width: 100%;
  background: linear-gradient(to bottom, #061212 0%, #0e2e2e 100%);
}
.faq__header {
  color: #ecfcfd;
  margin-bottom: 2rem;
}
.faq__header {
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: -0.05em;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .faq__header {
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: -0.05em;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  .faq__header {
    text-align: center;
  }
}
.faq__subtitle {
  display: none;
}
.faq__subtitle {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .faq__subtitle {
    font-size: 1.25rem;
    line-height: 2.5rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
@media (min-width: 1024px) {
  .faq__subtitle {
    display: block;
    text-align: center;
    color: #c7f7f8;
    margin-bottom: 2rem;
  }
}
.faq__link {
  color: #c7f7f8;
}
.faq__link:hover {
  color: #44e5e7;
}
.faq__link {
  transition: all 0.5s ease-in-out !important;
}
.faq__filter-buttons {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.faq__filter-buttons > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .faq__filter-buttons {
    gap: 2rem;
  }
}
.faq__items {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: stretch;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.faq__items > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .faq__items {
    padding: 0 4rem;
  }
}
@media (min-width: 1024px) {
  .faq__items {
    padding: 0 10rem;
  }
}
.faq__item {
  width: 100%;
  background-color: transparent;
  border-radius: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
}
.faq__item:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.02);
  background-color: rgba(255, 255, 255, 0.05);
}
.faq__item {
  transition: all 0.5s ease-in-out !important;
}
@media (min-width: 768px) {
  .faq__item {
    padding: 1rem 1rem;
  }
}
@media (min-width: 1024px) {
  .faq__item {
    padding: 1.25rem 1.25rem;
  }
}
.faq__summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.8rem;
}
.faq__summary > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .faq__summary {
    gap: 1.5rem;
  }
}
.faq__summary-icon-wrapper {
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 2px solid #ecfcfd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.faq__summary-icon-wrapper > * {
  min-width: 0;
}
.faq__summary-icon {
  color: #ecfcfd;
  font-size: 1.5rem;
}
.faq__summary-title {
  color: #ecfcfd;
}
.faq__summary-title {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .faq__summary-title {
    font-size: 1.25rem;
    line-height: 2.5rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.faq__summary-arrow {
  margin: 0rem 0.25rem 0rem auto;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .faq__summary-arrow {
    margin-right: 0rem;
  }
}
.faq__text {
  color: #c7f7f8;
  margin: 0.75rem 0rem 0rem 0rem;
}
.faq__text {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .faq__text {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
@media (min-width: 1024px) {
  .faq__text {
    margin: 0.75rem 0rem 0rem 5.5rem;
    padding-right: 7rem;
  }
}

.testimonials {
  width: 100%;
  background: linear-gradient(to bottom, #0e2e2e 0%, #061212 100%);
}
.testimonials__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4rem;
}
.testimonials__container > * {
  min-width: 0;
}
.testimonials__chip {
  margin-top: 12rem;
}
.testimonials__header-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
.testimonials__header-wrapper > * {
  min-width: 0;
}
.testimonials__header {
  color: #ecfcfd;
}
.testimonials__header {
  font-size: 3.75rem;
  line-height: 4.5rem;
  letter-spacing: -0.05em;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .testimonials__header {
    font-size: 1.875rem;
    line-height: 2.25rem;
    letter-spacing: -0.05em;
    font-weight: 600;
  }
}
.testimonials__subheader {
  color: #c7f7f8;
  margin-bottom: 2rem;
}
.testimonials__subheader {
  font-size: 1.125rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .testimonials__subheader {
    font-size: 1.25rem;
    line-height: 2.5rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.testimonials__wrapper {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials__wrapper {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (min-width: 1280px) {
  .testimonials__wrapper {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 768px) {
  .testimonials__wrapper .testimonial:nth-last-child(-n+3) {
    display: none;
  }
}

.testimonial {
  display: inline-block;
  width: 100%;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  background-color: #0e2e2e;
  border-radius: 1rem;
}
.testimonial:hover {
  background-color: #144545;
}
.testimonial {
  transition: all 0.5s ease-in-out !important;
}
.testimonial__ratings-wrapper {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.testimonial__ratings-wrapper > * {
  min-width: 0;
}
.testimonial__rating-icon {
  font-size: 1.5rem;
}
.testimonial__rating-icon:hover {
  filter: brightness(1.4);
}
.testimonial__rating-icon {
  transition: all 0.5s ease-in-out !important;
}
.testimonial__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.testimonial__footer > * {
  min-width: 0;
}
.testimonial__text {
  margin-bottom: 4rem;
  color: #ecfcfd;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial__text {
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0em;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .testimonial__text {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
.testimonial__avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial__avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #0e2e2e;
  filter: brightness(1.2);
}
.testimonial__avatar {
  transition: all 0.5s ease-in-out !important;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.testimonial__author > * {
  min-width: 0;
}
.testimonial__author-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 2rem;
  color: #7cedee;
}
@media (min-width: 1024px) {
  .testimonial__author-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.75rem;
  }
}
.testimonial__designation {
  color: #dafafa;
}
.testimonial__designation {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0em;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .testimonial__designation {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 2rem;
  }
}/*# sourceMappingURL=landing.css.map */