/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
	--lightgreen: 	#8DC442;
	--orange:		#FC3838;
	--green:		#008A10;
	--black: 	 	#000000;
	--white: 	 	#FFFFFF;
}

/* ********** GENERAL ********** */

html,
body {
	font-family: "Inter", sans-serif !important;
}

h1, h2, h3, h4, h5, h6  {
  	font-family: "Inter", sans-serif;
	font-weight: 500 !important;
}

h! {
	font-size: 26px !important;
}


h2 {
	font-size: 36px !important;
}
	
p {
	font-family: "Inter", sans-serif;
	font-size: 16px !important;
	font-weight: 400;
    line-height: 125%;
}

p.p-large {
	font-family: "Inter", sans-serif;
	font-size: 20px !important;
	font-weight: 500;
}

.btn-cta {
    display: inline-block;
    padding: 13px 30px;
	color: #fff;
	font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
	text-align: center;
	border: none;
    transition: all .5s;
}

.btn-cta:hover {
    opacity: 0.95;
	transition: all .5s;
}

.btn-cta-green {
    background-color: var(--lightgreen);
	background-color: var(--green);
}

.btn-cta-green:hover {
	background-color: var(--white);
	color: var(--black);
}

.btn-cta-orange {
    background-color: var(--orange);
}

.btn-cta-orange:hover {
	background-color: var(--white);
	color: var(--black);
}

.btn-cta-white {
    background-color: var(--white);
	color: var(--black);
}

.btn-cta-minimal {
    color: var(--orange);
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-cta-minimal:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.text-black {
	color: var(--black);
}

.bg-green {
	background-color: var(--green);
}

.bg-black {
	background-color: var(--black);
}

.py-6 {
	padding-top: 7rem !important;
	padding-bottom: 7rem !important;
}

.pt-6 {
	padding-top: 7rem !important;
}

.pb-6 {
	padding-bottom: 7rem !important;
}

.py-10 {
	padding-top: 8rem !important;
	padding-bottom: 8rem !important;
}

.pt-10 {
	padding-top: 8rem !important;
}

.pb-10 {
	padding-bottom: 8rem !important;
}

.desktop {
	display: block !important;
}

.mobile {
	display: none !important;
}

/* ********** NAVIGATION ********** */

#wpadminbar {
	display: none !important;
}

header {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
}

.navbar-brand img {
	height: 40px;
}

header .nav-link,
header .nav-link:hover {
	color: var(--white);
}

/* ********** HERO LANDING ********** */

.hero-landing {
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    color: #ffffff;
}

.hero-landing .hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-landing .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 1);
    opacity: var(--hero-overlay, 0.45);
    z-index: 1;
	display: none;
}

.hero-landing .container,
.hero-landing .hero-badges-wrap {
    position: relative;
    z-index: 2;
}

.hero-landing .hero-kicker {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    backdrop-filter: blur(2px);
	--webkit-backdrop-filter: blur(2px);
}

.hero-landing h1 {
/*     text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); */
}

.hero-landing .lead {
    color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

/* Bullet points */
.hero-landing .hero-bullets .hero-bullet-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid #9ae6b4;
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0);
    position: relative;
    top: 2px;
}

.hero-landing .hero-bullets .hero-bullet-icon::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background-color: #9ae6b4;
}

/* Form card */
.hero-landing .hero-form {
    color: #111111;
	background-color: transparent;
}

/* GRAVITY FORM */

.hero-form {
	background-color: var(--white) !important;
    border-radius: 20px !important;
    border: 2px solid var(--orange) !important;
    padding: 30px 20px 10px 20px !important;
}

h2.gform_title {
	text-align: center;
    color: var(--orange);
    font-size: 20px !important;
    margin-bottom: 30px;
    font-weight: 700 !important;
}

.ginput_container input,
.ginput_container textarea {
	background-color: #F5F5F7 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
}

.gform_required_legend {
	display: none !important;
}

.gfield_label {
	font-weight: 500 !important;
    font-size: 14px !important;
    margin-top: 10px !important;
}

