.ministryStrucutre{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    flex-wrap: wrap;
}
.ministryStrucutre a{
width: 300px;
height: 400px;
display: block;
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow:0 0 8px #d0d0d0;
cursor: pointer;
margin-top: 50px;
}
.ministryStrucutre h3{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 0;
    z-index: 9;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}
.ministryStrucutre a:hover h3{
    bottom:100px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}
.ministryStrucutre a::after{
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 8;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 30%, transparent 70%);
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}
.ministryStrucutre a:hover img{
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}
.ministryStrucutre a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}
