.stats-section {
    position: relative;
    background: url("../../pictures/s.png") center/cover no-repeat;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    margin-top: var(--BigMargin);
    
}

.stats-overlay {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    text-align: center;
}
.stat {
    width: 20%;
    color: white;
}
.devider{
    height: 60px;
    width: 5px;
    background-color: var(--Gold);
    border-radius: 20px;
}
.stat-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: -10px;
    opacity: 0.8;
  }

.stat .number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: -10px;
}

.stat .label {
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--SmallColor);
}

@media only screen and (max-width: 950px) {
    .stats-section{
        margin-top: 40px;
    }
    .stats-overlay{
        padding: 20px;
    }
    .stats-container{
        gap: 30px;
    }
    .stat .number {
        padding: 10px;
        font-size: 30px;
        font-weight: 500;
    }
    .stat-icon {
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 400px) {
    .stats-container{
        flex-direction: column;
    }
    .devider{
        width: 60px;
        height: 5px;
    }
}