.card { 
    position: relative;
    /* Do not set overflow: hidden */
}

.water-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transition: opacity 0.2s;
    overflow: visible;
    /* Give explicit height */
    height: 600px;  /* or whatever height your art needs */
}

.col-wrap {
    position: relative;
    overflow: visible;
}

#form-section{
	margin-top: -50px;
	padding: 100px 0;
	overflow: hidden;
}

@media (width <= 768px){
	#form-section{
		padding-bottom:0;
	}
}

.water-bg.left {
    width: 367px;
    left: -130px;  /* Simpler than calc, unless you want it to be responsive */
    background-image: url('../images/water-left.jpg');
}

.water-bg.right {
    width: 580px;
    right: -190px;
    background-image: url('../images/water-right.jpg');
}

.card-body,
.card-body * {
	position: relative;
	z-index: 2;
}

#form-section h2{
	color:#fff; font-size:72px;
}

@media (width <= 576px) {
	#form-section h2{
		font-size:30px;
	}
}

#form-section p{
	color:#fff; font-size:1rem;
}

#form-section .container{
	
}

#form-section .hs-form-html{
	color:#fff;
}

#form-section .hsfc-ErrorAlert{
	color: #fff; border: 2px solid var(--orange-accent); padding: 10px; border-radius: 6px; font-family:'Avenir Next', Avenir, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

#form-section .hs-form-html .hsfc-FieldLabel{
	color:inherit; font-family:'Avenir Next', Avenir, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

#form-section .hs-form-html .hsfc-RichText p{
	font-family:'Avenir Next', Avenir, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

#form-section .hs-form-html .hsfc-FieldLabel__RequiredIndicator{
	color:#fff;
}

#form-section .hsfc-Step__Content{
	padding:0;
}

#form-section .hs-form-html input[type="email"]:focus,#form-section .hs-form-html input[type="text"]:focus{
	outline: 3px solid var(--blue-dark);
}

#form-section button[type="submit"]{
	background-color:var(--blue-dark); text-transform: uppercase; border-radius: 100px; padding: 10px 30px; font-weight:normal;
}
#form-section button[type="submit"]:hover,
#form-section button[type="submit"]:focus{
	background-color:#fff; color:var(--blue-dark); transition:all 0.25s ease; transform:none;
}