.principal-container {
    padding-top: 30px !important;
}

.actualite-side {
    width: 60%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.actualite-side-img {
    width: 90%;
    height: 60vh;
}

.actualite-side-content {
    width: 90%;
    padding-top: 30px;
}

.actualite-side-content p {
    text-align: justify;
}

.others-actualites-side {
    width: 40%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.actu-box {
    text-decoration: none;
    position: relative;
    width: 90%;
    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) {
    .others-actualites-side {
        display: none;
    }

    .actualite-side {
        width: 100%;
    }
}