.about {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: var(--clr-tertiary);
}
.about__content {
  display: flex;
  flex-direction: column;
}

.about__image-container {
  position: absolute;
  top: 15rem;
  left: 3rem;
  width: 27.5rem;
  z-index: -1;
  opacity: 0.0575;
  pointer-events: none;
}

.about__image {
  width: 100%;
}

.about__title {
  color: var(--clr-secondary);
  font-size: 1.75rem;
  font-weight: 600;
}

.about__description {
  text-wrap: pretty;
  margin-block: 1rem;
  color: #0c2845;
}

.about__img {
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
}

@media (width >= 475px) {
  .about__image-container {
    left: 8rem;
  }
}

@media (width >= 768px) {
  .about__title {
    font-size: 2.25rem;
  }
  .about__description {
    margin-block: 1.5rem;
  }
  .about__image-container {
    top: 0rem;
    left: 20rem;
    width: 35rem;
  }
}

@media (width >= 1024px) {
  .about__content {
    flex-direction: row;
    gap: 2rem;
  }
  .about__text-container {
    flex: 1;
    order: 1;
  }
  .about__description {
    text-align: justify;
  }
  .about__img-container {
    flex: 1;
    flex-shrink: 0;
  }
  .about__image-container {
    display: block;
    top: -5rem;
    left: 20rem;
    width: 55rem;
    opacity: 0.125;
  }
}

@media (width >= 1280px) {
  .about__content {
    gap: 3rem;
  }
  .about__title {
    font-size: 3rem;
  }
  .about__description {
    font-size: 1.125rem;
  }
  .about__image-container {
    top: -5rem;
    left: 25rem;
    width: 65rem;
  }
}

@media (width >= 1536px) {
  .about__image-container {
    top: -10rem;
    left: 37.5rem;
    width: 75rem;
  }
  .about__description {
    font-size: 1.25rem;
  }
}
