section.hero {
  background-image: url('/new_landing/images/process-page/section-header.png');
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  .section-title {
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .section-text {
    margin-bottom: 30px;
  }
  .our-numbers {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    div {
      flex-basis: 30%;
    }
    .number {
      font-size: 90px;
      line-height: 1;
      color: var(--color-pink);
    }
    h4 {
      font-size: 28px;
    }
    .number-description {
      font-size: 27px;
      font-weight: 300;
      color: #313131;
    }
  }
  .wavey-circle {
    position: absolute;
    top: 50px;
    right: -200px;
    max-width: 740px;
  }
}
section.ssm-our-founder {
  .section-title {
    margin-bottom: 40px;
  }
  h4 {
    font-size: 36px;
    color: #313131;
  }
  p {
    font-size: 27px;
    color: #313131;
    font-weight: 300;
  }
}
section.ssm-our-way {
  padding: 200px 0;
  background-color: var(--color-dark-indigo);
  background-image: url('/new_landing/images/about-us/our-way.png');
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
  .our-way {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-white);
    border: 10px solid var(--color-light-gray);
    border-radius: 15px;
    padding: 100px 50px;
    height: 100%;
    position: relative;
    z-index: 2;
    h4 {
      font-size: 36px;
    }
    p {
      font-size: 27px;
      color: #313131;
      font-weight: 300;
    }
    a {
      background-color: var(--color-yellow);
      color: var(--color-dark-indigo);
      font-size: 27px;
      line-height: 1;
      padding: 10px 40px;
      border-radius: 30px;
      border: 2px solid var(--color-yellow);
      margin-top: 60px;
      &:hover {
        background-color: transparent;
      }
    }
  }
  .curve-indigo,
  .curve-pink {
    position: absolute;
    z-index: 1;
  }

  .curve-indigo {
    top: 0;
    right: -250px;
  }
  .curve-pink {
    bottom: 0;
    left: -400px;
  }
}

@media only screen and (max-width: 1681px) {
  section.hero {
    .wavey-circle {
      max-width: 550px;
    }
    .our-numbers {
      .number {
        font-size: 60px;
      }
      h4 {
        font-size: 24px;
      }
      .number-description {
        font-size: 20px;
      }
    }
  }

  section.ssm-our-way {
    .our-way {
      padding: 50px 25px;
      h4 {
        font-size: 22px;
      }
      p {
        font-size: 18px;
      }
      a {
        margin-top: 20px;
        font-size: 18px;
      }
    }
  }

  section.ssm-our-founder {
    h4 {
      font-size: 24px;
    }
    p {
      font-size: 20px;
    }
  }
}
@media only screen and (max-width: 996px) {
  section.hero {
    .wavey-circle {
      display: none;
    }
    .our-numbers {
      div {
        flex-basis: auto;
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  section.hero {
    .our-numbers {
      div {
        flex-basis: 100%;
        text-align: center;
      }
      .number {
        font-size: 50px;
      }
      h4 {
        font-size: 22px;
      }
      .number-description {
        font-size: 18px;
      }
    }
  }

  section.ssm-our-founder {
    h4 {
      font-size: 24px;
      margin-top: 40px;
    }
    p {
      font-size: 18px;
      margin-bottom: 0;
    }
    img {
      margin-top: 40px;
    }
  }

  section.ssm-our-way {
    padding: 70px 0 150px;
    .our-way {
      padding: 30px 20px;

      h4 {
        font-size: 24px;
      }
      p {
        font-size: 18px;
        margin-bottom: 0;
      }
      a {
        font-size: 18px;
        padding: 7px 20px;
        margin-top: 0;
      }
    }
    .our-way + .our-way {
      margin-top: 20px;
    }
    .curve-indigo,
    .curve-pink {
      display: none;
    }
  }
}

@media only screen and (max-width: 576px) {
  section.ssm-our-founder {
    h4 {
      margin-top: 0px;
    }
    img {
      margin-top: 20px;
    }
  }
}
