.cta-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 500;
    color: #22315E;
}

.cta-download svg {
    transition: transform 0.3s ease;
    transform: translateX(0px);
    height: 20px;
    width: 24px;
}

.cta-download:hover svg {
    transform: translateY(3px);

}

.cta-download:hover path {
    stroke: #fff;
}