.approach__editor h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  --font-size: 32px;
  --font-size-rem: 2rem;
  --line-height: 42px;
  --line-height-rem: 2.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.approach {
  background-color: #fcfaf8;
}
.approach__intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.approach__eyebrow {
  display: block;
  color: #194547;
}
.approach__editor p {
  margin: 0;
  color: rgba(17, 27, 33, 0.6);
}
.approach__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.approach__item {
  position: relative;
  padding: 1.5rem;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 14px 16px -8px rgba(0, 0, 0, 0.04);
  transition: all 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.approach__item-index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 0;
  color: #dbc264;
  --font-size: 20px;
  --font-size-rem: 1.4285714286rem;
  --line-height: 20px;
  --line-height-rem: 1.4285714286rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.approach__item-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}
.approach__item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.approach__item-title {
  margin: 0 0 0.5rem;
  color: #111b21;
}
.approach__item-desc p {
  margin: 0;
  color: rgba(17, 27, 33, 0.6);
}
@media screen and (min-width: 768px) {
  .approach__editor h2 {
    --font-size: 72px;
    --font-size-rem: 4.5rem;
    --line-height: 82px;
    --line-height-rem: 5.125rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .approach__item {
    padding: 2rem;
  }
  .approach__item-index {
    top: 2rem;
    right: 2rem;
    --font-size: 20px;
    --font-size-rem: 1.25rem;
    --line-height: 20px;
    --line-height-rem: 1.25rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
@media screen and (min-width: 992px) {
  .approach {
    padding: 6rem 0 3rem;
  }
  .approach__intro {
    margin-bottom: 4rem;
  }
  .approach__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (hover: hover) {
  .approach__item:hover {
    box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.14);
    transform: scale(1.02);
  }
}
.branches {
  padding: 3rem 0;
  background-color: #fcfaf8;
}
.branches__intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.branches__editor h2 {
  margin: 0 0 0.75rem;
  color: #111b21;
}
.branches__editor p {
  margin: 0;
  color: rgba(17, 27, 33, 0.6);
}
.branches__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.branches__item {
  display: flex;
  flex-direction: column;
}
.branches__photo {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}
.branches__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transform: none;
  transition: transform 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.branches__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-inline: 20px;
}
.branches__name {
  margin: 0;
  color: #111b21;
  font-weight: 700;
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 26px;
  --line-height-rem: 1.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.branches__address {
  margin: 0;
  color: rgba(17, 27, 33, 0.55);
  font-style: normal;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22px;
  --line-height-rem: 1.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  text-wrap-style: balance;
}
@media screen and (min-width: 768px) {
  .branches__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .branches {
    padding: 5rem 0;
  }
  .branches__intro {
    margin-bottom: 3.5rem;
  }
  .branches__meta {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding-inline: 0;
    gap: 1rem;
  }
  .branches__address {
    max-width: 250px;
    text-align: right;
  }
}
@media (hover: hover) {
  .branches__item:hover .branches__photo img {
    transform: scale(1.05);
  }
}
@keyframes hero-scroll-hint-pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}
.intro-scroll {
  --intro-stage-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  height: auto;
  background-color: #fcfaf8;
  margin-top: calc(-1 * 71px);
}
.intro-scroll__animation {
  position: relative;
  height: calc(var(--vh, 1vh) * 200);
}
.intro-scroll__sticky {
  position: sticky;
  top: 0;
  height: var(--intro-stage-height);
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
}
.intro-scroll__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scroll {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
}
.hero-scroll__mask-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-scroll__mask-cover > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-scroll__mask-cover > svg text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 30px + 4.51vw, 104px);
}
.hero-scroll__mask-cover .hero-scroll__mask-fill {
  -webkit-mask: url(#hero-scroll-mask);
  mask: url(#hero-scroll-mask);
  mask-type: luminance;
}
.hero-scroll__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  padding-top: calc(var(--vh, 1vh) * 55);
  text-align: center;
}
.hero-scroll__lead {
  max-width: 700px;
  padding-bottom: 1rem;
}
.hero-scroll__lead > p {
  margin: 0;
}
.hero-scroll__cta:focus-visible {
  outline: 2px solid #faf8f1;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(17, 27, 33, 0.5);
}
.hero-scroll__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.hero-scroll__scroll-hint-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -13px;
  animation: hero-scroll-hint-pulse 500ms ease infinite alternate;
}
.hero-scroll__scroll-hint-icon:nth-child(even) {
  animation-delay: 100ms;
}
@media screen and (min-width: 992px) {
  .intro-scroll {
    height: calc(var(--vh, 1vh) * 300);
    margin-top: calc(-1 * 151px);
  }
  .intro-scroll__animation {
    height: 100%;
  }
}
.koc360 {
  background-color: #fcfaf8;
}
.koc360__panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(299deg, #111b21 27.11%, #111b21 64.97%, #194547 88.84%, #e7dc9c 105.28%);
}
.koc360__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1.16;
  margin: 0 0 0 10%;
  flex-shrink: 0;
}
.koc360__piece {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}
.koc360__piece img {
  display: block;
  width: 100%;
  height: auto;
}
.koc360__piece--blob {
  top: 50%;
  right: 15%;
  width: 90px;
}
.koc360__piece--dot-top {
  top: -2%;
  left: 44%;
  width: 18px;
}
.koc360__piece--dot-bottom {
  bottom: 13%;
  left: 21%;
  width: 7%;
  z-index: 1;
}
.koc360__piece--photo-frame {
  top: 1%;
  left: -5%;
  width: 100%;
}
.koc360__piece--photo {
  position: relative;
  max-width: 70%;
}
.koc360__piece--icon-card {
  bottom: 12%;
  left: -4%;
  width: 30%;
}
.koc360__piece--ring-badge {
  top: 23%;
  right: 5%;
  width: 18%;
}
.koc360__piece--stat {
  top: 8%;
  left: -6%;
  width: 35%;
}
.koc360__piece--result {
  bottom: 5%;
  right: 22%;
  width: 50%;
}
.koc360__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.koc360__eyebrow {
  color: #dbc264;
}
.koc360__editor h2 {
  margin: 0.75rem 0 1.25rem;
  color: hsl(0, 0%, 100%);
}
.koc360__editor p {
  margin: 0 0 2rem;
  max-width: 34rem;
  color: hsl(0, 0%, 100%);
}
@media screen and (min-width: 576px) {
  .koc360__visual {
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .koc360__panel {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 2rem 5rem;
  }
  .koc360__visual {
    max-width: 460px;
    margin: 0;
  }
  .koc360__piece--blob {
    top: 44%;
    right: 12%;
    width: 150px;
  }
  .koc360__piece--dot-top {
    top: -4%;
    width: 30px;
  }
  .koc360__piece--dot-bottom {
    bottom: 8%;
    left: 22%;
    width: 32px;
  }
  .koc360__piece--photo-frame {
    top: -1%;
    left: -8%;
    width: 105%;
  }
  .koc360__piece--photo {
    max-width: 350px;
  }
  .koc360__piece--icon-card {
    bottom: 10%;
    left: -8%;
    width: 150px;
  }
  .koc360__piece--ring-badge {
    top: 20%;
    right: 3%;
    width: 90px;
  }
  .koc360__piece--stat {
    top: 1%;
    left: -15%;
    width: 200px;
  }
  .koc360__piece--result {
    bottom: 2%;
    right: 20%;
    width: 270px;
  }
}
@media screen and (max-width: 575.99px) {
  .koc360__cta {
    width: 100%;
  }
}
.news__link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  --font-size: 12px;
  --font-size-rem: 0.75rem;
  --line-height: 16px;
  --line-height-rem: 1rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.news {
  padding: 3rem 0;
  background-color: #fcfaf8;
}
.news__intro {
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.news__eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: #194547;
}
.news__editor h2 {
  margin: 0;
  color: #111b21;
}
.news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}
.news__item {
  height: 100%;
}
.news__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid transparent;
  background-color: #ffffff;
  box-shadow: 0 14px 16px -8px rgba(0, 0, 0, 0.04);
  transition: border-color 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95), box-shadow 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.news__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.news__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}
