.home1 {
    width: 100%;
    height: auto;
}

.home1 a {
    display: block;
    width: calc((100% - 0px) /4);
    float: left;
    padding: 30px;
    color: #fff;
    position: relative;
    transform: scale(1);
    transition: all 0.5s;
    z-index: 1;
}

.home1 a:hover {
    transform: scale(1.1);
    z-index: 100;
}

.home1 a h5 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 0rem;
}

.home1 a p {
    font-size: 18px;
    margin-bottom: 15px;
  margin-top: 15px;
    opacity: .5;
}

.home1 a.ha1 {
    background: #004f9b;
}

.home1 a.ha2 {
    background: #e69200;
}

.home1 a.ha3 {
    background: #363b7e;
}

.home1 a.ha4 {
    background: #2a8c8d;
}

@media screen and (max-width:768px) {
    .home1 a {
        display: block;
        width: calc((100% - 0px) /2);
        float: left;
        padding: 26px;
        height: 195px;
        color: #fff;
        position: relative;
        transform: scale(1);
        transition: all 0.5s;
        z-index: 99;
    }
}