/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 1024px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 1025px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }.fl-node-ckgeuo0pnr5x {
	color: #411342;
}
.fl-builder-content .fl-node-ckgeuo0pnr5x *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-ckgeuo0pnr5x a {
	color: #411342;
}

.fl-builder-content .fl-node-ckgeuo0pnr5x a:hover {
	color: #411342;
}

.fl-builder-content .fl-node-ckgeuo0pnr5x h1,
.fl-builder-content .fl-node-ckgeuo0pnr5x h2,
.fl-builder-content .fl-node-ckgeuo0pnr5x h3,
.fl-builder-content .fl-node-ckgeuo0pnr5x h4,
.fl-builder-content .fl-node-ckgeuo0pnr5x h5,
.fl-builder-content .fl-node-ckgeuo0pnr5x h6,
.fl-builder-content .fl-node-ckgeuo0pnr5x h1 a,
.fl-builder-content .fl-node-ckgeuo0pnr5x h2 a,
.fl-builder-content .fl-node-ckgeuo0pnr5x h3 a,
.fl-builder-content .fl-node-ckgeuo0pnr5x h4 a,
.fl-builder-content .fl-node-ckgeuo0pnr5x h5 a,
.fl-builder-content .fl-node-ckgeuo0pnr5x h6 a {
	color: #411342;
}



.fl-node-ckgeuo0pnr5x > .fl-row-content-wrap {
	background-color: #F7F3F8;
}
.fl-node-ckgeuo0pnr5x .fl-row-content {
	max-width: 1080px;
}






.fl-node-asxq2dmh1y64 > .fl-row-content-wrap {
	background-color: #411342;
}
.fl-node-asxq2dmh1y64 .fl-row-content {
	max-width: 1080px;
}






.fl-node-i0b4zupmk9ot > .fl-row-content-wrap {
	background-color: #F7F3F8;
}
.fl-node-i0b4zupmk9ot .fl-row-content {
	max-width: 1080px;
}






.fl-node-ftbhr3z8ce41 > .fl-row-content-wrap {
	background-color: #F7F3F8;
}
.fl-node-ftbhr3z8ce41 .fl-row-content {
	max-width: 1080px;
}






.fl-node-31xerk27svjn > .fl-row-content-wrap {
	background-color: #F7F3F8;
}
.fl-node-31xerk27svjn .fl-row-content {
	max-width: 1080px;
}






.fl-node-o61md8ypigvt > .fl-row-content-wrap {
	background-color: #411342;
}
.fl-node-o61md8ypigvt .fl-row-content {
	max-width: 1080px;
}






.fl-node-3ihyqaorg5xt > .fl-row-content-wrap {
	background-color: #F7F3F8;
}
.fl-node-3ihyqaorg5xt .fl-row-content {
	max-width: 1080px;
}






.fl-node-avj6omigpb9z > .fl-row-content-wrap {
	background-color: #F7F3F8;
}
.fl-node-avj6omigpb9z .fl-row-content {
	max-width: 1080px;
}






.fl-node-pmsulvgt1908 > .fl-row-content-wrap {
	background-color: #0BBBA6;
}
.fl-node-pmsulvgt1908 .fl-row-content {
	max-width: 805px;
}




.fl-node-l98edhifxn3r {
	width: 47.41%;
}




.fl-node-ze1pia7r4lst {
	width: 33.33%;
}




.fl-node-sl67zdmgauqw {
	width: 43.33%;
}




.fl-node-uemti0lg71fn {
	width: 25%;
}




.fl-node-wrzbc543y87j {
	width: 50%;
}




.fl-node-73n6p1owteu4 {
	width: 100%;
}




.fl-node-3ezk7hxgstli {
	width: 25%;
}




.fl-node-ajo2m6ulk074 {
	width: 100%;
}




.fl-node-liczwjft9o3r {
	width: 25%;
}




.fl-node-58abhpo0ls72 {
	width: 25%;
}




.fl-node-j6lbvg81duzq {
	width: 100%;
}




.fl-node-qv72rm3bzjkw {
	width: 25%;
}




.fl-node-8hsqwcpuk25v {
	width: 100%;
}




.fl-node-u0xatgpjrqcl {
	width: 43.16%;
}




.fl-node-3cfm9w82stob {
	width: 52.59%;
}




.fl-node-ufpeoa16l97q {
	width: 33.34%;
}




.fl-node-5zv7arbn8c1f {
	width: 56.67%;
}




.fl-node-fz6dj9exblk2 {
	width: 25%;
}




.fl-node-atqhm1zc256w {
	width: 50%;
}




.fl-node-pdrq5gj7alvz {
	width: 25%;
}




.fl-node-bu82t97m5sk4 {
	width: 25%;
}




.fl-node-c0tqj5xfnkz3 {
	width: 25%;
}




.fl-node-pd90vbl75u1g {
	width: 25%;
}




.fl-node-oy7vz4wf8kqi {
	width: 56.84%;
}




.fl-node-6nwca25hqf78 {
	width: 33.33%;
}




.fl-node-w129dfo47rt3 {
	width: 25%;
}




.fl-node-20dza3pjtwvx {
	width: 25%;
}




.fl-node-97rhpxqgetoc {
	width: 25%;
}




.fl-node-y8o6agjwv7pc {
	width: 25%;
}
.fl-node-y8o6agjwv7pc > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #65346c;
	border-left-width: 2px;
}




.fl-node-j6pn3euoz2i5 {
	width: 27.87%;
}




.fl-node-jkygdm9h50u7 {
	width: 25%;
}




.fl-node-j73anfx2vr4w {
	width: 25%;
}




