.cta-button {
    position: relative;
    margin: auto;
    padding: 8px 16px;
    transition: all 0.2s ease;
    border: none;
    background: none;
   }
   
   .cta-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #b1dae7;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
   }
   
   .cta-button span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #6fa6bb;
   }
   
   .cta-button i {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #6fa6bb;
    color: #6fa6bb;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
   }
   
   .cta-button:hover:before {
    width: 100%;
    background: linear-gradient(to right,#b1dae7, #a3e8f0);
   }
   
   .cta-button:hover svg {
    transform: translateX(0);
   }
   
   .cta-button:active {
    transform: scale(0.95);
   }