.about-area {
    position: relative;
}
.support-services {
    background: #fff;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 40px;
    overflow: hidden;
    border-radius: 3px;
    transition: 0.4s;
    z-index: 1;
    margin-bottom: 30px;
}
.support-services::after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(31,193,87,0.96);
    transition: 0.4s;
    opacity: 0;
    z-index: -1;
}
.support-services::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(img/about/ab2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.4s;
    opacity: 0;
    z-index: -1;
}
.support-images {
    font-size: 50px;
    color: #F3B007;
    line-height: 50px;
    margin-bottom: 20px;
    display: block;
}
.support-content h4 {
    font-size: 24px;
    text-transform: capitalize;
    color: #151b2c;
}
.support-content p {
    margin-bottom: 0px;
}
.support-services:hover::before {
    transition: 0.4s;
    opacity: 1;
}
.support-services:hover::after {
    transition: 0.4s;
    opacity: 1;
}
.support-services:hover .support-images {
    transition: 0.4s;
    color: #fff;
}
.support-services:hover .support-content h4, .support-services:hover .support-content p {
    color: #fff;
}
.ab-btn {
    border: 1px solid #F3B007;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    padding: 6px 15px;
    text-align: center;
    transition: all 0.4s ease 0s;
    z-index: 3;
    background: #F3B007;
    border-radius: 2px;
}
.ab-btn:hover{
    color: #333;
    border: 1px solid #fff;
    transition: all 0.4s ease 0s;
    background:#fff;
}