.pub-logo-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
  gap: 4vw !important;
  padding: 4vw !important;
  justify-items: center !important;
  align-items: center !important;
  position: absolute !important;
  width: 100% !important;
  top: 60% !important;
  z-index: 20 !important;
}


.tr-pub-logo {
  position: relative !important;
  aspect-ratio: 1/1 !important;
  width: 100% !important;
  max-width: 120px !important;
  padding: 10px !important;
  border-radius: 50% !important;
 /* background: rgba(0, 0, 0, 0.07) !important;*/
  background: rgba(236, 219, 219, 0.37) !important;
  animation: fadeBackground 5s ease-in-out important;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;*/
  box-shadow: 0 0 10px rgb(244, 244, 244) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index:30 !important;
}




@keyframes fadeBackground {
  0%, 100% { background-color: rgba(246, 5, 5, 0.07); }
  50% { background-color: rgba(0, 206, 247, 0.15); }
}

/* Animations définies */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes spinY {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes wave {
  0%, 100% { transform: rotateZ(0deg); }
  25% { transform: rotateZ(5deg); }
  75% { transform: rotateZ(-5deg); }
}


@media (max-width: 600px) {

  .pub-logo-container{
    top: 0 !important;
    height: 100%;
    align-items: center;
  }
  
  .tr-pub-logo {
    width: 100px !important;
    height: 100px !important;
    max-width: 100% !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    padding: 5px !important;
  }
}