@charset "UTF-8";
/* @TODO: Replace with SASS opacity */
/* /// */
/* FONTS */
/* HEADERS */
/* COMPONENTS */
/* SHAPES */
.shape {
  width: 100%;
  height: 100%;
}
.shape--line {
  height: 0.25rem;
}
.shape--line, .shape--line:after {
  background: linear-gradient(137deg, #0ecc7e 10%, #53c0d2 62%);
  border-radius: 0.625rem;
}
.shape--line:after {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  margin-left: auto;
  margin-right: -0.5rem;
}
.shape--circle {
  border-radius: 50%;
}
.shape--stripes {
  position: absolute;
  overflow: hidden;
}
.shape--stripes:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  height: 100%;
  background-image: linear-gradient(137deg, #0ecc7e 10%, #53c0d2 62%);
  mask-image: url("../assets/svgs/stripe-pattern.svg");
  -webkit-mask-image: url("../assets/svgs/stripe-pattern.svg");
  -webkit-mask-size: contain;
}
@media (min-width: 48rem) {
  .shape--stripes:after {
    max-width: initial;
    width: 20rem;
    height: 20rem;
    top: -50%;
    left: -50%;
    bottom: initial;
    right: initial;
    -webkit-mask-size: initial;
  }
}
.shape--diamond {
  background: url("../assets/svgs/shape-diamond.svg");
}
.shape--diamond-inverted {
  background: url("../assets/svgs/shape-diamond-inverted.svg");
}
.shape--diamond, .shape--diamond-inverted {
  background-repeat: no-repeat;
}
.shape--gradient-bg {
  background: linear-gradient(137deg, #0ecc7e 0%, #53c0d2 100%);
}

.single-header {
  padding-top: 7.5rem;
  padding-bottom: 2.5rem;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 80%;
}
@media (min-width: 48rem) {
  .single-header {
    padding-top: 11.25rem;
    padding-bottom: 6.25rem;
    background-position: center bottom;
  }
}
@media (min-width: 80rem) {
  .single-header {
    padding-top: 16.25rem;
    padding-bottom: 8.125rem;
    background-position: center 120%;
    background-size: 110%;
  }
}
@media (min-width: 120rem) {
  .single-header {
    padding-top: 14rem;
    padding-bottom: 4rem;
    background-position: center 200%;
  }
}
.single-header .container {
  padding: 0 1rem;
}
.single-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.5rem;
  color: #102532;
}
@media (min-width: 64rem) {
  .single-header__title {
    font-size: 4.25rem;
    font-weight: 700;
    line-height: 4.75rem;
  }
}
.single-header__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  background: -webkit-linear-gradient(137deg, #53c0d2 0%, #1edd8e 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.single-header__description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  margin-top: 2.5rem;
  color: #102532;
}

.primary-button {
  cursor: pointer;
  position: relative;
  min-width: 11.25rem;
  width: fit-content;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2rem;
  color: #111210;
  text-decoration: none;
  background-image: linear-gradient(137deg, #0ecc7e 10%, #53c0d2 62%);
  text-transform: capitalize;
  border-radius: 3.125rem;
  box-shadow: none;
  overflow: hidden;
  text-transform: uppercase;
}
.primary-button:hover {
  box-shadow: none;
}
.primary-button:hover:before {
  opacity: 1;
}
.primary-button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3.125rem;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.primary-button span {
  position: relative;
  z-index: 5;
}

.btn-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.secondary__btn {
  z-index: 2;
  display: flex;
  height: 3.375rem;
  width: 17.25rem;
  padding: 0px 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  border-radius: 2.5rem;
  border: 2px solid var(--success-main, #0ECC7E);
  box-shadow: none;
  text-decoration: none;
  color: #102532;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2rem;
}
.secondary__btn:hover {
  box-shadow: none;
  border-color: #016e41;
}

@media (min-width: 48rem) {
  .break-down {
    display: none;
  }
}
@media (min-width: 64rem) {
  .break-down {
    display: block;
  }
}
.break-down.mobile {
  display: block;
}
@media (min-width: 48rem) {
  .break-down.mobile {
    display: none;
  }
}
.break-down.tablet {
  display: none;
}
@media (min-width: 48rem) {
  .break-down.tablet {
    display: block;
  }
}
@media (min-width: 64rem) {
  .break-down.tablet {
    display: none;
  }
}
@media (min-width: 48rem) {
  .break-down.tablet-and-mobile {
    display: block;
  }
}
@media (min-width: 64rem) {
  .break-down.tablet-and-mobile {
    display: none;
  }
}
.break-down.tablet-and-desktop {
  display: none;
}
@media (min-width: 48rem) {
  .break-down.tablet-and-desktop {
    display: block;
  }
}
.break-down.desktop {
  display: none;
}
@media (min-width: 64rem) {
  .break-down.desktop {
    display: block;
  }
}
.break-down.all-sizes {
  display: block;
}

#how-we-work .single-header {
  position: relative;
  padding-top: 8.25rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 48rem) {
  #how-we-work .single-header {
    padding: 12.5rem 0;
  }
}
@media (min-width: 64rem) {
  #how-we-work .single-header {
    padding-bottom: 6.25rem;
  }
}
#how-we-work .single-header .container {
  position: relative;
  z-index: 50;
}
#how-we-work .single-header .universe {
  position: absolute;
  top: 18%;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 1/1;
}
@media (min-width: 24.375rem) {
  #how-we-work .single-header .universe {
    top: 15%;
  }
}
@media (min-width: 25.875rem) {
  #how-we-work .single-header .universe {
    top: 10%;
  }
}
@media (min-width: 48rem) {
  #how-we-work .single-header .universe {
    top: -24%;
  }
}
@media (min-width: 64rem) {
  #how-we-work .single-header .universe {
    top: -75%;
  }
}
@media (min-width: 80rem) {
  #how-we-work .single-header .universe {
    top: -78%;
  }
}
@media (min-width: 90rem) {
  #how-we-work .single-header .universe {
    top: -85%;
  }
}
@media (min-width: 100rem) {
  #how-we-work .single-header .universe {
    top: -95%;
  }
}
@media screen and (min-width: 1700px) and (max-width: 1899px) {
  #how-we-work .single-header .universe {
    top: -110%;
  }
}
@media screen and (min-width: 1900px) and (max-width: 1919px) {
  #how-we-work .single-header .universe {
    top: -120%;
  }
}
@media (min-width: 120rem) {
  #how-we-work .single-header .universe {
    top: -95%;
  }
}
#how-we-work .single-header {
  /* ÓRBITAS */
}
#how-we-work .single-header .orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 0.2vw solid #000;
  border-radius: 50%;
  border: 5px solid var(--neutrals-grey-50, #F9F9F9);
  background: var(--neutrals-grey-50, transparent);
  box-shadow: 0px 0px 43.2px 0px rgba(132, 132, 132, 0.1);
  transform: translate(-50%, -60%) scale(0.7);
  animation: growOrbit 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@media (min-width: 48rem) {
  #how-we-work .single-header .orbit {
    transform: translate(-50%, -60%) scale(0.5);
  }
}
#how-we-work .single-header .orbit-1 {
  width: 37.1875rem;
  height: 37.1875rem;
  z-index: 0;
}
@media (min-width: 48rem) {
  #how-we-work .single-header .orbit-1 {
    width: 46.5rem;
    height: 46.5rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .single-header .orbit-1 {
    width: 56.6875rem;
    height: 56.6875rem;
  }
}
#how-we-work .single-header .orbit-2 {
  width: 49.0625rem;
  height: 49.0625rem;
}
@media (min-width: 48rem) {
  #how-we-work .single-header .orbit-2 {
    width: 61.375rem;
    height: 61.375rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .single-header .orbit-2 {
    width: 74.8125rem;
    height: 74.8125rem;
  }
}
#how-we-work .single-header .orbit-3 {
  width: 60rem;
  height: 60rem;
}
@media (min-width: 48rem) {
  #how-we-work .single-header .orbit-3 {
    width: 75rem;
    height: 75rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .single-header .orbit-3 {
    width: 91.4375rem;
    height: 91.4375rem;
  }
}
#how-we-work .single-header {
  /* PLANETAS */
}
#how-we-work .single-header .planet {
  position: absolute;
  background: linear-gradient(137deg, #1EDD8E 21.41%, #53C0D2 58.8%);
  box-shadow: 0px 16px 60px 0px rgba(6, 6, 6, 0.23);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.08);
  animation: growPlanet 2.2s ease-out forwards;
}
#how-we-work .single-header .planet.planet-1 {
  width: 1.5rem;
  height: 1.5rem;
  transform: scale(0.16);
  max-width: none;
  max-height: none;
  z-index: 10;
  top: 20%;
  left: 30%;
  animation-delay: 1s;
  --x: -90%;
  --y: 20%;
}
@media (min-width: 25.875rem) {
  #how-we-work .single-header .planet.planet-1 {
    top: 25%;
    left: 26%;
    --x: -100%;
  }
}
@media (min-width: 48rem) {
  #how-we-work .single-header .planet.planet-1 {
    left: 15.5%;
    top: 38%;
    --x: -140%;
    animation-delay: 1s;
  }
}
@media (min-width: 64rem) {
  #how-we-work .single-header .planet.planet-1 {
    width: 2.5625rem;
    height: 2.5625rem;
    transform: scale(0.09);
    top: 50%;
    left: 0%;
    --x: -60%;
    --y: -60%;
  }
}
#how-we-work .single-header .planet.planet-2 {
  display: none;
  width: 2.5625rem;
  height: 2.5625rem;
  filter: blur(10px);
  max-width: none;
  max-height: none;
  animation-delay: 1.5s;
}
@media (min-width: 64rem) {
  #how-we-work .single-header .planet.planet-2 {
    display: flex;
    transform: scale(0.09);
    top: 50%;
    right: -4%;
    --x: -50%;
    --y: 140%;
  }
}
@media (min-width: 100rem) {
  #how-we-work .single-header .planet.planet-2 {
    top: 45%;
    --x: -50%;
    --y: 140%;
  }
}
#how-we-work .single-header .planet.planet-3 {
  width: 2.25rem;
  height: 2.25rem;
  max-width: none;
  max-height: none;
  transform: scale(0.22);
  top: 91%;
  left: 66%;
  --x: 10%;
  --y: 100%;
  animation-delay: 0.4s;
}
@media (min-width: 25.875rem) {
  #how-we-work .single-header .planet.planet-3 {
    width: 2.5rem;
    height: 2.5rem;
    transform: scale(0.2);
    left: 65%;
    --x: 100%;
    --y: 60%;
  }
}
@media (min-width: 48rem) {
  #how-we-work .single-header .planet.planet-3 {
    width: 3.25rem;
    height: 3.25rem;
    transform: scale(0.15);
    top: 93%;
    left: 74%;
    --x: 90%;
    --y: -110%;
  }
}
@media (min-width: 64rem) {
  #how-we-work .single-header .planet.planet-3 {
    width: 6.25rem;
    height: 6.25rem;
    transform: scale(0.08);
    top: 83%;
    left: 76%;
    --x: 40%;
    --y: 30%;
  }
}
@media (min-width: 80rem) {
  #how-we-work .single-header .planet.planet-3 {
    top: 72%;
    left: 86%;
  }
}
@media (min-width: 100rem) {
  #how-we-work .single-header .planet.planet-3 {
    top: 71%;
    left: 87%;
    --x: 40%;
    --y: 30%;
  }
}
#how-we-work .single-header {
  /* ANIMACIONES */
}
@keyframes growOrbit {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes growPlanet {
  to {
    opacity: 1;
    transform: scale(1) translate(var(--x), var(--y));
  }
}

#how-we-work .understand-section {
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  margin-top: 0;
}
@media (min-width: 48rem) {
  #how-we-work .understand-section {
    padding: 6.25rem 1.5rem 0;
    margin-top: 0;
  }
}
#how-we-work .understand-section .container {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 62.5rem;
}
#how-we-work .understand-section .container .shape {
  margin: 0;
}
#how-we-work .understand-section .container .text-section__title,
#how-we-work .understand-section .container .shape--line,
#how-we-work .understand-section .container .text-section__description,
#how-we-work .understand-section .container .btn-wrapper {
  opacity: 0;
  transform: translate(0, 3.125rem);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
