/*------------------------- SUSTAINABILITY ------------------------*/
/*--- CONTAINER FOR IMAGE ---*/
.sustainability-type__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*--- IMAGE WRAPPER TO CREATE A PSEUDO BACKGROUND ---*/
.sustainability-type__img-wrapper {
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  display: flex;
  overflow: hidden;
}

@media only screen and (max-width: 56.25em) {
  .sustainability-type__img-wrapper {
    width: 35rem;
    height: 35rem;
  }
}

.sustainability-type__img-wrapper::before {
  content: "";
  display: block;
  width: 55rem;
  height: 55rem;
  background-image: radial-gradient(circle, var(--background-primary-light) 0%, var(--background-primary-light) 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media only screen and (max-width: 56.25em) {
  .sustainability-type__img-wrapper::before {
    width: 45rem;
    height: 45rem;
  }
}

@media only screen and (max-width: 27.5em) {
  .sustainability-type__img-wrapper::before {
    width: 40rem;
    height: 40rem;
  }
}

/*--- IMAGE ---*/
.sustainability-type__img {
  width: 100%;
}

/*------------------------- SUSTAINABILITY ------------------------*/
