*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.logo-size{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid black;
}
.bg-img-slider{
    background-image: url(../img/poster.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 32rem;
}
.man-size{
    width: 25rem;
    height: 25rem;
    border: 4px solid rgb(10, 129, 150);
    border-radius: 50%;
}
.item-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width:1022px){
    .man-size{
        width: 15rem;
        height: 15rem;
        border: 4px solid rgb(10, 129, 150);
        border-radius: 50%;
    }
    .slider-mobile{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (min-width:431px){
    .slider-mobile{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}