buttons style : demo 202

HTML

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

CSS

(Fonts required: Archivo.)
                    .btn{
                        color: #9e0c21;
                        font-family:'Archivo', sans-serif;
                        font-size: 18px;
                        font-weight: 700;
                        text-transform: uppercase;
                        padding: 6px 12px;
                        border-radius: 0;
                        border: 2px solid #9e0c21;
                        overflow: hidden;
                        position: relative;
                        z-index: 1;
                        transition: all 0.3s ease;
                    }
                    .btn:focus,
                    .btn:hover{
                        color: #fff;
                    }
                    .btn:before{
                        content: "";
                        background: #9e0c21;
                        width: 100%;
                        height: 100%;
                        transform: scale(0);
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: -1;
                        transition: all 0.3s ease 0s;
                    }
                    .btn:focus:before,
                    .btn:hover:before{
                        transform: scale(1);
                    }
                    @media only screen and (max-width: 767px){
                        .btn{ margin-bottom: 30px; }
                    }
                    
License Terms