/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* This targets the area holding your form */
.jotform-embed-container {
    height: 3500px;       /* Adjust this height to hide the bottom inch */
    overflow: hidden;    /* This 'clips' the content below the height above */
    position: relative;
}




/* Tablet and Mobile adjustments for the form container */
@media screen and (max-width: 768px) {
    .jotform-embed-container {
        height: 4000px; /* Adjust this number based on your mobile form height */
        overflow: hidden;
        position: relative;
    }
    
    /* Forces the iframe to fit the container */
    .jotform-embed-container iframe {
        height: 4200px !important; /* Slightly taller than container to keep footer hidden */
        width: 100% !important;
    }
}

/* Specific fix for smaller phones */
@media screen and (max-width: 630px) {
    .jotform-embed-container {
        height: 5000px; 
    }
    .jotform-embed-container iframe {
        height: 5200px !important;
    }
}