/**
 * 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-9ch8vque0r51 {
	color: #411342;
}
.fl-builder-content .fl-node-9ch8vque0r51 *: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-9ch8vque0r51 a {
	color: #411342;
}

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

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



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






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






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






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






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






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






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






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




.fl-node-tlhir9on3jq1 {
	width: 53.52%;
}




.fl-node-2r60euivnlpk {
	width: 48.89%;
}




.fl-node-5l3wyrcan8o9 {
	width: 100%;
}




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




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




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




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




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




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




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




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




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




.fl-node-sd5l96aq2uec {
	width: 29.08%;
}




.fl-node-27getskmulh1 {
	width: 30.01%;
}




.fl-node-0sendh2rgakj {
	width: 100%;
}




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




.fl-node-4uy3ti8ngrp1 {
	width: 100%;
}




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




.fl-node-38dgb6ur054e {
	width: 33.33%;
}




.fl-node-ml8s3jtokqx7 {
	width: 46.48%;
}




.fl-node-dbunpoic79mx {
	width: 51.11%;
}




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




.fl-node-89qgiusr53c0 {
	width: 50%;
}




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




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




.fl-node-foeh5xsaiu0v {
	width: 70.92%;
}




.fl-node-norifcvljb43 {
	width: 69.99%;
}




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




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




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




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




.fl-node-9g0cnpi248s6 {
	width: 33.33%;
}




.fl-node-ep0m7o3qgrv6 {
	width: 25%;
}
.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-builder-content .fl-node-8zqxbt691nuc.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-8zqxbt691nuc.fl-module-rich-text.fl-rich-text * {
		color: #D228F4;
	}
	.fl-builder-content .fl-node-8zqxbt691nuc.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-8zqxbt691nuc.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 700;
}
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-zgupoi72bqyx, .fl-node-zgupoi72bqyx .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-zg4k8nmxq9r0.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-zg4k8nmxq9r0.fl-module-rich-text.fl-rich-text * {
		color: #D228F4;
	}
	.fl-builder-content .fl-node-zg4k8nmxq9r0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-zg4k8nmxq9r0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 700;
}
.fl-builder-content-66228 .fl-node-65x4gitzjms9 img.fl-photo-img {
	object-position: left center;
}
.fl-node-65x4gitzjms9, .fl-node-65x4gitzjms9 .fl-photo {
	text-align: left;
}
.fl-builder-content-66228 .fl-node-0uq6rks4cw8p img.fl-photo-img {
	object-position: left center;
}
.fl-node-0uq6rks4cw8p, .fl-node-0uq6rks4cw8p .fl-photo {
	text-align: left;
}
.fl-builder-content-66228 .fl-node-cw85vfx3m7eh img.fl-photo-img {
	object-position: left center;
}
.fl-node-cw85vfx3m7eh, .fl-node-cw85vfx3m7eh .fl-photo {
	text-align: left;
}
.fl-builder-content-66228 .fl-node-95yf3m4wlkt1 img.fl-photo-img {
	object-position: left center;
}
.fl-node-95yf3m4wlkt1, .fl-node-95yf3m4wlkt1 .fl-photo {
	text-align: left;
}
.fl-node-twycxuzr5ofd, .fl-node-twycxuzr5ofd .fl-photo {
	text-align: left;
}
.fl-node-2uafg4byvnx6, .fl-node-2uafg4byvnx6 .fl-photo {
	text-align: center;
}
.fl-node-3hrfd2cgxqa6, .fl-node-3hrfd2cgxqa6 .fl-photo {
	text-align: center;
}
.fl-node-wfgdrucm18kj, .fl-node-wfgdrucm18kj .fl-photo {
	text-align: center;
}
.fl-node-uymiz6cbrkp5, .fl-node-uymiz6cbrkp5 .fl-photo {
	text-align: center;
}
.fl-node-r1328veicjpf, .fl-node-r1328veicjpf .fl-photo {
	text-align: center;
}
.fl-node-lb6ka81ryqpz, .fl-node-lb6ka81ryqpz .fl-photo {
	text-align: center;
}
.fl-node-73s5kvcd16fu, .fl-node-73s5kvcd16fu .fl-photo {
	text-align: center;
}
.fl-node-796ctq30nh2z, .fl-node-796ctq30nh2z .fl-photo {
	text-align: center;
}
.fl-node-ekx0pgdsbmjt, .fl-node-ekx0pgdsbmjt .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-h0z2b3cfw816.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-h0z2b3cfw816.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
		.fl-builder-content .fl-node-706ktf5rx21a.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-706ktf5rx21a.fl-module-rich-text.fl-rich-text * {
		color: #D228F4;
	}
	.fl-builder-content .fl-node-706ktf5rx21a.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-706ktf5rx21a.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 700;
}
.fl-button:is(a, button) {
    cursor: pointer;
}








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









.fl-node-x9y03avbgjfq.fl-button-wrap, .fl-node-x9y03avbgjfq .fl-button-wrap {
	text-align: left;
}
:where(.fl-builder-content .fl-node-x9y03avbgjfq .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-x9y03avbgjfq .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
	.fl-builder-content .fl-node-kqzpcn2odryh.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-kqzpcn2odryh.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
		.fl-builder-content .fl-node-mw4azvk1d56r.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-mw4azvk1d56r.fl-module-rich-text.fl-rich-text * {
		color: #D228F4;
	}
	.fl-builder-content .fl-node-mw4azvk1d56r.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-mw4azvk1d56r.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 700;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/*** WHO WE ARE ***/

