/* THUMBNAIL */
.promotions-bg {
    background-color: #dde9e9 ;
}

.promotion.card {
    border-radius: 10px;
    box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.2s cubic-bezier(.25,.8,.25,1);
    height: 100%;
}

.promotion.card:hover {
    box-shadow: 0 0.5rem 0.5rem rgba(0,0,0,.175)!important;
    transform: translate3d(0, -5px, 0);
}

.promotion.card img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 115px;
    object-fit: cover;
    object-position: top;
}

.promotion .titre {
    font-family: 'Montserrat-Regular', serif;
    color: var(--color-bleu-strong);
    font-size: 1.2rem;
}

.promotion .description {
    height: 55px;
}

.promotion .details {
    font-size: 1.1rem;
    color: var(--color-bleu-strong);
}

/* SHOW */
.slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal .modal-title {
    font-family: 'Montserrat-Regular', serif;
    color: var(--color-bleu-strong);
    font-size: 1.3rem;
}

/* PDF */
.pdf.card {
    border-radius: 10px;
    background-color: white;
    border: 1px solid var(--color-background);
    transition: all 0.2s ease-out;
    height: 100%;
}

.pdf.card:hover {
    border: 1px solid var(--color-bleu-strong);
}

.pdf.card img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 115px;
    object-fit: cover;
    object-position: top;
}

.pdf .titre {
    font-family: 'Montserrat-Regular', serif;
    color: var(--color-bleu-strong);
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 1400px) { /* xl */
    .promotion .description {
        height: 70px;
    }
}

@media (max-width: 992px) { /* lg */
    .promotion .description {
        height: 55px;
    }
}

@media (max-width: 768px) { /* md */
    .promotion .description {
        height: 70px;
    }
}
