.menu-accueil {
    color: var(--color2);
    text-decoration: underline;
    text-underline-offset: 30px;
}

.intro-and-roll {
    height: 450px;
    margin: 6% 0;
}

.intro {
    position: absolute;
    background-color: rgba(255, 255, 255);
    color: rgb(30, 30, 30);
    margin:0% 25%;
    border-radius: 40px;
    height: 450px;
    z-index: 1;
    justify-content: center;
    padding: 4% 7%;
    font-size: 15px;
}

.intro * {
    font-family: sans-serif;
    font-weight: 600;
    text-align: justify;
    animation: 3s spawn ease;
}

@keyframes spawn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.intro p {
    font-size: 100%;
}

.intro strong {
    font-style: italic;
    font-size: 120%;
    color: rgba(0, 0, 0, 0.6);
}

.intro h1 {
    border: solid 4px var(--color1);
    border-bottom-left-radius: 10px;
    border-top: none;
    border-right: none;
    width: 345px;
    padding: 1% 2%;
    margin-bottom: 1%;
    white-space: nowrap;
}

.intro p {
    padding-top: 2%;
}

/*------------------------------------------------------*/

.image-roll {
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    animation: 3s spawn ease;
}

.images {
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    aspect-ratio: 5;
    object-fit: contain;
    animation: imageRoll 30s linear infinite;
    height: 350px;
    margin: 50px 0px;
}

@keyframes imageRoll {
    0% {transform: translate(0,0);}
    100% {transform: translate(calc((-19*100%/27.37)),0);}
}

.image-roll img {
    box-sizing: border-box;
    padding: 0%;
    border: 10px solid transparent;
    border-top: none;
    border-bottom: none;
}


/*
.image-roll {
    overflow: hidden;
    width: 100%;
    animation: 3s spawn ease;
}

.images {
    display: flex;
    justify-content: flex-start;
    aspect-ratio: 5;
    object-fit: contain;
    animation: imageRoll 30s linear infinite;
    height: 350px;
    margin: 50px 0;
}

@keyframes imageRoll {
    0% {transform: translate(0,0);}
    100% {transform: translate(-5672px,0);}
}

.image-roll img {
    padding: 0%;
    border: 10px solid transparent;
    border-top: none;
    border-bottom: none;
}
*/
/*------------------------------------------------------*/
.review-roll {
    background-color: rgb(240, 240, 240);
    width: 117.66%;
    transform: scale(85%) translateX(-8.81%);
}

.reviews>div {
    display: flex;
    overflow: hidden;
}

.reviews>div:first-child>div {
    animation: reviewRoll 50s linear infinite;
}

.reviews>div:last-child>div {
    animation: reviewRoll2 50s linear infinite;
}

@keyframes reviewRoll {
    0% {transform: translate(-1200%,0);}
    100% {transform: translate(0,0);}
}
@keyframes reviewRoll2 {
    0% {transform: translate(0,0);}
    100% {transform: translate(-1200%,0);}
}

.reviews>div>div {
    height: 320px;
    aspect-ratio: 2.2;
    object-fit: contain;
    background-color: rgb(255, 255, 255);
    padding: 1%;
    border: 20px solid rgb(240, 240, 240);
    border-radius: 40px;
 
}

.reviews>div>div>div:first-child {
    display: flex;
    align-items: center;
    white-space : nowrap;
}

.reviews span, .reviews p {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.4px;
}

.reviews>div>div>div:first-child>* {
    font-weight: bolder;
    font-size: 100%;
}

.reviews>div>div>div:first-child>img {
    width: 55px;
    padding: 5px;
    margin-right: 5px;
    border-radius: 50%;
}

.stars-date {
    margin-left: 60px;
    display: flex; 
}

.stars-date span {
    margin-left: 5px;
    color: rgba(112,117,122,255);
}

.stars img {
    width: 15px;
    vertical-align: middle;
    margin-right: 3px;
}

.reviews p {
    margin-left: 60px;
    margin-top: 15px;
    display: flex;
    color: rgba(32,33,36,255);
    font-weight: 400;
}

.reviews>div>div>img:last-child {
    width: 40px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
}

.recommend {
    white-space : nowrap;
}

.recommend * {
    color: rgba(0, 0, 0, 0.75);
    font-size: 100%;
    font-weight: 600;
    font-family: "Segoe UI", Arial, sans-serif; 
    
}

.recommend span {
    letter-spacing: -0.2px;
}

.recommend strong{
    font-weight: 700;
}

.recommend img {
    margin: 0 5px;
}

.second-line>div>div>span:last-child {
    color: rgba(112,117,122,255);
    margin-left: 60px;
    font-family: 'Roboto', sans-serif;
    
}

@media screen and (max-width:1100px) {
    .menu-accueil {
        color: red;
        text-decoration: unset;
    }
    
/*------------------------------------------------------*/

    .intro-and-roll {
        height: auto;
        margin: 0;
    }
    
    .intro {
        position: relative;
        border-radius: 0;
        height: auto;
        z-index: 1;
        padding: 6% 8%;
        font-size: 90%;
        margin: 50px 0 100px 0;
        background-color: rgba(255, 255, 255, 0.4);
        color: white;
        border-top: solid 5px rgba(255, 255, 255, 0.2);
        border-bottom: solid 5px rgba(255, 255, 255, 0.2);
    }

    .intro strong {
        color: white;
    }
    
    .intro p {
        font-size: 80%;
    }
     
    .intro h1 {
        font-size: 180%;
        width: auto;

    }
 
/*------------------------------------------------------*/

    .images {
        aspect-ratio: 1;
        animation: unset;
        height: 260px;
        margin: 0;
    }

/*------------------------------------------------------*/

    .review-roll {
        width: 143.675%;
        transform: scale(70%) translateX(-22%);
    }

}

