.bannerArea .Img .innerImg{
    padding-top: 28%;
}

.bannerArea .TxtBox{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
}

.bannerArea .TxtBox .title b{
    font-size: calc(3px + 5vw);
}

.bannerArea .TxtBox .title h2{
    letter-spacing: calc(1px + 0.1vw);
}

/* homeInspectionArea */
.homeInspectionArea{
    padding: 7%;
}

.homeInspectionArea .col{
    margin-bottom: 3%;
}

.homeInspectionArea .item{
    z-index: 2;
    display: block;
} 

.homeInspectionArea .item::after{
    content: '';
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
} 

.homeInspectionArea .item:hover::after{
    content: '';
    width: 100%;
    height: 100%;
    background: #00000033;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
} 

.homeInspectionArea .item i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: calc(3px + 5vw);
    transition: all 0.5s ease;
} 

.homeInspectionArea .item:hover i{
    font-size: calc(3px + 6vw);
    transition: all 0.5s;
}

.homeInspectionArea .Txt{
    text-align: center;
    padding: 5% 0;
    color: #fff;
    background: #061760;
}

.homeInspectionArea .Txt::after{
    content: '';
    background-image: url(../images/home-inspection/decoPic-1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.homeInspectionArea .Txt::before{
    content: '';
    background-image: url(../images/home-inspection/decoPic-2.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 24%;
    height: 90%;
    position: absolute;
    top: 0;
    right: 0;
}

.homeInspectionArea .Txt span{
    z-index: 2;
}

@media (max-width: 991px) {
    .bannerArea .Img .innerImg{
        padding-top: 50%;
    }

    .bannerArea .TxtBox .title b{
        font-size: calc(10px + 5vw);
    }

    .homeInspectionArea{
        padding: 15% 10% 5% 10%;
    }

    .homeInspectionArea .col{
        margin-bottom: 10%;
    }

    .homeInspectionArea .item i{
        font-size: calc(18px + 13vw);
    }

    .homeInspectionArea .item:hover i{
        font-size: calc(20px + 13vw);
    }

}