#awards_new{
    width: 100%;
    float: left;
}
.awards-section {

  padding: 60px 20px;
}

.container_awards {
  max-width: 1400px;
  margin: auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.award-card {

  text-align: center;
  padding: 30px 20px;
  position: relative;
  border-radius: 8px;

  overflow: hidden;
}

.award-card::before {
  content: "";
  background: url(../bg-ar451.png) no-repeat center / contain;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  opacity: 0.2;
  z-index: 0;
}

.award-card h4 {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.award-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
  position: relative;
  z-index: 1;
  
}

.award-card h3::after {
  content: "";
  display: block;
     width: 18%;              /* underline is 5% of the card width */
  height: 2px;              /* thickness of line */
  background: #c5a44a;      /* golden-like color */
  margin: 6px auto 0;       /* centers the line under text */
}

.award-card p {
  font-size: 14px;
  color: #666;
  position: relative;
  z-index: 1;
}



@media only screen and (min-width: 0px) and (max-width: 300px) {
.awards-section {

  padding: 60px 10px;
}

}

@media only screen and (min-width: 301px) and (max-width: 400px) {
.awards-section {

  padding: 60px 10px;
}

}