.vguide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vguide .title {
    text-align: center;
}

.vguide .title h2{
    font-family: "open-sans", sans-serif;
    color: #FFF;
    font-size: 20px;
    line-height: 1.2em;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.vguide .title a{
    margin-bottom: 0;
    padding: 0px 19px;
    font-size: 1rem;
    color: #fff;
    border: none;
    background-color: #e81e26;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.vguide .title a i {
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.vguide img {
    transform: rotateZ(15deg);
    margin: 15px 0;
}

@media screen and (min-width: 64em) {
    .vguide {
        flex-direction: row;
        justify-content: space-around;
    }
    .vguide .title {
        text-align: center;
        width: 45%;
    }
    .vguide .title h2{
        font-size: 28px;
        letter-spacing: 2.8px;
        margin: 0 0 15px;
    }
    .vguide .title a{
        width: 66px;
        padding: 4px 29px;
    }
    .vguide .title a::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #e1cf01;
        top: 0;
        left: -100%;
        -webkit-transition: left 300ms ease-out;
        -moz-transition: left 300ms ease-out;
        -o-transition: left 300ms ease-out;
        transition: left 300ms ease-out;
    }

    .vguide .title a:hover::before {
        left: -6px;
    }
    .vguide .title a i {
        font-size: 16px;
    }
    .vguide img {
        width: 115px;
    }
}