.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin: 0px;
}

.fl-page-header-up-navigation {
	display: none !important;
}

/* FIRST ROW */

#who-we-are-hero {
	
	.fl-row-content-wrap {
		padding-top: 30px;
		padding-bottom: 100px;
	}
	
	.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: 20px;
	}
	
	.intro-body {
		margin-top: 20px;
		margin-bottom: 40px;
	}
	
	.intro-body p {
		font-size: 18px;
		line-height: 21px;
	}
	
	.intro-body p strong {
		font-family: "Geomanist Medium";
		font-weight: 400;
	}
	
	.intro-button a {
		border: solid 1px #D228F4;
		border-radius: 0px;
		width: 207px;
		height: 46px;
		text-align: center;
		font-size: 14px;
	  font-family: 'Geomanist Medium' !important;
		line-height: 20px;
		color: #411342;
		background: #F7F3F8;
		text-transform: uppercase;
		border-radius: 5px;
	}
	
	.fl-photo-content img {
		max-width: 430px;
		padding-top: 120px;
		z-index: 100;
		position: relative;
	}
	
	.fl-photo-content:before {
		content: "";
		background: url('https://media.globalfundforwomen.org/2026/08/Who-We-Are-Vector.svg');
		background-repeat: no-repeat;
		display: inline;
		position: absolute;
		z-index: 2;
		width: 700px;
		height: 1000px;
		top: 0px;
		left: -70px;
	}
	
}

/* FIRST WHO WE ARE ROW — MOBILE */

@media (max-width: 767px) {

	#who-we-are-hero {

		.fl-row-content-wrap {
			padding-top: 20px;
			padding-right: 0;
			padding-bottom: 65px;
			padding-left: 0;
			overflow: hidden;
		}


		/* =========================
		   MOBILE COLUMN ORDER
		========================= */

		.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;
			width: 100% !important;
			max-width: 100% !important;
			margin: 0 !important;
		}

		.who-hero-image-col {
			order: 1;
		}

		.who-hero-copy-col {
			order: 2;
		}

		.who-hero-image-col > .fl-col-content,
		.who-hero-copy-col > .fl-col-content {
			width: 100%;
			margin: 0 !important;
			padding: 0 !important;
		}


		/* =========================
		   FULL-BLEED HERO IMAGE
		========================= */

		.who-hero-image-col {
			position: relative;
			width: 100%;
			margin-bottom: 65px !important;
		}

		.who-hero-image-col .fl-photo {
			position: relative;
			width: 100%;
		}

		.who-hero-image-col .fl-photo-content {
			position: relative;
			display: block;
			width: 100%;
			min-height: 430px;
			text-align: center;
		}

		.who-hero-image-col .fl-photo-content img {
			position: relative;
			z-index: 3;
			display: block;
			width: 100%;
			max-width: none;
			height: auto;
			margin: 0 auto;
			padding-top: 35px;
			object-fit: contain;
		}

		/*
		 * Decorative line behind the image.
		 * It stays full-width and ends before the copy begins.
		 */
		.who-hero-image-col .fl-photo-content::before {
			content: "";
			position: absolute;
			z-index: 1;
			top: 0;
			left: 50%;
			display: block;
			width: 100%;
			height: 500px;
			background-image: url("https://media.globalfundforwomen.org/2026/08/Who-We-Are-Vector.svg");
			background-repeat: no-repeat;
			background-position: center top;
			background-size: 115% auto;
			transform: translateX(-50%);
			pointer-events: none;
		}


		/* =========================
		   COPY COLUMN GUTTERS
		========================= */

		.who-hero-copy-col {
			width: 100%;
			padding-right: 30px !important;
			padding-left: 30px !important;
		}

		.who-hero-copy-col > .fl-col-content {
			width: 100%;
		}


		/* =========================
		   EYEBROW
		========================= */

		.awarded-subheader {
			width: 100%;
		}

		.awarded-subheader p {
			margin-top: 0;
			margin-bottom: 14px;
			font-size: 14px;
			font-weight: 700;
			line-height: 18px;
		}


		/* =========================
		   MAIN HEADING
		========================= */

		.intro-header {
			width: 100%;
		}

		.intro-header h1 {
			margin-top: 0 !important;
			margin-bottom: 20px;
			font-size: 42px;
			line-height: 42px;
			text-transform: uppercase;
			overflow-wrap: normal;
			word-break: normal;
		}


		/* =========================
		   BODY COPY
		========================= */

		.intro-body {
			width: 100%;
			margin-top: 0;
			margin-bottom: 30px;
		}

		.intro-body p {
			margin-bottom: 18px;
			font-size: 16px;
			line-height: 20px;
		}

		.intro-body p:last-child {
			margin-bottom: 0;
		}

		.intro-body p strong {
			font-family: "Geomanist Medium";
			font-weight: 400;
		}


		/* =========================
		   BUTTON
		========================= */

		.intro-button {
			width: 100%;
		}

		.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;
			padding: 0 20px;
			border: 1px solid #D228F4;
			border-radius: 0;
			background: #F7F3F8;
			color: #411342;
			font-family: "Geomanist Medium" !important;
			font-size: 13px;
			font-weight: 400;
			line-height: 18px;
			text-align: center;
			text-transform: uppercase;
		}
	}
}


