.services3 h2 {
    text-align: center;
}

.services3 .item .image {
    width: 100%;
    min-height: 320px;
    max-height: 320px;
    overflow: hidden;
}

.services3 .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services3 .item .image:hover img {
    transform: scale(1.06);
}

.services3 .item .content {
    box-shadow: 2px 4px 15px 4px #C8C8C932;
    margin: -40px 35px 0 35px;
    background-color: white;
    padding: 25px;
    position: relative;
    z-index: 1;
    height: 100%;
    padding-bottom: calc(25px + 3.5rem);
}

.services3 .item h3 {
    text-align: center;
}

.services3 .item h3 a {
    font-size: 1.625rem;
    text-transform: uppercase;
}

.services3 .item .primary-link {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {

    .services3 .item .image {
        min-height: 220px;
        max-height: 220px;
    }

    .services3 .item .content {
        margin: -30px 20px 0 20px;
        height: auto;
        padding: 20px;
        padding-bottom: calc(20px + 3rem);
    }

    .services3 .item h3 a {
        font-size: 1.375rem;
    }

    .services3 .item .primary-link {
        bottom: 20px;
    }

}