

.services-section h2 {
    text-align: center;
    margin-top: 20px;
    font-size: 30px;
    font-weight: var(--strong-weight);
}

.services-section h2::after,
.services-section h2::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin-inline: 8px;
}

.services-section .container .services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;

}

.services-section .container .services-row .service-col {
    width: 30%;
}

.services-section .container .services-row .service-col .service-card {
    display: flex;
    width: 100%;
    height: 400px;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.services-section .container .services-row .service-col .service-card .service-icon {
    margin-bottom: 20px;
}

.services-section .container .services-row .service-col .service-card .service-icon img {
    width: 100px;
    height: 100px;
}

.services-section .container .services-row .service-col .service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-section .container .services-row .service-col .service-card p {
    margin-bottom: 15px;
    color: var(--component-color);
}

.services-section .container .services-row .service-col .service-card .service-card-icon {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    color: var(--white);
    background-color: var(--primary-color);
}

.services-section .container .services-row .service-col .service-card .service-card-icon div {
    padding: 10px 20px 10px 10px;
    font-weight: 600;
}

.services-section .container .services-row .service-col .service-card .service-card-icon a {
    color: var(--white);
}

.services-section .container .services-row .service-col .service-card .service-card-icon .i-div {
    background-color: #3e9cc4;

}
@media (max-width: 1024px) {
    .services-section .container .services-row .service-col{
        width: 48%;
    }
}


@media (max-width: 767px) {
    .services-section .container .services-row {
        flex-direction: column;
        align-items: center;
    }

    .services-section .container .services-row .service-col {
        width: 100%;
    }
    .service-card-icon a{
        font-size: 14px;
        font-weight: 600;
    }
    
}