.scrolling-text{
    position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #CFC4F4;
	padding: 10px;
	white-space: nowrap;
	overflow: hidden;
	animation: scroll 20s linear infinite;
}

@keyframes scroll{
    0%{ transform: translateX(100%);}
    100%{transform: translateX(-100%);}
}

.home{
    width: 100%;
    height: 90vh;
    background-image: url(../img/photoChezNous/001.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.home .content{
    text-align: center;
    padding-top: 200px;
}

.home .content h5{
    color: white;
    font-size: 35px;
    font-weight: 500;
    text-shadow: 0px 1px 1px black;

}


.home .content h1{
    color: white;
    font-size: 70px;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
    margin-top: 5px;
}
.home .content p{
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
    margin-bottom: 30px;
    margin-top: 5px;
}

.changecontent::after{
    color: #93d6d0;
    content: '';
    text-shadow: 0px 1px 1px black;
    animation: changetext 10s infinite linear;
}
@keyframes  changetext {
    0%{content: "BOBOKOLI";}
}

.Message-container {
    background-color: #CFC4F4;
    margin: 20px;
    border-radius: 10px;
}

.swiper {
    width: 100%;
    height: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
}

@media  screen and(max-width:500px) {
    .swiper-slide {
        display: none;
    }
}