article{
    margin: 0
}


.sectionAllActualites .uniformSpacing {
    z-index: 10;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}

.sectionAllActualites .articleBlock {
    display: block;
}

.sectionAllActualites article {
    padding: 1em;
    vertical-align: top;
    border-radius: 2em;
    box-sizing: border-box;
    -webkit-box-shadow: -3px -3px 32px -9px rgba(0, 0, 0, .25);
    box-shadow: -3px -3px 32px -9px rgba(0, 0, 0, .25);
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    transform: translateY(5em)
}

.sectionAllActualites .appearElement {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.sectionAllActualites article:nth-child(3n+3) {
    margin-right: 0
}

.sectionAllActualites article .subTitle {
    color: var(--basicColor5);
    text-transform: uppercase
}

.sectionAllActualites .allActu {
    display: block;
    margin: 1em 0
}

.sectionAllActualites .elementArticleBlog .divBck {
    border-radius: 50%
}

.sectionAllActualites .elementArticleBlog svg {
    height: fit-content;
    width: 100%
}

.sectionAllActualites .elementArticleBlog p {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
    overflow: hidden;
    height: 4em;
    margin: 0;
}

.sectionAllActualites .elementArticleBlog a {
    background: var(--basicColor1);
    border-radius: 5em;
    display: inline-block;
    color: #fff;
    border: 2px solid var(--basicColor1);
    padding: .5em 1em;
    cursor: pointer;
    transition: .3s;
    width: fit-content;
}

.sectionAllActualites .elementArticleBlog a:hover {
    background: 0 0;
    color: var(--basicColor1)
}

.elementArticleBlog img{
    height: 45vh;
    object-fit: cover;
}

@media screen and (max-width: 1000px) {
    .sectionAllActualites article, .sectionAllActualites article:nth-child(3n+3) {
        width: 45%;
    }

    .sectionAllActualites article:nth-child(2n) {
        margin-right: 0
    }
}

@media screen and (max-width: 700px) {
    .sectionAllActualites article, .sectionAllActualites article:nth-child(3n+3) {
        width: 80%;
        display: block;
    }
}

@media screen and (max-width: 500px) {
    .sectionAllActualites article, .sectionAllActualites article:nth-child(3n+3) {
        width: 100%
    }
}