.bandeau{
    margin: 5px 0px;
    width: 100%;
    height: auto;
    box-shadow: 0px 5px 5px rgb(145, 145, 145);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 5px 0px;
}
.bandeau > .ligne1 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bandeau > .ligne1 > img{
    margin-right: 5px;
}
.bandeau > .ligne1 > p{
    font-weight: 400;
    font-size: 25px;
}
.bandeau > p{
    font-weight: 400;
    font-size: 25px;
}
.countdown{
    font-size: 20px;
}

.buttonClick{
    font-size: 20px;
}
.buttonClick .fa-chevron-right {
    animation: animArrowLeft 1s infinite;
}

.buttonClick .fa-chevron-left {
    animation: animArrowRight 1s infinite;
}

@keyframes animArrowLeft {
    0%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}

@keyframes animArrowRight {
    0%{
        transform: translateX(100%);
    }
    50%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(100%);
    }
}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 50px auto;
    padding: 30px 20px 20px 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1200px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: transparent;
    border: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close-button:hover, .close-button:focus {
    color: black;
}

@media screen and (max-width: 1100px) {
    .countdown{
        text-align: center;
    }
    .bandeau > .ligne1 > p{
        font-size: 20px;
        text-align: center;
    }
    .bandeau > .ligne2{
        margin: 5px 0px;
        font-size: 20px;
        text-align: center;
    }

}