.services {
    background: #EAEBEB url(/images/services-bg.svg) no-repeat top right;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.services__intro {
    margin-bottom: 30px;
}

.services__button-all {
    display: none;
}

.services__link {
    box-shadow: 0px 4px 8px rgb(0 0 0 / 16%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 103px 0 0 20px;
    width: 212px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: 124px 24px;
    height: 100%;
    transition: opacity ease .5s;
    background-size: 64px 64px;
}

.services__link:hover {
    opacity: .8;
}

.services__name {
    padding-right: 20px;
    font-size: 14px;
    line-height: 1.06;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    margin-bottom: 6px;
}

.services__desc {
    font-size: 12px;
    line-height: 1.33;
    color: #000;
    padding-right: 20px;
    margin-bottom: 16px;
}

.services__more {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.33;
    color: rgba(0, 0, 0, 0.7);
    padding: 12px 20px 16px 0;
    border-top: 1px solid black;
    margin-bottom: 0;
}

@media screen and (min-width: 1280px) {

    .services {
        padding-top: 80px;
        padding-bottom: 80px;
        background-image: unset;
    }

    .services__container {
        display: grid;
        grid-template-columns: 40% 60%;
    }

    .services__text {
        padding-right: 60px;
    }

    .services__button-all {
        display: inline-block;
    }

}