.fl-node-hwi359e26mta {
	width: 25%;
}




.fl-node-fwldr08ngh97 {
	width: 25%;
}
.fl-node-fwldr08ngh97 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #65346c;
	border-left-width: 2px;
}




.fl-node-q3lratngmzbk {
	width: 22.13%;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-button:is(a, button) {
    cursor: pointer;
}








.fl-node-3c5zj4ahgq8e.fl-button-wrap, .fl-node-3c5zj4ahgq8e .fl-button-wrap {
	text-align: left;
}
:where(.fl-builder-content .fl-node-3c5zj4ahgq8e .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-3c5zj4ahgq8e .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-xfl7pveh48ga, .fl-node-xfl7pveh48ga .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-u6lf520s4aj9.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-u6lf520s4aj9.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
		.fl-builder-content .fl-node-65m7xn1e9yit.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-65m7xn1e9yit.fl-module-rich-text.fl-rich-text * {
		color: rgb(230, 230, 230);
	}
		.fl-builder-content .fl-node-awzc90g52vnl.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-awzc90g52vnl.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
		.fl-builder-content .fl-node-iqjywebt4chg.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-iqjywebt4chg.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
		.fl-builder-content .fl-node-n74js1olcp5m.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-n74js1olcp5m.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-node-pwyqu4s8xgkt, .fl-node-pwyqu4s8xgkt .fl-photo {
	text-align: center;
}
.fl-node-skvfexh93zw2, .fl-node-skvfexh93zw2 .fl-photo {
	text-align: center;
}
.fl-node-h3dfjpcyvib2, .fl-node-h3dfjpcyvib2 .fl-photo {
	text-align: center;
}
.fl-node-vj3x52cre0s6, .fl-node-vj3x52cre0s6 .fl-photo {
	text-align: center;
}
.fl-node-bd0ux3nwy9hc, .fl-node-bd0ux3nwy9hc .fl-photo {
	text-align: center;
}









.fl-node-egbxjui27ka4.fl-button-wrap, .fl-node-egbxjui27ka4 .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-egbxjui27ka4 .fl-button:is(a, button), .fl-builder-content .fl-node-egbxjui27ka4 a.fl-button:visited, .fl-builder-content .fl-node-egbxjui27ka4 .fl-button:is(a, button) *, .fl-builder-content .fl-node-egbxjui27ka4 a.fl-button:visited *, .fl-page .fl-builder-content .fl-node-egbxjui27ka4 .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-egbxjui27ka4 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-egbxjui27ka4 .fl-button:is(a, button) *, .fl-page .fl-builder-content .fl-node-egbxjui27ka4 a.fl-button:visited * {
	color: #411342;
}
:where(.fl-builder-content .fl-node-egbxjui27ka4 .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-egbxjui27ka4 .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
	.fl-builder-content .fl-node-hfbil9763pn5.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-hfbil9763pn5.fl-module-rich-text.fl-rich-text * {
		color: #E4D0FF;
	}
		.fl-builder-content .fl-node-mru84b9egohd.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-mru84b9egohd.fl-module-rich-text.fl-rich-text * {
		color: #E4D0FF;
	}
		.fl-builder-content .fl-node-4jm8p2u0ifrs.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-4jm8p2u0ifrs.fl-module-rich-text.fl-rich-text * {
		color: #E4D0FF;
	}
		.fl-builder-content .fl-node-dn4abrj89t21.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-dn4abrj89t21.fl-module-rich-text.fl-rich-text * {
		color: #E4D0FF;
	}
	








.fl-node-r60w54eusfyc.fl-button-wrap, .fl-node-r60w54eusfyc .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-r60w54eusfyc .fl-button:is(a, button), .fl-builder-content .fl-node-r60w54eusfyc a.fl-button:visited, .fl-builder-content .fl-node-r60w54eusfyc .fl-button:is(a, button) *, .fl-builder-content .fl-node-r60w54eusfyc a.fl-button:visited *, .fl-page .fl-builder-content .fl-node-r60w54eusfyc .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-r60w54eusfyc a.fl-button:visited, .fl-page .fl-builder-content .fl-node-r60w54eusfyc .fl-button:is(a, button) *, .fl-page .fl-builder-content .fl-node-r60w54eusfyc a.fl-button:visited * {
	color: #411342;
}
:where(.fl-builder-content .fl-node-r60w54eusfyc .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-r60w54eusfyc .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
	.fl-builder-content .fl-node-1lhq5ar7kbep.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-1lhq5ar7kbep.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	








.fl-node-pcihq4geajvx.fl-button-wrap, .fl-node-pcihq4geajvx .fl-button-wrap {
	text-align: left;
}
:where(.fl-builder-content .fl-node-pcihq4geajvx .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-pcihq4geajvx .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}









.fl-node-m1i9f5o8dpyg.fl-button-wrap, .fl-node-m1i9f5o8dpyg .fl-button-wrap {
	text-align: left;
}
:where(.fl-builder-content .fl-node-m1i9f5o8dpyg .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-m1i9f5o8dpyg .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/*** HOME ***/

.post-66123 .fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin: 0px;
}

/* FIRST ROW */

#home-hero {
	
	.fl-row-content-wrap {
		padding-top: 50px;
		padding-bottom: 100px;
	}
	
	.awarded-subheader {
		display: none;
	}
	
	.awarded-subheader p {
		font-size: 15px;
		line-height: 18px;
		font-weight: 700;
		margin-top: 30px;
	}
	
	.intro-header h1 {
		margin-top: 20px !important;
		font-size: 65px;
		line-height: 65px;
		margin-bottom: 40px;
	}
	
	.stat p {
		font-size: 20px;
		line-height: 23px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.col-middle {
		border-left: solid 2px #E4D0FF;
		padding-left: 15px;
	}
	
	.col-right {
		border-left: solid 2px #E4D0FF;
		padding-left: 15px;
	}
	
	.intro-body p {
		margin-top: 20px;
		font-size: 18px;
		line-height: 21px;
		margin-bottom: 40px;
	}
	
	.intro-button a {
		border: solid 1px #D228F4;
		width: 207px;
		height: 46px;
		text-align: center;
		font-size: 14px;
		font-family: "Geomanist Medium" !important;
		line-height: 20px;
		color: #411342;
		background: #F7F3F8;
		border-radius: 5px;
	}
	
	.intro-button-wide a {
		width: 250px;
	}
	
	.fl-photo-content {
		padding-left: 30px;
	}
}


/* FIRST ROW — MOBILE */

@media (max-width: 767px) {

	#home-hero {

		.fl-row-content-wrap {
			padding-top: 20px;
			padding-right: 5px;
			padding-bottom: 65px;
			padding-left: 5px;
		}

		/*
		 * Reverse the two main hero columns:
		 * image first, copy second.
		 */
		.fl-node-ow0z8pivfxbq {
			display: flex;
			flex-direction: column;
		}

		.fl-node-3cfm9w82stob {
			order: 1;
			width: 100% !important;
		}

		.fl-node-l98edhifxn3r {
			order: 2;
			width: 100% !important;
			padding-left: 25px;
			padding-right: 25px;
		}

		/*
		 * Hero image.
		 */
		.fl-node-3cfm9w82stob .fl-col-content {
			width: 100%;
		}

		.fl-photo-content {
			display: block;
			width: 100%;
			padding-left: 0;
			text-align: center;
		}

		.fl-photo-content img {
			display: block;
			width: 100%;
			max-width: 360px;
			height: auto;
			margin: 0 auto 30px;
		}

		/*
		 * Mobile-only awarded label.
		 */
		.awarded-subheader {
			display: block;
		}

		.awarded-subheader p {
			margin-top: 0;
			margin-bottom: 8px;
			color: #D228F4;
			font-size: 13px;
			line-height: 16px;
			font-weight: 700;
		}

		/*
		 * Main heading.
		 */
		.intro-header h1 {
			margin-top: 0 !important;
			margin-bottom: 24px;
			font-size: 38px;
			line-height: 38px;
		}

		/*
		 * Keep all three stats side by side.
		 */
		.fl-node-jg940fdze8y6 {
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			align-items: stretch;
			width: 100%;
			margin-bottom: 24px;
		}

		.fl-node-jg940fdze8y6 > .fl-col {
			display: block;
			flex: 1 1 33.333%;
			width: 33.333% !important;
			max-width: 33.333%;
		}

		.fl-node-jg940fdze8y6 > .fl-col > .fl-col-content {
			height: 100%;
		}

		.stat {
			height: 100%;
		}

		.stat p {
			margin: 0;
			padding: 2px 8px 2px 2px;
			font-size: 16px;
			line-height: 17px;
			text-align: left;
		}

		.col-left {
			padding-right: 8px;
		}

		.col-middle,
		.col-right {
			border-left: solid 2px #E4D0FF;
			padding-left: 12px;
			padding-right: 4px;
		}

		/*
		 * Introductory copy.
		 */
		.intro-body p {
			margin-top: 0;
			margin-bottom: 28px;
			font-size: 16px;
			line-height: 19px;
		}

		/*
		 * Full-width CTA.
		 */
		.intro-button,
		.intro-button .fl-button-wrap {
			width: 100%;
		}

		.intro-button a,
		.intro-button-wide a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			max-width: none;
			height: 46px;
			padding: 0 20px;
			font-size: 13px;
			line-height: 18px;
			text-transform: uppercase;
		}
	}
}

/* SECOND STAT ROW */

#stats-row {
	
	.fl-row-content-wrap {
		padding-top: 50px;
		padding-bottom: 70px;
		background-image: url('https://media.globalfundforwomen.org/2026/08/Feminist-Background.png');
		background-size: auto 100%;
		background-repeat: no-repeat;
		background-position: calc(50% - 390px) center;
	}
	
	.fl-row-content-wrap::after {
		content: "";
		position: absolute;
		width: 272px;
		height: 363px;
		background-image: url('https://media.globalfundforwomen.org/2026/08/Line-Vector-1.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		left: 5%;
		bottom: -200px;
		z-index: 1000;
	}
	
	.stats-header h2 {
		font-size: 35px;
		line-height: 40px;
	}
	
	.stats-intro {
		padding-bottom: 30px;
	}
	
	.stats-intro p {
		font-size: 18px;
		line-height: 21px;
		max-width: 530px;
	}
	
	.stats-intro p strong {
		font-family: 'Geomanist Medium' !important;
		font-weight: 400 !important;
	}
	
	.intro-button a {
		border: solid 1px #fff;
		width: 207px;
		height: 46px;
		text-align: center;
		font-size: 14px;
		font-family: 'Geomanist Medium' !important;
		line-height: 20px;
		color: #411342;
		background: none;
		border-radius: 5px;
		margin-bottom: 50px;
	}
	
	.stat-box {
		display: flex;
		flex-direction: column;
		min-height: 238px;
		background: #6D316F;
		border-radius: 5px;
		margin-right: 5px;
		text-align: center;
		padding: 10px;
	}
	
	.stat-box h3 {
		font-size: 22px;
		line-height: 22px;
		color: #E0F977 !important;
	}
	
	.stat-box h4 {
		font-family: "Geomanist";
		text-transform: none;
		font-weight: 400;
		font-size: 15px;
		line-height: 18px;
		color: #E0F977 !important;
		margin: 0;
	}
	
	.stat-box p {
		color: #e4d1ff;
		font-size: 11px;
		line-height: 13px;
		margin-top: auto;
		margin-bottom: 5px;
		padding: 0 5px;
	}
}


/* SECOND STAT ROW — MOBILE */

@media (max-width: 767px) {

	#stats-row {

		.fl-row-content-wrap {
			position: relative;
			padding-top: 85px;
			padding-right: 30px;
			padding-bottom: 400px;
			padding-left: 30px;
			background-size: auto 360px;
			background-position: center bottom;
			background-repeat: no-repeat;
			overflow: hidden;
		}

		/*
		 * Hide the empty desktop spacer column.
		 */
		.fl-node-sl67zdmgauqw {
			display: none;
		}

		/*
		 * Make the content column full width.
		 */
		.fl-node-5zv7arbn8c1f {
			width: 100% !important;
			max-width: 100%;
		}

		/*
		 * Heading.
		 */
		.stats-header h2 {
			margin-top: 0;
			margin-bottom: 18px;
			font-size: 30px;
			line-height: 32px;
			text-transform: uppercase;
		}

		/*
		 * Introductory copy.
		 */
		.stats-intro {
			padding-bottom: 25px;
		}

		.stats-intro p {
			max-width: none;
			margin-bottom: 16px;
			font-size: 16px;
			line-height: 19px;
		}

		.stats-intro p:last-child {
			margin-bottom: 0;
		}

		/*
		 * Full-width CTA.
		 */
		.intro-button,
		.intro-button .fl-button-wrap {
			width: 100%;
		}

		.intro-button a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			max-width: none;
			height: 46px;
			margin-bottom: 28px;
			padding: 0 20px;
			border-color: #fff;
			color: #fff;
			font-size: 13px;
			line-height: 18px;
			text-transform: uppercase;
		}

		/*
 * Four cards arranged in a fixed 2 × 2 grid.
 */
		
		.fl-node-qmiv48c5z3x2::before {
			display: none !important;
		}
		
		.fl-node-qmiv48c5z3x2 {
			display: grid !important;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 6px;
			width: 100%;
		}
		
		.fl-node-qmiv48c5z3x2 > .fl-col {
		    float: none !important;
		    clear: none !important;
		    display: block !important;
		    width: auto !important;
		    max-width: none !important;
		    min-width: 0;
		    margin: 0 !important;
		}
		
		.fl-node-qmiv48c5z3x2 > .fl-col > .fl-col-content {
		    width: 100%;
		    height: 100%;
		    margin: 0 !important;
		    padding: 0 !important;
		}

		.stat-box {
			width: 100%;
			min-height: 190px;
			height: 100%;
			margin-right: 0;
			padding: 26px 10px 15px;
			border-radius: 4px;
		}

		.stat-box h3 {
			margin-top: 0;
			margin-bottom: 16px;
			font-size: 22px;
			line-height: 26px;
		}

		.stat-box h4 {
			margin: 0;
			font-size: 14px;
			line-height: 16px;
		}

		.stat-box p {
			margin-top: auto;
			margin-bottom: 0;
			padding: 15px 3px 0;
			font-size: 10px;
			line-height: 12px;
		}

		/*
		 * The desktop line artwork overlaps the next section.
		 * Hide it on mobile because the background artwork already
		 * provides the decorative finish shown in the design.
		 */
		.fl-row-content-wrap::after {
			display: none;
		}
	}
}

