/************
* CATALOGUE *
************/

.catalogue{
    margin-top: 5rem;
    position: relative;
    padding: 0 10%;
}
.catalogue__titre{
    color: var(--primaire);
    position: relative;
    font-weight: 700;
}
.catalogue__titre::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 3.75rem;
    height: 5px;
    background-color: var(--secondaire);
}
.catalogue__texte{
    margin: 2rem auto;
}
.catalogue .portail{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.catalogue .portail-item{
    width: 44%;
    max-width: 200px;
    text-align: center;
}
.catalogue .portail-item__img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: solid 1px var(--secondaire);
    filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.1));
    transition: all .3s;
}
.catalogue .portail-item:hover .portail-item__img{
    transform: scale(1.1);
}
.catalogue .portail-item__titre{
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    color: var(--secondaire);
    font-size: 1.25rem;
    margin-top: 0.5rem;
}
/* Responsive tablette */
@media screen and (min-width: 950px) {
    .catalogue .portail{
        gap: 5rem;
    }
    .catalogue .portail-item__img{
        width: 200px;
    }
    .catalogue__texte{
        margin: 4rem auto;
    }
}
/* Responsive tablette */
@media screen and (min-width: 1200px) {
    .catalogue {
        margin-top: 15rem;
        position: relative;
    }
    .catalogue::before{
        content: url(../images/bg-galets.png);
        position: absolute;
        top: -3rem;
        right: 0;
    }
    .catalogue::after{
        content: url(../images/herbes.svg);
        position: absolute;
        right: 0;
        bottom: -7rem;
    }
    .catalogue__content{
        max-width: 60%;
    }
    .catalogue .portail{
        padding: 2rem 10%;
    }
}