/* ABOUT US */
.about-us {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 110px;
  margin-top: 100px;
  margin-bottom: 80px;
}

.about-us-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about-us h1 {
  font-size: 36px;
  font-weight: 600;
}

.about-us h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-us-buttons {
  display: flex;
  gap: 40px;
}

.about-us-buttons button {
  width: 323px;
  height: 63px;
  font-size: 20px;
  font-weight: 600;
  padding: 0px;
}

/* SOLVED PROBLEMS */
.solved-problems h3 {
  margin-bottom: 25px;
}

.solved-problems-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.solved-problems-item h4 {
  font-size: 23px;
  font-weight: 600;
  text-wrap: balance;
}

.solved-problems-item p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 33px;
}

/* OUR SOLUTIONS */
.our-solutions {
  margin-top: 60px;
}

.our-solutions-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 25px;
}

.our-solutions-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.our-solutions-item h4 {
  font-size: 24px;
  font-weight: 600;

  text-wrap: balance;

  margin-top: 27px;
  margin-bottom: 25px;
}

.our-solutions-item p {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .about-us {
    grid-template-columns: 1fr;
  }

  .about-us h1 {
    font-size: 18px;
    font-weight: 600;
    text-wrap: pretty;
    text-align: center;
  }

  .about-us-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 14px;
  }

  .about-us-buttons button {
    width: 220px;
    height: 50px;
    font-size: 14px;
  }

  .about-us h2 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
    text-wrap: pretty;
    text-align: center;
  }

  .about-us-content {
    flex-direction: column;
  }

  .about-us-buttons {
    flex-direction: column;
  }

  .about-us-image {
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: 0px;
  }

  .solved-problems-content {
    grid-template-columns: 1fr;
  }

  .our-solutions-content {
    grid-template-columns: 1fr;
  }

  .our-solutions-item h4 {
    font-size: 18px;
    margin-block: 10px;
  }

  .our-solutions-item p {
    font-size: 14px;
  }

  .solved-problems-item h4 {
    font-size: 18px;
    word-wrap: pretty;
  }

  .solved-problems-item p {
    font-size: 14px;
    margin-top: 8px;
    word-wrap: pretty;
  }
}
