.services-variant-v38 .sv38-title {
    padding: 0 20px;
    margin-top: 40px;
}

@media (min-width:1600px) {
    .services-variant-v38 .sv38-title {
        margin-top: 100px;
    }
}

.services-variant-v38 .sv38-each {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.services-variant-v38 .sv38-each .sv38-wrapper .sv38-images {
    height: 300px;
    background-size: cover;
    transition: transform 300ms ease-out;
}

@media (min-width:1200px) {
    .services-variant-v38 .sv38-each .sv38-wrapper .sv38-images {
        height: 400px;
    }
}

.services-variant-v38 .sv38-each .sv38-wrapper:hover .sv38-images {
    animation: zoomImage 20s infinite;
}

@keyframes zoomImage {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.5);
    }
}

.services-variant-v38 .sv38-each .sv38-wrapper .overlay-bg {
    background: rgba(0, 0, 0, .4);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 1;
    z-index: 2;
    transition: all 700ms ease-in-out;
}

.services-variant-v38 .sv38-each .sv38-wrapper:hover .overlay-bg {
    opacity: 0;

}

.services-variant-v38 .sv38-each .sv38-wrapper .sv38-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.services-variant-v38 .sv38-each .sv38-wrapper .sv38-content h4 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}