.counter-section {
    /* background: #f8f9fa; */
    /* padding: 80px 0; */
    /* text-align: center; */
    margin-bottom: 57px;
}

.counter-section ul {

    padding: 0;

    display: flex;

    border-top: #dddddd 1px solid;

    border-bottom: #dddddd 1px solid;
}

.counter-section ul li {

    list-style: none;

    width: 34%;
}

.counter-section ul li:nth-child(2) {
    background: #fef5f0;
}

.counter-section ul li .counter-box {
    /* background: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-section ul li .counter-box:hover {
    transform: translateY(-5px);
}

.counter-section ul li .counter {
    font-size: 58px;
    font-weight: 700;
    color: #ffc107;
    margin-right: 28px;
}

.counter-section ul li .counter-title {
    font-size: 18px;
    color: #39230c;
    margin: 0;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


