header {
  background-image: url('/new_landing/images/home-page/section_header.png');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

section.hero {
  p {
    margin: 30px 0;
  }
  .hero-image {
    width: 100%;
  }
  .ssm-motto {
    margin: 70px 0;
    max-width: 700px;
    width: 100%;
  }
}

section.ssm-one-stop-shop {
  .ssm-about-pro img {
    width: 100%;
  }
  h5 {
    font-size: 32px;
    color: var(--color-indigo);
    span {
      font-size: 20px;
      color: var(--color-light-grey);
      font-style: italic;
    }
  }
  p {
    font-size: 24px;
    color: var(--color-dark-gray);
  }
  .ssm-pro {
    display: flex;
    gap: 20px;
    .ssm-pro-icon img {
      width: 100px;
    }
  }
}

section.ssm-simple-circle {
  background: #08153b 0% 0% no-repeat padding-box;
  color: var(--color-white);
  position: relative;
  .container {
    position: relative;
    z-index: 1;
  }
  .section-title,
  .section-subtitle {
    color: var(--color-white);
  }
  .section-subtitle {
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .curve-blue {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 0;
    transform: translateY(-50%);
  }
  .curve-blue-small {
    position: absolute;
    left: -200px;
    bottom: 0;
    max-width: 800px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    z-index: 0;
  }
  .yellow-button {
    margin-top: 16px;
  }
}

/* --- SECTION TESTIMONIALS --- */
section.ssm-testimonials {
  padding-top: 80px;
  padding-bottom: 200px;
  background-image: url('../images/home-page/section_testimonials.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;

  .section-title,
  .section-subtitle {
    position: relative;
    z-index: 1;
  }
  .section-subtitle {
    margin-bottom: 60px;
    color: #fff;
  }

  .testimonial {
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 45px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    .testimonial-quote {
      font-size: 28px;
      color: var(--color-indigo);
      font-weight: 400;
    }
    .testimonial-author,
    .testimonial-author-position,
    .testimonial-company {
      color: var(--color-dark-indigo);
    }
    .testimonial-author,
    .testimonial-company {
      font-size: 32px;
      font-weight: 600;
    }
    .testimonial-author-position {
      font-size: 24px;
      font-weight: 400;
    }
    .testimonial-author,
    .testimonial-author-position {
      margin-bottom: 0px;
    }
    .testimonial-company {
      margin-bottom: 0;
    }
  }
  .curve-indigo {
    position: absolute;
    top: -150px;
    right: 0;
    z-index: 0;
  }
  .curve-pink {
    position: absolute;
    bottom: -150px;
    left: -315px;
    z-index: 0;
  }
}

/* --- SECTION ITH CONTACT FORM --- */
section.ssm-contact {
  background: var(--color-dark-indigo) 0% 0% no-repeat padding-box;
  padding: 250px 0 170px;
  position: relative;
  overflow-x: clip;
  p {
    color: var(--color-white);
  }
  .section-title {
    color: var(--color-white);
  }
  .contact-text {
    font-size: 24px;
    margin: 35px 0;
    color: var(--color-white);
    font-weight: 300;
  }
  .contact-text-strong {
    font-size: 31px;
  }
  form#contact-form {
    label {
      color: var(--color-white);
    }
    input {
      height: 65px;
    }
  }
  .form-submit-button {
    background-color: transparent;
    border: 2px solid var(--color-white);
    border-radius: 35px;
    font-size: 24px;
    color: var(--color-white);
    padding: 15px 45px;
    display: block;
  }
  .form-submit-button:hover {
    background-color: var(--color-white) !important;
    color: var(--color-dark-indigo);
  }
  .curve-yellow {
    position: absolute;
    bottom: -450px;
    right: -290px;
    z-index: 0;
  }
}

/* --- SECTIO WITH FAQ ACCORDION --- */
section.ssm-faq {
  background-image: url('../images/home-page/section-faq.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  .section-title {
    color: var(--color-pink);
  }

  .accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .accordion {
    border: 2px solid #c4c4c4;
    border-radius: 14px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    .accordion-item {
      background: none;
      border: none;
      border-bottom: 2px solid #c4c4c4;
      padding-top: 20px;
      padding-bottom: 20px;
      .accordion-button {
        background-color: none;
        background: none;
        box-shadow: none;
        font-size: 32px;
        color: var(--color-dark-indigo);
        font-weight: bold;
      }
      .accordion-button:focus {
        box-shadow: none;
      }
      .accordion-body {
        color: var(--color-dark-gray);
        font-size: 24px;
      }
    }
    .accordion-item:last-of-type {
      border-bottom: none;
    }
  }
}

section.ssm-problem-solving {
  .section-subtitle {
    margin: 20px 0 60px 0;
  }
}

@media only screen and (max-width: 1681px) {
  section.hero {
    .ssm-motto {
      margin: 50px 0;
    }
  }
  section.ssm-one-stop-shop {
    h5 {
      font-size: 22px;
    }
    p {
      font-size: 18px;
    }
    .ssm-pro {
      gap: 10px;
      .ssm-pro-icon img {
        width: 70px;
      }
    }
  }
  section.ssm-testimonials {
    padding-bottom: 70px;
    .testimonial {
      .testimonial-quote {
        font-size: 18px;
      }
      .testimonial-author,
      .testimonial-company {
        font-size: 20px;
      }
      .testimonial-author-position {
        font-size: 18px;
      }
    }
  }
  section.ssm-contact {
    padding: 70px 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;
        background-color: var(--color-dark-indigo);
      }
    }
  }

  section.ssm-faq {
    .accordion {
      .accordion-item {
        .accordion-button {
          font-size: 22px;
        }
        .accordion-body {
          font-size: 20px;
        }
      }
    }
  }
}

