/*HEIGHT RESPONSIVITY */

@media (max-width: 992px) {
  #contentLogo{
    top: 50%;
    transform: translateY(-50%);
  }
  #roueIMG{
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}


@media (max-width: 768px) {
  body{
    overflow: hidden;
  }
  #contentLogo{
    top: 45%;
  }
  .divImgMenu img{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: auto;
  }

}