:root {
  --desktop-scale: min(1, calc(100vw / 1793px));
}

.main-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: #050505;
  overflow: hidden;
}
.main-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.main-hero.is-video-visible .main-hero__video {
  opacity: 1;
}
.main-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.55);
}
.main-hero__container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8.125rem;
}
.main-hero h1 {
  color: #F79FDA;
  text-align: center;
  visibility: hidden;
}
.main-hero__heading-display {
  display: inline-block;
  visibility: visible;
  letter-spacing: -0.4px;
}
.main-hero__word {
  display: inline-block;
  white-space: nowrap;
}
.main-hero__letter-mask {
  display: inline-block;
  overflow: hidden;
}
.main-hero__letter {
  display: inline-block;
  transform: translateY(100%);
  animation: main-hero-letter-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes main-hero-letter-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .main-hero__container {
    padding-bottom: 105px;
  }
}
.label {
  padding: 0.625rem 0.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.1875rem;
  border-radius: 12px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 0.9310625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.label--hover {
  border-color: #ffffff;
}
.label--selected {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

@media (max-width: 1024px) {
  .label {
    padding: 10px 12px;
    gap: 8px;
    min-height: 35px;
    border-radius: 12px;
    border-width: 2px;
    font-size: 10px;
    line-height: 14.897px;
  }
}
.link-button {
  padding: 1.25rem 1.875rem;
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .link-button {
    padding: 20px 30px;
    gap: 18px;
    font-size: 14px;
    line-height: 20px;
  }
  .link-button svg {
    width: 15px;
    height: 15px;
  }
}
.work-card__link {
  display: grid;
  grid-template-columns: 1fr 35.625rem;
  gap: 0.75rem 1rem;
}
.work-card__link:focus .work-card__btn, .work-card__link:focus-visible .work-card__btn {
  border-color: #C4DDDF;
  background: #C4DDDF;
  color: #374C45;
}
@media (any-hover: hover) {
  .work-card__link:hover .work-card__btn {
    border-color: #9EC7C9;
    background: #9EC7C9;
    color: #050505;
  }
}
.work-card__media {
  overflow: hidden;
  border-radius: 4px;
}
.work-card__video, .work-card__poster {
  display: block;
  width: 100%;
  aspect-ratio: 1134/552;
  min-height: 18.75rem;
  object-fit: cover;
}
.work-card__content {
  padding-left: 8.75rem;
  padding-block: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 2.1875rem;
  border-block: 1px solid #4f4f4f;
}
.work-card__label {
  display: none;
}
.work-card__caption {
  max-width: calc(100% - 5.3125rem);
  color: #E4E4E4;
  font-size: 2rem;
  font-weight: 746;
  line-height: 2.25rem;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  font-stretch: 75%;
}
.work-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.work-card__btn {
  border-radius: 4px;
  border: 1px solid #374C45;
  background: transparent;
  color: #9EC7C9;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

@media (max-width: 1024px) {
  .work-card__link {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 16px;
  }
  .work-card__media {
    min-height: 150px;
    border-radius: 6px;
  }
  .work-card__video, .work-card__poster {
    aspect-ratio: 353/169;
  }
  .work-card__content {
    padding-left: 0;
    padding-block: 0 40px;
    row-gap: 15px;
    border-top: none;
  }
  .work-card__label {
    display: inline-flex;
  }
  .work-card__caption {
    max-width: 100%;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 1.28px;
  }
  .work-card__desc {
    font-size: 16px;
    line-height: 20px;
  }
  .work-card__btn {
    padding: 18px 0;
    border: 1px solid transparent;
  }
}
.see-all-button {
  padding: 1.25rem 1.875rem;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  border-radius: 4px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .see-all-button {
    padding: 18px 24px;
    gap: 18px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
  }
  .see-all-button svg {
    width: 15px;
    height: 15px;
  }
}
.portfolio {
  margin-block: 11.25rem 8.75rem;
}
.portfolio .h2 {
  color: #C4DDDF;
  text-align: center;
}
.portfolio__list {
  margin-top: 3.75rem;
}
.portfolio__list .work-card + .work-card {
  margin-top: 1.25rem;
}
.portfolio__see-all {
  margin: 2.5rem auto 0;
  background: #F79FDA;
  color: #401320;
  transition: background 0.3s ease, color 0.3s ease;
}
.portfolio__see-all:focus, .portfolio__see-all:focus-visible {
  background: #F77ACE;
  color: #050505;
}
@media (any-hover: hover) {
  .portfolio__see-all:hover {
    background: #F77ACE;
    color: #050505;
  }
}

@media (max-width: 1024px) {
  .portfolio {
    margin-block: 120px 60px;
  }
  .portfolio__list {
    margin-top: 60px;
  }
  .portfolio__list .work-card + .work-card {
    margin-top: 40px;
  }
  .portfolio__see-all {
    margin: 40px auto 0;
  }
}
.our-services {
  padding-block: 4.375rem 6.25rem;
  background: #C4DDDF;
}
.our-services__title {
  position: relative;
  padding-bottom: 1.25rem;
  color: #050505;
  text-align: center;
}
.our-services__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 3.875rem;
  height: 0.125rem;
  background: #F77ACE;
}
.our-services__list {
  margin-top: 3.125rem;
}
.our-services__item {
  position: relative;
  overflow: visible;
  padding: 2rem 8.75rem 2rem 7.5rem;
  border-radius: 6px;
  background: #9EC7C9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  color: #050505;
  font-size: 4.625rem;
  font-weight: 762;
  line-height: 4.125rem;
  letter-spacing: -1.48px;
  text-transform: uppercase;
  z-index: 0;
}
.our-services__item:focus-visible .our-services__icon--arrow {
  transform: translateX(150%);
}
.our-services__item:focus-visible .our-services__hover-icon-img {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--hover-rotate, 0deg)) scale(1);
}
@media (any-hover: hover) {
  .our-services__item:hover .our-services__icon--arrow {
    transform: translateX(150%);
  }
  .our-services__item:hover .our-services__hover-icon-img {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--hover-rotate, 0deg)) scale(1);
  }
}
.our-services__item sup {
  position: absolute;
  top: 2rem;
  left: 2.875rem;
  color: #4f4f4f;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.25rem;
  letter-spacing: 0;
}
.our-services__hover-icon {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.our-services__hover-icon-img {
  position: absolute;
  left: var(--hover-x, 50%);
  top: var(--hover-y, 50%);
  object-fit: contain;
  transform-origin: var(--enter-origin, 50% 50%);
  transform: translate(calc(-50% + var(--enter-tx, 0px)), calc(-50% + var(--enter-ty, 0px))) rotate(calc(var(--hover-rotate, 0deg) + var(--enter-rotate, 0deg))) scale(var(--enter-scale, 1));
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.our-services__hover-icon--rotate-tail {
  --hover-x: 59%;
  --hover-y: 20%;
  --hover-rotate: 0deg;
  --enter-origin: 20% 60%;
  --enter-rotate: 25deg;
}
.our-services__hover-icon--pop-burst {
  --hover-x: 70%;
  --hover-y: 70%;
  --hover-rotate: 0deg;
  --enter-tx: -3.125rem;
  --enter-rotate: -16deg;
}
.our-services__hover-icon--slide-in-br {
  --hover-x: 65%;
  --hover-y: 26%;
  --hover-rotate: 0deg;
  --enter-tx: 4.375rem;
  --enter-ty: 3.125rem;
  --enter-rotate: 20deg;
}
.our-services__hover-icon--pop-spin {
  --hover-x: 80%;
  --hover-y: 60%;
  --hover-rotate: -6deg;
  --enter-tx: -9.375rem;
  --enter-ty: 0.5rem;
  --enter-rotate: -90deg;
  --enter-scale: 0.8;
}
.our-services__hover-icon--scale-spin {
  --hover-x: 70%;
  --hover-y: 35%;
  --hover-rotate: 0deg;
  --enter-rotate: -20deg;
  --enter-scale: 0.8;
  filter: brightness(0) invert(95%) sepia(8%) saturate(5676%) hue-rotate(280deg) brightness(104%) contrast(94%);
}
.our-services__hover-icon--flip-scale {
  --hover-x: 58%;
  --hover-y: 50%;
  --hover-rotate: 4deg;
  --enter-rotate: -120deg;
  --enter-scale: 0.65;
  filter: brightness(0) invert(1);
}
.our-services__hover-icon--corner-tilt {
  --hover-x: 82%;
  --hover-y: 14%;
  --hover-rotate: -2deg;
  --enter-origin: 85% 85%;
  --enter-rotate: -20deg;
}
.our-services__hover-icon--rotate-tail-rev {
  --hover-x: 65%;
  --hover-y: 40%;
  --hover-rotate: 0deg;
  --enter-origin: 80% 40%;
  --enter-rotate: -25deg;
}
.our-services__icon {
  position: relative;
  z-index: 2;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.our-services__icon--arrow {
  transform: translateX(0);
}
.our-services__item + .our-services__item {
  margin-top: 0.625rem;
}
.our-services--light {
  background: #050505;
}
.our-services--light .our-services__title,
.our-services--light .our-services__item h4 {
  color: #E4E4E4;
}
.our-services--light .our-services__icon--arrow {
  filter: brightness(0) invert(89%);
}

@media (max-width: 1024px) {
  .our-services {
    padding-block: 60px 80px;
  }
  .our-services__title {
    padding-bottom: 10px;
  }
  .our-services__list {
    margin-top: 80px;
  }
  .our-services__item {
    padding: 6px;
    border-radius: 0;
    background: transparent;
    gap: 10px;
    font-size: 44px;
    line-height: 66px;
    letter-spacing: -0.88px;
  }
  .our-services__item sup {
    display: none;
  }
  .our-services__item .h4 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 762;
    letter-spacing: inherit;
  }
  .our-services__item .our-services__icon--arrow {
    width: 28px;
    height: 24px;
  }
  .our-services__hover-icon {
    z-index: -1;
  }
  .our-services__hover-icon-img {
    width: 80px;
    height: auto;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--hover-rotate, 0deg));
  }
  .our-services__item + .our-services__item {
    margin-top: 20px;
  }
  .our-services__hover-icon--rotate-tail {
    --hover-x: 80%;
    --hover-y: 70%;
    --hover-rotate: -5deg;
  }
  .our-services__hover-icon--pop-burst {
    --hover-x: 65%;
    --hover-y: 40%;
    --hover-rotate: 0deg;
  }
  .our-services__hover-icon--pop-burst .our-services__hover-icon-img {
    width: 100px;
  }
  .our-services__hover-icon--slide-in-br {
    --hover-x: 50%;
    --hover-y: 30%;
    --hover-rotate: 0deg;
  }
  .our-services__hover-icon--slide-in-br .our-services__hover-icon-img {
    width: 120px;
  }
  .our-services__hover-icon--pop-spin {
    --hover-x: 75%;
    --hover-y: 35%;
    --hover-rotate: 0deg;
  }
  .our-services__hover-icon--scale-spin {
    --hover-x: 3%;
    --hover-y: 25%;
    --hover-rotate: -12deg;
  }
  .our-services__hover-icon--scale-spin .our-services__hover-icon-img {
    width: 110px;
  }
  .our-services__hover-icon--flip-scale {
    --hover-x: 45%;
    --hover-y: 50%;
    --hover-rotate: 0deg;
  }
  .our-services__hover-icon--corner-tilt {
    --hover-x: 90%;
    --hover-y: 70%;
    --hover-rotate: -15deg;
  }
  .our-services__hover-icon--corner-tilt .our-services__hover-icon-img {
    width: 100px;
  }
  .our-services__hover-icon--rotate-tail-rev {
    --hover-x: 25%;
    --hover-y: 110%;
    --hover-rotate: 40deg;
    z-index: 1;
  }
}
.banner--pink {
  --banner-accent: #F79FDA;
}
.banner--teal {
  --banner-accent: #9EC7C9;
}
.banner--forest {
  --banner-accent: #B4C0B2;
}
.banner {
  background: var(--banner-accent, #F79FDA);
}
.banner__media {
  display: flex;
  min-height: 45.625rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
}
.banner__media .container {
  display: flex;
  align-items: flex-end;
}
.banner__media .h2 {
  width: 50%;
  color: var(--banner-accent, #F79FDA);
  transform: translateY(1rem);
}
.banner__content {
  padding-block: 5rem 11.25rem;
}
.banner__content-inner {
  display: grid;
  grid-template-columns: minmax(0, 34.375rem) minmax(0, 42.5rem);
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem 3.75rem;
  color: #050505;
}
.banner__content-heading {
  grid-row: 1/-1;
}
.banner__content-desc {
  grid-column: 2/3;
}
.banner__content-desc--lg {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 3.375rem;
}
.banner__content-desc--sm {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.banner__content-action {
  grid-column: 2/3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.banner__content-link {
  padding-inline: 0;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  transition: color 0.2s ease;
}
@media (any-hover: hover) {
  .banner__content-link:hover {
    color: #374C45;
  }
}

@media (max-width: 1024px) {
  .banner--teal {
    --banner-accent: #C4DDDF;
  }
  .banner__media {
    min-height: 420px;
  }
  .banner__media .h2 {
    width: 100%;
    transform: translateY(0.6875rem);
  }
  .banner__content {
    padding-block: 60px;
  }
  .banner__content-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .banner__content-heading {
    grid-row: auto;
  }
  .banner__content-desc {
    grid-column: auto;
  }
  .banner__content-desc--lg {
    font-size: 22px;
    line-height: 28px;
  }
  .banner__content-desc--sm {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }
  .banner__content-action {
    grid-column: auto;
    flex-direction: column;
    align-items: initial;
    gap: 4px 20px;
    font-size: 16px;
    line-height: 22px;
  }
}
.clients {
  padding-block: 4.375rem;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
}
.clients .h2 {
  margin-bottom: 1.75rem;
  color: #C4DDDF;
  text-align: center;
}
.clients__track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.25rem;
  width: max-content;
  will-change: transform;
  animation: clients-marquee var(--clients-duration, 16s) linear infinite;
}
.clients__set {
  display: flex;
  align-items: center;
  column-gap: inherit;
  flex-shrink: 0;
}
.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.375rem;
  height: 13.375rem;
  border-radius: 4px;
  flex-shrink: 0;
  filter: invert(1);
}
.clients__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.clients--light {
  background: #C4DDDF;
}
.clients--light .h2 {
  color: #050505;
}
.clients--light .clients__logo {
  filter: none;
}

@media (max-width: 1024px) {
  .clients {
    padding-block: 60px;
    background: #C4DDDF;
  }
  .clients .h2 {
    color: #050505;
    margin-bottom: 28px;
    word-break: normal;
    overflow-wrap: normal;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  .clients__logo {
    width: 134px;
    height: 134px;
  }
  .clients__track {
    column-gap: 4px;
  }
}
@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--clients-distance, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .clients__track {
    animation: none;
  }
}
.news-card {
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}
@media (any-hover: hover) {
  .news-card:hover .news-card__icon {
    background: #9EC7C9;
  }
  .news-card:hover .news-card__icon svg {
    transform: translateX(6px);
  }
}
.news-card__link {
  display: flex;
  flex-direction: column;
}
.news-card__image img {
  width: 100%;
}
.news-card__content {
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  gap: 0.25rem 1.625rem;
}
.news-card__title {
  color: #050505;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.news-card__published {
  grid-column: 1/2;
  color: #4f4f4f;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  text-transform: uppercase;
}
.news-card__icon {
  grid-row: 2/3;
  grid-column: 2/3;
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-shrink: 0;
  align-self: end;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #C4DDDF;
  overflow: hidden;
  color: #050505;
  transition: background 0.3s ease;
}
.news-card__icon svg {
  transition: transform 0.2s ease;
}

@media (max-width: 1024px) {
  .news-card__image img {
    aspect-ratio: 352/183;
    height: auto;
    object-fit: cover;
  }
  .news-card__content {
    padding: 24px 12px 12px;
    gap: 4px 26px;
  }
  .news-card__title {
    color: #050505;
    font-size: 16px;
    line-height: 22px;
  }
  .news-card__icon {
    width: 48px;
    height: 48px;
  }
}
.latest-news {
  margin-block: 9.375rem;
}
.latest-news .h2 {
  color: #774453;
  text-align: center;
}
.latest-news__list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25.625rem, 1fr));
  justify-content: center;
  gap: 1.25rem;
}
.latest-news__see-all {
  margin: 3.125rem auto 0;
  background: #F79FDA;
  color: #401320;
  transition: background 0.3s ease, color 0.3s ease;
}
.latest-news__see-all:focus, .latest-news__see-all:focus-visible {
  background: #F77ACE;
  color: #050505;
}
@media (any-hover: hover) {
  .latest-news__see-all:hover {
    background: #F77ACE;
    color: #050505;
  }
}

