:root {
    /* text colors */
    --ebserv10-main-title-color: #00045F;
    --ebserv10-primary-text-color: #00045F;
    --ebserv10-secondary-text-color: #ffffff;
    --ebserv10-light-text-color: #FFFFFF;

    /* backgrounds */
    --ebserv10-main-background-color: #FFFFFF;
    --ebserv10-light-blue-background: #EDF5FF;
    --ebserv10-testimonial-background: #DDEBFF;
    --ebserv10-card-background: #FFFFFF;

    /* borders */
    --ebserv10-card-border-color: #E6ECF5;

    /* icons */
    --ebserv10-icon-background-color: #E83A15;
    --ebserv10-icon-color: #FFFFFF;

}

/* =========================
 STATS
========================= */

.ebserv10-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);

    gap: 2rem;

    padding: 2rem 1rem;
}


.ebserv10-single-stat {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;
}


.ebserv10-stat-icon {

    border-radius: 50%;

    /* background-color: var(--ebserv10-icon-background-color); */
    color: var(--ebserv10-icon-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(1rem, 2vw, 1.3rem);

    flex-shrink: 0;
}

.ebserv10-stat-icon-home {
    width: 3.7rem;
    height: 3.7rem;

}

.ebserv10-stat-icon-contact {
    width: 5rem;
    height: 5rem;
}

.ebserv10-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ebserv10-stat-text {
    display: flex;
    flex-direction: column;

    gap: 0.3rem;
}


.ebserv10-stat-text h3 {
    color: var(--ebserv10-primary-text-color);

    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
}


.ebserv10-stat-text span {
    color: var(--ebserv10-secondary-text-color);

    font-size: clamp(0.9rem, 2vw, 1rem);
}

@media (min-width: 992px) {

    .ebserv10-stats-wrapper {
        min-height: 28rem;

        align-content: center;

        padding: 3rem;
    }

}

/* =========================
 TABLET
========================= */



@media (min-width: 768px) {

    .ebserv10-stats-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {

    .ebserv10-stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}