
.btt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    gap: 8px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}
.btt:hover{
   color:white
}
.cta-button .svg {
    padding-top: 5px;
    height: 100%;
    width: fit-content;
}

.cta-button .svg svg {
    width: 50px;
    height: 30px;
}

.cta-button:hover .svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

/* Animations */
@keyframes jello-vertical {

    0%,
    100% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1);
    }
}

@keyframes bounce {

    0%,
    50%,
    100% {
        transform: translateY(0);
    }

    25%,
    75% {
        transform: translateY(-0.25em);
    }
}

