body {
    text-align: center;
    background-color: #000;
}
.container {
    width: 1200px;
    margin: 50px auto;
}
.product-grid-container {
    width: 100%;
    height: 561px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.product-grid {
    display: flex;
    height: 100%;
    width: 100%;
}

.product-item {
    width: 25%;
    position: relative;
    margin: 0 1.5%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.product-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.product-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    color: #ffffff !important;
}

.product-desc p {
    color: #ffffff !important;
    padding-right: 40px !important;
}

.product-item:hover .product-desc {
    opacity: 0.8;
}

.company_medal_con{
    position: relative;
    width: 100%;
}
.medalSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #fff;*/
    height: 240px;
    padding: 10px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.medalSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 3px 6px yellow;
}
.swiper-button-next, .swiper-button-prev{
    margin-top: 0;
    transform: translateY(-50%);
    width: 18px;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled{
    color: #666666;
}
.swiper-slide {

}
.swiper-slide img {
    /*width: auto !important;*/
    /*margin-right: 30px;*/
    object-fit: contain !important;
}