.news__meta {
  display: block;
  margin-bottom: 0.5rem;
  color: #194547;
  font-weight: 500;
  letter-spacing: 16%;
  text-transform: uppercase;
  --font-size: 11px;
  --font-size-rem: 0.6875rem;
  --line-height: 16px;
  --line-height-rem: 1rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.news__title-item {
  margin: 0 0 0.5rem;
  color: #111b21;
  font-weight: 600;
  --font-size: 18px;
  --font-size-rem: 1.125rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.news__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 1.25rem;
  color: #5c5c5c;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22px;
  --line-height-rem: 1.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news__link {
  align-self: flex-start;
  margin-top: auto;
  color: #111b21;
  font-weight: 600;
  border-bottom: 1px solid rgba(17, 27, 33, 0.32);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  transition: 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.news__card:hover .news__link, .news__card:focus-visible .news__link {
  color: #194547;
  border-color: currentColor;
}
.news__footer {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .news {
    padding: 5rem 0;
  }
  .news__intro {
    margin-bottom: 3.5rem;
  }
  .news__list {
    margin-bottom: 3rem;
  }
}
@media (hover: hover) {
  .news__card:hover {
    border-color: rgba(25, 69, 71, 0.5);
    box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.14);
  }
}
.process__editor h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.016em;
  --font-size: 32px;
  --font-size-rem: 2rem;
  --line-height: 42px;
  --line-height-rem: 2.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.process {
  background-color: #fcfaf8;
}
.process__intro {
  margin: 0 auto 3rem;
  text-align: left;
}
.process__editor h2 {
  margin-top: 0;
}
.process__editor p {
  margin: 0;
  color: rgba(17, 27, 33, 0.6);
}
.process__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process__item {
  position: relative;
  padding-left: 2rem;
  text-align: left;
}
.process__item::before, .process__item::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 1px;
  background-color: rgba(232, 207, 128, 0.35);
  background-repeat: no-repeat;
  transition: background-size 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95), box-shadow 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.process__item::before {
  top: -2rem;
  left: 5px;
  height: calc(31px + 2rem);
  background-image: linear-gradient(to top, #e8cf80, rgba(232, 207, 128, 0.3));
  background-position: center bottom;
  background-size: 100% 0%;
}
.process__item::after {
  top: 42px;
  left: 5px;
  height: calc(100% - 42px + 2rem);
  background-image: linear-gradient(to bottom, #e8cf80, rgba(232, 207, 128, 0.3));
  background-position: center top;
  background-size: 100% 0%;
}
.process__item:first-child::before {
  display: none;
}
.process__item:last-child::after {
  display: none;
}
.process__item:hover::before, .process__item:hover::after {
  background-size: 100% 100%;
  box-shadow: 0 0 6px rgba(232, 207, 128, 0.5);
}
.process__dot {
  position: absolute;
  z-index: 2;
  top: 31px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  border: 2px solid #e8cf80;
  background-color: #fcfaf8;
  transition: background-color 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95), box-shadow 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.process__item:hover .process__dot {
  background-color: #e8cf80;
  box-shadow: 0 0 12px 2px rgba(232, 207, 128, 0.5);
}
.process__index {
  display: block;
  color: rgba(232, 207, 128, 0.5);
  font-weight: 600;
  letter-spacing: -0.01em;
  --font-size: 74px;
  --font-size-rem: 4.625rem;
  --line-height: 74px;
  --line-height-rem: 4.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.process__title {
  position: relative;
  z-index: 1;
  color: #111b21;
  margin-top: -3.2rem;
  font-weight: 700;
}
.process__desc {
  margin-top: 0.75rem;
}
.process__desc p {
  margin: 0;
  color: rgba(17, 27, 33, 0.55);
}
@media screen and (min-width: 768px) {
  .process__editor h2 {
    --font-size: 52px;
    --font-size-rem: 3.25rem;
    --line-height: 62px;
    --line-height-rem: 3.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
@media screen and (min-width: 992px) {
  .process__intro {
    max-width: 700px;
    margin-bottom: 4.5rem;
    text-align: center;
  }
  .process__list {
    flex-direction: row;
    gap: 2rem;
  }
  .process__item {
    flex: 1;
    padding-left: 0;
    padding-top: 2.5rem;
    text-align: center;
  }
  .process__item::before, .process__item::after {
    top: 6px;
    width: calc(50% + 1rem);
    height: 1px;
    background-size: 0% 100%;
  }
  .process__item::before {
    left: -1rem;
    background-image: linear-gradient(to left, #e8cf80, transparent);
    background-position: right center;
  }
  .process__item::after {
    left: 50%;
    background-image: linear-gradient(to right, #e8cf80, transparent);
    background-position: left center;
  }
  .process__item:hover::before, .process__item:hover::after {
    background-size: 100% 100%;
  }
  .process__dot {
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
  }
  .process__desc {
    margin-inline: auto;
  }
}
.stats-reveal__editor h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  --font-size: 32px;
  --font-size-rem: 2rem;
  --line-height: 42px;
  --line-height-rem: 2.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.stats-reveal {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  border-radius: 16px;
  width: 100%;
  margin-inline: auto;
}
.stats-reveal > .container {
  position: relative;
  z-index: 2;
}
.stats-reveal__tint {
  inset: 0;
  z-index: 1;
  width: calc(100% - 1rem);
  height: auto;
  border-radius: 16px;
  padding: 3rem 0;
  background-color: rgba(17, 27, 33, 0.9);
}
.stats-reveal__content {
  display: flex;
  flex-direction: column-reverse;
}
.stats-reveal__image {
  flex-shrink: 0;
}
.stats-reveal__image img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.stats-reveal__intro {
  display: flex;
  flex-direction: column;
}
.stats-reveal__subtitle {
  color: #dbc264;
  text-align: center;
}
.stats-reveal__editor h2 {
  margin-bottom: 0.75rem;
  color: hsl(0, 0%, 100%);
}
.stats-reveal__editor p {
  max-width: 650px;
  color: hsl(0, 0%, 100%);
}
.stats-reveal__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(140px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0 1rem 0;
  list-style: none;
}
.stats-reveal__item {
  flex: 1 1 auto;
  min-width: 140px;
  padding-inline-start: 1.5rem;
  border-left: 1px solid rgba(232, 207, 128, 0.32);
}
.stats-reveal__item:first-child {
  border-left: 1px solid rgba(232, 207, 128, 0.32);
}
.stats-reveal__item:last-child {
  border-right: 1px solid rgba(232, 207, 128, 0.32);
}
.stats-reveal__number {
  display: block;
  color: #e7dc9c;
  margin-bottom: 0.5rem;
}
.stats-reveal__caption {
  color: rgba(250, 248, 241, 0.62);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .stats-reveal__editor h2 {
    --font-size: 72px;
    --font-size-rem: 4.5rem;
    --line-height: 82px;
    --line-height-rem: 5.125rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .stats-reveal__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .stats-reveal {
    position: absolute;
    inset: auto 0 0 0;
    min-height: 0;
    height: var(--intro-stage-height);
    transform: translateY(var(--intro-stage-height));
  }
  .stats-reveal__tint {
    padding: 6rem 0 4.5rem;
  }
  .stats-reveal__subtitle {
    text-align: start;
  }
  .stats-reveal__list {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    padding: 3rem 40px 0;
  }
}
@media screen and (max-width: 991.99px) {
  .stats-reveal__intro {
    align-items: center;
  }
  .stats-reveal__editor h2 {
    text-align: center;
  }
  .stats-reveal__editor p {
    text-align: center;
  }
  .stats-reveal__item {
    border-left: none;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(232, 207, 128, 0.32);
  }
  .stats-reveal__item:first-child {
    border-right: none;
    border-left: none;
    border-top: 1px solid rgba(232, 207, 128, 0.32);
    padding-top: 1.5rem;
  }
  .stats-reveal__item:last-child {
    border-right: none;
  }
  .stats-reveal__number {
    --font-size: 36px;
    --font-size-rem: 2.25rem;
    --line-height: 50.4px;
    --line-height-rem: 3.15rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
@media screen and (max-width: 767.99px) {
  .stats-reveal__image {
    display: flex;
    justify-content: center;
  }
}
.stories {
  background-color: #fcfaf8;
  padding: 0 !important;
}
.stories__background {
  width: calc(100% - 1rem);
  margin: 0 auto;
  padding: 3rem 0;
  background-color: hsl(0, 0%, 100%);
  border-radius: 16px;
}
.stories__intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.stories__eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: #dbc264;
}
.stories__editor h2 {
  margin: 0 0 0.75rem;
  color: #111b21;
}
.stories__editor p {
  margin: 0;
  color: rgba(17, 27, 33, 0.6);
}
.stories__slider {
  position: relative;
  padding-bottom: 4rem;
}
.stories__slide {
  height: auto;
}
.stories__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background-color: #e9ddcb;
  box-shadow: 0 14px 16px -8px rgba(0, 0, 0, 0.04);
  aspect-ratio: 5/6;
  overflow: hidden;
  width: 100%;
  transition: box-shadow 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.stories__photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.stories__photo img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: transform 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.stories__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 12px;
  border-radius: 12px;
  background-color: #194547;
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  letter-spacing: 0.04em;
  --font-size: 10px;
  --font-size-rem: 0.625rem;
  --line-height: 14px;
  --line-height-rem: 0.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  text-transform: uppercase;
}
.stories__body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
  position: absolute;
  bottom: 3px;
  background: hsl(0, 0%, 100%);
  width: calc(100% - 6px);
  border-radius: 13px;
  left: 3px;
}
.stories__name {
  margin-bottom: 0.4rem;
  color: #111b21;
  font-weight: 700;
  --font-size: 17px;
  --font-size-rem: 1.0625rem;
  --line-height: 22px;
  --line-height-rem: 1.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.stories__detail {
  color: rgba(17, 27, 33, 0.55);
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 20px;
  --line-height-rem: 1.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.stories__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 0;
}
.stories__footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.stories__cta {
  background-color: hsl(0, 0%, 100%);
}
@media screen and (min-width: 992px) {
  .stories {
    padding: 5rem 0;
  }
  .stories__intro {
    margin-bottom: 3.5rem;
  }
}
@media (hover: hover) {
  .stories__card:hover {
    box-shadow: 0 24px 32px -12px rgba(0, 0, 0, 0.16);
  }
  .stories__card:hover .stories__photo img {
    transform: scale(1.05);
  }
}
.system {
  background-color: #fcfaf8;
}
.system__background {
  width: calc(100% - 1rem);
  margin: 0 auto;
  background-color: #111b21;
  border-radius: 16px;
}
.system__panel {
  padding: 3rem 0;
}
.system__head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.system__intro {
  display: flex;
  flex-direction: column;
}
.system__eyebrow {
  margin-bottom: 0.75rem;
  color: #dbc264;
}
.system__editor h2 {
  margin: 0;
  color: #faf8f1;
}
.system__editor p {
  margin: 0.75rem 0 0;
  color: rgba(250, 248, 241, 0.7);
}
.system__illustration {
  position: relative;
  flex-shrink: 0;
  align-self: center;
}
.system__illustration > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  will-change: transform;
}
.system__decor {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
  will-change: transform;
}
.system__decor img {
  display: block;
  width: 100%;
  height: auto;
}
.system__decor--1 {
  top: -5%;
  left: 0;
  width: 80%;
}
.system__decor--2 {
  top: 0;
  right: 18%;
  width: 50%;
}
.system__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.system__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 16px 20px;
  background: linear-gradient(84deg, rgba(219, 194, 100, 0.5) -9.62%, rgba(25, 69, 71, 0.25) 3.9%, rgba(25, 69, 71, 0) 115.71%);
}
.system__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background: linear-gradient(50deg, rgba(219, 194, 100, 0.5) -9.62%, rgba(25, 69, 71, 0.25) 25.9%, rgba(25, 69, 71, 0) 115.71%);
}
.system__item:hover::before {
  opacity: 1;
}
.system__index {
  color: #e8cf80;
  --font-size: 17px;
  --font-size-rem: 1.0625rem;
  --line-height: 18px;
  --line-height-rem: 1.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.system__label {
  color: #faf8f1;
  font-weight: 300;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 16px;
  --line-height-rem: 1rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
@media screen and (min-width: 768px) {
  .system__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .system__item {
    padding: 30px 24px 16px 70px;
  }
  .system__index {
    position: absolute;
    top: 15px;
    left: 15px;
  }
  .system__label {
    --font-size: 22px;
    --font-size-rem: 1.375rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
@media screen and (min-width: 992px) {
  .system__panel {
    padding: 5rem 0;
  }
  .system__illustration > img {
    max-width: 400px;
  }
  .system__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .system__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .system__eyebrow {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}