/* THIRD QUOTE ROW */

#quote-row {
	
	.fl-row-content-wrap {
		padding-top: 70px !important;
	}
	
	.quote-header h2 {
		font-size: 35px;
		line-height: 40px;
		margin-top: 70px;
		max-width: 455px;
	}
	
	.quote-intro-text p {
		font-size: 18px;
		line-height: 21px;
	}
	
	.quote-intro-text p strong {
		font-family: "Geomanist Medium" !important;
		font-weight: 400;
	}
	
	.quote-intro-text {
		margin-bottom: 40px;
		margin-top: 10px;
		max-width: 460px;
	}
	
	.quote-button a {
		border: solid 1px #D228F4;
		width: 191px;
		height: 46px;
		text-align: center;
		font-size: 14px;
		font-family: "Geomanist Medium" !important;
		line-height: 20px;
		color: #411342;
		background: #D228F4;
		border-radius: 5px;
	}
	
	.quote-col {
		background: #E0F977;
		min-height: 480px;
		padding: 60px;
		border-radius: 5px;
	}
	
	.quote-col .fl-photo-img {
		max-width: 28px !important;
		margin-bottom: 30px;
	}
	
	.quote-col .quote p {
		text-align: center;
		font-size: 20px;
		line-height: 23px;
	}
	
	.quote-col .quote {
		margin-bottom: 40px;
	}
	
	.quote-col .quote p strong {
		font-family: "Geomanist Medium" !important;
		font-weight: 400;
	}
	
	.quote-col .quote-name p {
		text-align: center;
		font-size: 15px;
		line-height: 18px;
	}
	
	.quote-col .quote-name p strong {
		font-family: "Geomanist Medium" !important;
		font-weight: 400;
	}
}


