/* custom header for tab  to  small pc*/
@media (min-width:768px) and (max-width:1200px) {
    .top-bar .contact-info ul{
    gap:8px;
}
header.style-1 .main-menu ul > li a{
    font-size: 13px
}
.top-bar{
    display: none;
}
}
/* for small devices under tab */
@media (max-width:768px) {
   .top-bar{
    display: none;
   }
}
/* for about grid gallery */

.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}
@media (min-width:888px) {
    .gallery-mobile-view{
        display: none;
    }
}
@media (max-width:768px) {
    .gallery-container{
        display: none;
    }

}