.about-section-header {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../assets/IMG_1859.png");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.about-header-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.about-section-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(48, 92, 222, 0.1),
    rgba(26, 35, 126, 0.9)
  );
  z-index: 1;
}

.about-section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(48, 92, 222, 0.4),
    rgba(0, 0, 0, 0.4)
  );

  z-index: 1;
}

.about-section-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

@media (max-width: 1024px) {
  .about-section-header {
    height: 40vh;
    background-position: center 48%;
    background-attachment: scroll;
  }
}

@media (max-width: 900px) {
  .about-section-header {
    height: 37vh;
    background-position: center 49%;
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .about-section-header {
    height: 35vh;
    background-position: center 50%;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .about-section-header {
    height: 30vh;
    background-position: center 50%;
    background-attachment: scroll;
  }
}
