/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.how-it-works {
  background-color: #f5f4f0;
}
.how-it-works .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9rem;
}
.how-it-works .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.how-it-works .heading {
  margin: 0 0 5rem;
}
.how-it-works .mobile-heading {
  display: none;
}
.how-it-works .steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7rem;
}
.how-it-works .step {
  position: relative;
}
.how-it-works .step-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 2rem;
}
.how-it-works .step-number {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
  background-color: #EBC743;
  border-radius: 50%;
  outline: solid 10px #f5f4f0;
  position: absolute;
  top: -10px;
  left: -115px;
}
.how-it-works .step-number.step-number-1 {
  background-color: #bde6d0;
}
.how-it-works .step-number.step-number-2 {
  background-color: #80cda1;
}
.how-it-works .link {
  display: flex;
  gap: 1.7rem;
  align-items: center;
  margin: 6.2rem 0 0;
  color: #507A9E;
  text-decoration: underline;
  font-weight: 700;
}
.how-it-works .link:hover svg {
  transform: translateX(10px);
}
.how-it-works .link svg {
  margin: 0 0.5rem 0 0;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .how-it-works .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .how-it-works .content {
    display: block;
  }
  .how-it-works .heading {
    display: none;
  }
  .how-it-works .mobile-heading {
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    display: block;
  }
  .how-it-works .image img {
    width: 100%;
  }
  .how-it-works .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 1rem 0 0;
  }
  .how-it-works .step {
    position: relative;
    display: flex;
    gap: 2.2rem;
  }
  .how-it-works .step-title {
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }
  .how-it-works .step-content {
    width: calc(100% - 5.2rem);
  }
  .how-it-works .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
    outline: none;
    position: static;
  }
  .how-it-works .link {
    gap: 1.6rem;
    margin: 4rem 0 0;
  }
}