/*------------------------------------*\
    
    WebFX WYSIWYG Customizations - Global styling for all ACF WYSIWYG's

    Add custom WYSIWYG styling to this file if it should be applied to all ACF WYSIWYG's on the site
    Otherwise, put your block-specific styles in individual block stylesheets

\*------------------------------------*/

.wysiwyg {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.wysiwyg__pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
}

.bg-white {
    background: #ffffff;
}

.bg-white + .bg-white,
.bg-light-grey + .bg-light-grey,
.bg-navy + .bg-navy {
    padding-top: 0;
    margin-top: 0;
}

.bg-light-grey {
    background: #EEEEEE;
}

.bg-navy {
    background: #002745;
    color: rgba(255, 255, 255, 0.8);
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy h5,
.bg-navy h6 {
    color: #FFFFFF;
}

.bg-navy .btn-tertiary,
.bg-light-grey .btn-tertiary {
    background: #FFFFFF;
}

.testimonial-list .blockquote-col blockquote {
    background: transparent;
    width: 100%;
}

@media (min-width: 1200px) {
    .bg-navy .btn-tertiary:hover,
    .bg-light-grey .btn-tertiary:hover {
        background: #CCCCCC;
    }

    .bg-navy .btn-link-blue:hover {
		color: #FFFFFF;
	}
}