section {
  padding: 20px 2.5% 30px;
}

.about-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/images/about-luggage.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 832 / 481;
  padding: 20px;
  margin-bottom: -1px;
}

.about-header h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: white;
  margin-left: 25%;
  margin-bottom: 45px;
}

.about-header h1 span {
  font-size: 2.75rem;
  font-weight: 700;
}

.about-header h1 span::after {
  display: block;
  content: '';
  background-color: #ffcc00;
  width: 33%;
  height: 5px;
  margin-top: 5px;
}

.about-content {
  display: flex;
  flex-direction: column;
  background-color: #0C284D;
  padding-top: 0;
}

.about-content main {
  color: #fff;
  margin-bottom: 30px;
}

.about-content main h2 {
  margin-bottom: 20px;
}

.about-content aside img {
  width: 80%;
  display: block;
  height: auto;
  margin: 0 auto;
}

.about-identity .info,
.about-identity .values {
  color: #0C284D;
}

.about-identity h2,
.about-solutions h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-identity figure {
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
}

.about-identity figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-identity .values ul li {
  display: flex;
  margin-bottom: 10px;
}

.about-identity .values ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.about-solutions {
  background-color: #6555C7;
  color: #fff;
}

.about-solutions h2 {
  text-align: center;
}

.about-solutions ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1500px;
  margin: 30px auto;
}

.about-solutions ul li {
  width: 100%;
  max-width: 330px;
}

.about-solutions ul li figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
}

.about-solutions ul li img {
  width: 40px;
}

.about-solutions ul li h3 {
  margin-bottom: 5px;
}

@media only screen and (width > 575px) {
  .about-header h1 {
    font-size: 2.5rem;
    margin-left: 15%;
    margin-bottom: 50px;
  }

  .about-header h1 span {
    font-size: 3rem;
  }
}

@media only screen and (width >= 768px) {
  section {
    padding-bottom: 60px;
  }

  .about-header {
    background-image: url("/images/about-banner.webp");
    aspect-ratio: 2371 / 937;
  }

  .about-header h1 {
    font-size: 2rem;
    margin-left: 40%;
    margin-bottom: 30px;
  }

  .about-header h1 span {
    font-size: 2.5rem;
  }

  .about-content {
    padding-top: 20px;
    flex-direction: row;
    align-items: center;
  }

  .about-content main,
  .about-content aside {
    width: 50%;
  }

  .about-content main {
    margin-bottom: 0;
  }

  .about-identity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "mission mission-image"
      "vision-image vision"
      "values values";
    gap: 0 20px;
  }

  .about-identity .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
  }

  .about-identity .info p {
    margin-bottom: 20px;
  }

  .mission {
    grid-area: mission;
  }

  .mission-image {
    grid-area: mission-image;
  }

  .vision {
    grid-area: vision;
  }

  .vision-image {
    grid-area: vision-image;
  }

  .values {
    grid-area: values;
  }

  .about-identity .mission-image {
    margin-left: 0;
    margin-right: auto;
  }

  .about-identity .vision-image {
    margin-left: auto;
    margin-right: 20px;
  }

  .about-solutions h2 {
    margin-bottom: 60px;
  }

  .about-solutions ul {
    max-width: 1500px;
    gap: 100px;
  }
}

@media only screen and (width > 1024px) {
  .about-header h1 {
    font-size: 2.75rem;
    margin-bottom: 30px;
  }

  .about-header h1 span {
    font-size: 3.25rem;
  }
}

@media only screen and (width >= 1280px) {
  .about-header h1 {
    font-size: 3.5rem;;
    margin-bottom: 30px;
  }

  .about-header h1 span {
    font-size: 4.5rem;
  }

  .about-content,
  .about-identity {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .about-content main,
  .about-content aside {
    width: 40%;
    max-width: 750px;
  }

  .about-identity {
    width: calc(80% - 20px);
    max-width: 1500px;
    padding: 60px 2.5%;
    margin: 0 auto;
  }
}

@media only screen and (width > 1600px) {
  .about-header h1 {
    font-size: 4rem;
    margin-left: 35%;
    margin-bottom: 10px;
  }

  .about-header h1 span {
    font-size: 5rem;
  }
}
