    
.service-section .service-card-row .service-card {
    background: linear-gradient(323deg, #040405 0%, #1D1E1F 100%);
    padding: 30px 25px;
    border-radius: 13px;
    position: relative;
    border-radius: 14px;
    z-index: 1;
    height: 100%;
     border: 0;
}

.service-section .service-card-row .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 14px;
    background: linear-gradient(140deg, #2c2e30, #08090a);
    -webkit-mask: linear-gradient(#2c2e30 0 0) content-box, linear-gradient(#2c2e30 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    
}

.service-section .service-card-img img {
    height: unset;

}

.service-section .service-card-row .col-lg-4:first-child .service-card-img {
    height: auto;
}

.service-section .service-card-img {
    margin-bottom: 40px;
}

.service-section .service-card-img {
    min-height: 150px;
}

.service-section .service-card h3 {
    margin-bottom: 8px;
}

.service-section .service-card p {
    font-size: 15px;
    margin-bottom: 12px;
}

.service-card-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.service-section .service-card li {
    color: #6C6F76;
    font-size: 14px;
    line-height: 24px;
    list-style-type: none;
    position: relative;
    letter-spacing: -0.2px;
}


.service-section .service-card li::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../img/service-page/check.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    left: -30px;
    margin-top: 4px;
}

/* end css service-card */