@media (min-width: 768px) {
    .featured-card-img{
        height: 225px;
    }
}
@media (max-width: 767px) {
    .featured-card-img{
        max-height: 60vh;
    }
}
.featured-card-img{
    object-fit: cover;
    object-position: center center;
}
.featured-card-title{
    padding: 20px 20px 0;
    font-size: larger;
    font-weight: bold;
    color: #363535;
    margin: 0;
}
.featured-card-price{
    font-size: large;
    color: #ff3f40;
    padding: 0 20px;
}
.featured-card-btn{
    background-color: #ff3f40;
    color: white;
}
.featured-card-btn:hover{
    color: azure;
}
.featured-card-btn:active {
    transform: scale(0.97);
}
.featured-slider-btn{
    position: absolute;
    background-color: transparent;
    top: calc(50% - 30px);
    color: white;
    height: 25px;
    width: 25px;
    padding: 0 5px;
    border-radius: 50%;
    z-index: 2;
}
.featured-slider-btn button{
    color: #ff3f40;
}
.featured-slider-left {
    left: -10px;
}
.featured-slider-right {
    right: -10px;
}
