buttons style : demo 220

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)

CSS

(Fonts required: Archivo.)
                    .btn{
                        color: #1c6758;
                        background-color: transparent;
                        font-family:'Archivo', sans-serif;
                        font-size: 18px;
                        font-weight: 700;
                        text-transform: capitalize;
                        letter-spacing: 1px;
                        padding: 8px 15px;
                        border-radius: 0;
                        border: 2px solid #1c6758;
                        overflow: hidden;
                        position: relative;
                        z-index: 1;
                        transition: all 0.6s ease-out 0.0s;
                    } 
                    .btn:hover{
                        color: #fff;
                        text-shadow: 0 0 5px rgba(0,0,0,0.9);
                        border-color: transparent;
                    }
                    .btn:before,
                    .btn:after{
                        content: "";
                        background: #1c6758;
                        width: 100%; 
                        height: 100%; 
                        transform: skewY(20deg);
                        position: absolute; 
                        top: -150%; 
                        left: 0; 
                        z-index: -1; 
                        transition: all 0.3s ease-in-out;
                    }
                    .btn:after{
                        top: auto; 
                        bottom: -150%; 
                    }
                    .btn:hover:before{ top: -21px; }
                    .btn:hover:after{ bottom: -21px; }
                    @media only screen and (max-width: 767px){
                        .btn{ margin-bottom: 30px; }
                    }
                    
License Terms