



















.h1key h1 {
    font-size: 30px;
    line-height: 56px;}











.gallery {
    display: grid;
    gap: 15px;
    margin-bottom: 1rem;
}
@media (min-width: 480px) {
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1260px) {
    .gallery {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.gallery-image {
  position: relative;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
figcaption{
     font-size: 30px;
    margin-top: 0vh;
    font-weight: 600;
    padding: 30px;
}

.gallery-image img {
  display: block;
  max-width: 100%;
  height: auto; z-index:-111;
}


.gallery-image .more {opacity:0;}
.gallery-image:hover .more {
    position: absolute;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: capitalize;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 1;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    top: 25vh;
    left: 40vh;
    border: 1px dashed #ffffff6e;
    padding: 9px 20px;
    border-radius: 50px;
    background: #41403e91;
    z-index: 999;}

 .gallery-image:hover  .more a {
    color: #fdd407;
    text-decoration: none;
}

 .gallery-image:hover  .more i {
    font-size: 10px;
    margin-left: 2px;
}







/*Mob*/
@media only screen and (min-width : 150px) and (max-width : 767px){

    .h1key h1 {
    font-size: 31px;
    line-height: 40px;
}

}