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

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

.chronique-box {
    margin-left: 2%;
    margin-bottom: 40px;
    width: 47%;
    height: 40vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: black;
}

.chronique-box:hover {
    text-decoration: none;
    color: grey;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.chronique-box-img {
    width: 40%;
    height: 100%;
    border-radius: 5px;
}

.chronique-box-details {
    margin-left: 5%;
    width: 53%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.chroniques-box-details-up {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.chroniques-box-details-up small {
    font-size: 13px;
}

.chronique-box-title, .chronique-box-date {
    font-size: 14px;
}

.chronique-box-synopsis {
    margin: 0;
    padding: 0;
    text-align: justify;
    font-size: 14px;
}

.chronique-section-content {
    width: 67%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 5px;
}

.chronique-resume {
    width: 100%;
    padding: 2%;
    margin-bottom: 50px;
    background-color: #fff;
}

.tome-side {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

img.tome-img {
    width: 25%;
    height: auto;
}

.tome-resume {
    padding: 2%;
    width: 70%;
    background-color: #fff;
}

.synopsis h3 {
    font-weight: bold;
    font-style: 20px;
}

.tome-details-side {
    margin-bottom: 50px;
}

.infos {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.infos-img {
    width: 10%;
    margin-right: 5%;
}

.infos-p {
    width: 60%;
    margin-right: 5%;
}

.other-tomes-side {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
}

.other-tome-img {
    width: 23%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
}
.other-tome-img > img {
    width: 100%;
    height: 40vh;
}


@media only screen and (max-width: 600px) {
    .chroniques-section-content {
        width: 100%;
    }

    .chronique-box {
        width: 100%;
    }

    .chronique-section-content {
        width: 100%;
    }

    img.tome-img {
        width: 35%;
    }

    .tome-resume {
        width: 63%;
    }

    .infos {
        flex-direction: column;
    }

    .infos-img {
        display: none;
    }

    .infos-p {
        width: 100%;
    }

    .other-tomes-side {
        flex-wrap: wrap;
    }

    img.other-tome-img {
        width: 30%;
        margin-bottom: 10px;
    }
}