.about-content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  /* grid-column-gap: 30px; */
  /* grid-row-gap: 30px; */
  /* margin-bottom: 60px; */
}

.about-content-container .content {
  flex-grow: 1;
}

.about-content-container .img {
  max-width: 50%;
}

@media screen and (max-width: 768px) {
	.about-content-container .img {
	  max-width: 90%;
	}
}

/* .about-content-container p:first-child {
  grid-column-start: 6;
  grid-column-end: 27;
  grid-row-start: 1;
  grid-row-end: 5;
}

.about-content-container p:first-child img {
  width: 100%;
}

.about-content-container div:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.about-content-container h3:nth-child(3) {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-decoration-line: underline;
  text-transform: uppercase;
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
  margin-bottom: 0;
}

.about-content-container div:nth-child(4) {
  text-align: start;
  grid-row-start: 4;
  grid-column-start: 1;
  grid-column-end: 3;
} */

tr,
th,
td {
  border: none !important;
}

tr:nth-child(2n-1) {
  background: #F7F7FA;
}

th,
td {
  font-size: 15px;
  line-height: 24px
}

th {
  background: transparent !important;
  text-align: left;
  font-weight: 600 !important;
  padding: 19px 30px !important;
  white-space: nowrap;
}

td {
  padding: 19px 20px;
}

@media screen and (max-width: 1200px) {
  .about-content-container p:first-child {
    grid-column-end: 23;
  }
}

@media screen and (max-width: 1024px) {
  .about-content-container p:first-child {
    grid-column-start: 4;
    grid-column-end: 7;
  }
}

@media screen and (max-width: 798px) {
  .about-content-container {
    display: flex;
    flex-direction: column;
    grid-row-gap: 0;
    margin-bottom: 20px;
  }

  .about-content-container p:first-child {
    order: 3;
    margin-bottom: 0;
  }

  .about-content-container div:nth-child(2) {
    order: 1;
  }

  .about-content-container h3:nth-child(3) {
    order: 2;
    margin-top: 15px;
    margin-bottom: 50px;
    font-size: 12px;
  }

  .about-content-container div:nth-child(4) {
    order: 4;
    margin-top: 50px;
  }

  th {
    white-space: normal;
    min-width: 150px;
  }
}