.promo-link-block {
    background-image: url(img/promo.jpg);
    background-size: cover;
    cursor: pointer;
}

.promo-link-block .inner {
    padding: 50px 61px 10px;
    width: unset;
    height: unset;
}

.promo-link-block .img-link .link-inner {
    opacity: 100%;
    background-color: unset;
    margin-right: 0;
}

.promo-link-block .promo-link-heading {
    font: normal 600 36px/130% var(--title-font);
    color: #927D71;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.promo-link-block .promo-link-text {
    font: normal 400 14px/150% var(--text-font);
    color: #927D71;
    margin: 0;
}

.promo-link-block .img-link svg {
    position: absolute;
    left: 61px;
    top: 61%;
    width: 70px;
    height: 70px;
    transition: all 0.2s ease;
}

.promo-link-block .img-link svg circle {
    transition: all 0.2s ease;
}

.promo-link-block:hover .img-link svg {
    fill: var(--background);
}

.promo-link-block:hover .img-link svg circle {
    stroke: var(--background);
}

@media (max-width: 850px) {
    .promo-link-block .inner {
        padding-top: 30px;
        padding-left: 30px;
    }

    .promo-link-block .img-link svg {
        left: 30px;
    }
}

@media (max-width: 760px) {
    .promo-link-block .inner {
        padding-top: 40px;
        padding-left: 40px;
    }

    .promo-link-block .img-link svg {
        left: 40px;
    }
}