.cta-fixed{
    position: fixed;
    bottom: 50%;
    left: 10px;
    width: 65px;
    height: 60px;
    background-color: #fff;
    border: solid #ffffff 1px;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    gap: 15px;
    transition: .5s ease;
    padding: 15px;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    z-index: 9999;
}

.cta-fixed i{
    font-size: 32px;
    color: brown;
}

.cta-fixed p{
    width: 0;
    height: 48px;
    overflow: hidden;
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    white-space: nowrap;
}

.cta-fixed:hover{
    width: 180px;
    height: 60px;
}

.cta-fixed:hover p{
    width: auto;
    height: 48px;
}