/* SECOND VISION ROW */

#vision-row {
	
	.fl-row-content-wrap  {
		background: url('https://media.globalfundforwomen.org/2026/08/Values-Background.png') 100% 100% no-repeat, linear-gradient(to right,#E4D0FF 55%,#411342 55%);
		background-size:
        633px auto,
        100% 100%;
	}
	
	.fl-row-content-wrap {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	
	.vision-subheader p {
		font-size: 15px;
		line-height: 18px;
		font-weight: 700; 
		margin-bottom: 15px;
	}
	
	.stats-header h2 {
		color: #411342;
		margin-top: 0px !important;
		font-size: 25px;
		line-height: 30px;
		margin-bottom: 40px;
		max-width: 540px;
	}
	
	.stats-header h2 span {
		color: inherit;
		text-decoration-thickness: 2px !important;
	}
	
	.stats-header h2 a {
	    color: inherit;
	    font-family: inherit;
	    font-weight: inherit;
	}
	
	.values-img {
		width: 40px;
		transform: rotate(14deg);
	}
	
	.values-text h3 {
		font-family: "Geomanist Medium";
		font-weight: 400 !important;
		font-size: 20px;
		line-height: 23px;
		margin-bottom: 5px;
	}
	
	.values-text p {
		margin-bottom: 30px;
		font-size: 15px;
		line-height: 18px;
	}
}

/* SECOND VISION ROW — MOBILE */

@media (max-width: 767px) {

	#vision-row {

		.fl-row-content-wrap {
			padding-top: 65px;
			padding-right: 0;
			padding-bottom: 0;
			padding-left: 0;
			overflow: hidden;
			background: #E4D0FF;
		}

		.fl-row-content {
			width: 100%;
			max-width: none;
			margin: 0;
		}


		/* =========================
		   OUTER COLUMN STRUCTURE
		========================= */

		> .fl-row-content-wrap
		> .fl-row-content
		> .fl-col-group {
			display: flex !important;
			flex-direction: column;
			width: 100%;
		}

		> .fl-row-content-wrap
		> .fl-row-content
		> .fl-col-group::before,
		> .fl-row-content-wrap
		> .fl-row-content
		> .fl-col-group::after {
			display: none !important;
		}

		.vision-content-col,
		.vision-image-col {
			float: none !important;
			width: 100% !important;
			max-width: 100% !important;
			margin: 0 !important;
		}

		.vision-content-col > .fl-col-content,
		.vision-image-col > .fl-col-content {
			width: 100%;
			margin: 0 !important;
			padding: 0 !important;
		}


		/* =========================
		   CONTENT GUTTERS
		========================= */

		.vision-content-col {
			padding-right: 30px !important;
			padding-bottom: 65px !important;
			padding-left: 30px !important;
		}


		/* =========================
		   MISSION / VISION HEADINGS
		========================= */

		.vision-subheader {
			width: 100%;
		}

		.vision-subheader p {
			margin-top: 0;
			margin-bottom: 14px;
			color: #D228F4;
			font-size: 14px;
			font-weight: 700;
			line-height: 18px;
		}

		.stats-header {
			width: 100%;
			margin-bottom: 48px;
		}

		.stats-header h2 {
			width: 100%;
			max-width: none;
			margin-top: 0 !important;
			margin-bottom: 0;
			color: #411342;
			font-size: 30px;
			line-height: 32px;
			text-transform: uppercase;
			word-break: normal;
			overflow-wrap: normal;
		}

		.stats-header h2 span,
		.stats-header h2 a {
			color: inherit;
			font-family: inherit;
			font-weight: inherit;
		}


		/* =========================
   VALUES GRID
========================= */

/*
 * The four value columns sit inside the only nested
 * column group within the main vision content column.
 */
.vision-content-col > .fl-col-content > .fl-col-group {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
	column-gap: 26px;
	row-gap: 42px;
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
}

.vision-content-col > .fl-col-content > .fl-col-group::before,
.vision-content-col > .fl-col-content > .fl-col-group::after {
	display: none !important;
}

.vision-content-col > .fl-col-content > .fl-col-group > .fl-col {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.vision-content-col > .fl-col-content > .fl-col-group > .fl-col > .fl-col-content {
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}


		/* =========================
		   VALUE ICONS
		========================= */

		.values-img {
			width: 36px;
			margin-bottom: 8px;
			transform: rotate(14deg);
		}

		.values-img img {
			display: block;
			width: 36px;
			height: 36px;
			object-fit: contain;
		}


		/* =========================
		   VALUE COPY
		========================= */

		.values-text {
			width: 100%;
		}

		.values-text h3 {
			margin-top: 0;
			margin-bottom: 5px;
			color: #411342;
			font-family: "Geomanist Medium";
			font-size: 18px;
			font-weight: 400 !important;
			line-height: 21px;
		}

		.values-text p {
			margin: 0;
			color: #411342;
			font-size: 14px;
			line-height: 17px;
		}


		/* =========================
   FULL-WIDTH IMAGE
========================= */

.vision-image-col {
	width: 100% !important;
	min-height: 0;
	aspect-ratio: 433 / 520;
	background-color: #411342;
	background-image: url("https://media.globalfundforwomen.org/2026/08/Values-Background.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}

.vision-image-col > .fl-col-content {
	width: 100%;
	min-height: 0;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}
	}
}

/* THIRD WHAT WE DO */

#what-we-do-row {
	
	.fl-row-content-wrap {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	.what-intro {
		padding-bottom: 30px;
	}
	
	.what-intro h2 {
		font-size: 35px;
		line-height: 40px;
	}
	
	.what-intro p {
		max-width: 700px;
		font-size: 18px;
		line-height: 21px;
	}
	
	.what-intro strong {
	    font-weight: 400 !important;
	}
	
	.what-col {
		background: #411342;
		max-width: 214px;
		min-height: 337px;
		border-radius: 5px;
		padding: 25px 25px 35px 25px;
	}
	
	.what-col-2, .what-col-3 {
		margin-left: 11px
	}
	
	.what-col-4 { 
		float: right;
	}
	
	.what-col-1, .what-col-4 {
		position: relative;
		z-index: 3;
	}
	
	
	.fl-node-502j1l8gfdxh:before {
		content: "";
		background: url('https://media.globalfundforwomen.org/2026/08/What-We-Do-1.png');
		width: 200px;
		height: 286px;
		background-size: contain;
		position: absolute;
		background-repeat: no-repeat;
		z-index: 1;
		bottom: 0px;
		margin-left: -130px;
	}
	
		.fl-node-502j1l8gfdxh::after {
		content: "";
		background: url('https://media.globalfundforwomen.org/2026/08/What-We-Do-2.png');
		width: 250px;
		height: 286px;
		background-size: contain;
		position: absolute;
		background-repeat: no-repeat;
		z-index: 1;
		top: 50px;
			margin-left: 750px;
	}
	
	.what-col img {
		max-height: 50px;
		object-fit: contain;
		display: none;
	}
	
	.what-col h3 {
		color: #F7F3F8;
		font-size: 22px;
		line-height: 22px;
		text-align: center;
		min-height: 70px
	}
	
	.what-col p {
		color: #F7F3F8;
		font-size: 15px;
		line-height: 18px;
		text-align: center;
	}
	
}

/* THIRD WHAT WE DO ROW — MOBILE */

@media (max-width: 767px) {

	#what-we-do-row {

		.fl-row-content-wrap {
			padding-top: 60px;
			padding-right: 30px;
			padding-bottom: 70px;
			padding-left: 30px;
			overflow: hidden;
		}


		/* =========================
		   OUTER STRUCTURE
		========================= */

		.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;
			width: 100% !important;
			max-width: 100% !important;
			margin: 0px 0px 10px 0px !important;
		}

		.fl-col-group > .fl-col > .fl-col-content {
			width: 100%;
			margin: 0 !important;
			padding: 0 !important;
		}


		/* =========================
		   INTRO
		========================= */

		.what-intro {
			width: 100%;
			padding-bottom: 35px;
		}

		.what-intro h2 {
			max-width: 280px;
			margin-top: 0;
			margin-bottom: 18px;
			font-size: 30px;
			line-height: 32px;
			text-transform: uppercase;
		}

		.what-intro p {
			max-width: none;
			margin-bottom: 18px;
			font-size: 16px;
			line-height: 20px;
		}

		.what-intro p:last-child {
			margin-bottom: 0;
		}

		.what-intro strong {
			font-family: "Geomanist Medium";
			font-weight: 400 !important;
		}


		/* =========================
		   REMOVE DESKTOP ARTWORK
		========================= */

		.what-we-do-artwork::before,
		.what-we-do-artwork::after {
			display: none !important;
			content: none;
		}


		/* =========================
		   STACKED CARDS
		========================= */

		.what-we-do-cards {
	display: flex !important;
	flex-direction: column;
	row-gap: 24px;
	width: 100%;
}

		.what-we-do-cards::before,
		.what-we-do-cards::after {
			display: none !important;
		}

		.what-we-do-cards > .fl-col {
			float: none !important;
			width: 100% !important;
			max-width: 100% !important;
			margin: 0 !important;
		}

		.what-we-do-cards > .fl-col > .fl-col-content {
			width: 100%;
			margin: 0 !important;
			padding: 0 !important;
		}


		/* =========================
		   CARD STYLING
		========================= */

		.what-col,
		.what-col-1,
		.what-col-2,
		.what-col-3,
		.what-col-4 {

			float: none !important;
			width: 100% !important;
			max-width: none;
			min-height: 0;
			margin: 0 !important;
			padding: 38px 25px;
			border-radius: 5px;
			background: #411342;
		}


		/* Icons removed on this page */

		.what-col img,
		.what-col .fl-module-photo {
			display: none !important;
		}


		.what-col h3 {
			min-height: 0;
			margin-top: 0;
			margin-bottom: 16px;
			color: #F7F3F8;
			font-size: 21px;
			line-height: 23px;
			text-align: center;
		}

		.what-col p {
			max-width: 285px;
			margin: 0 auto;
			color: #F7F3F8;
			font-size: 15px;
			line-height: 18px;
			text-align: center;
		}
	}
}

/* FOURTH TIMELINE ROW */

#timeline-row {
	
	.fl-row-content-wrap {
		padding-top: 70px;
		padding-bottom: 0px;
	}
	
	.timeline-header h2 {
		text-align: center !important;
		font-size: 35px !important;
		line-height: 40px !important;
		margin-bottom: 20px !important;
		text-transform: uppercase;
	}
	
	.timeline-header p {
		max-width: 645px;
		margin: 0 auto;
		text-align: center;
		font-size: 18px;
		line-height: 21px;
	}
	
	.grant-header h2 {
		text-align: center;
		text-transform: none;
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 20px;
		z-index: 100;
		position: relative;
		text-transform: uppercase;
	}
	
	.grant-header h2 strong {
		font-family: inherit !important;
		font-size: inherit;
		font-weight: inherit;
	}
	
	.grant-header h2 strong::before {
		content:"";
		position: absolute;
		width: 126px;
		height: 27px;
		background: #fff;
		transform: rotate(-3.5deg);
		z-index: -2;
		top: -3px;
		margin-left: -10px;
	}
	
	.grant-body h3 {
		text-align: center;
		font-size: 22px;
		line-height: 22px;
		margin: 0 auto;
		padding-bottom: 30px;
	}
	
	.grant-body h3:after {
		content:"";
		background: url('https://media.globalfundforwomen.org/2026/08/Sub-Header-Vector.svg');
		position: relative;
		display: block;
		width: 266px;
		height: 10px;
		top: 10px;
		left: 15%;
		background-repeat: no-repeat;
		background-size: contain;
	}
	
	.grant-body p {
		max-width: 345px;
		margin: 0 auto;
		text-align: center;
		font-size: 15px;
		line-height: 18px;
	}
	
	.grants-bottom {
		max-width: 600px;
		margin: 0 auto;
		padding-top: 40px;
	}
	
	.grants-bottom p {
		text-align: center;
		font-size: 18px;
		line-height: 21px;
	}
	
	.donate-button a {
		border: solid 1px #411342;
		border-radius: 0px;
		width: 207px;
		height: 46px;
		text-align: center;
		font-size: 14px;
		margin: 0 auto;
	  font-family: 'Geomanist Medium' !important;
		line-height: 20px;
		color: #ffffff !important;
		background: #411342;
		text-transform: uppercase;
		border-radius: 5px;
	}
	
	.donate-button {
		text-align: center;
		margin-top: 30px;
	}
}

