.bulletsBlock:after {
    content: "";
    display: table;
    clear: both;
}
.bulletsBlock {
    display: flex;
    flex-wrap: wrap;
    clear: both;
    justify-content: center;
    /* gap: 20px; */
    padding: 20px;
    padding-top: 3.5%;
    padding-bottom: 10%;
}
.bulletsBlock > div {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef5e 100%);
    width: calc(33.33%);
    max-width: 300px;
    min-height: 250px;
    margin: 0 auto;
    display: table;
    padding-bottom: 200px;
    position: relative;
    border-radius: 20px;
    cursor: default;
    -webkit-transition:all 0.35s linear;
    transition:all 0.35s linear;
}
 
/* .bulletsBlock > div:first-child {
    margin-left:15%;
} */
 
/*Тень снизу у блока при наведении*/
.bulletsBlock > div:hover {
    -webkit-box-shadow: 0 35px 35px -35px #000000;
    -moz-box-shadow: 0 35px 35px -35px #000000;
    box-shadow: 0 35px 35px -35px #000000;
}

.bullet-item span{
    line-height: 2em;
    font-size: 550%;
    color:#000000;
    position: absolute;
    padding-left: 35%;
    top:0;
    left:0;
    display: block;
    width: 100%;
    -webkit-transition:all 0.35s ease;
    transition:all 0.35s ease;
}
 
/*Анимация иконки при наведении - уменьшение и сдвиг вверх*/
.bulletsBlock > div:hover span.iconBullet{
    line-height: 2.35em;
    /* font-size: 10.625em; */
    /* top:-2.7%; */
}

.titleBullet, .hideText {
    position: absolute;
    left:0;
    bottom:0;
    text-align: center;
    width: 100%;
    margin: 0;
    color: #fff;
    -webkit-transition:all 0.35s ease;
    transition:all 0.75s ease;

}
 
.titleBullet {
    line-height: 3em;
    /* font-size: 2.1875em; */
    background:rgb(187, 121, 70);
    z-index: 10;
    color:#f1e7e7;
    max-height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
    border-top-left-radius:6px;
    border-top-right-radius:6px;
    opacity: 1;
}
 
.hideText {
    line-height: 0.9em;
    font-size: 1.20em;
    /* padding: 1px 0; */
    /* background:#3B3B3B; */
    font-weight: 300;
    z-index: 8;
    opacity: 0;
    color:#000000;
    overflow: hidden;
    padding: 20%;
    min-height: 20%;
    height: 50px;
    font-weight: 500;
    border-radius:20px;
    -webkit-transition:all 0.35s linear 0.2s;
    transition:all 0.35s linear 0.2s;
}
 
/*Анимация при наведении видимого текстового блока*/
.bulletsBlock > div:hover p.titleBullet{
    /* bottom:80px; */
    background: rgb(252, 173, 45);
    color:#f1e7e7;
    opacity: 0;
}
 
/*Анимация при наведении скрытого текстового блока*/
.bulletsBlock > div:hover p.hideText{
    opacity: 1;
}
/* @media (max-width: 992px) {
    .bulletsBlock > div {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .bulletsBlock > div {
        width: 100%;
    }

}
@media (max-width:930px){
    .bulletsBlock {
        gap:10px;
    }
} */
@media (max-width: 768px) {
    .bulletsBlock > div {
        /* gap: 10px; */
        margin: 10px 0;
        width: 100%;
    }
}
.stats-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef5e 100%);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.296);
    font-family: 'Inter', sans-serif;
    margin-left:150px;
    margin-right: 150px;
}

.year-icon {
    min-width: 80px;
    height: 80px;
    fill: #000000;
    animation: pulse 2s ease-in-out infinite;
}

.stats-content {
    flex: 1;
}

.stats-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 8px 0;
}

.stats-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Добавляем адаптивность */
@media (max-width: 768px) {
    .stats-block {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        margin-left:20px ;
        margin-right:20px ;
    }
    
    .year-icon {
        margin-bottom: 20px;
    }
}