.section-about-us {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-about-us {
  position: absolute;
  top: 22%;
  width: 642px;
  text-align: center;
  margin-bottom: 72px;
  z-index: 2;
}

.text-about-us h2 {
  margin: 0;
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 600;
  color: #0058B8;
}

.text-about-us p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #1E1E1E;
}

.section-about-us img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .section-about-us {
    margin-top: 60px;
  }

  .text-about-us {
    top: 16%;
  }
}

@media (max-width: 880px) {
  .section-about-us {
    margin-top: 8rem;
  }

  .text-about-us {
    top: 10%;
  }
}

@media (max-width: 768px) {
  .section-about-us {
    margin-top: 12rem;
  }

  .text-about-us {
    top: 0;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .section-about-us {
    margin-top: 10rem;
  }

  .text-about-us {
    position: initial;
    margin-bottom: 0;
  }

  .text-about-us h2 {
    font-size: 22px;
  }

  .text-about-us p {
    font-size: 16px;
  }
  
  .section-about-us img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}
