.link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    color: #fff;
    background: var(--red) url('../images/BG_white.png');
    background-size: 20px 20px;
}

.link .text {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 25px;
    font-size: 25px;
}

.link .text .head {
    margin-right: 25px;
    font-weight: 600;
}

.link_button {
    position: relative;
    top: 0;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    color: var( --deepred );
    background: #fff;
    transition: .2s;
    cursor: pointer;
}

.link_button:hover {
    top: -3px;
}

@media screen and (max-width: 1024px) {

    .link {
        padding: 25px;
    }

    .link, .link .text {
        flex-direction: column;
    }

    .link .text, .link .text .head {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .link .text {
        font-size: 16px;
    }

    .link .text .head {
        font-size: 20px;
    }
}