:root {
  color-scheme: light;
  --brand: #2e52ff;
  --ink: #161b28;
  --muted: #3a4e62;
  --slide-bg: #e5eaef;
  --slide-size: 372px;
  --gap: 25px;
}



.purpose .overlay-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background: radial-gradient(circle at top, rgba(216,177,120,0.17), transparent 35%), #000;
}

.purpose .left-column {
    width: 45%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.purpose .left-column .text-content {
    margin-left: 15px;
}

.purpose .left-column h1 {
    font-size: 18px;
    color: var(--color-gold);
    text-align: left;
    line-height: 36px;
}

.purpose p {
    font-family: var(--body-font-family);
    text-align: left;
}

.purpose .right-column {
    width: 45%;
}

.purpose .left-column img {
    width: 150px;
}

.purpose .right-column img {
    position: relative;
    width: 100%;
    border-radius: 5px;
}

.principles {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 13.5%,
    rgba(0, 0, 0, 0) 13.51%
  ),
  rgb(245, 245, 247);
}

.principles h1 {
    margin-top: 50px;
    font-size: 32px;
    color: var(--color-gold);
    line-height: 32px;
    font-weight: 400;
}


/* ------------------------------ */
/*           CAROUSEL             */
/* ------------------------------ */

.carousel-wrap {
  position: relative;
  margin-top: 25px;
  width: 100%;
}

.carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.spacer {
  flex: 0 0 10%;
  scroll-snap-align: start;
}

@media (max-width: 42rem) {
  .carousel {
    --slide-size: 82vw;
    --gap: 1rem;
    padding-inline: 9vw;
    mask-image: none;
  }
}

/* ------------------------------ */
/*             CARD               */
/* ------------------------------ */

.card {
    display: flex;
    flex: 0 0 372px;
    height: 400px;
    border-radius: 1rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.card-content {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    background: #fff;
}

.card-content h2 {
    font-family: var(--t-title-font-family);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: var(--t-title-letter-spacing);
    line-height: var(--t-title-line-height);
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

/* ------------------------------ */
/*       CAROUSEL BUTTONS         */
/* ------------------------------ */

.principles ul {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    list-style: none;
    margin-top: 25px;
}

.principles ul li {
    margin-left: 15px;
    margin-right: 15px;
}

.carousel-btn {
    position: relative;
    margin-top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    background: #000;
    border: none;
    color: #fff;
    transition: 0.5s ease all;
    border: 1px solid #000;
}

.carousel-btn:hover {
    background: transparent;
    color: #000;
}









