.section {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  padding: 10.4rem 0;
  z-index: 1;
}

#treatment-catalogue {
  padding: 0 0 10.4rem 0;
  transition: all 0.3s ease-in-out;
}

#treatment-catalogue.treatments-bg-light {
  background-color: var(--light-grey);
}

#treatment-catalogue.treatments-bg-dark {
  background-color: var(--creme-grey);
}

@media (min-width: 1024px) {
  #treatment-catalogue {
    padding: 17.6rem 0;
  }
}

@media (min-width: 768px) {
  .section {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 17.6rem 0;
  }
}

.section-title {
  font-size: 3.6rem;
  font-weight: 400;
  padding: 0 2.4rem;
  margin-bottom: 2.4rem;
}

.section-text {
  max-width: 84rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}

.section-background-container {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  background-color: var(--light-grey);
  z-index: 0;
  overflow: visible;
}

.section-background-image {
  position: absolute;
  top: 25%;
  left: 0;
  height: auto;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 768px) {
  .section-background-image {
    top: 35%;
  }
}

@media (min-width: 1024px) {
  .section-background-image {
    top: 50%;
    height: 50%;
    width: 100%;
  }
}

.section-background-image-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .section-background-image-desktop {
    display: block;
  }

  .section-background-image-mobile {
    display: none;
  }
}

.section-cta {
  margin: 0 2.4rem;
}

@media (min-width: 768px) {
  .section-cta {
    margin: 0 auto;
  }
}

.section-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
}

@media (min-width: 768px) {
  .section-image-container {
    box-sizing: border-box;
    gap: 0;
    padding: 0 2.4rem;
  }
}

.section-image-mobile {
  height: auto;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

.section-image-mobile-top {
  border-radius: 0 16rem 1.2rem 0;
  margin: 0 4.8rem 0 0;
}

.section-image-mobile-bottom {
  border-radius: 1.2rem 0 0 16rem;
  margin: 0 0 0 4.8rem;
}

.section-image-desktop {
  display: none;
}

@media (min-width: 768px) {
  .section-image-desktop {
    display: block;
    height: auto;
    width: 100%;
    max-width: 120rem;
    object-fit: cover;
    pointer-events: none;
  }

  .section-image-mobile {
    display: none;
  }
}
