.global {
    width: 100%;
    padding: 35px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left;
}

.global__logo {
    display: block;
    width: 236px;
    height: auto;
    margin-bottom: 15px;
}

.global__text-1 {
    margin-bottom: 17px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #313131;
}

.global__text-1 span {
    color: #554595;
}

.global__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -40px;
}

.global__feature {
    display: flex;
    flex-direction: column;
    flex-basis: calc(50%);
    margin-bottom: 40px;
}

.global__feature-name {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}

.global__feature-value {
    font-weight: 700;
    font-size: 45px;
    line-height: 26px;
    color: #F58220;
}

.global__feature-value-add {
    margin-top: 5px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

.global__img {
    width: 100%;
    height: auto;
    margin-bottom: 28px;
}

.global__img--mobile {
    display: block;
    margin-top: 28px;
}

.global__img--desktop {
    display: none;
}

.global__text-2 {
    margin-bottom: 22px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.global__text-2 span {
    color: #554595;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

.global__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: 58px;
    margin: 0 auto;
    padding: 0 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #F58220;
    border: 2px solid #F58220;
    background-color: #fff;
    transition: all .3s ease;
}

.global__link:hover,
.global__link:focus {
    text-decoration: none;
    color: #fff;
    background-color: #F58220;
    outline: none;
}

@media (min-width: 1001px) {
    .global {
        padding: 45px 0;
        overflow-x: clip;
    }

    .global__wrapper {
        display: flex;
        justify-content: space-between;
    }

    .global__text-block {
        flex-basis: 47%;
        flex-shrink: 0;
    }

    .global__logo {
        margin-bottom: 32px;
    }

    .global__text-1 {
        margin-bottom: 44px;
        font-size: 30px;
        line-height: 40px;
    }

    .global__text-2 {
        margin-top: 80px;
        margin-bottom: 0;
        font-size: 20px;
        line-height: 26px;
    }

    .global__text-2 span {
        margin-top: 10px;
        font-size: 30px;
        line-height: 26px;
    }

    .global__link-block {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        flex-grow: 1;
    }

    .global__img--mobile {
        display: none;
    }

    .global__img--desktop {
        position: absolute;
        right: -41px;
        bottom: 25px;
        display: block;
        width: 810px;
        z-index: -1;
    }

    .global__link {
        width: auto;
        margin: 0;
    }
}