#how-we-work .understand-section .container.is-inview.isActive .text-section__title,
#how-we-work .understand-section .container.is-inview.isActive .shape--line,
#how-we-work .understand-section .container.is-inview.isActive .text-section__description {
  opacity: 1;
  transform: translate(0, 0);
}
#how-we-work .understand-section .container.is-inview.isActive .text-section__description {
  transition-delay: 0.25s;
}
#how-we-work .understand-section .container.is-inview.isActive .btn-wrapper {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.5s;
}
#how-we-work .understand-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
#how-we-work .understand-section .text-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  line-height: normal;
}
@media (min-width: 48rem) {
  #how-we-work .understand-section .text-section__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 4rem;
  }
}
#how-we-work .understand-section .text-section__description {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}
@media (min-width: 48rem) {
  #how-we-work .understand-section .text-section__description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.375rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .understand-section .text-section__description {
    max-width: 53.375rem;
  }
}
#how-we-work .understand-section .btn-wrapper {
  margin-top: 0.5rem;
}
#how-we-work .understand-section .secondary__btn {
  width: fit-content;
  min-width: 18.4375rem;
  margin-top: 0;
}

#how-we-work .framework-section {
  padding: 2.5rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 48rem) {
  #how-we-work .framework-section {
    padding: 3.125rem 1.5rem 5rem;
  }
}
#how-we-work .framework-section .container {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 62.5rem;
  position: relative;
  z-index: 1;
}
#how-we-work .framework-section .container .shape {
  margin: 0;
}
#how-we-work .framework-section .container .text-section__title {
  margin-top: 1.25rem;
}
@media (min-width: 64rem) {
  #how-we-work .framework-section .container .text-section__title {
    margin-top: 8.4375rem;
  }
}
#how-we-work .framework-section .container .text-section__title,
#how-we-work .framework-section .container .shape--line,
#how-we-work .framework-section .container .text-section__description,
#how-we-work .framework-section .container .framework-steps__item,
#how-we-work .framework-section .container .btn-wrapper {
  opacity: 0;
  transform: translate(0, 3.125rem);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
