/* Start collections area */ 

.site-main .collections-area{
   padding: 50px 0; 
}

.site-main .collections-area h1{
   font-size: 40px;
   font-weight: bold;
   color: #000000b9;
}

.site-main .collections-area h1::after{
   content: "" ;
   height: 4px;
   width: 3vw;
   border-radius: 20px;
   background: rgba(2, 2, 2, 0.575);
   display: inline-block;
   margin-left: 5px;
   transform: translateY(-10px); 
}

.grid .topbar{
   width: 100%;
   height: 50px;
   display: flex;
   align-items: center;
   text-align: center;
   padding-left: 320px;
   background: #f5f5f5;
   top: 0;
   z-index: 10;
}

.grid .tabs{
   display: flex;
   align-items: center;
   font-size: 20px;
   position: absolute;
}

.grid .tab{
   min-width: 100px;
   margin: 5px;
   text-align: center;
   font-weight: 600;
   font-size: 15px;
   padding: 6px;
   border-radius: 5px;
   cursor: pointer;
   color: #000000bb;
}

.grid .tab:hover{
   background: #ededed;
   color: #000000;
}

.grid .active{
   background: #D6AD60;
   color: #ffffff;
}

.grid .container{
   position: relative;
   column-count: 3;
   padding: 20px;
}

.grid .image{
   display: none;
   margin-top: 10px;
   overflow: hidden;
}

.grid .show{
   display: inline-block;
}

.grid img{
   width: 100%;
   transition: 0.25s ease-in-out;
   object-fit: cover;
}

.grid .image:hover img{
   transform: scale(1.1);
}

@media(max-width: 1077px){
   .grid .tab{
       display: inline-block;
       align-items: center;
       justify-content: center;
       font-size: 10px;
      
}

   .grid .tabs{
         display: flex;
         align-items: center;
         font-size: 5px;
         position: absolute;
         right: 0px;
}

.grid .logo{
   display: none;
}
}

/* End collections area */ 
