/* Section: Expect (Home) */
.expect-home {
  background: #ccaa68;
  padding: 100px 0;
  text-align: center;
}

.expect-home__container {
  padding: 0 130px;
}
@media (max-width: 1450px) {
  .expect-home__container {
    padding: 0 90px;
  }
}
@media (max-width: 1024px) {
  .expect-home__container {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .expect-home__container {
    padding: 0 40px;
  }
}
@media (max-width: 526px) {
  .expect-home__container {
    padding: 0 14px;
  }
}

.expect-home h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--glm-secondary-font);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.expect-home__subtitle {
  margin: 0 0 80px;
  color: #fcfcfa;
  font-size: 16px;
  line-height: 1.6;
}

.expect-home__steps {
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: start;
  justify-items: center;
  column-gap: 10px;
  row-gap: 48px;
}

.expect-home__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
}

.expect-home__number-wrap {
  display: inline-flex;
  margin-bottom: 28px;
  border: 5px solid #ffffff66;
}

.expect-home__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  background: #20543a;
  color: #ffffff;
  font-family: var(--glm-secondary-font);
  font-size: 20px;
  font-weight: 500;
}

.expect-home__step h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--glm-secondary-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.expect-home__step p {
  margin: 0;
  color: #fcfcfa;
  font-size: 14px;
  line-height: 1.6;
}

.expect-home__arrow {
  display: block;
  width: 120px;
  height: 20px;
  margin-top: 28px;
  background: url(../../images/Arrfirst.svg) no-repeat center / contain;
}

.expect-home__arrow--second {
  background-image: url(../../images/ArrSecond.svg);
}

@media (max-width: 1180px) {
  .expect-home__steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .expect-home__step {
    max-width: none;
  }

  .expect-home__arrow {
    display: none;
  }
}

@media (max-width: 980px) {
  .expect-home {
    padding: 70px 0;
  }

  .expect-home h2 {
    font-size: 36px;
  }

  .expect-home__subtitle {
    margin-bottom: 44px;
  }
}

@media (max-width: 767px) {
  .expect-home {
    padding: 56px 0;
  }

  .expect-home h2 {
    font-size: 28px;
  }

  .expect-home__steps {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .expect-home__step {
    max-width: none;
  }
}