#how-we-work .framework-section .container.is-inview.isActive .text-section__title,
#how-we-work .framework-section .container.is-inview.isActive .shape--line,
#how-we-work .framework-section .container.is-inview.isActive .text-section__description {
  opacity: 1;
  transform: translate(0, 0);
}
#how-we-work .framework-section .container.is-inview.isActive .text-section__description {
  transition-delay: 0.25s;
}
#how-we-work .framework-section .container.is-inview.isActive .btn-wrapper {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.5s;
}
#how-we-work .framework-section .container .framework-steps__item.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}
#how-we-work .framework-section .container .framework-steps__item.is-inview:nth-child(1) {
  transition-delay: 0.15s;
}
#how-we-work .framework-section .container .framework-steps__item.is-inview:nth-child(2) {
  transition-delay: 0.3s;
}
#how-we-work .framework-section .container .framework-steps__item.is-inview:nth-child(3) {
  transition-delay: 0.45s;
}
#how-we-work .framework-section .container .framework-steps__item.is-inview:nth-child(4) {
  transition-delay: 0.6s;
}
#how-we-work .framework-section__background-text {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  display: flex;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}
#how-we-work .framework-section__background-text p {
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 7.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 4.1875rem 3.75rem rgba(233, 233, 233, 0.6);
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 64rem) {
  #how-we-work .framework-section__background-text {
    top: 0.375rem;
  }
  #how-we-work .framework-section__background-text p {
    font-size: 14.375rem;
    font-weight: 900;
    line-height: 14.375rem;
  }
}
#how-we-work .framework-section__stripes-wrapper {
  position: absolute;
  width: 3.75rem;
  height: 3.75rem;
  top: -1.25rem;
  left: -0.625rem;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 64rem) {
  #how-we-work .framework-section__stripes-wrapper {
    width: 6.25rem;
    height: 6.25rem;
    top: -1.875rem;
    left: -3.75rem;
  }
}
#how-we-work .framework-section__stripes-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#how-we-work .framework-section .text-section__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  line-height: normal;
}
@media (min-width: 48rem) {
  #how-we-work .framework-section .text-section__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 4rem;
  }
}
#how-we-work .framework-section .text-section__description {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}
@media (min-width: 48rem) {
  #how-we-work .framework-section .text-section__description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.375rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .framework-section .text-section__description {
    max-width: 58.875rem;
  }
}
#how-we-work .framework-section .framework-steps {
  list-style: none;
  width: 100%;
  text-align: left;
  margin-top: 1.5rem;
}
#how-we-work .framework-section .framework-steps__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 0;
  border-top: 1px solid #0ecc7e;
}
@media (min-width: 64rem) {
  #how-we-work .framework-section .framework-steps__item {
    flex-direction: row;
    gap: 0.75rem;
  }
}
#how-we-work .framework-section .framework-steps__item:last-child {
  border-bottom: 1px solid #0ecc7e;
}
#how-we-work .framework-section .framework-steps__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 64rem) {
  #how-we-work .framework-section .framework-steps__left {
    width: 16.875rem;
    flex-shrink: 0;
  }
}
#how-we-work .framework-section .framework-steps__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
  color: #000;
  margin: 0;
}
@media (min-width: 48rem) {
  #how-we-work .framework-section .framework-steps__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.375rem;
  }
}
#how-we-work .framework-section .framework-steps__icon-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  width: 3rem;
  height: 3rem;
}
@media (min-width: 64rem) {
  #how-we-work .framework-section .framework-steps__icon-wrapper {
    display: flex;
    font-size: 4.6875rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }
}
#how-we-work .framework-section .framework-steps__right {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: #000;
}
#how-we-work .framework-section .framework-steps__right p {
  margin: 0 0 0.5rem;
}
#how-we-work .framework-section .framework-steps__right p:last-child {
  margin-bottom: 0;
}
#how-we-work .framework-section .framework-steps__right .strong {
  font-weight: 700;
}
#how-we-work .framework-section .btn-wrapper {
  margin-top: 1rem;
}
#how-we-work .framework-section .secondary__btn {
  width: fit-content;
  min-width: 18.4375rem;
  margin-top: 0;
}

