 body{
     background: #f5f5f5 !important;
     font-family: 'Poppins', sans-serif !important;
     position: relative;
 }   
.navbar{
    background:#018940 !important;
    position: fixed !important;
    z-index: 999;
    width: 100%;
    padding: 5px;
    border-color: #fff;
}
.navbar-nav{
    flex-direction: row !important;
}
.navbar-nav li a{
    color: #fff;
    padding: 15px 25px;  
}
.mid{  
    padding-top: 95px;  
}
h1 {
    text-align: center;
    margin-bottom: 45px !important;
    font-size: 88px;
    margin: 20px 0 0;
    font-weight: 600 !important;
    text-shadow: 3px 3px 1px #dedddd;
    color: #008940 !important;
    font-family: 'Poppins', sans-serif;
}
.imageSec {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
}
.img-ctr {
   width: 20%;
   display: flex;
   flex-direction: row;
   justify-content: center;
   position: relative;
   background: black;
   transform-origin: center;
   transform: perspective(800px) rotateY(25deg);
   transition: 0.5s;
   border-radius: 15px;
   cursor: pointer;
}
.img-ctr img {
    width: 100%;
    position: relative;
    -webkit-box-reflect: below 2px linear-gradient(transparent, transparent, #0004);
    /* filter: grayscale(60%); */
    border-radius: 15px;
    opacity: 0.7;
} 
.img-ctr:hover {
    transform: perspective(800px) rotateY(0deg);
}
.img-ctr img:hover {
    filter: grayscale(0%);
    opacity: 1;
 }
 .footer{
    background: #008940;
    position: fixed;
    border: 0px;
    bottom: 0px;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
 }

@media only screen and (max-width: 769px) {
   .navbar .container-fluid{
        padding: 0px !important;
        flex-wrap: nowrap !important;
    }
    h1{
        margin-bottom: 30px !important;
        font-size: 30px !important;
    }
    .imageSec{
        flex-direction: column;
        margin-bottom: 55px;
    }
    .img-ctr {
        width: 100%;
        margin-bottom: 25px;
        transform: perspective(800px) rotateY(0deg);
    }
    .img-ctr img{
        -webkit-box-reflect: unset;
    }
    .footer{font-size: 13px;}
}

@media (min-width: 769px) and (max-width:1000px){
    .imageSec{
        flex-wrap: wrap;
    }
    .img-ctr{
        width: 30%;
        margin-bottom: 15%;
    }
    .mid {
        padding-top: 150px;
    }
}