.btn {
    margin: 0.5em;
    background: black;
    color: white;
    border: none;
    border-radius: 0.625em;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    background: #0466B5;
    background: linear-gradient(90deg, rgba(4, 102, 181, 1) 0%, rgba(4, 82, 156, 1) 19%, rgba(12, 41, 101, 1) 100%);
    padding: 15px 30px;
}

.btn:hover {
    color: black;
    border: 1px solid #F79F00;
}

.btn:after {
    content: "";
    background: white;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.btn:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}


/* button two */




.btn2 {
    margin: 0.5em;
    background: black;
    color: white;
    border: none;
    border-radius: 0.625em;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    background: #F79F00;
    background: linear-gradient(90deg, rgba(247, 159, 0, 1) 0%, rgba(232, 109, 3, 1) 35%, rgba(215, 87, 13, 1) 100%);
    padding: 15px 40px;

}

.btn2:hover {
    color: black;
}

.btn2:after {
    content: "";
    background: white;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.btn2:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}