.about-section-carton {
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: inherit;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  /* right: 300px; */
}

.about-section-carton .about-img {
  max-width: 40%;
  flex-basis: 40%;
}

.about-section-carton .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section-carton .about-text {
  max-width: 60%;
  flex-basis: 60%;
  padding: 50px;
  background: var(--light-beaver);
  color: #fff;
}

.about-section-carton .about-text h1 {
  margin-bottom: 20px;
}

.about-section-carton .about-text h1 {
  color: #000;
  margin-bottom: 20px;
}
.about-section-carton .about-text p {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.about-section-carton .about-text p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
  .about-section-carton {
    padding: 30px;
  }
  .about-section-carton .about-img {
    max-width: 100%;
    flex-basis: 100%;
  }
  .about-section-carton .about-text {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media only screen and (min-width: 600px) {
  .about-section-carton {
    padding: 30px;
  }
  .about-section-carton .about-img {
    max-width: 100%;
    flex-basis: 100%;
  }
  .about-section-carton .about-text {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .about-section-carton {
    padding: 80px;
  }
  .about-section-carton .about-img {
    max-width: 50%;
    flex-basis: 50%;
  }
  .about-section-carton .about-text {
    max-width: 50%;
    flex-basis: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .about-section-carton {
    padding: 80px;
  }
  .about-section-carton .about-img {
    max-width: 40%;
    flex-basis: 40%;
  }
  .about-section-carton .about-text {
    max-width: 60%;
    flex-basis: 60%;
  }
}

@media only screen and (min-width: 1200px) {
  .about-section-carton {
    padding: 80px;
  }
  .about-section-carton .about-img {
    max-width: 40%;
    flex-basis: 40%;
  }
  .about-section-carton .about-text {
    max-width: 60%;
    flex-basis: 60%;
  }
}