/* THIRD QUOTE ROW — MOBILE */

@media (max-width: 767px) {

	#quote-row {

		.fl-row-content-wrap {
			padding-top: 85px !important;
			padding-right: 30px;
			padding-bottom: 0px;
			padding-left: 30px;
		}

		/*
		 * Stack the text and quote card.
		 */
		.fl-node-w0fiup31s9y6 {
			display: flex;
			flex-direction: column;
		}

		.fl-node-wrzbc543y87j,
		.fl-node-atqhm1zc256w {
			width: 100% !important;
			max-width: 100%;
		}

		/*
		 * Heading and introduction.
		 */
		.quote-header h2 {
			max-width: none;
			margin-top: 0;
			margin-bottom: 18px;
			font-size: 30px;
			line-height: 32px;
			text-transform: uppercase;
		}

		.quote-intro-text {
			max-width: none;
			margin-top: 0;
			margin-bottom: 28px;
		}

		.quote-intro-text p {
			margin: 0 0 16px;
			font-size: 16px;
			line-height: 19px;
		}

		.quote-intro-text p:last-child {
			margin-bottom: 0;
		}

		/*
		 * Full-width button.
		 */
		.quote-button,
		.quote-button .fl-button-wrap {
			width: 100%;
		}

		.quote-button {
			margin-bottom: 38px;
		}

		.quote-button a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			max-width: none;
			height: 46px;
			padding: 0 20px;
			font-size: 13px;
			line-height: 18px;
			text-transform: uppercase;
		}

		/*
		 * Quote card.
		 */
		.quote-col {
			min-height: 0;
			padding: 42px 25px 38px;
			border-radius: 4px;
		}

		.quote-col > .fl-col-content {
			width: 100%;
		}

		.quote-col .fl-photo-content {
			padding-left: 0;
			text-align: center;
		}

		.quote-col .fl-photo-img {
			display: block;
			width: 28px;
			max-width: 28px !important;
			height: auto;
			margin: 0 auto 26px;
		}

		.quote-col .quote {
			margin-bottom: 30px;
		}

		.quote-col .quote p {
			margin-top: 0;
			margin-bottom: 16px;
			font-size: 18px;
			line-height: 21px;
			text-align: center;
		}

		.quote-col .quote p:last-child {
			margin-bottom: 0;
		}

		.quote-col .quote-name p {
			margin: 0;
			font-size: 13px;
			line-height: 16px;
			text-align: center;
		}
	}
}

