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;
  min-height: 60vh;
  display: flex;
  align-items: center;
  .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: 50%;
    transform: translateY(-50%);
    right: -200px;
    max-width: 740px;
  }
}
section.ssm-our-founder {
  .section-title {
    margin-bottom: 40px;
  }
  h4 {
    font-size: 36px;
    color: #313131;
  }
  .founder-name {
    margin-top: 20px;
  }
  p {
    font-size: 27px;
    color: #313131;
    font-weight: 300;
  }
  .really-matters {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    text-align: center;
    img {
      /* max-width: 100px; */
      height: 70px;
      margin-bottom: 10px;
    }
    p {
      font-size: 24px;
      font-weight: 600;
      color: var(--color-pink)
    }
  }
}

/* --- SECTION ITH CONTACT FORM --- */
section.ssm-about-us-contact {
  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;
  .row {
    position: relative;
    z-index: 2;
  }
  p {
    color: var(--color-dark-indigo);
  }
  .section-title {
    color: var(--color-dark-indigo);
  }
  .contact-text {
    font-size: 24px;
    margin: 35px 0;
    color: var(--color-dark-indigo);
    font-weight: 300;
  }
  .contact-text-strong {
    font-size: 31px;
  }
  form#contact-form {
    label {
      color: var(--color-dark-indigo);
    }
    input {
      height: 65px;
    }
  }
  .form-submit-button {
    background-color: var(--color-pink);
    border: 2px solid var(--color-pink);
    border-radius: 35px;
    font-size: 24px;
    color: var(--color-white);
    padding: 15px 45px;
    display: block;
  }
  .form-submit-button:hover {
    background-color: transparent;
    color: var(--color-pink);
  }
  .curve-indigo,
  .curve-pink {
    position: absolute;
    z-index: 1;
  }

  .curve-indigo {
    top: 0;
    right: -250px;
  }
  .curve-pink {
    bottom: 0;
    left: -450px;
  }
}
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;
    }
  }
  section.ssm-about-us-contact {
    padding: 200px 0;
    .contact-text {
      font-size: 20px;
    }
    .contact-text-strong {
      font-size: 28px;
    }
    form#contact-form {
      position: relative;
      z-index: 2;
      input {
        height: 45px;
      }
      .form-submit-button {
        padding: 10px 45px;
      }
    }
  }
}
@media only screen and (max-width: 996px) {
  section.hero {
    .wavey-circle {
      display: none;
    }
    .our-numbers {
      div {
        flex-basis: auto;
      }
    }
  }
  section.ssm-our-founder {
    img {
      margin-bottom: 20px;
    }
    .really-matters {
      img {
        /* max-width: 100px; */
        height: 60px;
        margin-bottom: 10px;
      }
      p {
        font-size: 18px;
      }
    }
  }
}
@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;
    }
  }
  
  section.ssm-about-us-contact {
    padding: 80px 0;
    .curve-indigo,
    .curve-pink {
      display: none;
    }
    .contact-text {
      font-size: 18px;
    }
    .contact-text-strong {
      font-size: 24px;
    }
    .form-submit-button {
      font-size: 18px;
      padding: 7px 40px;
    }
  }
}

@media only screen and (max-width: 576px) {
  section.hero {
    .section-title {
      margin-top: 0;
    }
    .section-text {
      margin-bottom: 0;
    }
  }
  section.ssm-our-founder {
    h4 {
      margin-top: 0px;
    }
    img {
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .really-matters {
      padding-bottom: 10px;
      img {
        /* max-width: 100px; */
        margin-top: 0;
        height: 40px;
      }
      p {
        font-size: 14px;
      }
    }
  }

  section.ssm-about-us-contact {
    form#contact-form {
      input {
        height: 55px;
      }
    }
  }
}