/* FIFTH QUOTE ROW */

#quote-row {
	
	.fl-row-content-wrap {
		padding-top: 60px;
		padding-bottom: 70px;
	}
	
	.fl-col-content {
		background: #E0F977;
		padding: 6px;
	}
	
	.quote-image img {
		max-width: 174px;
	}
	
	.quote-image:before {
		background: url("https://media.globalfundforwomen.org/2026/08/Aida-Pattern-Background.svg");
		position: absolute;
		width: 320px;
		height: 175px;
		top: 40px;
	}
	
	.quote-mark, .quote, .quote-name {
		margin-left: 50px;
	}
	
	.quote-mark {
		width: 30px;
		padding-top: 40px;
	}
	
	.quote p {
		max-width: 700px;
		font-size: 20px;
		line-height: 23px;
		font-style: italic;
		margin-top: 30px;
		margin-bottom: 20px;
	}
	
	.quote-name p {
		font-size: 15px;
		line-height: 18px;
	}
	
	.quote-name {
	    margin-bottom: 40px;
	}
}

/* FIFTH QUOTE ROW — MOBILE */

@media (max-width: 767px) {

	#quote-row {

		.fl-row-content-wrap {
			padding-top: 10px;
			padding-right: 30px;
			padding-bottom: 70px;
			padding-left: 30px;
		}


		/* =========================
		   QUOTE PANEL
		========================= */

		.fl-col-content {
			padding: 30px 8px 20px 8px;
			background: #E0F977;
		}


		/* =========================
		   IMAGE
		========================= */

		.quote-image {
			position: relative;
			text-align: center;
			padding-top: 35px;
			margin-bottom: 30px;
		}

		.quote-image::before {
			content: "";
			position: absolute;
			top: 20px;
			left: 50%;
			width: 280px;
			height: 155px;
			background: url("https://media.globalfundforwomen.org/2026/08/Aida-Pattern-Background.svg") center center no-repeat;
			background-size: contain;
			transform: translateX(-50%);
			z-index: 1;
		}

		.quote-image img {
			position: relative;
			z-index: 2;
			display: inline-block;
			width: 160px;
			max-width: 100%;
			height: auto;
		}


		/* =========================
		   REMOVE DESKTOP OFFSETS
		========================= */

		.quote-mark,
		.quote,
		.quote-name {
			margin-left: 0;
		}


		/* =========================
		   QUOTE MARK
		========================= */

		.quote-mark {
			width: 28px;
			margin: 0 auto 24px;
			padding-top: 0;
		}

		.quote-mark img {
			display: block;
			width: 100%;
			height: auto;
		}


		/* =========================
		   QUOTE
		========================= */

		.quote {
			text-align: center;
		}

		.quote p {
			max-width: none;
			margin-top: 0;
			margin-bottom: 20px;
			font-size: 18px;
			line-height: 22px;
			font-style: italic;
		}


		/* =========================
		   NAME
		========================= */

		.quote-name {
			margin-bottom: 35px;
			text-align: center;
		}

		.quote-name p {
			margin: 0;
			font-size: 14px;
			line-height: 18px;
		}
	}
}


