    .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);
        }
    }

    .test1 {
        animation-name: test1;
        animation-duration: .8s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        max-width: 750px;
        overflow: hidden;
    }

    @keyframes test1 {
        from {}

        to {
            transform: scale(1.1, 1.1);
        }
    }

    .btn-fixed img {
        width: 90%;
    }

    .reflection-img {
        position: relative;
        overflow: hidden;

    }

    .reflection {
        height: 100%;
        width: 10%;
        position: absolute;
        top: -100px;
        left: 0;
        background-color: #fff;
        opacity: 0;
        transform: rotate(112deg);
        animation: reflection 2s ease-in-out infinite;
    }

    @keyframes reflection {
        0% {
            transform: scale(0) rotate(0deg);
            opacity: 0;
        }

        80% {
            transform: scale(0) rotate(12deg);
            opacity: 0.5;
        }

        81% {
            transform: scale(4) rotate(45deg);
            opacity: 1;
        }

        100% {
            transform: scale(20) rotate(45deg);
            opacity: 0;
        }
    }