/* ministry-style-one */
.ministry-style-one .ministry-item h3.title {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ministry-style-one .ministry-item{
    position: relative;
}
.ministry-style-one .ministry-item figure:after, .ministry-style-one .ministry-item figure:before {
    transition: 0.3s ease-in-out;
    content: "";
}
.ministry-style-one .ministry-item figure:before {
    content: "";
    position: absolute;
    background: black;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 99;
}
.ministry-style-one .ministry-item figure:hover:before {
    transform: scale(1.1);
}
.ministry-style-one .ministry-item figure:hover:before {
    opacity: 0;
}
.ministry-style-one .ministry-item figure:hover:after {
    content: "";
    position: absolute;
    background: #ff6418;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 999;
    transform: scale(1.1);
    top: 0;
    left: 0;
}
.ministry-style-one .ministry-item figure:hover img {
    transform: scale(1.1);
    z-index: 991;
    position: relative;
}
.ministry-style-one .ministry-item figure img{
    width: 100%;
}



