.contact {
    padding: 7%;
    text-align: center;
    display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	align-content: center;
}

.contact-box h3 {
	font-weight: 400;
}

.contact-box {
    padding: 5%;
    text-align: center;
}


.pic-ctn {
	position: relative;
	width: 300px;
	height: 300px;
	margin: 0 auto; /* Centre le carousel horizontalement */
	display: flex;
	justify-content: center;
 }
  
  @keyframes display {
	0% {
	  transform: translateX(50px);
	  opacity: 0;
	}
	9% {
	  transform: translateX(0);
	  opacity: 1;
	}
	14% {
	  transform: translateX(0);
	  opacity: 1;
	}
	22% {
	  transform: translateX(-50px);
	  opacity: 0;
	}
	100% {
	  transform: translateX(-50px);
	  opacity: 0;
	}
  }
  

  
  .pic-ctn > img {
	position: absolute;
	opacity: 0;
	max-width: 60%;
	height: auto;
	margin: 0 ;
	animation: display 21S infinite;
  }
  
  img:nth-child(2) {
	animation-delay: 3s;
  }
  img:nth-child(3) {
	animation-delay: 6s;
  }
  img:nth-child(4) {
	animation-delay: 9s;
  }
  img:nth-child(5) {
	animation-delay: 12s;
  }
  img:nth-child(6) {
	animation-delay: 15s;
  }
  img:nth-child(7) {
	animation-delay: 18s;
  }


/* ==============================================
   Media Queries 
===============================================*/

/* Media query pour les tablettes et plus larges */
@media (min-width: 768px) {
	.pic-ctn {
		width: 450px;
		height: 450px;
	}
}