/* FOURTH HOW CHANGE ROW */

#change-row {
	
	h2 {
		font-size: 35px;
		line-height: 40px;
		margin-top: 130px;
	}
	
	p {
		font-size: 18px;
		line-height: 21px;
		width: 620px;
	}
}

#change-columns {
    
	.fl-row-content-wrap {
		padding-bottom: 100px;
	}
	
	.col-normal {
		
		.fl-module-photo {
			max-width: 130px;
		}
		
		h3 {
			font-size: 22px;
			line-height: 22px;
			max-width: 184px;
			margin-bottom: 15px;
			margin-top: 30px;
		}
		
		p {
			font-size: 15px;
			line-height: 18px;
			max-width: 184px;
		}
		
		.fl-col-content .icon-with-plus::after {
			content: "";
			position: absolute;
			width: 20px;
			height: 20px;
			background-image: url('https://media.globalfundforwomen.org/2026/08/Plus-Icon.webp');
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
			top: 53px;
			right: -80px;
		}
		
		.fl-col-content .icon-with-equals::after {
			content: "";
			position: absolute;
			width: 20px;
			height: 14px;
			background-image: url('https://media.globalfundforwomen.org/2026/08/Equals-Icon.webp');
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
			top: 53px;
			right: -80px;
		}
	}
	
	.col-highlighted {
		
		margin-top: -120px;
		
		.fl-col-content {
			background: #0BBBA6;
			padding: 80px 43px 30px;
			border-radius: 5px;
		}
		
		.fl-col-content .fl-module-photo::before {
			content: "";
			position: absolute;
			width: 423px;
			height: 290px;
			background-image: url('https://media.globalfundforwomen.org/2026/08/Systems-Change.webp');
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
			top: -270px;
			left: -130px;
		}
		
		.fl-module-photo img {
			max-width: 130px;
		}
		
		h3 {
			font-size: 35px;
			line-height: 40px;
			text-align: center;
			margin-bottom: 25px;
			margin-top: 30px;
			text-transform: uppercase;
		}
		
		p {
			font-size: 15px;
			line-height: 18px;
			text-align: center;
		}
		
		p strong {
			font-family: "Geomanist Medium" !important;
			font-weight: 400;
		}
	}
}

#how-change-button {
	
	.fl-row-content-wrap {
		padding-top: 0;
		padding-bottom: 100px;
	}
	
	.read-more-button a {
		font-family: "Geomanist Medium" !important;
		font-weight: 400;
		text-align: center;
		text-transform: uppercase;
		width: 100%;
		font-size: 14px;
		border: solid 1px #D228F4;
		background: #F7F3F8;
		color: #411342 !important;
		border-radius: 5px !important;
	}
}


/* FOURTH HOW CHANGE ROW — MOBILE */

