.about-us {
  max-width: 80%;
  width: 100%;
  margin: max(7.5vh, 2.5rem) auto;
  display: flex;
  gap: max(5vw, 2.5rem);
  padding: 2.75rem;
}

.about-us-description {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vw;
}

.about-us .section_title {
  font-family: var(--base-font-family);
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: calc(30px + 27 * ((100vw - 320px) / (1920 - 320)));
  text-shadow: none;
}

.about-us-description__content {
  font-size: max(0.85vw, 14px);
  line-height: 1.25;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 0.75vw;
  font-family: "Montserrat", sans-serif;
}
.about-us-img--wrapper {
  width: 45%;
  position: relative;
  z-index: 2;
}

.about-us-img--wrapper:after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  border: 2px solid #cd2122;
  width: 100%;
  height: 100%;
  left: 2.5rem;
  top: 2.5rem;
  background-color: transparent;
  z-index: -1;
}

.about-us-img--wrapper img {
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 1368px) {
  .about-us {
    max-width: 85%;
  }
}

@media screen and (max-width: 1368px) {
  .about-us {
    max-width: 90%;
  }
}

@media screen and (max-width: 1080px) {
  .about-us {
    max-width: 85%;
  }
  .about-us {
    max-width: 90%;
    padding: 1.75rem;
  }

  .about-us-description__content {
    font-size: 1.35vw;
    /* line-height: 1.75vw; */
  }
  .about-us-img--wrapper:after {
    left: 1.5rem;
    top: 1.5rem;
  }
}

@media screen and (max-width: 900px) {
  .about-us {
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .about-us-description {
    width: 75%;
    gap: 2vw;
  }
  .about-us .section_title {
    text-align: center;
    font-size: max(6vw, 40px);
  }

  .about-us-description__content {
    font-size: max(2.15vw, 16px);
    /* line-height: 2.65vw; */
    gap: 1.75vw;
  }

  .about-us-img--wrapper {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .about-us-description {
    gap: 3vw;
  }
  .about-us-description__content {
    /* font-size: 2.35vw; */
    /* line-height: 3vw; */
    gap: 2.25vw;
  }
}

@media screen and (max-width: 500px) {
  .about-us-description {
    gap: 4vw;
    width: 85%;
  }
  .about-us .section_title {
    /* font-size: 7.5vw; */
  }

  .about-us-description__content {
    /* font-size: 3vw;
    line-height: 4vw; */
    gap: 3.25vw;
  }
}
