/* ### STATISTICS SECTION | SYNLAB ICON GRID ###*/

.synlab-icon-grid {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: .5rem 0;
}

.synlab-icon-grid>* {
    flex: 1;
    min-width: 40%;
}

.synlab-icon-box {
    padding: 1rem;
    padding-top: .5rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    box-shadow: var( --box-shadow);
}

.synlab-icon-box:hover {
    box-shadow: var( --box-shadow-hover);
}

.synlab-icon-box__icon {
    height: 50px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: .5rem 0;
}

h2.synlab-icon-box__title {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: center;
}

.synlab-icon-box__title span {
    font-size: 1.3rem;
    line-height: 1;
    color: var(--orange);
}

.synlab-icon-box__title::after {
    display: none;
}

.synlab-icon-box__text {
    text-align: center;
    font-size: .9rem;
    line-height: 1.3;
}

@media only screen and (min-width: 768px) {
    .synlab-icon-grid {
        width: 100%;
    }
    .synlab-icon-grid>* {
        flex: 1;
        min-width: 30%;
    }
    .synlab-icon-box {
        padding-top: 1rem;
    }
}

@media only screen and (min-width: 900px) {
    .synlab-icon-grid {
        gap: 2rem;
        width: 90%;
    }
    .synlab-icon-box__icon {
        height: 70px;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        margin: 1rem 0;
    }
    h2.synlab-icon-box__title {
        font-size: 1.2rem;
        line-height: 1;
    }
    .synlab-icon-box__title span {
        font-size: 1.7rem;
        line-height: 1;
    }
    .synlab-icon-box__title::after {
        display: none;
    }
    .synlab-icon-box__text {
        text-align: center;
    }
}