@media (max-width: 1024px) {
  .latest-news {
    margin-block: 60px;
  }
  .latest-news__list {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
  }
  .latest-news__see-all {
    margin-top: 60px;
  }
}
.testimonials {
  padding-block: 10.625rem;
}
.testimonials--dark {
  background: #050505;
}
.testimonials--dark .h2 {
  color: #9EC7C9;
}
.testimonials--light {
  background: #C4DDDF;
}
.testimonials--light .h2 {
  color: #050505;
}
.testimonials--light .testimonial-card__inner {
  box-shadow: none;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.testimonials .h2 {
  position: sticky;
  top: 12.5rem;
}
.testimonials__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.25rem;
  padding-top: 20vh;
  padding-bottom: 3.125rem;
}

.testimonial-card {
  position: sticky;
  top: 9.375rem;
  z-index: var(--i, 0);
  min-height: 34.375rem;
  display: flex;
  justify-content: center;
}
.testimonial-card--light {
  --card-bg: #E4E4E4;
  --card-fg: #1a1a1a;
  --card-accent: #374C45;
}
.testimonial-card--teal {
  --card-bg: #9EC7C9;
  --card-accent: #374C45;
}
.testimonial-card--pink {
  --card-bg: #ff6ac5;
  --card-accent: #461b2a;
}
.testimonial-card__inner {
  position: relative;
  width: min(100%, 45.3125rem);
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  background: var(--card-bg, #ffffff);
  box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.25);
  color: #050505;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}
.testimonial-card__quote {
  font-size: 2rem;
  line-height: 2.875rem;
  position: relative;
}
.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  left: -1rem;
}
.testimonial-card__quote::after {
  content: '"';
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.testimonial-card__avatar {
  flex: 0 0 auto;
  width: 6.4375rem;
  height: 6.4375rem;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--card-accent);
}
.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.testimonial-card__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.875rem;
}
.testimonial-card__role {
  font-size: 1.125rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}

