body{
    margin: 0;
    padding: 0;
    width: 100%;
    
}

.main-image-container{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
   
   /* background-color: blueviolet; */
   gap: 10px;
   /* top: 170px; */
   
    
}

.imageBox{
    
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}
.imageBox img{
  
    border-radius: 10px;
    width: 85%;
   
}
/* .main-image-container-image{
    width: 100%;
    background-color: rgb(15, 15, 15);
    height: 300px;
} */


  /* .main-image-container-image{
   width: 100%;
   height: 100%;
  } */
   .catogary{
    
       display: flex;
       flex-direction: row;
       justify-content: space-around;
       align-items: center;
       flex-wrap: wrap;
       width: 100%;
       gap: 20px;
        margin-bottom: 10px;
      
   }
   .catogary-card{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding-bottom: 10px;
        cursor: pointer;
        width:15rem;
       margin-left: 10px;
       margin-right: 10px;
        
    }
    .catogary-card img:hover {
        transform: scale(1.01);
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        /* opacity: 0.9; */
    }
    .catogary-card img{
        width: 100%;
       
        transition: all .6s ;
       border-radius: 5px;
        /* border: 1px solid rgba(0, 0, 0, 0.678); */
    }
   .catogary-card-title{
        position: absolute;
        top: 7px;
        left:7px;
        right: 7px;
        border: 2px solid rgb(255, 255, 255);
        background-color: rgba(129, 47, 15, 0.952);
        color: white;
        text-align: center;
        padding: 0.5rem;
        text-transform: uppercase;
        cursor: pointer;
        z-index: 2;
        /* opacity: 1; */
   }


   .catogary-card-title:hover {
    /* background: rgba(35, 35, 35, 1); */
    text-shadow: 0px 0px 2px rgb(0, 0, 0,1), 
                 0px 0px 5px rgb(230, 221, 221,1), 
                 0px 0px 10px rgb(255, 255, 255,1)
                
  }
   .page-header-Section{
       position: sticky;
       left: 0;
       right: 0;
       top: 0;
      
   }

   .ImageTitle{
    position: absolute;
    bottom: 8%;
    left:4.5%;
    background-color: rgba(190, 60, 20, 0.815);
    padding: 10px;
    text-transform: uppercase;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: white;
    border: 2px solid rgb(255, 255, 255);

   }
@media (max-width:918px) {
    .main-image-container{
        position: relative;
        /* top: 260px; */
    }
}

@media (max-width:866px) {
    .main-image-container{
        position: relative;
        /* top: 300px; */
    }
    .ImageTitle{
        font-size: 0.95rem;
    }
    .catogary-card-title{
        font-size: 0.8rem;
    }
}
/* @media (max-width:551px) {
    .main-image-container{
        position: relative;
        top: 380px;
    }
} */

@media (max-width:512px) {
    .main-image-container{
        position: relative;
        /* top: 240px; */
    }
    .ImageTitle{
        font-size: 0.75rem;
    }
    .catogary-card-title{
        font-size: 0.7rem;
    }
}