.aboutUs h1 {
  position: relative;
  padding-bottom: 45px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #111;
  font-weight: 600;
  &::before {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 20%;
    left: 55%;
    margin-left: -15%;
    height: 1px;
    content: "";
    background-color: #777;
    z-index: 4;
    text-align: center;
  }
  &::after {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    bottom: 0px;
    content: "\00a7";
    font-size: 40px;
    line-height: 40px;
    color: #c50000;
    font-weight: 400;
    z-index: 5;
    display: block;
    background-color: #fff;
  }
}
.aboutUs h2 {
  color: #10101c;
  font-family: poppins;
}
.aboutUs p {
  color: #10101c;
  text-align: justify;
  font-size: Clamp(16px, 2vw, 16px);
}
.aboutUs img {
  width: 500px;
  display: block;
}
.aboutUs img p {
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  h3::after {
    display: none;
  }
  .aboutUs img {
    width: 200px;
  }
}
