main > section:nth-child(4){
    background-color: #7572B2;
}

.realText{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

#realisationText{
    width: 80%;
    color: white;
    line-height: 1.5rem;
}

.realLink{
    position: absolute;
    bottom: 5px;
    right: 0px;
    border-radius: 25px 0 25px 0;
    border: solid 2px white;
    height: 50px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousselle{
    margin-bottom: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0% 0% 37% 0%;
}

#slide{
    position: relative;
    width: 100%;
    height: 20vw;
    display: flex;
    justify-content: space-evenly;
}

.slideLeft{
    animation: slideLeft .5s ease forwards;
}
@keyframes slideLeft{
    from{
        left: 53%;
    }
    to{
        left: 0%;
    }
}

.slideRight{
    animation: slideRight .5s ease forwards;
}
@keyframes slideRight{
    from{
        right: 53%;
    }
    to{
        right: 0%;
    }
}

.opaText{
    animation: opaText 1s ease forwards;
}
@keyframes opaText{
    from{
        opacity: 0;
    }
    top{
        opacity: 1;
    }
}

.resp{
    width: 100%;
    height: auto;
    border-radius: 25px;
    border: solid 3px rgb(255, 255, 255);
}

.realImg{
    width: 45%;
    height: auto;
}

#imgFocus{
    position: absolute;
}

#imgPrevious{
    position: absolute;
    left: -25%;
}

#imgNext{
    position: absolute;
    right: -25%;
}

#previousGost{
    position: absolute;
    left: -77%;
}

#nextGost{
    position: absolute;
    right: -77%;
}

.boxReal{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.previous,
.next{
    position: absolute;
    z-index: 10;
    width: 65px;
    height: 15%;
    border: solid 2px white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgb(25, 26, 36, 0.8);
    cursor: pointer;
}

.next{
    right: 0;
    border-radius: 25px 0 0 25px;
}

.previous{
    left: 0;
    border-radius: 0 25px 25px 0;
}

.fleche{
    width: 25%;
    height: auto;
    z-index: 10;
}