.header {
  background-color: #101820;
}

.breadcrumb {
  background-color: #101820;
}
.breadcrumb__link {
  color: hsl(0, 0%, 100%);
}

.about {
  --values-progress: 0;
  background-color: #101820;
  overflow: hidden;
  color: hsl(0, 0%, 100%);
  padding: 60px 0 100px;
}
.about__content {
  margin-inline: auto;
  text-align: center;
}
.about__content h1,
.about__content h2 {
  margin-bottom: 1.5rem;
  color: hsl(0, 0%, 100%);
  font-weight: 700;
}
.about__content h1 span,
.about__content h2 span {
  color: #C52782;
}
.about__content h1 {
  --font-size: 52px;
  --font-size-rem: 3.25rem;
  --line-height: 64px;
  --line-height-rem: 4rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.about__content h2 {
  --font-size: 48px;
  --font-size-rem: 3rem;
  --line-height: 56px;
  --line-height-rem: 3.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.about__content p {
  --font-size: 18px;
  --font-size-rem: 1.125rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  margin: 0;
  white-space: pre-line;
}
.about__content strong {
  color: #BCD531;
  font-weight: 700;
}
.about__content.-bottom {
  max-width: 760px;
  margin-top: 5rem;
}
.about__content.-bottom strong {
  display: inline-block;
  margin-top: 2rem;
  color: hsl(0, 0%, 100%);
}

.values {
  margin-top: 5rem;
}
.values__title {
  margin-bottom: 3rem;
  text-align: center;
}
.values__title h2 {
  --font-size: 24px;
  --font-size-rem: 1.5rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  margin: 0;
  color: hsl(0, 0%, 100%);
  font-weight: 500;
}
.values__wrapper {
  position: relative;
  display: grid;
  gap: 3.75rem;
  margin-inline: auto;
}
.values__line {
  display: none;
}
.values__line span {
  position: absolute;
  inset: 0;
  display: block;
  transform: scaleY(var(--values-progress));
  transform-origin: top;
  background: #C52782;
  box-shadow: 0 0 18px rgba(197, 39, 130, 0.45);
  transition: transform 80ms linear;
}
.values__item {
  --values-reveal-x: 0;
  --values-reveal-clip: inset(0 0 0 0);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  filter: blur(5px);
  clip-path: var(--values-reveal-clip);
  transform: translate3d(var(--values-reveal-x), 28px, 0) scale(0.96);
  transition: opacity 520ms cubic-bezier(0.445, 0.05, 0.55, 0.95), filter 520ms cubic-bezier(0.445, 0.05, 0.55, 0.95), clip-path 720ms cubic-bezier(0.77, 0, 0.175, 1), transform 720ms cubic-bezier(0.77, 0, 0.175, 1);
}
.values__item.is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
}
.values__item.is-visible .values__icon {
  transform: translateY(0) rotate(0deg) scale(1);
}
.values__item h3 {
  --font-size: 22px;
  --font-size-rem: 1.375rem;
  --line-height: 40px;
  --line-height-rem: 2.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  margin: 1.25rem 0 0.75rem;
  font-weight: 700;
}
.values__item p {
  --font-size: 18px;
  --font-size-rem: 1.125rem;
  --line-height: 40px;
  --line-height-rem: 2.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  margin: 0;
}
.values__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.values__icon {
  display: grid;
  place-items: center;
  max-width: 100px;
  max-height: 130px;
  transform: translateY(12px) rotate(-5deg) scale(0.82);
  transform-origin: center;
  transition: transform 650ms cubic-bezier(0.77, 0, 0.175, 1);
}
.values__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .about__content h1 {
    --font-size: 80px;
    --font-size-rem: 5rem;
    --line-height: 90px;
    --line-height-rem: 5.625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .about__content h2 {
    --font-size: 60px;
    --font-size-rem: 3.75rem;
    --line-height: 70px;
    --line-height-rem: 4.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .about__content p {
    --font-size: 24px;
    --font-size-rem: 1.5rem;
    --line-height: 40px;
    --line-height-rem: 2.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .values__title h2 {
    --font-size: 34px;
    --font-size-rem: 2.125rem;
    --line-height: 40px;
    --line-height-rem: 2.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .values__wrapper {
    gap: 4.5rem;
    padding-left: 0;
  }
  .values__line {
    display: block;
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0;
    width: 2px;
    overflow: hidden;
    background: rgba(197, 39, 130, 0.28);
    left: 50%;
    transform: translateX(-50%);
  }
  .values__item {
    align-items: center;
    text-align: end;
  }
  .values__item h3 {
    --font-size: 26px;
    --font-size-rem: 1.625rem;
    --line-height: 40px;
    --line-height-rem: 2.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .values__item p {
    --font-size: 20px;
    --font-size-rem: 1.25rem;
    --line-height: 40px;
    --line-height-rem: 2.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .values__row {
    grid-template-columns: minmax(0, 1fr) minmax(40px, 6rem) minmax(0, 1fr);
    align-items: center;
    min-height: 220px;
  }
  .values__row .values__item {
    --values-reveal-x: 44px;
    --values-reveal-clip: inset(0 0 0 18%);
    grid-column: 1;
    justify-self: end;
    text-align: end;
    align-items: flex-end;
  }
  .values__row.-reverse .values__item {
    --values-reveal-x: -44px;
    --values-reveal-clip: inset(0 18% 0 0);
    grid-column: 3;
    justify-self: start;
    text-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .about__content.-bottom {
    margin-top: 7rem;
  }
  .values {
    margin-top: 7rem;
  }
  .values__title {
    margin-bottom: 4.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about {
    --values-progress: 1;
  }
  .values__item,
  .values__icon {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
    transition: none;
  }
}