.main{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.boxAllPromotions{
    width: 100%;
    height: fit-content;
    max-width: 70rem;

    padding: 2rem 1rem;

    display: grid;
    grid-template-columns: repeat(auto-fit ,minmax(15rem ,1fr));
    row-gap: 2rem;
    column-gap: 1rem;
}

.boxAllPromotions .wrapper{
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.boxAllPromotions .boxPromotion{
    width: 100%;
    height: 100%;
    max-width: 20rem;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;

    border-radius: 1ch;
    box-shadow: 0 0 16px rgb(226, 226, 226);
    
    transition: box-shadow .2s ease, transform .2s ease;
}
@media (hover: hover){
    .boxAllPromotions .boxPromotion:hover{
        z-index: 1;
        transform: scale(1.01);
        box-shadow: 0 0 16px rgb(18, 130, 110);
    }
}
.boxAllPromotions .boxPromotion:active{
    transform: scale(.995);
    box-shadow: 0 0 16px rgb(18, 130, 110);
}
.boxAllPromotions .boxPromotion .photo{
    width: 100%;
    height: fit-content;
}
.boxAllPromotions .boxPromotion .photo img{
    width: 100%;
    height: 100%;
}
.boxAllPromotions .boxPromotion .info{
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: .5rem;

    padding: .5rem .5rem;
}
.boxAllPromotions .boxPromotion .info .name{
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: rgb(18, 130, 110);
}
.boxAllPromotions .boxPromotion .info .text{
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    color: rgb(56, 56, 56);
}