.services-section .content-block {
    max-width: 670px;
    margin: 0 auto 60px;
    text-align: center;
}
.services-section .content-block p {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -100px;
    counter-reset: service-counter;
}

.services-grid .services-col {
    width: 33.33%;
    padding: 0 20px;
    margin-bottom: 100px;
    counter-increment: service-counter;
}

.services-card {
    display: block;
    height: 100%;
    transition: all 0.6s;
    position: relative;
}
.services-card:before {
    content: "0" counter(service-counter);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black);
    -webkit-text-fill-color: transparent;
    stroke-width: 1px;
    stroke: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 96px;
    line-height: 117px;
    font-weight: 700;
    font-family: var(--font-inter);
    top: -60px;
    left: -20px;
}
.services-card:hover{
    transform: translateY(-10px);
}
.services-card .services-items {
    position: relative;
    padding-bottom: 76.25%;
    margin-bottom: 20px;
}

.services-card .services-items img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.services-content p {
    max-width: 260px;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.services-content .simple-cta {
    width: auto;
    margin-left: auto;
    display: flex;
    justify-content: end;
    width: fit-content;
    padding-bottom: 5px;
}
.services-section .services-grid {
    padding-top: 50px;
}

@media only screen and (max-width:1199px){
   .services-grid {
      margin: 0 -10px -60px;
    }  
    .services-grid .services-col {
        padding: 0 10px;
        margin-bottom: 60px;
    }
    .services-card:before {
        font-size: 76px;
        line-height: 87px;
        top: -45px;
        left: -10px;
    }
}
@media only screen and (max-width:991px){
    .services-grid .services-col {
        width: 50%;
    }
}
@media only screen and (max-width:767px){
     .services-grid .services-col {
        width: 100%;
    }
}