/* SIXTH MORE ABOUT ROW */

#more-about-row {
	
	.fl-row-content-wrap {
		padding-top: 0px;
	}
	
	.intro-body h2 {
		font-size: 35px;
		line-height: 40px;
	}
	
	.intro-body {
		max-width: 720px;
	}
	
	.intro-body p {
		font-size: 18px;
		line-height: 21px;
	}
	
	.intro-body p strong {
		font-family: "Geomanist Medium" !important;
		font-weight: 400;
	}
}

#boxed-row {
	
	.fl-row-content-wrap {
		padding-bottom: 40px;
		padding-top: 0px;
	}
	
	.boxed-col-left {
		padding: 50px 0px 70px 0px;
		border: solid 4px #00D9BF;
		border-radius: 5px;
		width: 49%;
		margin-right: 1%;
	}
	
	.boxed-col-right {
		padding: 50px 0px 70px 0px;
		border: solid 4px #00D9BF;
		border-radius: 5px;
		width: 49%;
		margin-left: 1%;
	}
	
	.boxed-icon {
		width: 98px;
		transform: rotate(15deg);
		margin: 0 auto;
	}
	
	.boxed-text h3 {
		font-size: 22px;
		line-height: 22px;
		color: #0BBBA6;
		margin-bottom: 10px;
		margin-top: 10px;
	}
	
	.boxed-text {
		max-width: 350px;
	}
	
	.boxed-text p {
		font-size: 15px;
		line-height: 18px;
	}
	
	.boxed-text a {
		font-weight: 400;
		font-size: 15px;
		line-height: 18px;
	}
	
	.boxed-text a:after {
		content: "";
		background: url('https://media.globalfundforwomen.org/2026/08/Arrow-Right.svg');
		width: 19px;
		height: 6px;
		position: relative;
		display: inline-block;
		right: -10px;
	}
	
}

