.service-order {
    margin-bottom: 100px;
}

.service-order-block {
    display: flex;
}

.service-order-title {
    font-size: 48px;
    line-height: 115%;
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-order-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #dedede;
    padding: 20px;
    font-size: 160px;
    line-height: 87%;
    color: #50bd4e;
    width: 20%;
}

.service-order-link {
    width: 80%;
}

.service-order-link-block {
    min-height: 150px;
    padding: 37px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
    cursor: pointer;
    color: #000;
}

.service-order-link-block:first-child {
    border-top: 1px solid #000;
}

.service-order-link-block-name {
    font-size: 48px;
    line-height: 115%;
}

.service-order-link-block-link-icon {
    font-size: 85px;
    margin: 0;
    width: 85px;
    height: 85px;
    color: #989898;
}

.service-order-link-block-link-icon svg {
    fill: #989898;
    width: 100%;
    height: 100%;
}

.service-order-link-block:hover .service-order-link-block-link-icon svg {
    fill: #50bd4e;
}

@media (max-width: 990px) {
    .service-order {
        margin-bottom: 50px;
    }

    .service-order-title {
        font-size: 24px;
    }

    .service-order-text {
        display: none;
    }

    .service-order-link {
        width: 100%;
    }

    .service-order-link-block {
        min-height: auto;
        padding: 18px 20px;
    }

    .service-order-link-block-name {
        font-size: 30px;
    }    

    .service-order-link-block-link-icon {
        display: none;
    }
}