.service_effect_list {
    position: relative;
    z-index: 2;
}

.service_effect_item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.service_effect_item_icon {
    width: 40px;
    height: auto;
}

.service_effect_item_icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.service_effect_item_text {
    font-size: inherit;
    line-height: 1.2;
}

.service_effect_button {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: end;
    height: 100%;
}

.service_effect_button button {
    width: 100%;
}

@media all and (max-width: 991px){
    .service_effect_item {
        gap: 0.5rem;
    }
}

@media all and (max-width: 575px){
    .service_effect_button {
        padding-top: 1rem;
    }
}