/* SIXTH MORE ABOUT ROW — MOBILE */

@media (max-width: 767px) {

	#more-about-row {

		.fl-row-content-wrap {
			padding-top: 0;
			padding-right: 30px;
			padding-bottom: 35px;
			padding-left: 30px;
		}

		.intro-body {
			width: 100%;
			max-width: none;
			margin: 0;
		}

		.intro-body h2 {
			margin-top: 0;
			margin-bottom: 18px;
			font-size: 30px;
			line-height: 32px;
			text-transform: uppercase;
		}

		.intro-body p {
			margin-bottom: 18px;
			font-size: 16px;
			line-height: 20px;
		}

		.intro-body p:last-child {
			margin-bottom: 0;
		}

		.intro-body p strong {
			font-family: "Geomanist Medium" !important;
			font-weight: 400;
		}
	}


	/* =========================
	   STACKED BOXES
	========================= */

	#boxed-row {

		.fl-row-content-wrap {
			padding-top: 0;
			padding-right: 30px;
			padding-bottom: 55px;
			padding-left: 30px;
		}

		.fl-col-group {
			display: flex !important;
			flex-direction: column;
			width: 100%;
			row-gap: 24px;
		}

		.fl-col-group::before,
		.fl-col-group::after {
			display: none !important;
		}

		.fl-col-group > .fl-col {
			float: none !important;
			width: 100% !important;
			max-width: 100% !important;
			margin: 0 !important;
		}

		.fl-col-group > .fl-col > .fl-col-content {
			width: 100%;
			margin: 0 !important;
			padding: 0 !important;
		}


		/* =========================
		   BOX STYLING
		========================= */

		.boxed-col-left,
		.boxed-col-right {
			float: none !important;
			width: 100% !important;
			max-width: none;
			margin: 0 !important;
			padding: 38px 24px 42px;
			border: 4px solid #00D9BF;
			border-radius: 5px;
		}


		/* =========================
		   ICON
		========================= */

		.boxed-icon {
			width: 82px;
			margin: 0 auto 14px;
			transform: rotate(15deg);
		}

		.boxed-icon img {
			display: block;
			width: 100%;
			height: auto;
			object-fit: contain;
		}


		/* =========================
		   COPY
		========================= */

		.boxed-text {
			width: 100%;
			max-width: none;
			margin: 0 auto;
			text-align: center;
		}

		.boxed-text h3 {
			margin-top: 0;
			margin-bottom: 10px;
			color: #0BBBA6;
			font-size: 21px;
			line-height: 23px;
			text-align: center;
		}

		.boxed-text p {
			max-width: 285px;
			margin-right: auto;
			margin-bottom: 16px;
			margin-left: auto;
			font-size: 15px;
			line-height: 18px;
			text-align: center;
		}

		.boxed-text p:last-child {
			margin-bottom: 0;
		}

		.boxed-text a {
			font-size: 15px;
			font-weight: 400;
			line-height: 18px;
		}

		.boxed-text a::after {
			content: "";
			position: relative;
			right: -10px;
			display: inline-block;
			width: 19px;
			height: 6px;
			background: url("https://media.globalfundforwomen.org/2026/08/Arrow-Right.svg") no-repeat center;
			background-size: contain;
		}
	}
}

