/* Counter Section */
.counter-highlight {
    background: #000;
    padding: 60px 0;
    margin-top:50px ;
}

.counter-highlight-wrapper {
    gap: 40px;
}

/* Each Counter */
.counter-item {
    flex: 1;
    color: #fff;
}

/* Icon */
.counter-icon img {
    width: 40px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

/* Number */
.counter-number {
    font-size: 36px;
    font-weight: 600;
        text-align: left;
}
.counter-icon {
    padding: 20px 0 0 0;
}
/* Text */
.counter-text {
    font-size: 14px;
    opacity: 0.75;
    margin: 0;
        text-transform: uppercase;
}

.counter-item.text-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .counter-highlight-wrapper {
        flex-wrap: wrap;
        text-align: center;
    }

    .counter-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .counter-item {
        flex: 0 0 100%;
    }
}