@media only screen and (max-width: 1200px) {
  section.ssm-one-stop-shop {
    .ssm-about-pro img {
      position: unset;
      transform: none;
      width: 100%;
      margin-bottom: 50px;
    }
  }
}
@media only screen and (max-width: 992px) {
  section.ssm-testimonials {
    .curve-pink,
    .curve-indigo {
      display: none;
    }
  }

  section.ssm-one-stop-shop {
    .ssm-about-pro img {
      margin-bottom: 0;
    }
  }
}
@media only screen and (max-width: 768px) {
  section.hero {
    .ssm-motto {
      margin: 30px 0;
    }
  }

  section.ssm-one-stop-shop {
    h5 {
      font-size: 24px;
    }
    .ssm-pro {
      gap: 15px;
      .ssm-pro-icon {
        img {
          width: 60px;
        }
      }

      .ssm-pro-text {
        h5 {
          font-size: 22px;
        }
        p {
          font-size: 18px;
        }
      }
    }
  }

  section.ssm-simple-circle {
    overflow-x: hidden;
  }

  section.ssm-testimonials {
    padding-bottom: 80px;
    .curve-pink,
    .curve-indigo {
      display: none;
    }

    .section-subtitle {
      margin-bottom: 0;
    }
    .testimonial {
      padding: 20px 25px;
      .testimonial-quote {
        font-size: 18px;
        margin-bottom: 0;
      }
      .testimonial-author,
      .testimonial-company {
        font-size: 22px;
      }

      .testimonial-author-position {
        font-size: 18px;
      }
    }
  }

  section.ssm-contact {
    padding: 80px 0;
    .curve-yellow {
      display: none;
    }
    .contact-text {
      font-size: 18px;
    }
    .contact-text-strong {
      font-size: 24px;
    }
    .form-submit-button {
      font-size: 18px;
      padding: 7px 40px;
    }
  }

  section.ssm-faq {
    .accordion {
      .accordion-item {
        .accordion-button {
          font-size: 22px;
        }
        .accordion-body {
          font-size: 18px;
        }
      }
    }
  }
}

@media only screen and (max-width: 576px) {
  section.hero {
    .coa-buttons {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 20px;
      a {
        flex-basis: 50%;
      }
    }
  }
  section.ssm-one-stop-shop {
    .ssm-pro {
      gap: 10px;
    }
  }

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

@media only screen and (max-width: 376px) {
  section.hero {
    .coa-buttons {
      gap: 10px;
      a {
        font-size: 17px;
      }
    }
  }
}
