/*
Theme Name: Snapp Conner
Author: Snapp
Author URI: http://snappconner.com/
Description: Custom Snapp Conner Website
Version: 1.3.2
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

.wpcf7-form-control.g-recaptcha.wpcf7-recaptcha > div {
  margin-bottom: 15px;
}
.page-id-1845 ._form_9 #_form_5D9F3C249852A_, ._form _form_9{
	width: 100% !important;
}
.page-id-1845 form, .page-id-1845 form input{
	/*width: 100% !important;*/
}

.logoroll p img.top:hover{
	display: none !important;
	opacity: 0 !important;
}

.logoroll p img.bottom {
    opacity: 1 !important;
    position: absolute;
}


/* ADDITIONAL CSS */
.no-margin-bottom {
    margin-bottom: -60px; /* Negative margin cancels out the previous section's bottom margin */
}

.custom-padhr {
  margin-top: 40px;
  margin-bottom: -20px;
}

.custom-post-hr {
  background-color: #d5d5d5;
  height: 1px;
  margin-top: 20px;
}


/* Prevent horizontal overflow on the page */
html, body {
    overflow-x: hidden;  /* Hide horizontal overflow for the entire page */
    margin: 0; /* Remove any default margin */
}

/* Hero Banner Section */
.custom-hero-banner {
    width: 100vw; /* Full width of the viewport */
    height: 500px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px; /* Add padding for spacing */
    position: relative; /* Required to position the overlay */
    left: 50%; /* Move the banner to the center */
    margin-left: -50vw; /* Offset the banner by half of the viewport width */
    box-sizing: border-box; /* Ensure padding doesn't overflow the width */
}

/* Overlay on top of background image */
.custom-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Ensure the overlay is above the background but below the content */
}

/* Container for the Hero Banner content */
.custom-hero-banner-container {
    max-width: 1200px; /* Limits the width of the content */
    width: 100%;
    padding: 0 20px;
    color: #fff;
    position: relative; /* Keeps content above the overlay */
    z-index: 2; /* Ensure content appears above the overlay */
}

/* Banner Title */
.custom-hero-banner-title {
	font-family: 'Oswald', sans-serif;
    font-size: 60px !important;
    font-weight: bold;
    margin: 0 0 20px 0 !important;
    line-height: 1.2em;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for better contrast */
}

/* Banner Subtitle */
.custom-hero-banner-subtitle {
	font-family: 'Open Sans', sans-serif;
    font-size: 24px !important;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: 1px;
	text-transform: uppercase;
    margin: 0 0 24px 0 !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Button Style */
.custom-hero-btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #c09551;
    text-decoration: none;
    border-bottom: 4px solid #705324;
    transition: background 0.3s;
}

.custom-hero-btn:hover {
    color: #fff;
    background-color: #3a3a3a;
    border-bottom: 4px solid #000;
    transition: background-color 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.custom-hero-banner {
		height: auto !important;
	}
	
    .custom-hero-banner-title {
        font-size: 36px !important;
    }

    .custom-hero-banner-subtitle {
        font-size: 20px !important;
    }

    .custom-hero-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}



/* Full-width section with centered content */
.custom-fullwidth-section {
    width: 100%;
    background-color: #fff;
    padding: 40px 0 40px;
}

/* Max-width container with flexbox */
.custom-section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Ensures equal column heights */
    justify-content: space-between;
}

/* Left column */
.custom-section-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 0 0;
    background-color: #ffffff;
}

/* Right column with background image */
.custom-section-right-1 {
    flex: 1;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-section-right-2 {
    flex: 1;
    min-height: 100%;
    background-image: url('/wp-content/uploads/2020/01/20191121204134-GettyImages-1061723074.jpg'); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Headings and text */
.custom-section-left h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 24px;
    color: #21366c;
    text-transform: uppercase;
}

.custom-section-left p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6em;
    margin-bottom: 20px;
    color: #555;
}

/* Responsive: Stack columns on smaller screens */
@media (max-width: 1024px) {
    .custom-section-wrapper {
        flex-direction: column;
    }
	
	.custom-section-left h2 {
		font-size: 32px !important;
		margin-top: 20px;
	}

    .custom-section-left, 
    .custom-section-right-1,
    .custom-section-right-2 {
        width: 100%;
		padding: 0;
        min-height: 300px; /* Ensures the right column has height */
    }

    .custom-section-right-1 {
        height: 300px; /* Adjust height for mobile */
    }
}

