/* =========================================================
   ABOUT US SECTION
   Figma section width: 1735px
   Change --about-image when your final left-side image filename is ready.
========================================================= */

.about-section {
  --about-image: url("../../assets/images/about-us.png");

  width: min(1735px, 100%);
  min-height: 787px;
  /* margin-top: 0px; */
  /* margin: 80px 0 0 0; */
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 780px);
  align-items: center;
  gap: 40px;
  padding: 100px 0px;
  background: #ffffff;
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.about-image-wrap {
  width: 882px;
  height: 588px;
  aspect-ratio: 440/293;
  background:
    var(--about-image) center / contain no-repeat,
    url("../../assets/images/vehcalsImg.png") center / contain no-repeat;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-content {
  width: 100%;
}

.about-heading-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 52px;
  margin-bottom: 34px;
  white-space: nowrap;
}

.about-title {
  margin: 0 0 0 -330px;
  text-align: center;
  font-family: "Zalando Sans Expanded", "Segoe UI", Arial, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: linear-gradient(
    90deg,
    rgba(9, 130, 155, 0.5) 0%,
    rgba(3, 45, 53, 0.5) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-muted-title {
  color: #ececec;
  text-align: center;
  font-family: "Zalando Sans Expanded", "Segoe UI", Arial, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* =========================================================
   ABOUT TEXT
========================================================= */

.about-description {
  width: min(706px, 100%);
}

.about-description p {
  margin: 0 0 25px;
  color: #7c7c7c;
  font-family: "Zalando Sans Expanded", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 1180px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 40px;
  }

  .about-image-wrap {
    min-height: 440px;
  }

  .about-content,
  .about-description {
    width: 100%;
  }

  .about-heading-row {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-image-wrap {
    min-height: 300px;
  }

  .about-heading-row {
    gap: 18px;
    margin-bottom: 24px;
  }

  .about-title,
  .about-muted-title {
    font-size: clamp(32px, 9vw, 50px);
  }

  .about-muted-title {
    display: none;
  }

  .about-description p {
    font-size: 14px;
  }
}
