.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;
}

.journaux-section-content {
    width: 67%;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    background-color: #fff;
    border-radius: 5px;
}

.journal-box {
    width: 30%;
    margin-bottom: 20px;
    height: 70vh;
    position: relative;
    border: 1px solid rgb(228, 228, 228);
    border-radius: 10px;
}

.journal-box img.journal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.journal-box:hover .journal-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.journal-actions {
    display: none;
}

.journal-overview {
    width: 95%;
    min-height: 200vh;
    position: relative;
}

.journal-overview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.journal-overview:hover .journal-overview-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.journal-overview-actions {
    display: none;
}

.journal-overview-actions a {
    margin: 0 5px;
}

.modal-content.abonnement-modal {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

.abonnement-modal-container {
    background-color: rgba(0, 0, 0, 0);
}

.abonnement-modal-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin: 30px 0px;
}

.abonnement-formule {
    text-decoration: none;
    width: 32%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.abonnement-formule h4 {
    font-size: medium;
    margin-top: 20px;
    color: #6c757d;
}

.abonnement-formule:hover, .abonnement-formule:hover h4 {
    color: blue;
}

@media only screen and (max-width: 600px) {
    .page-content {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .journaux-section-content {
        width: 100%;
        padding: 5px 0;
    }

    .journal-box {
        width: 48%;
        height: 60vh;
        margin-bottom: 5px;
    }

    .journal-box .journal-actions {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        margin-bottom: 5px;
    }

    .journal-overview {
        width: 95%;
        min-height: unset;
        height: auto;
    }

    .journal-overview img {
        position: unset;
        width: 100%;
        min-height: 100vh;
    }


    .journal-overview .journal-overview-actions, .journal-overview:hover .journal-overview-actions {
        position: absolute;
        top: -45px;
        left: 0;
        width: 100%;
        height: 40px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
}