@media only screen and (max-width: 1050px) {
  /* header section style */
  .AboutUsHeader .HeaderTextContainerAbout .aboutHeaderWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 20px;
  }
  .AboutUsHeader .HeaderTextContainerAbout .aboutHeaderWrapper .AboutTitle {
    width: 100%;
    /* text-align: center; */
    width: 85%;
  }

  .AboutUsHeader .HeaderTextContainerAbout .aboutHeaderWrapper .AboutText {
    width: 85%;
  }

  /* add shadow to the bottom off the header section */

  .AboutUsHeader {
    position: relative;
    padding-bottom: 50px;
  }
  .AboutUsHeader::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 350px;

    background: linear-gradient(180deg, rgba(7, 8, 22, 0) 0%, #070816 86.98%);
  }

  /* end header style */
  /* start body style -- cards */

  .aboutUsMain .AboutUsWrapper .cardSection {
    grid-template-columns: 1fr;
  }
  .aboutUsMain .AboutUsWrapper .cardSection .CardTextContent {
    width: 50%;
    margin: auto;

    padding: 40px 0;
  }
  .AboutUsWrapper .cardSection.even .CardTextContent {
    order: 3;
    padding-left: 0;
  }
}