@media (max-width: 767px) {

	/* =========================
	   SECTION INTRO
	========================= */

	#change-row {

		.fl-row-content-wrap {
			padding-top: 85px;
			padding-right: 30px;
			padding-bottom: 45px;
			padding-left: 30px;
		}

		h2 {
			margin-top: 0;
			margin-bottom: 18px;
			font-size: 30px;
			line-height: 32px;
			text-transform: uppercase;
		}

		p {
			width: 100%;
			max-width: none;
			margin-bottom: 16px;
			font-size: 16px;
			line-height: 19px;
		}

		p:last-child {
			margin-bottom: 0;
		}
	}


	/* =========================
	   OUTCOME COLUMNS
	========================= */

	#change-columns {

		.fl-row-content-wrap {
			padding-top: 0;
			padding-right: 30px;
			padding-bottom: 0;
			padding-left: 30px;
			overflow: visible;
		}

		/*
		 * Force all four columns into one vertical sequence.
		 */
		.fl-node-6stdujq3i24m {
			display: flex !important;
			flex-direction: column;
			align-items: stretch;
			width: 100%;
		}

		.fl-node-6stdujq3i24m::before,
		.fl-node-6stdujq3i24m::after {
			display: none !important;
		}

		.fl-node-6stdujq3i24m > .fl-col {
			float: none !important;
			clear: none !important;
			width: 100% !important;
			max-width: 100%;
			margin: 0 !important;
		}


		/* =========================
		   THREE STANDARD OUTCOMES
		========================= */

		.col-normal {
			position: relative;
			padding-bottom: 92px;
			text-align: center;
		}

		.col-normal > .fl-col-content {
			display: flex;
			flex-direction: column;
			align-items: center;
			width: 100%;
		}

		.col-normal .fl-module-photo {
			width: 100%;
			max-width: 145px;
			margin: 0 auto;
		}

		.col-normal .fl-photo-content {
			width: 100%;
			padding-left: 0;
			text-align: center;
		}

		.col-normal .fl-module-photo img {
			display: block;
			width: 100%;
			max-width: 145px;
			height: auto;
			margin: 0 auto;
		}

		.col-normal h3 {
			max-width: none;
			margin-top: 24px;
			margin-bottom: 12px;
			font-size: 20px;
			line-height: 23px;
			text-align: center;
		}

		.col-normal h3 br {
			display: none;
		}

		.col-normal p {
			max-width: 315px;
			margin: 0 auto;
			font-size: 14px;
			line-height: 17px;
			text-align: center;
		}


		/*
		 * Hide the desktop-positioned symbols.
		 */
		.col-normal .icon-with-plus::after,
		.col-normal .icon-with-equals::after {
			display: none !important;
		}


		/*
		 * Add the connecting symbols directly between
		 * each mobile outcome.
		 */
		.fl-node-6stdujq3i24m > .col-normal::after {
			content: "";
			display: block !important;
			position: absolute;
			left: 50%;
			bottom: 30px;
			background-repeat: no-repeat;
			background-position: center;
			background-size: contain;
			transform: translateX(-50%);
		}

		/*
		 * Plus symbol after outcome one.
		 */
		.fl-node-6stdujq3i24m > .col-normal:nth-child(1)::after {
			width: 20px;
			height: 20px;
			background-image: url('https://media.globalfundforwomen.org/2026/08/Plus-Icon.webp');
		}

		/*
		 * Plus symbol after outcome two.
		 */
		.fl-node-6stdujq3i24m > .col-normal:nth-child(2)::after {
			width: 20px;
			height: 20px;
			background-image: url('https://media.globalfundforwomen.org/2026/08/Plus-Icon.webp');
		}

		/*
		 * Equals symbol after outcome three.
		 */
		.fl-node-6stdujq3i24m > .col-normal:nth-child(3)::after {
			width: 20px;
			height: 14px;
			bottom: 33px;
			background-image: url('https://media.globalfundforwomen.org/2026/08/Equals-Icon.webp');
		}


		/* =========================
		   SYSTEMS CHANGE CARD
		========================= */

		.col-highlighted {
			position: relative;
			width: 100% !important;
			margin-top: 215px !important;
			overflow: visible;
			padding-top: 75px;
			padding-bottom: 70px;
		}

		.col-highlighted > .fl-col-content {
			position: relative;
			width: 100%;
			padding: 88px 25px 38px;
			background: #0BBBA6;
			border-radius: 5px;
			overflow: visible;
		}

		/*
		 * Allow the collage to escape the normal 30px content
		 * padding and extend close to the viewport edges.
		 */
		.col-highlighted
		> .fl-col-content
		> .fl-module-photo::before {
			display: block;
			width: calc(100vw - 10px);
			max-width: none;
			height: 285px;
			top: -255px;
			left: 50%;
			background-size: contain;
			background-position: center bottom;
			transform: translateX(-50%);
			z-index: 1;
		}

		/*
		 * Keep the equals icon and card content above the collage.
		 */
		.col-highlighted .fl-module-photo {
			position: relative;
			z-index: 2;
			width: 100%;
			margin: 0 auto;
		}

		.col-highlighted .fl-photo-content {
			width: 100%;
			padding-left: 0;
			text-align: center;
		}

		.col-highlighted .fl-module-photo img {
			display: block;
			width: 130px;
			max-width: 130px;
			height: auto;
			margin: 0 auto;
			padding-top: 30px;
		}

		.col-highlighted h3 {
			margin-top: 28px;
			margin-bottom: 18px;
			font-size: 30px;
			line-height: 32px;
			text-align: center;
			text-transform: uppercase;
		}

		.col-highlighted h3 br {
			display: none;
		}

		.col-highlighted p {
			max-width: 300px;
			margin-right: auto;
			margin-left: auto;
			font-size: 14px;
			line-height: 17px;
			text-align: center;
		}
	}


	/* =========================
	   READ MORE BUTTON
	========================= */

	#how-change-button {

		.fl-row-content-wrap {
			padding-top: 28px;
			padding-right: 30px;
			padding-bottom: 80px;
			padding-left: 30px;
		}

		.read-more-button,
		.read-more-button .fl-button-wrap {
			width: 100%;
		}

		.read-more-button a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			max-width: none;
			height: 46px;
			padding: 0 20px;
			font-size: 13px;
			line-height: 18px;
		}
	}
}


/* FIFTH MOVEMENTS ROW */

