    .all-refund a {
    position: absolute;
    width: 30%;
    height: 50px;
    top: 56%;
    left: 5%;
}

.cta_btn{
    filter: drop-shadow(6px 10px 5px #7070709e);
}

    .btn-animation{
    animation-name: test1;
    animation-duration:1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    }

    @keyframes test1 {
    0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    }

    50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    }
    }