.aboutUsWrapper {
  padding-inline: 66px;
  margin-top: 150px;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-around;
  align-items: center;
  gap: 80px;
}

.aboutUsWrapper img {
  width: 50%;
  height: 100%;
  max-width: 720px;
  max-height: 800px;
}

.aboutUsWrapper .textWrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aboutUsWrapper .textWrapper h6 {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
}
.aboutUsWrapper .textWrapper p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  max-width: 400px;
}
.aboutUsWrapper .textWrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  background-color: #d91e3e;
  width: fit-content;
  border-radius: 20px;
  color: white;
}

@media screen and (max-width: 1110px) {
  .aboutUsWrapper {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 900px) {
  .aboutUsWrapper img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 700px) {
  .aboutUsWrapper {
    justify-content: flex-start;
  }
}
