.present-product {
    display: flex;
    gap: 10px;
    max-height: 390px;
    /* background-color: #ebf2ff; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 20px;
}

.present-product .cards {
    flex: 2.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.present-product .cards .card {
    height: 110px;
    border-radius: 10px;
}

.present-product .cards .card img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.present-product .slide {
    flex: 5.6;
}

.slide,
.carousel,
.carousel-inner {
    border-radius: 10px;
}

.slide,
.carousel,
.carousel-inner,
.carousel-item {
    height: 350px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (min-width: 0) and (max-width: 700px) {
    .present-product .cards {
        display: none;
    }

    .present-product {
        max-height: 300px;
    }

    .slide,
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 260px;
    }
}
