.awards-section {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
}

.awards-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  color: #fff;
  padding: 20px 20px;
  border-radius: 24px;
  gap: 5%;
  flex-wrap: wrap;
  margin: 20px; 
  max-width: 300px;
  max-height: 450px;
  min-height: 450px;
  min-width: 300px;
  transition: transform 0.3s ease;
}

.awards-banner p {
 font-family: "Poppins", sans-serif;
}

.awards-banner:hover {
  transform: scale(1.02);
}

.awards-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 325px;
  max-height: 500px;
  flex-direction: row;
  
}

.award-image {
  width: 100%;
  height: 100%;
  border-radius: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 25px;
  object-fit: cover;

}

.award-card p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  color: white;
}

.award-image img {
  width: 100%;
  height: 100%;
  border-radius: 5%;
}

.award-heading {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #173cad;
  padding-bottom: 25px;
  vertical-align: top;
  text-align: center;
}

.organisation-text {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  text-align: center;
  vertical-align: top;
}

.award-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  text-align: center;
  vertical-align: top;
}

.divider {
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.3);
}

  .a:hover {
  cursor: pointer;
}

@media (max-width: 1700px) {
  .awards-section {
    display: flex;
    width 100%
    padding: 25px 15px;
    flex-wrap: wrap;
  }

  .award-card {
    max-width: none;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .award-text {
    margin-top: 15px;
    font-size: 18px;
  }
  
  .awards-banner {
    gap: 2%;
    padding: 20px 20px;
  }
}

@media (max-width: 600px) {
  .awards-section {
    flex-direction: column;
    width 100%
    padding: 25px 15px;
  }

  .award-card {
    max-width: none;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .award-text {
    margin-top: 15px;
    font-size: 18px;
  }
  .awards-banner {
    gap: 2%;
    padding: 20px 20px;
  }
}


