.formCta {
    background-color: aliceblue;
    /* overflow: hidden; */
    width: 420px;
    right: 70px;
    top:180px;
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    border-radius: 15px;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, .1), 0 32px 64px -48px rgba(0, 0, 0.5);
    transition: all 0.1s ease;
    transform-origin: bottom right;
    z-index: 20;
}

@media(max-width:495px){
    .formCta {
        background-color: rgb(240, 240, 240);
        overflow: hidden;
        width: 100%;
        display: block;
        top: 0;
        position: relative;
        transform: scale(0.5);
        opacity: 0;
        pointer-events: none;
        border-radius: 0;
        box-shadow: 0 0 128px 0 rgba(0, 0, 0, .1), 0 32px 64px -48px rgba(0, 0, 0.5);
        transition: all 0.1s ease;
        transform-origin: bottom right;
        z-index: 20;
    }
}

@media (max-height: 750px) and (min-width: 496px){
    .formCta {
        top: 100px;
    }

    .mt-6{
        margin-top: 5px !important;
    }
}

.show-formCta .formCta {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
    bottom: auto;
}

.formCta header {
    padding: 16px 0;
    background-color: #e98135;
    color: white;
    text-align: center;
    position: relative;
}

.formCta header span {
    position: absolute;
    right: 20px;
    top: 50%;
    cursor: pointer;
    color: white;
    transform: translateY(-50%);
    display: none;
}

.formCta-toogle {
    position: fixed;
    right: 15px;
    bottom: 150px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    color: white;
    background-color: #724ae8;
    transition: all 0.2 ease;
    z-index: 11;
}

.formCta-toogle span {
    position: absolute;
}

.show-formCta .formCta-toogle span:first-child,
.formCta-toogle span:last-child {
    opacity: 0;
}

.show-formCta .formCta-toogle span:last-child {
    opacity: 1;
}

@media(max-width:495px) {
    .formCta {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .formCta header span {
        display: block;
    }

}

@media (max-width: 496px) {
    .desktop-hero{
        display: none;
    }
}

@media (min-width: 496px) {
  .mobile-hero{
    display: none;
  }
}
  