

/* ===================================================
   =============   SECTION FOCUS SUR   ===============
   =================================================== */
@keyframes scrollText {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.vertical-marquee-wrapper {
    writing-mode: vertical-rl;
    text-wrap: nowrap;
    height: 800px!important;
	animation: scrollText 25s linear infinite;
}

@media(max-width:1439px){
	.vertical-marquee-wrapper {
		height: 700px!important;	
	}
}
@media(max-width:1199px){
	.vertical-marquee-wrapper {
		height: 600px!important;
	}
}
@media(max-width:991px){
	.vertical-marquee-wrapper {
		height: 500px!important;
	}
}
@media(max-width:575px){
	.vertical-marquee-wrapper {
		height: 400px!important;
	}
}


