.img-link {
    display: flex;
    background: var(--color-grey-light);
    color: var(--color-black);
    position: relative;
    padding: 40px 15px 112px;
    margin: 0 -15px 85px;
}
.img-link__inner {
    background: var(--color-blue-light);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    position: relative;
    z-index: 1;
}
.img-link__inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 90px;
    bottom: -82px;
    background: var(--color-blue-light);
    border-radius: var(--radius-md);
    z-index: -1;
}
.img-link__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.img-link__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-primary);
}
.img-link__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}
.img-link__helper {}
.img-link__helper-item {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.18;
    text-transform: uppercase;
    display: block;
}
.img-link__btn {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 140px);
}
.img-link__img-wrapper {
    width: calc(100% - 70px);
    height: 180px;
    position: relative;
    margin: 25px 0 -110px -10px;
}
.img-link__img {
    height: auto;
}
@media screen and (max-width: 767px) {
    .img-link__img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        max-width: 100%;
        max-height: 100%;
        width: auto;
    }
}
@media screen and (min-width: 768px) {
    .img-link {
        border-radius: var(--radius-md);
        padding: 40px;
        margin: 0;
    }
    .img-link__inner {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 40px;
        margin-bottom: 70px;
    }
    .img-link__inner:before {
        left: 285px;
        right: 120px;
        bottom: -70px;
    }
    .img-link__title {
        font-size: 28px;
    }
    .img-link__btn {
        position: absolute;
        left: 0;
        right: auto;
        top: calc(100% + 15px);
        width: 270px;
    }
    .img-link__helper-item {
        position: absolute;
        background: var(--color-primary);
        color: var(--color-primary-inverse);
        height: 51px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.2;
        text-transform: uppercase;
    }
    .img-link__helper-item:nth-child(1) {
        top: calc(100% + 19px);
        right: 120px;
        padding: 0 20px;
        border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
    }
    .img-link__helper-item:nth-child(2) {
        top: calc(100% - 32px);
        right: 0;
        padding: 0 25px;
        border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 0;
        min-width: 140px;
    }
    .img-link__img-wrapper {
        width: auto;
        height: auto;
        flex: 0 0 auto;
        margin: 0;
    }
    .img-link__img {
        max-width: 205px;
    }
}
@media screen and (min-width: 992px) {
    .img-link__inner {
        padding: 40px 50px;
    }
    .img-link__inner:before {
        left: 370px;
        right: 160px;
    }
    .img-link__title {
        font-size: 36px;
    }
    .img-link__text {
        font-size: 18px;
    }
    .img-link__btn {
        width: 350px;
    }
    .img-link__helper-item {
        font-size: 20px;
    }
    .img-link__helper-item:nth-child(1) {
        right: 160px;
        padding: 0 40px;
    }
    .img-link__helper-item:nth-child(2) {
        min-width: 200px;
    }
}
@media screen and (min-width: 1280px) {
    .img-link__inner {
        padding: 40px 150px;
    }
    .img-link__title {
        font-size: 42px;
    }
    .img-link__helper-item {
        font-size: 25px;
    }
    .img-link__helper-item:nth-child(2) {
        font-size: 22px;
    }
}