/* HR Border */
.hr-border {
    border-top: 1px solid var(--secondary);
    opacity: .75;
}

.w-85 {
    width: 85%;
}

/* Content1 */
.c1-card{
    border: 5px solid var(--secondary);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

/* Text Discount */
.text-discount {
    opacity: .7;
}

/* Content 2 */
.c2-card {
    transition: .2s ease-in-out;
}

.c2-card-image {
    width: 100%;
    height: 290px;
    object-fit: cover;
}


@media (hover:hover) and (pointer:fine) {

    /* Content 3 */
    .c2-card:hover {
        filter: drop-shadow(0px 0px 15px #7DAD3F);
        -webkit-transform: translateY(-0.3333333333rem);
        transform: translateY(-0.3333333333rem);
        transition: .2s ease-in-out;
    }

}

@media only screen and (max-width: 997.98px) {

    .c2-card-image {
        height: 25vh;
    }

    .c2-card-title {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 75px;
    }
}

@media only screen and (max-width: 767.98px) {

    .c2-card-image {
        height: 40vh;
    }

}
