.box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    z-index: -1;
}
.box .card{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 10px;
}
.image{
    width: 400px;
    height: 300px;
    overflow: hidden;
}

.image img {
    width: 400px;
    height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform: scale(0.8);
}
.image:hover img {
    transform: scale(1);
}
@media (max-width: 768px) {
    .box .card{
        max-width: 100%;
        height: 350px;
        justify-content: center;
        align-items: center;
    }
    .box .card .image img{
        width: 380px;
    }
}
.awards{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.list {
    position: relative;
    width: 50%;
    align-self: center;
  }
  .list h2 {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .list ul {
    position: relative;
  }
  .list ul li {
    position: relative;
    left: 0;
    color:black;
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid #ff9717;
    transition: 0.5s;
    cursor: pointer;
  }
  .list ul li:hover {
    left: 10px;
  }
  .list ul li span {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    transition: 0.5s;
    text-align: left;
  }
  .list ul li:hover span {
    color: #111;
  }
  .list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eba924;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s;
  }
  .list ul li:hover:before {
    transform: scaleX(1);
  }

@media (max-width: 768px) {
    .list {
        position: relative;
        width: 90%;
        align-self: center;
      }
}