@media (max-width:767px){

    /* Hidden by default */
    .hero-form-wrapper{

        opacity:0 !important;
        visibility:hidden !important;

        position:absolute !important;
        top:400px !important;

        left:10px !important;
        right:10px !important;

        width:auto !important;

        background:#fff !important;
        border-radius:16px !important;

        z-index:999 !important;

        overflow:visible !important;
        max-height:none !important;

        transition:.3s ease;
    }

    /* Show after click */
    .hero-form-wrapper.form-open{
        opacity:1 !important;
        visibility:visible !important;
    }

    .inner-hero.hero-form,
    .swiper-slide{
        min-height:1300px !important;
        overflow:visible !important;
    }
  


}