.birthday-statistics {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2.5px 30px;
}

.birthday-statistics__item {
    background-color: #1C262C;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 75px;
    width: calc(33.333% - 5px);
    margin: 2.5px;
    text-align: center;
    padding: 30px;
}

.birthday-statistics__item-title {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--gray)
}

.birthday-statistics__item-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--yellow);
}

.birthday-statistics__item-number-old {
    margin-bottom: 0;
    font-weight: bold;
    color: var(--gray);
}

.birthday-statistics__item-number-old span {
    color: #01ff93;
    text-shadow: 0 0 3px #00ff9433;
}

.birthday-statistics__item-icon {
    height: 100px;
    width: 100px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.birthday-statistics__item-big {
    margin: 2.5px;
    height: 250px;
    background: #1C262C;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.birthday-statistics__item-big-bg {
    width: 120%;
    height: auto;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translate(-10%, calc(125px - 50%));
}

@keyframes rotation {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.birthday-statistics__item-big-bg img {
    width: 100%;
    position: relative;
    animation: rotation 75s linear infinite;
}

.birthday-statistics__item-infinity {
    position: relative;
    z-index: 2;
    width: 176px;
    height: 96px;
    display: table;
    margin: 70px auto 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../../images/birthday/infinity.svg');
}

.birthday-statistics__item-infinity-title {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    margin-bottom: 0;
}

@media screen and (max-width: 767px){
    .birthday-statistics__item {
        width: calc(50% - 5px);
    }
}

@media screen and (max-width: 480px){
    .birthday-statistics__item {
        width: calc(100% - 5px);
    }
}