.fn-stats-bar {
    background: linear-gradient(to right, #013438, #55777A);
    color: #ffffff;
}

.fn-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.fn-stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.fn-stat-item:last-child {
    border-right: none;
}

.fn-stat-icon-wrapper {
    color: #00c3b1;
    flex-shrink: 0;
}

.fn-stat-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

@media (max-width: 1400px) {
    .fn-stats-bar{
        display: none;
    }
}