body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.text-primary {
  color: #242426;
}
.text-secondary {
  color: #bb4f3c;
}
.temp-top {
  height: 70vh;
  background-color: rgb(255, 255, 255);
}

.animation-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
}

.text-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.section-1 {
  background-color: #242426;
}

.animation-section__title {
  position: relative;
  text-align: center;
  color: white;
  letter-spacing: -0.055em;

  font-weight: 400;
  z-index: 2;
}
.animation-section__title--first,
.animation-section__title--second {
  display: inline-block;
}

.animation-section__images {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 0;
}
.animation-section__img {
  width: 5px;
  position: absolute;
}
.animation-section__img-1 {
  z-index: 5;
}
.animation-section__img-2 {
  z-index: 4;
}
.animation-section__img-3 {
  z-index: 3;
}
.animation-section__img-4 {
  z-index: 2;
}
.animation-section__img-5 {
  z-index: 1;
}

.section-2 {
  background-color: #e8e5de;
}
.section-3 {
  background-color: #6f95a9;
}

/* temp */
.reveal-heading {
  font-size: 1.8rem;
  margin: 0;
  position: relative;
  overflow: hidden;
  line-height: 2.5rem;
}

@media (min-width: 450px) {
  .reveal-heading {
    font-size: 2.1rem;
    line-height: 3.5rem;
  }
}
@media (min-width: 768px) {
  .reveal-heading {
    font-size: 3rem;
    line-height: 4.2rem;
  }
}

@media (min-width: 1200px) {
  .reveal-heading {
    font-size: 4rem;
    line-height: 6.7rem;
  }
}

.reveal-heading h1 {
  margin: 0;
  font-weight: 400;
  padding: 0 12px;
}
.reveal-heading > div {
  position: relative;
  margin: 0;
}
.split-parent {
  overflow: hidden;
}
.split-child {
  display: inline-block;
}

.section-4 {
  width: calc(100% - 1.25rem * 2);
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 4.0625rem 1.25rem;
}
.section-4__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  margin: auto;
  gap: 30px;
}
@media (min-width: 768px) {
  .section-4__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .section-4__cards {
    gap: 50px;
  }
}
@media (min-width: 1600px) {
  .section-4__cards {
    width: 1558px;
  }
}

.section-4__card {
  /* width: 100%; */
  min-height: 500px;
  background-color: red;
}