#movements-row {
	
	.fl-row-content-wrap {
		padding-top: 40px;
		padding-bottom: 50px;
	}
	
	.movements-header h2 {
		font-size: 35px;
		line-height: 40px;
	}
	
	.movements-header::after {
		content: "";
		position: relative;
		display: block;
		width: 218px;
		height: 18px;
		background-image: url('https://media.globalfundforwomen.org/2026/08/Movements-Header.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		bottom: 18px;
		left: -20px;
	}
	
	.stat-text {
		min-height: 180px;
		padding: 0 30px 20px;
	}
	
	.stat-text strong {
		font-family: "Anton" !important;
		font-weight: 400 !important;
		font-size: 35px;
		line-height: 40px;
	}
	
	.stat-text h3 {
		font-size: 22px;
		line-height: 26px;
	}
	
	.stat-text p {
		font-size: 15px;
		line-height: 18px;
	}
}


/* FIFTH MOVEMENTS ROW — MOBILE */

@media (max-width: 767px) {

	#movements-row {

		.fl-row-content-wrap {
			padding-top: 65px;
			padding-right: 30px;
			padding-bottom: 65px;
			padding-left: 30px;
		}

		/*
		 * Stack the heading and statistics vertically.
		 */
		.fl-col-group {
			display: flex !important;
			flex-direction: column;
			width: 100%;
		}

		.fl-col-group::before,
		.fl-col-group::after {
			display: none !important;
		}

		.fl-col-group > .fl-col {
			float: none !important;
			clear: none !important;
		}


		/* =========================
		   SECTION HEADING
		========================= */

		.movements-header-col {
			width: 100% !important;
			max-width: 100%;
			margin: 0 !important;
		}

		.movements-header {
			margin-bottom: 40px;
			text-align: center;
		}

		.movements-header h2 {
			margin: 0;
			font-size: 30px;
			line-height: 32px;
			text-align: center;
			text-transform: uppercase;
		}

		.movements-header h2 br {
			display: none;
		}

		.movements-header::after {
			width: 180px;
			height: 15px;
			margin: 10px auto 0;
			bottom: auto;
			left: auto;
			background-position: center;
		}


		/* =========================
		   STAT STACK
		========================= */

		.movement-stat {
			width: 100% !important;
			max-width: 100%;
			min-height: 0;
			margin: 0 !important;
			border: 0 !important;
		}

		.movement-stat > .fl-col-content {
			display: block;
			width: 100%;
			height: auto;
			margin: 0 !important;
			padding: 0 !important;
			border: none;
		}

		.stat-text {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			width: 100%;
			min-height: 0;
			padding: 20px 0 28px;
			text-align: center;
		}

		.stat-text h3 {
			margin: 0 0 8px;
			font-size: 20px;
			line-height: 22px;
			text-align: center;
		}

		.stat-text strong {
			font-size: 30px;
			line-height: 32px;
		}

		.stat-text p {
			max-width: 220px;
			margin: 0 auto;
			font-size: 13px;
			line-height: 15px;
			text-align: center;
		}
	}
}

/* SIXTH STORY ROW */

#stories-row {
	
	.fl-row-content-wrap {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	.stories-header h2 {
		font-size: 35px;
		line-height: 40px;
		max-width: 530px;
	}
}

#stories-row #ymc-filter-1 {
	
	.filter-layout {
		margin-top: -80px;
	}
	
	.filter-section.filter-section--top {
		display: grid;
		grid-template-columns: repeat(2, 120px);
		column-gap: 10px;
		row-gap: 10px;
		width: fit-content;
		margin-left: auto;
	}
	
	.filter-section.filter-section--top::before {
		content: "Filter";
		display: block;
		grid-column: 1 / -1;
		font-family: "Geomanist Medium";
		font-size: 15px;
		line-height: 18px;
		color: #411342;
		padding: 0;
		text-align: left;
	}
	
	.filter-dropdown {
		width: 120px;
		margin: 0;
	}
	
	.filter-dropdown-inner .ymc-dropdown__selected,
	.ymc-extra-container .filter-dropdown-inner .ymc-dropdown__selected {
		box-sizing: border-box;
		width: 100%;
		height: 32px;
		border: solid 1px #411342;
		border-radius: 5px;
		background: #F7F3F8;
		padding: 6px 35px 6px 15px !important;
		font-family: "Geomanist";
		font-size: 13px;
		line-height: 18px;
		text-align: left;
	}
	
	.ymc-dropdown__list {
		width: 300px;
	}
	
	.ymc-dropdown__arrow,
	.filter-dropdown-inner .ymc-dropdown__arrow {
		position: absolute;
		right: 18px;
		top: 40%;
		z-index: 1;
		width: 0;
		height: 0;
		border: solid #222;
		border-width: 0 1px 1px 0;
	}
	
	.total-results-found {
		display: none;
	}
	
	/* Individual card */
	.post-card {
		background: transparent;
	}
	
	.post-card__column {
		padding: 0 !important;
	}
	
	/* Image wrapper */
	.post-card__image {
		width: 100%;
		margin-bottom: 18px;
		border-radius: 7px;
		max-height: 208px;
	}
	
	/* Optional image hover */
	.post-card:hover .post-card__image img {
		transform: scale(1.225);
	}
	
	/* Region/location */
	.story-region {
		position: relative;
		display: flex;
		margin: 0 0 8px;
		padding-left: 22px;
		font-family: "Geomanist Medium";
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		text-transform: uppercase;
		color: #411342;
	}

	/* Location pin outline */
	.story-region::before {
		content: "";
		position: absolute;
		left: 2px;
		top: 0;
		width: 14px;
		height: 16px;
		background: url("https://media.globalfundforwomen.org/2026/08/Location-Pin.svg");
		background-size: contain;
		background-repeat: no-repeat;
	}
	
	/* Post title */
	.story-title {
		margin: 0 0 4px;
		font-family: "Geomanist Medium";
		font-size: 20px;
		line-height: 23px;
		font-weight: 400 !important;
		color: #411342;
	}
	
	.story-title a {
		color: inherit;
		text-decoration: none;
	}
	
	.story-title a:hover {
		text-decoration: underline;
		text-underline-offset: 2px;
	}
	
	/* Categories */
	.story-categories {
		margin: 3px 0 26px;
		font-family: "Geomanist";
		font-size: 13px;
		line-height: 15px;
		color: #D228F4;
	}

	/* Intro/excerpt */
	.story-intro {
		margin: 30px 0 12px;
		font-family: "Geomanist";
		font-size: 15px;
		line-height: 18px;
		color: #411342;
	}
	
	.story-intro p {
		margin: 0;
	}
	
	/* Read Story link */
	.post-card__button-wrapper a {
		position: relative;
		padding: 0 35px 3px 0;
		border: 0;
		border-bottom: 1px solid #411342;
		border-radius: 0;
		background: transparent;
		font-family: "Geomanist" !important;
		font-size: 15px;
		line-height: 18px;
		color: #411342;
		text-decoration: none;
		font-weight: 400 !important;
	}

	/* Arrow line */
	.post-card__button-wrapper a::before {
		content: "";
		position: absolute;
		right: 0;
		top: 40%;
		width: 16px;
		height: 1px;
		background: #411342;
		transform: translateY(-50%);
	}
	
	/* Arrow head */
	.post-card__button-wrapper a::after {
		content: "";
		position: absolute;
		right: 0;
		top: 43.4%;
		width: 6px;
		height: 6px;
		border-top: 1px solid #411342;
		border-right: 1px solid #411342;
		transform: translateY(-50%) rotate(45deg);
	}
}


