.service__items{
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 138px;
}
.service__item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 70px;
    padding: 40px 90px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    margin-top: calc(76px / 2);
}
.service__number{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: #B81C22;
    position: absolute;
    left: 90px;
    top: 0;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    max-width: 315px;
    width: 100%;
    border-radius: 10px;
    padding: 15px 0;
}
.service__left{
    width: calc((100% - 70px) * (560 / (1100 - 70)));
}
.service__title{
    font-weight: 700;
    font-size: 30px;
    line-height: 160%;
    letter-spacing: 0.01em;
    color: #B81C22;
}
.service__description{
    font-weight: 400;
    font-size: 18px;
    line-height: 200%;
    letter-spacing: normal;
    color: #1B1E49;
    margin-top: 20px;

}
.service__right{
    width: calc((100% - 70px) * (470 / (1100 - 70)));

}

.service__right img{
    display: block;
    width: 100%;
}

.service__item:nth-of-type(2n){
    flex-direction: row-reverse;
}

.service__item:nth-of-type(2n) .service__number{
    right: 90px;
    left: auto;
}

@media (max-width: 991px) {
    .service__items{
        gap: 50px;
        margin-top: 78px;
    }
    .service__item{
        gap: 30px;
        padding: 60px 22.5px 40px 22.5px;
        margin-top: calc(56px / 2);
    }
    .service__number{
        gap: 30px;
        left: auto;
        right: 22.5px;
        top: 0;
        font-size: 24px;
        letter-spacing: 0.05em;
        max-width: 241px;
        padding: 6px 0;;
    }
    .service__left{
        width: 100%;
    }
    .service__title{
        font-size: 24px;
    }
    .service__description{
        font-size: 14px;
    
    }
    .service__right{
        width: 100%;
    
    }
    
    .service__right img{
        display: block;
        width: 100%;
    }
    
    .service__item:nth-of-type(2n){
        flex-direction: column;
    }
    
    .service__item:nth-of-type(2n) .service__number{
        right: 22.5px;
        left: auto;
    }
}

#category-ranking .itemList{
    opacity: 0;
    transition: all 0.3s ease;
}

#category-ranking .itemList.slick-initialized{
    opacity: 1;
}