.services {
    margin-bottom: 20px;
}
.services .servicesWrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.services .servicesWrapper .servicesCard {
    width: 100%;
    max-width: calc(100% * 1/4 - 12.8px);
    border-radius: 12px;
    border: 1px solid #6c6c6c;
    background: linear-gradient(285deg, #4f4f4f -2.05%, rgba(79, 79, 79, 0.50) 30.59%, rgba(79, 79, 79, 0.50) 64.71%, #4f4f4f 102.53%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.services .servIcon svg{ width:100px; }
.services .servicesWrapper .servicesCard:after {
    content: "";
    top: 0;
    left: 0%;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    opacity: 0;
    overflow: hidden;
    z-index: 0;
}
.services .servicesWrapper .servicesCard:hover:after {
    background: linear-gradient(285deg, #4f4f4f -2.05%, #000 30.59%, rgba(79, 79, 79, 0.5) 64.71%, #4f4f4f 102.53%);
    opacity: 0.3;
    overflow: visible;
}
.services .servicesWrapper .servicesCard p {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.4px;
    position: relative;
    z-index: 9;
}
.services .servicesWrapper .servicesCard a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.48px;
    border-bottom: 1px solid white;
    padding-bottom: 8px;
    position: relative;
    z-index: 9;
}
.instagram-gallery__actions {
    display: none !important;
}