.slider-content {
    width: 100%;
    height: 60vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.slider-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.actualite-page-content {
    flex-wrap: wrap;
    justify-content: space-around !important;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 5px;
}

.actu-box {
    text-decoration: none;
    position: relative;
    width: 30%;
    height: 30vh;
    padding: 15px 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 5px;
    margin-bottom: 30px;
}

.actu-box .bg-transparent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.actu-badge {
    display: block;
    padding: 0 10px 5px 10px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10px;
    z-index: 10;
}

.actu-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    z-index: 10
}

.actu-description {
    font-size: 16px;
    color: #fff;
    padding: 0;
    margin: 0;
    z-index: 10
}

.actu-box:hover {
    text-decoration: none;
}

.actu-box:hover .actu-description{
    font-size: 17px;
}


@media only screen and (max-width: 600px) {
    .actu-box {
        width: 90%;
        height: 40vh;
        padding-left: 15px;
        padding-right: 15px;
    }

    .actu-title {
        font-size: 18px;
    }
}