.testimonials.is-ready .testimonial-card__inner {
  transform: translateY(140px) rotate(var(--rot, 0deg));
}
.testimonials.is-ready .testimonial-card.is-visible .testimonial-card__inner {
  transform: translateY(0) rotate(var(--rot, 0deg));
}
.testimonials.is-ready .testimonial-card.is-settled .testimonial-card__inner {
  animation: testimonial-settle 0.75s cubic-bezier(0.33, 1, 0.68, 1);
}

@keyframes testimonial-settle {
  0% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  40% {
    transform: translateY(-45px) rotate(var(--rot, 0deg));
  }
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
}
@media (max-width: 1024px) {
  .testimonial-card {
    top: 90px;
    min-height: 270px;
  }
  .testimonial-card__inner {
    padding: 50px 50px 35px 35px;
    border-radius: 8px;
    box-shadow: 0 2.03px 22.331px 0 rgba(0, 0, 0, 0.25);
  }
  .testimonial-card__quote {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }
  .testimonial-card__quote::before {
    left: -8px;
  }
  .testimonial-card__person {
    gap: 14px;
  }
  .testimonial-card__avatar {
    width: 52px;
    height: 52px;
  }
  .testimonial-card__meta {
    gap: 2px;
  }
  .testimonial-card__name {
    font-size: 15px;
    line-height: normal;
  }
  .testimonial-card__role {
    font-size: 9px;
    font-weight: 500;
    line-height: 13px;
  }
  .testimonials {
    padding-block: 60px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonials .h2 {
    position: static;
    font-size: 72px;
    line-height: 0.9;
  }
  .testimonials__cards {
    gap: 8vh;
    padding-top: 60px;
    padding-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials.is-ready .testimonial-card__inner,
  .testimonials.is-ready .testimonial-card.is-visible .testimonial-card__inner {
    transform: rotate(var(--rot, 0deg));
    transition: none;
  }
  .testimonials.is-ready .testimonial-card.is-settled .testimonial-card__inner {
    animation: none;
  }
}
.join-our-team {
  margin-block: 18.75rem;
}
.join-our-team__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.75rem;
}
.join-our-team__text {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: start;
  column-gap: 2.5rem;
}
.join-our-team__title {
  display: contents;
  color: #E4E4E4;
}
.join-our-team__title-word {
  grid-column: 1;
  grid-row: 1;
}
.join-our-team__title-rest {
  grid-column: 1/-1;
  grid-row: 2;
  white-space: nowrap;
}
.join-our-team__desc {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin: 0;
  max-width: 19.375rem;
  font-stretch: 75%;
  color: #774453;
  font-size: 2rem;
  font-weight: 746;
  line-height: 2.25rem;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}
.join-our-team__actions {
  flex: 1;
  max-width: 34.6875rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.join-our-team__action {
  min-height: 8.75rem;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  border-radius: 4px;
  padding: 1.25rem 0.625rem 0.625rem 1rem;
  font-size: 2rem;
  font-weight: 746;
  line-height: 2.25rem;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  text-decoration: none;
}
.join-our-team__action--positions {
  background: #F79FDA;
  color: #401320;
}
.join-our-team__action--positions .join-our-team__action-icon {
  background: #401320;
  color: #F79FDA;
}
.join-our-team__action--positions .join-our-team__action-icon svg {
  transform: rotate(-45deg) translate(0, 0);
}
@media (any-hover: hover) {
  .join-our-team__action--positions:hover .join-our-team__action-icon svg {
    transform: rotate(-45deg) translate(6px, 2px);
  }
}
.join-our-team__action--career {
  background: #401320;
  color: #F79FDA;
}
.join-our-team__action--career .join-our-team__action-icon {
  background: #F79FDA;
  color: #401320;
}
@media (any-hover: hover) {
  .join-our-team__action--career:hover .join-our-team__action-icon svg {
    transform: translateX(6px);
  }
}
.join-our-team__action-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  flex-shrink: 0;
  align-self: end;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
  overflow: hidden;
}
.join-our-team__action-icon svg {
  transition: transform 0.2s ease;
}

@media (max-width: 1024px) {
  .join-our-team {
    margin-block: 80px 0;
  }
  .join-our-team__text {
    display: block;
  }
  .join-our-team__title {
    display: block;
  }
  .join-our-team__title-rest {
    white-space: normal;
  }
  .join-our-team__desc {
    max-width: 100%;
    margin-top: 40px;
    font-size: 32px;
    line-height: 36px;
  }
  .join-our-team__actions {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .join-our-team__action {
    flex: 1 1 calc(50% - 20px);
    min-width: 260px;
    min-height: 140px;
    border-radius: 4px;
    padding: 20px 10px 10px 16px;
    font-size: 32px;
    line-height: 36px;
  }
  .join-our-team__action-icon {
    width: 52px;
    height: 52px;
  }
}
.cta {
  margin-top: 2.5rem;
  padding-inline: 1.25rem;
}
.cta__container {
  padding-block: 6.25rem;
  background-color: #ff96d4;
  border-radius: 6px;
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
}
.cta__wrapper h2 {
  font-weight: 735;
  font-size: 11.125rem;
  line-height: 10rem;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #050505;
  margin: 0 auto 4.375rem;
  font-stretch: 75%;
}
.cta__wrapper h3 {
  font-weight: 746;
  font-size: 2rem;
  line-height: 2.25rem;
  letter-spacing: 4%;
  text-align: center;
  text-transform: uppercase;
  color: #050505;
  margin: 0 auto 2.9375rem;
  max-width: 38.125rem;
  font-stretch: 75%;
}
.cta__wrapper a {
  padding: 1.875rem 1.5rem;
  background-color: #e2e2e2;
  font-family: Inter;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 4px;
  color: #461b2a;
}

@media (max-width: 1024px) {
  .cta {
    margin-top: 40px;
    padding-inline: 20px;
  }
  .cta__container {
    padding-block: 50px 70px;
    padding-inline: 8px;
  }
  .cta__wrapper h2 {
    font-weight: 762;
    font-size: 74px;
    line-height: 66px;
    letter-spacing: -2%;
    margin-bottom: 60px;
  }
  .cta__wrapper h3 {
    font-weight: 746;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 4%;
    margin-bottom: 47px;
    max-width: 100%;
  }
  .cta__wrapper a {
    padding: 30px 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*# sourceMappingURL=main.css.map */