.btn{ color: #513A50; font-family: 'Archivo', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 15px; border: 5px solid #6add66; border-radius: 0; box-shadow: 12px 12px 0 -5px #6add66; overflow: hidden; position: relative; z-index: 1; transition: all 0.3s ease-in-out; } .btn:hover{ color: #fff; box-shadow: 0 0 0 0px #6add66; } .btn:before{ content: ""; background-color: #6add66; height: 140%; width: 140%; transform: skew(-50deg); position: absolute; top: 50%; left: 100%; z-index: -1; transition: all 0.35s ease 0s; } .btn:hover:before{ top: -20%; left: -20%; } @media only screen and (max-width: 767px){ .btn{ margin-bottom: 30px; } }