@media screen and (min-width:320px) and (max-width:500px){
   .noMobile {
    display: none !important;
   } 

   .toplogo img {
      width: 80%;
      margin: 0 auto !important;
   }

   .textTop .heading6{
      font-size: 30px !important;
   }

   .textTop .heading2{
      font-size: 18px !important;
   }

   footer, #confSecritariat .text-end {
      text-align: center !important;
    }
}
/* blink text */
.blinking {

   animation: opacity 2s ease-in-out infinite;
   opacity: 1;
   color:orange;
   }
   
   @keyframes opacity {
   0% {
   opacity: 1;
   }
   
   50% {
   opacity: 0;
   color:yellow;
   }
   
   100% {
   opacity: 1;
   color:orange;
   }
   }
 