/* FINAL LOGO ROW */

#verified-logos {

	
	.fl-row-content-wrap {
		padding-top: 0px;
		padding-bottom: 60px;
	}
	
	.fl-row-content-wrap .fl-row-content {
	    max-width: 800px;
	}
	
	.intro-body {
		max-width: 720px;
		margin: 0 auto;
		padding-bottom: 10px;
	}
	
	.intro-body p {
		font-size: 18px;
		line-height: 21px;
	}
	
	.intro-body p strong {
		font-family: "Geomanist Medium" !important;
		font-weight: 400;
	}
	
	img {
		padding: 20px;
	}

}

/*** GFFW TIMELINE ***/

.gffw-timeline {
	--timeline-line-colour: #d9b9ee;
	--timeline-dot-colour: #ba87d4;
	--timeline-text-colour: #411342;

	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	padding: 60px 20px;
	color: var(--timeline-text-colour);
}

.gffw-timeline__items {
	position: relative;
}


/* TIMELINE ROW */

.gffw-timeline__item {
	display: grid;
	grid-template-columns: 130px 64px minmax(0, 1fr);
	align-items: stretch;
	min-height: 115px;
}


/* Year / label */

.gffw-timeline__year {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 20px 24px 20px 0;
	text-align: right;
	font-family: "Geomanist Medium", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: #411342;
}


/* MARKER AND LINE */

.gffw-timeline__marker {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
}

/* Continuous vertical line */