/* SIXTH STORY ROW — MOBILE */

@media (max-width: 767px) {

	#stories-row {

		.fl-row-content-wrap {
			padding-top: 65px;
			padding-right: 30px;
			padding-bottom: 5px;
			padding-left: 30px;
		}

		.stories-header h2 {
			max-width: none;
			margin-top: 0;
			margin-bottom: 30px;
			font-size: 30px;
			line-height: 32px;
			text-transform: uppercase;
		}
	}


	/* =========================
	   FILTERS
	========================= */

	#stories-row #ymc-filter-1 {

		.filter-layout {
			margin-top: 0;
			margin-bottom: 35px;
		}

		.filter-section.filter-section--top {
			grid-template-columns: repeat(2, minmax(0, 1fr));
			width: 100%;
			column-gap: 10px;
			row-gap: 10px;
			margin-right: 0;
			margin-left: 0;
		}

		.filter-section.filter-section--top::before {
			font-size: 14px;
			line-height: 17px;
		}

		.filter-dropdown {
			width: 100%;
			min-width: 0;
		}

		.filter-dropdown-inner .ymc-dropdown__selected,
		.ymc-extra-container .filter-dropdown-inner .ymc-dropdown__selected {
			height: 38px;
			padding: 8px 35px 8px 12px !important;
			font-size: 13px;
			line-height: 18px;
		}

		.ymc-dropdown__arrow,
		.filter-dropdown-inner .ymc-dropdown__arrow {
			right: 15px;
		}

		/*
		 * Keep dropdowns within the viewport.
		 */
		.ymc-dropdown__list {
			width: calc(100vw - 60px);
			max-width: 300px;
		}


		/* =========================
		   STACKED STORY CARDS
		========================= */

		/*
		 * Neutralise any grid/flex width applied by YMC.
		 */
		.post-card__column {
			float: none !important;
			clear: none !important;
			flex: 0 0 100% !important;
			width: 100% !important;
			max-width: 100% !important;
			margin: 0 0 55px !important;
			padding: 0 !important;
		}

		.post-card__column:last-child {
			margin-bottom: 0 !important;
		}

		.post-card {
			display: block;
			width: 100%;
			max-width: 100%;
		}

		.post-card__image {
			width: 100%;
			max-height: none;
			margin-bottom: 18px;
			border-radius: 6px;
			overflow: hidden;
		}

		.post-card__image img {
			display: block;
			width: 100%;
			height: auto;
			aspect-ratio: 16 / 9;
			object-fit: cover;
		}

		/*
		 * Disable desktop hover zoom on touch layouts.
		 */
		.post-card:hover .post-card__image img {
			transform: none;
		}

		.story-region {
			margin-bottom: 6px;
			padding-left: 21px;
			font-size: 13px;
			line-height: 18px;
		}

		.story-region::before {
			top: 1px;
			width: 13px;
			height: 15px;
		}

		.story-title {
			margin-bottom: 4px;
			font-size: 20px;
			line-height: 23px;
		}

		.story-categories {
			margin-top: 3px;
			margin-bottom: 20px;
			font-size: 13px;
			line-height: 15px;
		}

		.story-intro {
			margin-top: 20px;
			margin-bottom: 16px;
			font-size: 15px;
			line-height: 18px;
		}

		.post-card__button-wrapper a {
			font-size: 14px;
			line-height: 17px;
		}
	}
}

/* FILTER DROPDOWN BACKGROUND */

.ymc-container .filter-dropdown-inner .ymc-dropdown__list,
.ymc-extra-container .filter-dropdown-inner .ymc-dropdown__list {
	background-color: #411342 !important;	
	max-height: 350px;
}
/* End Layout CSS */

