.banner{
    margin-top: 70px;
}
.carousel{
    width: 100%;
    height: calc(100vh - 70px);
    position: relative;
}
.slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 1s opacity ease-in-out;
    transition-delay: 500ms;
}

.slide[data-active]{
    opacity: 1;
    transition-delay: 0ms;
}

.slide > img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 65% 50%;
}

.carouselButton{
    position: absolute;
    background: none;
    border: none;
    top:50%;
    transform: translateY(-50%);
    transition: 0.5s;
    z-index: 2;
    cursor: pointer;
}

.carouselButton:hover{
    transform: translateY(-50%) scale(1.10);
    transition: 0.5s;
}

.carouselButton.next{
    right: 2%;
}

.carouselButton.prev{
    left: 2%;
}

.reservedButton{
    cursor: pointer;
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: 'Italianno', cursive;
    font-size: clamp(40px, 5vw, 50px);
    color: #ffffff;
    background: linear-gradient(to left, #00669F 20%, #2789c2 100%);
    width: 30%;
    height: 15%;
    min-width: 150px;
    min-height: 70px;
    max-width: 250px;
    max-height: 85px;
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.36);
    transition: 0.2s;
}
.reservedButton:hover{
    transform: translateX(-50%);
    top: calc(78% - 5px);
}

.containerBgOpacity{
    display: none;
    position: fixed;
    background: #1a1a1a9e;
    inset: 0;
    z-index: 10000;
}

.modalContentPerso{
    display:none;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: 70vh;
    max-width: 800px;
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 100001;
    min-height: 225px;
    max-height: 800px;
}
.spanBleu{
    color: #00669F;
}
.bandeauBleu{
    position: absolute;
}
.bandeauBleu.un{
    top: -5px;
    left: -5px;
}
.bandeauBleu.deux{
    bottom: -5px;
    right: -5px;
}
.mainModal{
    width: 90%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.modalInfo, .modalInfoTele{
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: clamp(14px, 4vw, 20px);
    text-align: center;
    color: #53504E;
}
.modalInfoHoraire{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #53504E;
}

.modalInfo2{
    color: #53504E;
    font-size: clamp(10px, 4vw, 18px);
}

.modalTelDiv{
    min-height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-size: clamp(14px, 4vw, 20px);
}

.modalInfo2.tele{
    width: 30%;
    min-width: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.landscapeModal{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

@media screen and (orientation: landscape){
    .reservedButton{
        top: 50%;
        transform: translate(-50%, -50%);
        min-height: 70px;
    }
    .carouselButton img{
        width: 20px;
    }

}

@media screen and (orientation: landscape) and (max-height:480px) {
    .landscapeModal{
        flex-direction: row;
    }
    .modalInfo2{
        font-size: clamp(10px, 2vw, 18px);
    }
    .modalTelDiv, .modalInfoTele{
        font-size: clamp(14px, 2vw, 20px);
    }
    .modalInfo2.tele{
        min-width:auto;
        width: auto;
    }

}

@media screen and (orientation: landscape) and (min-height:500px) {
    .reservedButton{
        top: 78%;
        transform: translateX(-50%);
    }
    .carouselButton img{
        width:auto;
    }
}

@media screen and (max-height:530px) {
    .reservedButton{
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .carouselButton img{
        width: 20px;
    }
}