.section.services_grid .item_wrap .item .btns .info {
    display: inline-block;
    height: 50px;
    text-align: center;
    border-radius: 3px;
    a {
        font-family: var(--first_font);
        font-size: var(--font_size_btn);
        font-weight: var(--font_bold);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1.5em;
        height: 100%;
        font-style: normal;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        z-index: 1;
        position: relative;
        line-height: 120%;
        border-width: 3px;
        border-style: solid;
        min-width: 160px;
        border-radius: 3px;
        color: var(--primary_color_dark);
        border-color: var(--secondary_color);
        background-color: var(--secondary_color);
        border-top-color: var(--secondary_color);
        border-bottom-color: var(--secondary_color);
        border-right-color: var(--secondary_color);
        border-left-color: var(--secondary_color);

        &.alternative {
            background: var(--main_color_associate);
            color: var(--primary_color_dark);
            border-color: var(--main_color_associate);

            &:hover {
                border-width: 3px;
                color: var(--primary_color_dark);
                background: transparent;
                border-color: var(--primary_color_dark);
            }
        }

        * {
            color: inherit;
            font-weight: inherit;
        }

        i {
            font-size: 40px;
            font-weight: normal !important;
        }

        &:hover,
        &:focus {
            text-decoration: none;
            background: transparent;
            border-width: 3px;
            border-color: var(--primary_color_medium);
            color: var(--primary_color_dark);
        }
    }
}