/*/ ------ GALLERY ------------*/
 

#gallery .card { 
aspect-ratio: 1 / 1;
overflow: hidden;
border-radius: 0;
border:none;
}
.gallery-img-hor { 
  height:fit-content;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  }
  .gallery-img-ver{ 
    width:fit-content;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }


 
@media (min-width: 768px) {    
.gallery-mobile{
  display:none;  
}
}  
.gallery-desktop{
  display: none;
} 
@media (min-width: 768px) {    
.gallery-desktop{
  display:initial; 
}
} 


/* (Venue) Galery!!
--------------------------------------------------------------*/
#venue {
  padding: 60px 0;
}
#venue .container-fluid {
  margin-bottom: 3px;
}    
#venueX .venue-gallery-container {
  padding-right: 12px;
}
#venue .venue-gallery {
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  max-height: 400px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;       
}
@media (max-width:576px){
  #venue .venue-gallery {         
    max-height: 500px;
  }
}
#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}   
#venue .venue-gallery:hover img {
  transform: scale(1.1);
}
