.remere-scroll-section,
.remere-scroll-section * {
  box-sizing: border-box;
}

.remere-scroll-section {
  position: relative;
  height: 300vh;
  background: #173b73;
  font-family: Arial, Helvetica, sans-serif;
}

.remere-sticky-wrapper {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

/* LEFT */
.remere-left {
  width: 50%;
  height: 100vh;
  background: #071f3f;
  padding-left: 7.5vw;
  display: flex;
  align-items: center;
}

.remere-left-content {
  max-width: 560px;
}

.remere-left h2 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.remere-left h2 em {
  font-style: italic;
  font-weight: 400;
}

.remere-left p {
  margin: 0 0 34px;
  max-width: 410px;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
}

/* RIGHT */
.remere-right {
  width: 50%;
  height: 100vh;
  background: #0e2c5e;
  padding-right: 7.5vw;
  overflow: hidden;
  position: relative;
}

.remere-cards-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  will-change: transform;
  transform: translateY(0);
}

/* CARD */
.remere-card {
  min-height: 33.333vh;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  column-gap: 38px;
  color: #fff;
  padding-left: 4.8vw;
  padding-right: 7.5vw;
}

.remere-card-1 { background: #0e2c5e; }
.remere-card-2 { background: #12346e; }
.remere-card-3 { background: #153a77; }
.remere-card-4 { background: #183f80; }
.remere-card-5 { background: #1b4589; }
.remere-card-6 { background: #1e4b92; }

.remere-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #efc66f;
  color: #071f3f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 600;
}

/* TEXT */
.remere-card h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
}

.remere-card p {
  margin: 0;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.45;
}

/* RESPONSIVE */
@media screen and (max-width: 1366px) {
  .remere-card {
    column-gap: 28px;
    padding-left: 4vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 900px) {
  .remere-scroll-section {
    height: auto;
  }

  .remere-sticky-wrapper {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto;
    display: block;
    overflow: visible;
  }

  .remere-left,
  .remere-right {
    width: 100%;
    height: auto;
    padding-left: 7.5vw;
    padding-right: 7.5vw;
  }

  .remere-left {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .remere-right {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .remere-cards-track {
    position: relative;
    transform: none !important;
  }

  .remere-card {
    min-height: auto;
    padding: 42px 7.5vw;
    grid-template-columns: 54px 1fr;
    column-gap: 24px;
  }

  .remere-number {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
}