.charleft.ginput_counter.gfield_description.warningTextareaInfo {
	display: none !important;
}

.textarea {
	height: 100px !important;
}

.gform_button {
	background-color: var(--orange);
    border: none;
    border-radius: 100px;
    width: 100%;
    padding: 15px 30px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

/* Trust mini-badge */

.hero-badges-wrap .container {
	max-width: 1475px !important;
}

.hero-landing .hero-trust .trust-img {
    max-width: 135px;
    width: auto;
    border-radius: 8px;
    display: block;
	opacity: .75;
}

/* Bottom badges row */
.hero-landing .hero-badges-wrap {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px); /* for Safari */
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero-badges-wrap .col-md-3 {
	margin: 0;
}

.hero-landing .hero-badge {
    height: 60px;
    width: auto;
    display: block;
	justify-self: center;
    opacity: 0.95;
}

.hero-badge-trust {
	display: none !important;
}

/* TESIMONIALS */

.lp-row-two.row-testimonials {
    background-color: #f4f5f7;
    padding-top: 48px;
    padding-bottom: 56px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.testimonial-stars .star {
    fill: #e0e0e0;
}

.testimonial-stars .star.is-filled {
    fill: #f5b301; /* gold */
}

.testimonial-text {
    line-height: 1.6;
}

.lp-row-two .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-row-two .carousel-control-prev-icon,
.lp-row-two .carousel-control-next-icon {
    filter: invert(1) grayscale(100%);
}

.ti-widget.ti-goog .ti-review-item>.ti-inner, .ti-widget.ti-goog .ti-header, .ti-widget.ti-goog .ti-footer {
	background-color: var(--white) !important;
}

/* ROW THREE */
.lp-row-three {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.lp-row-three h2 {
    font-weight: 700;
    line-height: 1.2;
}

.lp-row-three .row-three-list {
    padding-left: 0;
    margin-bottom: 0;
}

.lp-row-three .row-three-list li {
    font-size: 16px;
    line-height: 1.6;
}

.lp-row-three .row-three-list strong {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 4px;
}

/* ROW FOUR */
.lp-row-four {
    background-color: #f5f5f7;
    padding-top: 80px;
    padding-bottom: 80px;
}

.step-label .link-phone {
    text-decoration: none;
	display: inline-block;
    background-color: #f1f2f4;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 32px;
    border-radius: 50px;
}

.step-label .link-phone:hover {
    text-decoration: underline;
}

.row-four .row > [class*="col-"] {
    display: flex;
}

.how-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-number-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #93d04f;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.how-card-heading {
    font-size: 18px;
    font-weight: 600;
}

.how-card-paragraph {
    font-size: 15px;
    line-height: 1.33rem;
}

.step-label {
    margin-top: auto;         /* stick to bottom */
}

.step-label span {
    display: inline-block;
    background-color: #f1f2f4;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 32px;
    border-radius: 50px;
}

.how-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
	text-align: center;
}

/* ROW SIX - WATER SAVINGS ESTIMATOR */
.lp-row-six .lp6-bg-video {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-row-six .lp6-bg-video__file {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.9;
}

.lp-row-six .lp6-card {
    position: relative;
    z-index: 2;
    max-width: 560px;
    width: 100%;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 32px 28px;
    text-align: left;
}

.lp-row-six .lp6-results .lp6-result-line {
    font-size: 18px;
}

.lp-row-six .form-control {
	background-color: #F5F5F7;
    padding: 10px 20px;
}

.lp-row-six .btn-cta:hover {
	background-color: var(--orange);
}

/* Background video itself */
.lp-row-six .lp6-bg-video__file {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.9;
}

.lp-row-six .lp6-bg-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(5 36 155 / 45%);
    z-index: 1;
    mix-blend-mode: multiply; /* enhances natural contrast */
}

/* Card stays above overlay */
.lp-row-six .lp6-card {
    position: relative;
    z-index: 2;
    max-width: 560px;
    width: 100%;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 32px 28px;
    text-align: left;
}

@media (min-width: 768px) {
    .lp-row-six .lp6-card {
        padding: 40px 36px;
    }
}

.lp-row-six .lp6-results .lp6-result-line {
    font-size: 18px;
}

/* ROW SEVEN */

/* ===== Row Seven: Recent Transformations ===== */
.lp-row-seven {
    background-color: #f6f7f9;
}

.project-card {
	box-shadow: none !important;
	border: none;
}

.project-card .project-thumbs {
    height: 150px;
	--bs-gutter-x: 15px;
}

@media (min-width: 768px) {
    .project-card .project-thumbs {
        height: 250px;
    }
}

.object-fit-cover {
    object-fit: cover;
}

/* Top corners rounded since thumbs sit edge-to-edge */
.rounded-4-top-left {
    border-top-left-radius: 0.75rem;
}
.rounded-4-top-right {
    border-top-right-radius: 0.75rem;
}

/* “Before/After” corner badges */
.thumb-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Tag pills (project_tag) */
.project-tags .tag-pill {
    display: inline-block;
    font-size: 12px;
    background-color: #f1f2f4;
    color: #333;
    border-radius: 999px;
    padding: 6px 10px;
    line-height: 1;
}

.project-card {
    display: flex;
    flex-direction: column;
}

.project-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-card .project-tags {
    margin-top: auto; /* pushes tags to the bottom */
}


/* ROW EIGHT */

.lp-row-eight .lp-feature__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.lp-row-eight .lp-feature__title {
    margin: 0 0 8px 0;
    font-weight: 700;
}

.lp-row-eight__center-img {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.lp-feature {
    min-height: 250px;
}

/* ROW NINE */

.lp-row-nine {
	height: 900px;
}

.lp-row-nine img {
	object-position: 15%;
}

.lp-row-nine .row.h-100.align-items-end {
	padding-top: 10%;
	padding-bottom: 10%;
}

/* ROW TEN */

.row-ten {
    background-color: #f5f5f7;
}

.row-ten .rt-card {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.row-ten .rt-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
}

.row-ten .rt-title {
    font-weight: 700;
}

.row-ten .rt-desc {
    color: #6E6C66; /* your dark grey */
}


/* FAQ ROW */

.lp-row-faq h2 {
	max-width: 400px !important;
}

/* Flush accordion style with custom +/- marker on the right */
.lp-row-faq .accordion-button {
    padding-left: 0;
    padding-right: 48px; /* room for marker */
    font-weight: 600;
    font-size: 20px;
    background: transparent;
    box-shadow: none;
}

.lp-row-faq .accordion-button::after {
    content: "+";
    background-image: none !important;
    transform: none !important;
    position: absolute;
    right: 0;
    font-size: 24px;
    line-height: 1;
    color: #111;
    opacity: 0.8;
}

.lp-row-faq .accordion-button:not(.collapsed)::after {
    content: "–";
}

.lp-row-faq .accordion-item {
    border: 0;
    border-bottom: 1px solid #e9ecef;
}

.lp-row-faq .accordion-body {
    padding-left: 0;
    padding-right: 48px;
    color: #555;
}

/* ********** THANK YOU ********** */
.page-template-thank-you .navbar-brand img,
.page-template-thank-you .navbar-nav a {
	filter: invert(1);
}

.hero-landing.hero-thank-you {
	padding-top: 300px;
	padding-bottom: 300px;
	background-color: #F5F5F7;
}

.hero-thank-you h1,
.hero-thank-you p {
	color: var(--black);
}

.hero-thank-you hr {
	border-color: var(--black);
	opacity: 1;
}

.hero-thank-you p strong {
	font-weight: 600 !important;
	font-size: 20px !important;
}

.hero-thank-you h2 {
	font-size: 26px !important;
}

.thank-you-card {
	background-color: var(--white);
}

.thank-you-card p {
	max-width: 425px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-card a {
	color: var(--green);
	text-decoration: none;
}

/* ********** FOOTER ********** */

footer {
	font-size: 16px !important;
}

footer .bg-body-tertiary {
	background-color: var(--white) !impor
}

.footer-company-block .custom-logo {
    max-height: 40px;
    height: 40px;
    width: auto;
}

.footer-logo {
	filter: invert(1);
	width: 184px;
	height: 40px;
}

.tagline {
	max-width: 325px;
}

.footer-hours ul li + li {
    border-top: 1px dashed var(--bs-border-color, rgba(0,0,0,.1));
}

.footer-company-block .custom-logo {
    max-height: 40px;
    height: 40px;
    width: auto;
}

.footer-hours ul li + li {
    border-top: 1px dashed var(--bs-border-color, rgba(0,0,0,.1));
}

@media (max-width: 1126px) {
	
	footer .col-12.col-md-6 {
		width: 40%;
	}
	
	footer .col-12.col-md-3 {
		width: 30%;
	}
	
}

@media (max-width: 991px) {
    .footer-company-block .footer-brand-copy,
    .footer-company-block .footer-contact,
    .footer-company-block .footer-hours {
        margin-bottom: 1rem;
    }
}

@media (max-width: 940px) {
	
	footer .col-12.col-md-6 {
		width: 50%;
	}
	
	footer .col-12.col-md-3 {
		width: 50%;
	}
	
}

@media (max-width: 940px) {
	
	footer .col-12.col-md-6 {
		width: 100%;
	}
	
	footer .col-12.col-md-3 {
		width: 100%;
	}
	
}

/* ********** RESPONSIVE ********** */

@media (max-width: 1199px) {
	
	.container {
		max-width: 95% !important;
	}
	
}

@media (max-width: 991px) {
    .hero-landing {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

@media (max-width: 767px) {
	
	/* ***** GENERAL ***** */
	h1 {
		font-size: 26px !important;
	}
	
	h2 {
		font-size: 20px !important;
	}
	
	.container {
        max-width: 90% !important;
    }
	
	.py-6 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}
	
	.pt-6 {
		padding-top: 3.5rem !important;
	}
	
	.pb-6 {
		padding-bottom: 3.5rem !important;
	}
	
	.py-10 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}
	
	.pt-10 {
		padding-top: 3.5rem !important;
	}
	
	.pb-10 {
		padding-bottom: 3.5rem !important;
	}
	
	.desktop {
		display: none !important;
	}
	
	.mobile {
		display: block !important;
	}
	
	/* ***** NAVIGATION ***** */
	.header-actions {
		display: none !important;
	}
	
	header .container {
		justify-content: center !important;
	}
	
	.navbar-brand {
		margin: 0;
	}
	
	/* ***** LANDING ***** */
	.hero-landing {
		text-align: center;
		padding-bottom: 25px;
	}
	
	.hero-landing .col-12.col-lg-7 {
		margin-top: 75px;
	}
	
	.hero-landing .hero-kicker,
	.hero-landing .hero-bullets,
	.hero-landing .btn-cta-green {	
		display: none;
	}
	
	.hero-landing .hero-badges-wrap {
		position: initial;
    	backdrop-filter: initial;
		--webkit-backdrop-filter: blur(20px);
	}
	
	.hero-landing .hero-trust {
		display: none !important;
	}
	
	.hero-badge-trust img.hero-badge {
		height: 100px;
		margin-bottom: 15px;
	}

	.hero-landing .hero-badge {
		height: 70px;
	}
	
	.hero-badge-trust {
		display: block !important;
	}
	
	.hero-landing .col-12.col-lg-5 {
		margin-top: 0 !important;
	}
	
	.lp-row-three .row-three-list {
		padding-left: 19px;
	}
	
	.lp-row-three .btn-cta.d-inline-block {
		text-align: center;
		display: block !important;
	}
	
	.how-card-body {
		flex-direction: row;
    	text-align: left;
	}
	
	.lp-row-four .col-12.col-md-6.col-lg-4.d-flex {
		margin: 7px 0 !important;
	}
	
	.step-number-circle {
		margin-right: 5px !important;
	}
	
	.how-card-heading {
		font-size: 16px;
	}
	
	.how-card-body {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .step-number-circle {
        flex: 0 0 40px;  
        width: 40px;
        height: 40px;
        aspect-ratio: 1 / 1;
        margin: 0 20px 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #93d04f;
        color: #fff;
        font-weight: 600;
        font-size: 20px;
        border-radius: 50%;
    }
	
	.lp-row-six {
		padding: 0 !important;
	}
	
	.lp-row-six .container {
		max-width: 100% !important;
		padding: 0;
	}
	
	.lp-row-six .lp6-card {
		width: 90%;
	}
	
	.lp-row-six .lp6-bg-video {
		border-radius: 0 !important;
		min-height: 550px;
	}
	
	.lp-row-seven .col-12 {
		padding: 0;
	}
	
	.lp-row-seven .col-6 {
		width: 100% !important;
		margin-bottom: 10px;
	}
	
	.lp-row-seven .project-card {
		padding: 1rem !important;
	}
	
	.project-card .project-thumbs {
		height: initial;
	}
	
	.lp-row-seven .carousel-indicators {
        margin: 0;
        gap: 8px;
    }

    .lp-row-seven .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #0E0F11;
        opacity: .2;
    }

    .lp-row-seven .carousel-indicators .active {
        opacity: 1;
    }
	
	.project-card .project-thumbs img {
		display: block;
		border-radius: 16px;
	}
	
	.lp-feature {
		min-height: initial;
	}
	
	.lp-feature.mb-5 {
		margin-bottom: 1rem !important;
	}
	
	.col-lg-4.order-3.order-lg-3 {
		margin-top: 0 !important;
	}
	
	.lp-row-nine {
		text-align: center;
		height: initial;
		padding-top: 3rem;
    	padding-bottom: 3rem;
	}
	
	.lp-row-nine a {
		width: 100%;
	}
	
	.lp-row-nine .col-12.col-lg-6.text-white {
		margin-bottom: 2rem;
		text-align: center;
	} 
	
	.lp-row-nine .col-12.col-lg-6.text-white a {
		display: block !important;
    	width: 100%;
	}
	
	.lp-row-nine .col-12.col-md-6.col-lg-4.h-100 {
		margin-top: 20px;
	}
	
	.lp-row-ten .col-12.col-md-6.col-lg-4 {
		margin-top: 30px !important;
	}
	
	.row-ten .rt-icon img {
		height: 30px;
		width: 30px;
	}
	
	.lp-row-faq .accordion-button {
		font-size: 16px !important;
	}
	
	.lp-row-twelve .col-md-6.col-lg-5.order-2.order-md-1 {
		text-align: center;
	}
	
	.lp-row-twelve .btn-cta {
		width: 100%;
	}
	
	/* THANK YOU */
	.hero-landing.hero-thank-you {
		padding-top: 150px !important;
		padding-bottom: 75px;
	}
	
	.hero-thank-you .col-md-6.pe-5 {
		padding-right: calc(var(--bs-gutter-x) * .5) !important;
    	text-align: left;
	}
	
	.hero-landing.hero-thank-you .btn-cta-green {
		display: block !important;
		width: 100%;
	}
	
	.hero-thank-you .col-12.col-md-6 {
		margin-top: 0.5rem;
	}
	
	.hero-thank-you .thank-you-card.p-5 {
		padding: 2rem !important;
	}
	
	.hero-thank-you h2 {
		font-size: 20px !important;
	}
	
	/* FOOTER */
	footer {
		font-size: 15px !important;
	}
	
	footer .bg-body-tertiary.text-body-secondary.border-top.py-2.text-center.bootscore-footer-info {
		padding: 2rem 0 !important;
	}
	
	footer ul.list-inline {
		display: block !important;
		text-align: left;
	}
	
	footer ul.list-inline li {
		width: 100%;
	}
	
	footer ul.list-inline li.list-inline-item.text-body-secondary {
		margin-bottom: 10px;
	}
	
}

/* ********** ZOHO FORM ********** */

.hero-form iframe {
    height: 640px !important;
    width: 100% !important;
    border-radius: 30px !important;
    border: 2px solid #FC3838 !important;
}

.lp-row-nine iframe {
    height: 655px !important;
    width: 100% !important;
    border-radius: 30px !important;
    border: 2px solid #FC3838 !important;
}