.banner {
    height: 330px;
    position: relative;
    overflow: hidden;
}

.banner .bimg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.banner .text {
    display: block;
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.banner .text h1 {
    color: white;
}

.banner .text a {
    color: #FFF;
} 
.Box1.container-md.row{
    margin: 0 auto;
    padding: 50px 0;
}
.Box1 .box{
    margin-bottom: 30px;
}
.Box1 .img{
    position: relative;
    overflow: hidden;
}
.Box1 .img::before{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #F08519;
    content: '';
    top: 0;
    left: 0;
}
.Box1 .img::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    content: '';
    z-index: 1;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s,-webkit-transform .6s;
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0)
}
.Box1 .box:hover .img::after {
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0)
}
 
.Box1 .img img{
    width: 100%;
    transition: 0.3s;
}
.Box1 .box:hover .img img{
    transform: scale(1.1);
} 
.Box1 .text{
    text-align: center;
    padding: 10px 0;
    background-color: #fafafa;
}