#cheil .prodCardsWrap {
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 0 20px;
    gap: 20px;
    display: flex;
    justify-content: center;
}

#cheil .prodCardsItem {
    max-width: 400px;
    border-radius: 20px;
    background: #F4F4F4;
    padding: 40px 25px 30px 25px;
}

#cheil .prodCardsItemImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prodCardsItemContent {
    text-align: center;
}

.prodCardsItemContent a {
   display: inline-block;
}

#cheil .prodCardsItemContent h3 {
    color: #000;
    font-family: "SamsungSharpSans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin: 15px 0;
}

@media(max-width: 1260px) {
    #cheil .prodCardsItemContent h3 {
        font-size: 2vw;
        line-height: 1.3;
    }
}

@media(max-width: 768px) {
   #cheil .prodCardsWrap {
       flex-direction: column;
       align-items: center;
   }

   #cheil .prodCardsItemContent h3 {
        font-size: 32px;
        line-height: 38px;
    }
}

@media(max-width: 425px) {
    #cheil .prodCardsWrap {
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0;
        gap: 15px;
    }

    #cheil .prodCardsItemImage {
        text-align: center;
    }

    #cheil .prodCardsItemImage img {
        width: 70%;
        height: 70%;
    }
}