.bar-separator{
    border-top: 1px solid #D9D9D9;
    width: 33%;
}

.category-service-list__title-block-blog{
    padding-bottom: 28px;
    display: flex;
}

.category-service-list__title-blog{
    width: 33%;
    text-align: center;
    font-weight: 300;
}

.category-service-list {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 28px;
}

.category-service-list__service-cards-list {
    margin-inline: 30px;
    border-radius: 25px;
    height: 100%;
    max-width: 1066px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
    background-color: #ECECEB;;
}
/*.category-service-list__service-cards-list:hover {
    box-shadow: 4px 4px 20px 0px gray;
    cursor: pointer;
}*/
.category-service-list__service-card {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
}

.category-service-list__service-card-icon-block {
    padding-left: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-service-list__service-card-icon-container {
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-color: #e8f4d9;
    background-size: cover;
}

.category-service-list__service-card-icon {
    font-size: 33px;
    padding-top: 12px;
    padding-left: 7px;
    display: block;
    color: #5f605d;
}

.category-service-list__service-card-info-block {
    padding: 8px 24px 12px 16px;
    width: 1044px;
}

.category-service-list__service-card-info-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 4px;
}

.category-service-list__service-card-info-title--bold {
    font-weight: 600;
}

.category-service-list__service-card-info-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 8px;
}

.category-service-list__service-card-price-block {
    width: 194px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 25px;
    background-color: #e8f4d9;
    border-bottom-right-radius: 25px;
}

.category-service-list__service-card-price {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 8px;
}
.category-service-list__service-card-price--bold {
    font-weight: 600;
}

.category-service-list__service-card-price-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}


@media (max-width: 480px) {
    .category-service-list__service-card {
        flex-direction: column;
    }

    .category-service-list__service-card-info-title--bold {
        font-size: 18px;
        line-height: 28px;
    }

    .category-service-list__service-card-info-block {
        width: unset;
        text-align: center;
    }

    .category-service-list__service-card-price-block {
        width: 100%;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        padding-top: 12px;
        padding-bottom: 16px;
    }

    .category-service-list__service-card-info-text {
        font-size: 14px;
        line-height: 20px;
    }

    .category-service-list__service-card-icon-block {
        padding-left: 0px;
    }

    .category-service-list__service-cards-list {
        margin-inline: 0px;
    }

    .bar-separator{
        width: 26%;
    }

    .category-service-list__title-blog{
        width: 48%;
    }

}