.about {
    width: 100%;
    min-height: 600px;
    background: url('../img/background_2.png') repeat;
    background-size: cover;
    position: relative;
    padding: 150px 50px 50px 50px;
    margin-top: 200px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;


    .title {
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 5em;
        color: var(--rose-pale);
        text-align: center;
        text-shadow: 2px 2px 0 var(--gris-fonce-textes);
    }

    .hightlights {
        display: flex;
        gap: 100px;
        color: white;
        font-size: 1.2em;
    }

    .ruban_left, .ruban_right {
        height: 100%;
        position: absolute;
        top: 0;
    }

    .ruban_left {
        left: 30px;
    }

    .ruban_right {
        right: 15px;
    }

    .desc {
        font-size: 1.2em;
        color: var(--rose);
        width: 50%;
        text-align: center;
    }

    .illustration, .splide {
        width: 60%;
    }

}


.croquis, .classic {
    .title {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        font-size: 5em;
        color: var(--rose-vif);
        text-align: center;
        text-shadow: 2px 2px 0 var(--gris-fonce-textes);
        width: 100%;
    }
}


.girafe {

    .croquis {
        position: relative;
        padding: 150px 50px 50px 50px;
        margin-top: 100px;
        display: flex;
        justify-content: flex-start;
        gap: 50px;

        .desc {
            display: flex;
            flex-direction: column;
            gap: 50px;
            align-items: center;
            width: 45%;

            .text-box {
                width: 100%;
                font-size: 1.2em;
            }

            .cadre {
                font-size: 1.2em;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 15px;
                padding: 100px 50px 70px 70px;

                img {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                }
            }
        }


        .book-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }


    .classic {
        img {
            width: 50%;
        }
    }
}


.classic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 150px 50px 50px 50px;
    margin-top: 100px;
    position: relative;

    img {
        width: 50%;
    }

    span:not(.title, .uppercase) {
        width: 700px;
        margin-right: 45%;
        font-size: 1.2em;
    }
}


.splide {
    width: 80%;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        width: 99%;
    }

    .splide__pagination__page.is-active {
        background: var(--rose-vif);
    }

    .splide__arrow {
        padding: 0 10px;
        font-size: 2em;
        cursor: pointer;
        position: absolute;
        bottom: -50px;
        border-radius: 5px;
        border: 2px solid var(--rose-vif);
        color: var(--rose-vif) !important;
        background: transparent;
        height: fit-content;
        transition: background-color 0.4s;

        &:hover {
            background-color: var(--rose-pale);
        }

        svg {
            fill: var(--rose-vif);
        }
    }
}


.music {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    user-select: none;

    img {
        height: 100px;

    }

    .bouton-lecture {
        color: var(--rose-vif);
        font-size: 1.5em;
        cursor: pointer;
        transition: background-color 0.4s;
        border: 2px solid var(--rose-vif);
        padding: 10px 10px;
        border-radius: 10px;
        margin-top: 25px;

        &:hover {
            background-color: var(--rose-pale);
        }
    }
}