/*Vitrine*/
.vitrine {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.vitrineItemContainer {
    position: relative;
    width: 500px;
    margin: 20px;
    transition: .5s ease;
    height: 235px;
    overflow: hidden;
}

.vitrineItemContainer:hover {
    transform: scale(1.05);
    transition: .5s ease;
}

.vitrineItemContainer img {
    display: block;
    width: 100%;
    height: auto;
}

.vitrine-item-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
}

.vitrine-item-overlay:hover {
    opacity: .8;
}

.vitrine-title {
    font-size: 30px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2));
    height: 50%;
    color: white;
}

.vitrine-title section {
    padding-top: 10px;
    padding-left: 10px;
}

.vitrine-description{
    color: white;
    height: 50%;
    display: flex;
    align-items: flex-end;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2), rgba(0, 0, 0, .8));
}

.vitrine-description section {
    padding-bottom: 10px;
    width: 97%;
    text-align: right;
}