.contententete>a {
    display: block;
    color: black;
    margin-top: 1rem;
    padding: 1rem;
    background-color: white;
    width: 12rem;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
}

.contententete>a:hover {
    background-color: rgb(202, 202, 202);
    transition: 0.25s;
}

.presentation {
    height: 75vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

h1 {
    color: white;
    font-size: 1.75rem;
    text-align: left;
    max-width: 80vw;
    padding: 3rem 3rem 0 3rem;
}

.contententete {
max-width: 80vw;
padding: 2rem;
color: white;
}

.contententete>p:nth-of-type(1) {
    font-weight: 600;
    font-size: 1.25rem;
}

.contententete span {
    color: #00ffaf;
    font-weight: 700;
}

.debutpage {
    background: linear-gradient(#003844, #055e5d, white);
    padding: 0 0 5vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horairespenibles {
    width: 80vw;
    margin: 0 5vw 10vh 5vw;
    background-color: white;
    padding: 5vw;
    border-radius: 20px;
    display: flex;
    flex-direction: column-reverse;
}

.horairespenibles>img{
    width: 77vw;
    height: 45vh;
    object-fit: cover;
    margin: 0 0 2rem 0;
    border-radius: 10px;
}

.textehorairespenibles>h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .presentation {
        height: 40vh;
        flex-direction: row;
    }
    
    h1 {
        text-align: right;
        max-width: 40vw;
        padding: 3rem;
        border-right: solid 1px white;
    }
    
    .contententete {
    max-width: 40vw;
    padding: 3rem;
    }

    .horairespenibles {
        width: 80vw;
        margin: 0 10vw 10vh 10vw;
        padding: 3rem;
        flex-direction: row;
        align-items: center;
    }

    .textehorairespenibles {
        width: 50vw;
        text-align: right;
    }

    .horairespenibles>img{
        width: 30vw;
        height: 40vh;
        object-fit: cover;
        margin: 0 0 0 2rem;
        border-radius: 10px;
    }

}

@media screen and (min-width: 1080px) {
    .presentation {
        height: 75vh;
        padding-top: 0px;
    }
    
    h1 {
        font-size: 1.75rem;
        text-align: right;
    }

    .horairespenibles {
        width: 60vw;
        margin: 0 10vw 10vh 10vw;
        padding: 5rem;
        flex-direction: row;
    }

    .horairespenibles>img{
        width: 20vw;
        height: 45vh;
        object-fit: cover;
        margin: 0 0 0 2rem;
        border-radius: 10px;
    }

}

/*Bento*/
h2 {
    text-align: center;
    font-weight: 600;
    font-size: 2.5rem;
    margin: 5vh 0 7.5vh 0;
}

.pourquoiaum {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 10vh 0;
}

.contentbento {
    display: grid;
    grid-template-columns: 90vw;
    column-gap: 2rem;
    row-gap: 2rem;
}

.card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.249);
    min-height: 13rem;
}

.card>h3 {
    margin: 0rem 0 1rem 0;
}

.iconcard {
    width: 25%;
    max-width: 3rem;
    font-size: 2rem;
    font-weight: 600;
    color: #e9505e;
}

.backcard {
    opacity: 25%;
    position: absolute;
    width: 15rem;
    right: 0;
    bottom: -5rem;
    z-index: -1;
    font-size: 9rem;
    font-weight: 700;
    color: #e9505e;
}

@media screen and (min-width: 768px) {
    h2 {
        margin: 15vh 0 7.5vh 0;
    }
    
    .contentbento {
        grid-template-columns: 45vw 45vw;
    }
    
    .card1 {
        grid-column: 1/3;
    }
    
    .card7 {
        grid-row: 2;
    }

    .card3 {
        grid-row: 2/4;
        grid-column: 2;
    }

    .card4 {
        grid-row: 3;
    }

    .card5 {
        grid-row: 5;
        grid-column: 1 /3;
    }
    
    .card2 {
        grid-column: 1;
        grid-row: 4;
    }
    
    .card6 {
        grid-column: 2;
    }
}

@media screen and (min-width: 1080px) {
    .contentbento {
        grid-template-columns: 20rem 20rem 20rem;
    }
    
    .card1 {
        grid-row: 1;
        grid-column: 1/3;
    }
    
    .card2 {
        grid-row: 2;
        grid-column: 2 /4;
    }

    .card3 {
        grid-row: 1;
        grid-column: 3;
    }

    .card4 {
        grid-row: 3;
        grid-column: 2;
    }

    .card5 {
        grid-column: 3;
        grid-row: 3/5;
    }
        
    .card6 {
        grid-row: 4;
        grid-column: 1/3;
    }

    .card7 {
        grid-row: 2/4;
        grid-column: 1;
    }
}