/* Full-width section */
.custom-centered-section {
    width: 100%;
    display: flex;
    justify-content: center; /* Horizontally center */
    padding: 28px 20px 40px 20px; /* Gives space above and below content */
}

/* Container centered inside the section */
.custom-centered-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Ensures text is centered */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers inline elements like button */
}

/* Heading */
.custom-centered-container h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1em;
}

/* Body Text */
.custom-centered-container p {
    font-size: 18px;
    line-height: 1.6em;
    font-weight: 300;
    margin-bottom: 28px;
    color: #fff;
}

/* CTA Button */
.custom-cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #c09551;
    text-decoration: none;
    border-bottom: 4px solid #705324;
    transition: background 0.3s;
}

.custom-cta-button:hover {
    color: #fff;
    background-color: #3a3a3a;
    border-bottom: 4px solid #000;
}

/* Responsive: Reduce spacing on smaller screens */
@media (max-width: 768px) {
    .custom-centered-container h2 {
        font-size: 32px !important;
    }

    .custom-centered-container p {
        font-size: 16px;
    }

    .custom-cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Full-width mirrored section */
.mirrored-section {
    width: 100%;
    background-color: #fff;
    padding: 40px 0 40px;
}

/* Max-width container for mirrored section */
.mirrored-section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Ensures equal height */
    justify-content: space-between;
}

/* Left column (now image background) */
.mirrored-section-left-1 {
    flex: 1;
    min-height: 100%;
    background-image: url('/wp-content/uploads/2018/12/administration-adult-banking-6214.jpg'); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mirrored-section-left-2 {
    flex: 1;
    min-height: 100%;
    background-image: url('/wp-content/uploads/2015/03/speaking.jpg'); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Right column (now text content) */
.mirrored-section-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:  0 0 0 40px;
    background-color: #ffffff;
    text-align: left; /* Keeps text aligned naturally */
}

/* Heading */
.mirrored-section-right h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 24px;
    color: #21366c;
    text-transform: uppercase;
}

/* Body Text */
.mirrored-section-right p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6em;
    margin-bottom: 20px;
    color: #555;
}

/* CTA Button */
.mirrored-cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #c09551;
    text-decoration: none;
    border-bottom: 4px solid #705324;
    transition: background 0.3s;
}

.mirrored-cta-button:hover {
    color: #fff;
    background-color: #3a3a3a;
    border-bottom: 4px solid #000;
}

/* Responsive: Stack columns on smaller screens */
@media (max-width: 1024px) {
    .mirrored-section-wrapper {
        flex-direction: column;
    }
		
	.mirrored-section-right h2 {
		font-size: 32px !important;
		margin-top: 20px;
	}
	
    .mirrored-section-left-1,
	.mirrored-section-left-2,
    .mirrored-section-right {
        width: 100%;
		padding: 0;
        min-height: 300px;
    }

    .mirrored-section-left {
        height: 300px; /* Adjust height for mobile */
    }
}

/* New: Swap order of columns on mobile */
@media (max-width: 768px) {
    .custom-section-wrapper {
        flex-direction: column; /* Stack the columns vertically */
    }

    /* Change the order of columns on mobile */
    .custom-section-left {
        order: 3; /* Move left column to 3rd position */
    }

    .custom-section-right-1 {
        order: 1; /* Move right column with background image to 1st position */
    }

    .custom-section-right-2 {
        order: 2; /* Move second right column to 2nd position */
    }
}



.section-title {
	font-size: 36px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 32px !important;
}

.faq-accordion a {
  color: #444341 !important;
}

.faq-accordion .ea-body p {
	font-size: 16px;
}

.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a .ea-expand-icon {
	font-size: 16px !important;
}

.sp-easy-accordion .sp-ea-single .ea-header a {
	font-size: 18px !important;
	font-family: 'Montserrat ', sans-serif;
	font-weight: 600;
}

.seo-keyword {
	text-align: center;
	margin-bottom: 40px;
}

.seo-keyword h1 {
	font-size: 16px !important;
	margin-bottom: 24px;
}