.gffw-timeline__marker::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 5px;
	background: linear-gradient(
		to bottom,
		var(--timeline-line-start, #d9b9ee),
		var(--timeline-line-end, #d0a8e7)
	);
	transform: translateX(-50%);
}

/* Start the line at the centre of the first dot */

.gffw-timeline__item.is-first .gffw-timeline__marker::before {
	top: 50%;
}

/* Continue the final line towards the future banner */

.gffw-timeline__item.is-last .gffw-timeline__marker::before {
	bottom: -55px;
}


/* Timeline dot */

.gffw-timeline__dot {
	position: relative;
	z-index: 2;
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--timeline-dot-colour);
}


/* Optional automatic colour progression */

.gffw-timeline__item:nth-child(1) .gffw-timeline__dot {
	background: #d9b9ee;
}

.gffw-timeline__item:nth-child(2) .gffw-timeline__dot {
	background: #d0a8e7;
}

.gffw-timeline__item:nth-child(3) .gffw-timeline__dot {
	background: #c697df;
}

.gffw-timeline__item:nth-child(4) .gffw-timeline__dot {
	background: #bc85d6;
}

.gffw-timeline__item:nth-child(5) .gffw-timeline__dot {
	background: #b172cd;
}

.gffw-timeline__item:nth-child(6) .gffw-timeline__dot {
	background: #a55fc3;
}

.gffw-timeline__item:nth-child(7) .gffw-timeline__dot {
	background: #994db7;
}

.gffw-timeline__item:nth-child(8) .gffw-timeline__dot {
	background: #8d3daa;
}

.gffw-timeline__item:nth-child(9) .gffw-timeline__dot {
	background: #812d9c;
}

/* Gradient line progression */

.gffw-timeline__item:nth-child(1) {
	--timeline-line-start: #d9b9ee;
	--timeline-line-end: #d0a8e7;
}

.gffw-timeline__item:nth-child(2) {
	--timeline-line-start: #d0a8e7;
	--timeline-line-end: #c697df;
}

.gffw-timeline__item:nth-child(3) {
	--timeline-line-start: #c697df;
	--timeline-line-end: #bc85d6;
}

.gffw-timeline__item:nth-child(4) {
	--timeline-line-start: #bc85d6;
	--timeline-line-end: #b172cd;
}

.gffw-timeline__item:nth-child(5) {
	--timeline-line-start: #b172cd;
	--timeline-line-end: #a55fc3;
}

.gffw-timeline__item:nth-child(6) {
	--timeline-line-start: #a55fc3;
	--timeline-line-end: #994db7;
}

.gffw-timeline__item:nth-child(7) {
	--timeline-line-start: #994db7;
	--timeline-line-end: #8d3daa;
}

.gffw-timeline__item:nth-child(8) {
	--timeline-line-start: #8d3daa;
	--timeline-line-end: #812d9c;
}

.gffw-timeline__item:nth-child(9) {
	--timeline-line-start: #812d9c;
	--timeline-line-end: #9851ad;
}


/* TIMELINE COPY */

.gffw-timeline__content {
	display: flex;
	align-items: center;
	padding: 20px 0 20px 20px;
	font-family: "Geomanist", sans-serif;
	font-size: 18px !important;
	font-weight: 400;
	line-height: 21px;
	color: #411342;
}

.gffw-timeline__content p {
	width: 100%;
	margin: 0;
	font-size: 18px;
	line-height: 21px;
}

.gffw-timeline__content p + p {
	margin-top: 12px;
}

.gffw-timeline__content a {
	color: #411342;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gffw-timeline__content strong {
	font-family: "Geomanist Medium", sans-serif;
	font-weight: 400;
}


/* FUTURE / BY 2030 BANNER */

.gffw-timeline__future {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 205px minmax(0, 2fr);
	align-items: stretch;
	min-height: 105px;
	margin-top: 28px;
	border: 1px solid #9851ad;
	border-radius: 55px;
	overflow: hidden;
	background: #9851ad;
}


/* Left white label */

.gffw-timeline__future-label {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 30px;
	background: #f5f3f8;
	font-family: "Geomanist Medium", sans-serif;
	font-size: 27px;
	font-weight: 400;
	line-height: 31px;
	color: #9851ad !important;
}

/* Arrow between the white label and purple content */

.gffw-timeline__future-label::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -25px;
	width: 50px;
	height: 50px;
	background: #f5f3f8;
	transform: translateY(-50%) rotate(45deg);
}


/* Purple content area */

.gffw-timeline__future-content {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	padding: 22px 35px 22px 50px;
}

.gffw-timeline__future-content p {
	margin: 0;
	color: #fff !important;
	font-size: 18px;
	line-height: 21px;
	font-family: "Geomanist", sans-serif;
	font-weight: 400;
}

.gffw-timeline__future-content strong {
	font-family: "Geomanist Medium", sans-serif;
	font-weight: 400;
}

.gffw-timeline__future-content .highlighted-stat {
	font-size: 30px;
}



/* End Layout CSS */