#how-we-work .delivery-models-section {
  padding: 5rem 1.5rem;
  position: relative;
  background-color: #102532;
  background-image: linear-gradient(180deg, rgba(16, 37, 50, 0.85) 0%, rgba(16, 37, 50, 0.85) 100%), url(../../assets/images/pages/how-we-work/delivery-models-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section {
    padding: 6.25rem 2rem;
  }
}
#how-we-work .delivery-models-section .container {
  padding: 0;
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.0625rem;
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section .container {
    gap: 4.0625rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .delivery-models-section .container {
    gap: 3.5rem;
  }
}
#how-we-work .delivery-models-section .container .delivery-models-section__title,
#how-we-work .delivery-models-section .container .delivery-models-section__card {
  opacity: 0;
  transform: translate(0, 3.125rem);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
#how-we-work .delivery-models-section .container.is-inview.isActive .delivery-models-section__title {
  opacity: 1;
  transform: translate(0, 0);
}
#how-we-work .delivery-models-section .container .delivery-models-section__card.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}
#how-we-work .delivery-models-section .container .delivery-models-section__card.is-inview:nth-child(1) {
  transition-delay: 0.25s;
}
#how-we-work .delivery-models-section .container .delivery-models-section__card.is-inview:nth-child(2) {
  transition-delay: 0.5s;
}
#how-we-work .delivery-models-section .container .delivery-models-section__card.is-inview:nth-child(3) {
  transition-delay: 0.75s;
}
#how-we-work .delivery-models-section__title {
  color: #f9f9f9;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-align: center;
  margin: 0;
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 4rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .delivery-models-section__title {
    max-width: 49.125rem;
    margin: 0 auto;
  }
}
#how-we-work .delivery-models-section__cards {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  width: 100%;
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section__cards {
    gap: 1.875rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .delivery-models-section__cards {
    flex-direction: row;
    gap: 2.875rem;
  }
}
#how-we-work .delivery-models-section__card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 12.5rem;
  padding: 2.875rem 2.0625rem;
  border-radius: 0.625rem;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(16, 37, 50, 0.35) 0%, rgba(16, 37, 50, 0.63) 100%);
  backdrop-filter: blur(15px);
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section__card {
    min-height: 15.9375rem;
    padding: 3.0625rem 2.5625rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .delivery-models-section__card {
    justify-content: flex-start;
    min-height: 25.3125rem;
    padding: 2.25rem 2.5rem 1.75rem;
  }
}
#how-we-work .delivery-models-section__card h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: #f9f9f9;
  margin: 0;
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section__card h3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.25rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .delivery-models-section__card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3.25rem;
  }
}
#how-we-work .delivery-models-section__card p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: #f9f9f9;
  margin: 0;
  text-align: left;
  width: 100%;
}
#how-we-work .delivery-models-section__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
#how-we-work .delivery-models-section__card-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.625rem;
  width: 100%;
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section__card-heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 64rem) {
  #how-we-work .delivery-models-section__card-heading {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.8125rem;
  }
}
#how-we-work .delivery-models-section__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: -1;
  width: 3.625rem;
  height: 2.6875rem;
}
@media (min-width: 48rem) {
  #how-we-work .delivery-models-section__card-icon {
    order: 0;
  }
}
@media (min-width: 64rem) {
  #how-we-work .delivery-models-section__card-icon {
    order: -1;
    align-self: flex-end;
  }
}
#how-we-work .delivery-models-section__card-icon--objective, #how-we-work .delivery-models-section__card-icon--connection {
  overflow: hidden;
  color: #f9f9f9;
}
#how-we-work .delivery-models-section__card-icon--objective i, #how-we-work .delivery-models-section__card-icon--connection i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#how-we-work .delivery-models-section__card-icon--objective {
  width: 2.6875rem;
  height: 2.6875rem;
}
#how-we-work .delivery-models-section__card-icon--objective i {
  width: 5.5rem;
  height: 5.5rem;
  font-size: 5.5rem;
}
#how-we-work .delivery-models-section__card-icon--connection {
  width: 2.875rem;
  height: 2.6875rem;
}
#how-we-work .delivery-models-section__card-icon--connection i {
  width: 5rem;
  height: 5rem;
  font-size: 5rem;
}
#how-we-work .delivery-models-section__card-icon--handshake {
  width: 4rem;
  height: 2.6875rem;
}
#how-we-work .delivery-models-section__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#how-we-work .capability-section {
  padding: 5rem 1.5rem;
}
@media (min-width: 48rem) {
  #how-we-work .capability-section {
    padding: 6.25rem 1.5rem;
  }
}
#how-we-work .capability-section .container {
  padding: 0;
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
#how-we-work .capability-section__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  #how-we-work .capability-section__row {
    flex-direction: row;
    align-items: center;
    gap: 3.1875rem;
  }
}
#how-we-work .capability-section__row.is-inview .capability-section__image.is-loaded {
  opacity: 1;
  transform: translate(0, 0);
}
#how-we-work .capability-section__row.is-inview .capability-section__text {
  opacity: 1;
  transform: translate(0, 0);
}
#how-we-work .capability-section__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  order: 1;
  opacity: 0;
  transform: translate(0, 3.125rem);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition-delay: 0.45s;
}
@media (min-width: 64rem) {
  #how-we-work .capability-section__text {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    order: initial;
  }
}
#how-we-work .capability-section__text .shape {
  margin: 0;
}
#how-we-work .capability-section__text .text-section__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  line-height: normal;
  text-align: center;
}
@media (min-width: 48rem) {
  #how-we-work .capability-section__text .text-section__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 4rem;
  }
}
@media (min-width: 64rem) {
  #how-we-work .capability-section__text .text-section__title {
    text-align: left;
  }
}
#how-we-work .capability-section__text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  margin: 0;
  color: #111210;
}
@media (min-width: 48rem) {
  #how-we-work .capability-section__text p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.375rem;
  }
}
#how-we-work .capability-section__text p.strong {
  font-weight: 700;
}
#how-we-work .capability-section__image {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  order: 2;
  opacity: 0;
  transform: translate(3.75rem, 0);
  transition: opacity 1.3s ease-in-out, transform 1.3s ease-in-out;
}
@media (min-width: 64rem) {
  #how-we-work .capability-section__image {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    flex: 1;
    order: initial;
  }
}
#how-we-work .capability-section__image img {
  width: 100%;
  height: auto;
  max-height: 15rem;
  border-radius: 0;
  object-fit: cover;
}
@media (min-width: 64rem) {
  #how-we-work .capability-section__image img {
    max-height: none;
    border-radius: 0.625rem;
  }
}
#how-we-work .capability-section__row:first-child .capability-section__image img {
  object-position: top;
}
#how-we-work .capability-section__row:first-child .capability-section__image {
  transition-duration: 1.6s;
}
#how-we-work .capability-section__row:last-child .capability-section__image {
  transform: translate(-3.75rem, 0);
}
#how-we-work .capability-section__row:last-child.is-inview .capability-section__image.is-loaded {
  transform: translate(0, 0);
}
#how-we-work .capability-section__row:last-child .capability-section__image {
  transition-delay: 0.3s;
}
#how-we-work .capability-section__row:last-child .capability-section__text {
  transition-delay: 0.75s;
}
#how-we-work .capability-section .arrow-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #9273f4;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
}
#how-we-work .capability-section .arrow-link-cta i {
  font-size: 1.25rem;
}
#how-we-work .capability-section .arrow-link-cta:hover {
  text-decoration: underline;
}

