#challenge3 .n-challenge-content img {
    width: 96px;
}

.topoImg {
    position: relative;
}

.greyBg {
    background: #F7F9FA;
}

.product-card {
    position: relative;
    width: 450px;
}

.product-card img {
    transition: transform 0.3s ease-in-out;
}

.product-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.product-card-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    padding: 24px;
}

.product-card-text h3 {
    color: #2A2B2E;
    font-size: 18px;
    font-weight: 700;
    line-height: 125%;
}

.product-card-text span {
    color: #E60039;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.product-card a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.zoomImg {
    display: none;
}

#contactus {
    margin-top: 0;
}

@media screen and (min-width:768px) {
    .product-card:hover img {
        transform: scale(1.05);
    }
}

@media screen and (max-width:768px) {
    .n-banner-text p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    #challenge3 .n-challenge-content img {
        width: 72px;
    }
    .product-cards {
        flex-wrap: wrap;
        gap: unset;
    }
    .product-card {
        margin-bottom: 24px;
    }
    .zoomImg {
        width: 36px;
        display: block;
        position: absolute;
        right: 8px;
        bottom: 8px;
    }
    .zoomImg img {
        width: 36px;
    }
}