.custom-btn {
    color: #fff;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
/* 5 */
.btn-5 {
    padding: 0;
    border-radius: 20px;
    background:linear-gradient(140deg, #001c48 0%, rgb(94 163 214) 100%);
  }
  .btn-5:hover {
    color: white;
    background: transparent;
    box-shadow:none;
  }
  .btn-5:before, .btn-5:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: white;
    box-shadow:
     -1px -1px 5px 0px #fff,
     7px 7px 20px 0px #0003,
     4px 4px 5px 0px #0002;
    transition:400ms ease all;
  }
  .btn-5:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
  }
  .btn-5:hover:before,
  .btn-5:hover:after{
    width:100%;
    transition:800ms ease all;
  }

  .jump-button{
    width: 50%;
    height: 100px;
    line-height: 100px;
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
}


@media screen and (max-width:576px){
    .jump-button{
        font-size: 1rem;
        height: 50px;
        line-height: 50px;
    }
}