.contact {
  padding: 3.125rem 0 4.375rem;
  background: 0;
  position: relative;
}
@media (min-width: 80rem) {
  .contact {
    padding-top: 6.25rem;
    margin-top: 1.25rem;
  }
}
.contact__container {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.contact__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 62.5rem;
  align-items: center;
}
@media (min-width: 48rem) {
  .contact__content-wrapper {
    padding-top: 1.875rem;
  }
}
.contact__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 55.25rem;
  gap: 1rem;
}
.contact__heading h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.625rem;
}
@media (min-width: 48rem) {
  .contact__heading h2 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}
.contact__heading p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}
@media (min-width: 48rem) {
  .contact__heading p {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
.contact__heading h2, .contact__heading p, .contact__heading .contact__shape-wrapper {
  opacity: 0;
  transform: translate(0, 3.125rem);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.contact__heading.is-inview.isActive h2, .contact__heading.is-inview.isActive p, .contact__heading.is-inview.isActive .contact__shape-wrapper {
  opacity: 1;
  transform: translate(0, 0);
}
.contact .contact__btn {
  opacity: 0;
  transform: translate(0, 3.125rem);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.contact .contact__btn.is-inview.isActive {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.25s;
}
.contact__shape-wrapper {
  display: block;
  width: 3.125rem;
}
.contact__background-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1.625rem;
  left: 0;
}
.contact__background-text > img {
  max-width: 120%;
}
@media (min-width: 48rem) {
  .contact__background-text {
    top: 0rem;
  }
}
@media (min-width: 64rem) {
  .contact__background-text {
    left: -7.5rem;
  }
  .contact__background-text > img {
    max-width: 115vw;
  }
}
@media (min-width: 90rem) {
  .contact__background-text > img {
    width: 120vw;
  }
}
@media (min-width: 100rem) {
  .contact__background-text {
    top: -1.25rem;
  }
}
@media (min-width: 160rem) {
  .contact__background-text > img {
    width: 115vw;
    max-width: inherit;
  }
}
.contact .primary-button {
  min-width: inherit;
  width: 10.375rem;
}

#how-we-work .hero__text__top-line {
  display: block;
  width: 3.0625rem;
}
#how-we-work .contact__shape-wrapper {
  width: 3.0625rem;
}
#how-we-work .contact {
  padding: 5rem 0;
}
@media (min-width: 48rem) {
  #how-we-work .contact {
    padding: 6.25rem 0 5rem;
  }
}
@media (min-width: 80rem) {
  #how-we-work .contact {
    padding-top: 6.25rem;
    margin-top: 1.25rem;
  }
}
#how-we-work .contact__heading {
  margin-top: -1.875rem;
}
