.img-round{
    border-radius: 10px;
    box-shadow: 5px 5px 15px #000a;
}
.title_question{
    position: relative;
    font-weight: bold;
    
    
}
.title_question::after{
    content:"";
    position: relative;
    display:inline-block;
    width: 30px;
    height: 30px;
    top: 5px;
    background-image: url(/img/artykuly/load_index/question_after.png);
    background-size: cover;
    background-position: center;
    animation: question 3s linear infinite;
}

.list-dot{
    list-style: disc;
}
@keyframes question {
    

0% {
    transform: scaleY(0);
}
10% {
    transform: scaleY(1);
}
20% {
    transform: rotate(-20deg);
}
40% {
    transform: rotate(20deg);
}
60% {
    transform: rotate(-20deg);
}
80% {
    transform: rotate(20deg);
}
90% {
    transform: scaleY(1);
}
100% {
    transform: scaleY(0);
}
}