.mainSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* about headers  */

.aboutHeaders {
  width: 85%;
  max-width: 720px;
  padding: 120px 0;
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aboutSubHeader {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.aboutHeader {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.6px;
}

.headerLink {
  display: flex;
  justify-content: center;
}

.headerLink a {
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  color: #f35163;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* about pictures */

.aboutPictures {
  width: 120%;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 60px;
}

.picture {
  flex: 1 1 400px;
  min-width: 200px;
  max-height: 380px;
  display: flex;
}

.picture img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 15px;
}

/* about details */

.aboutDetails {
  padding: 120px 0;
  width: 85%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 120px;
}

.detailsTop {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 100px;
  line-height: 1.4;
}

.detailsTopHeader {
  width: fit-content;
  font-size: 36px;
  font-weight: 700;
}

.topDes {
  width: 100%;
  flex: 1 1 400px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #333;
  font-weight: 450;
}

.detailsBottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.partnersDetails {
  position: relative;
  height: fit-content;
  max-width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #f3f4f6;
  border-radius: 17px;
  overflow: hidden;
}

.detailsHeader {
  font-size: 20px;
  font-weight: 600;
}

.detailsDes {
  width: 100%;
  color: #333;
  max-width: 720px;
  font-weight: 450;
}

.partnersContainers {
  position: relative;
  display: flex;
  overflow: hidden;
}

.partnersContainers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0) 5%,
    rgba(255, 255, 255, 0) 95%,
    rgba(255, 255, 255, 0.9)
  );
  z-index: 999;
}

.aboutPartners {
  display: flex;
  flex-shrink: 0;
}

.aboutPartners img {
  height: 55px; /* Adjust as needed */
  margin-right: 120px; /* Space between images */
  flex-shrink: 0;
}

.acknolodgementDetails {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  border-radius: 17px;
  overflow: hidden;
}

.acknowledgmentHeader {
  font-size: 28px;
  font-weight: 700;
}

@keyframes scrollHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1600px) {
  .aboutHeaders {
    padding: 100px 0;
  }

  .aboutPartners img {
    height: 45px;
    margin-right: 100px;
  }
}

@media (max-width: 1400px) {
  .aboutPictures {
    gap: 40px;
  }
}

@media (max-width: 1269px) {
  .aboutPartners img {
    margin-right: 80px;
  }

  .aboutHeaders {
    padding: 80px 0;
  }

  .picture img {
    max-height: 300px;
  }
}

@media (max-width: 1000px) {
  .aboutPartners img {
    margin-right: 60px;
  }

  .aboutPictures {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .aboutPartners img {
    margin-right: 40px;
  }

  .aboutHeaders {
    padding: 40px 0;
  }

  .aboutHeader {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .aboutSubHeader {
    font-size: 14px;
  }

  .aboutHeader {
    font-size: 22px;
  }

  .headerLink a {
    font-size: 14px;
  }

  .aboutDetails {
    padding: 80px 0;
    gap: 80px;
  }

  .detailsTopHeader {
    font-size: 24px;
  }

  .aboutPartners img {
    margin-right: 20px;
  }

  .acknowledgmentHeader {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .aboutPartners img {
    margin-right: 10px;
  }

  .partnersDetails {
    padding: 20px;
  }
}
