.awards-wrapper {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, 44%);
  place-content: center;
  max-width: 1400px;
  padding: 20px 0;
}

.awards-wrapper .responsive-image-box {
  padding-top: 130%;
  cursor: pointer;
}

.awards-wrapper .responsive-image-box:hover {
  transform: scale(1.03);
  transition: all 0.3s ease-in-out;
}

.awards-wrapper .responsive-image-box .title {
  padding: 12px;
  background-color: #0d47a1;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
}

.floor-title-wrapper .sub-title {
  font-size: 14px;
  color: #666;
  width: 50%;
  margin: 0 auto;
  line-height: 1.3em;
  margin-top: 10px;
}

.patent-wrapper { 
  padding: 15px;
}


.swiper-slide .img-box {
  padding-top: 60%;
}


.swiper-slide a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}

.swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.company-show-wrapper {
  padding: 10px; 
}

.company-show-wrapper .responsive-box {
  padding-top: 66%;
}

.company-show-wrapper .row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 10px;
}

.company-show-wrapper .row:first-child {
  grid-template-columns: repeat(2, 1fr);
}

.company-show-wrapper .row:first-child .responsive-image-box:nth-child(2) {
  grid-row: span 2;
}

.company-show-wrapper .row:first-child .responsive-image-box:nth-child(2) .responsive-box {
  padding-top: 0;
  height: 100%;
}


@media (min-width: 768px) {
  .awards-wrapper {
    grid-template-columns: repeat(auto-fill, 22%);
  }
}

@media (min-width: 1024px) {
  .awards-wrapper {
    grid-template-columns: repeat(auto-fill, 18%);
  }
}