.service-card{
    width: 300px;
    height: fit-content;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.service-card > img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.service-card::before{
    content: "";
    position: absolute;
    display: flex;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.88) 28%, rgba(255, 255, 255, 0) 59%);
    height: 100%;
    width: 100%;
    z-index: 0;
}
.service-card .content{
    display: flex;
    flex-flow: column wrap;
    gap: 0px;
    z-index: 1;
}
.service-card h2{
    padding: unset;
    margin: unset;
    margin-inline: unset;
    margin-block-start: unset;
    position: relative;
    z-index: 30;
    opacity: 1;
}
