@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
/*
.montserrat-bold {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}
.montserrat-medium {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.merriweather-bold-italic {
	font-family: "Merriweather", serif;
	font-weight: 700;
	font-style: italic;
}
.merriweather-regular {
	font-family: "Merriweather", serif;
	font-weight: 400;
	font-style: normal;
}
*/

/* 0.0 :root ============================================== */
/* global var() styles, use --hp as the prefix */
:root {
	/* fonts ===== */
	/* --gfa-basefont: normal 16px -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; */
	--gfa-basefont: 400 22px "Merriweather","Times New Roman",serif;

	--gfa-font-small-1: 0.85rem;
	--gfa-font-small-2: 0.7rem;

	--gfa-font-large-1: 1.5rem;
	/* /fonts ===== */

	/* colors ===== */
	--gfa-fgcolor-1: rgba(34,31,32,1);
	--gfa-fgcolor-2: #fff;
	--gfa-fgcolor-3: rgba(0,0,0,0.5);
	--gfa-fgcolor-4: rgba(37,110,130,1);
	--gfa-fgcolor-5: rgba(5,42,71,1);

	--gfa-link-color-1: rgba(250,230,45,1);
	--gfa-link-hovercolor-1: rgba(250,230,45,1);
	--gfa-link-color-2: var(--gfa-fgcolor-2);

	--gfa-bgcolor-1: #fff;
	--gfa-bgcolor-2: #f2f2f2;
	--gfa-bgcolor-3: #93CEE1;
	--gfa-bgcolor-4: rgba(34,31,32,1 );

	--gfa-color-alert: red;

	--gfa-nav-color-1: red;
	--gfa-nav-bgcolor-1: #fff;

	--gfa-border-color-1: rgba(220,215,202,1);
	--gfa-border-color-2: rgba(0,0,0,0.5);
	/* /colors ===== */

	/* borders ===== */
	--gfa-border-1: solid 1px var(--gfa-border-color-1);
	--gfa-border-2: solid 1px var(--gfa-border-color-2);
	--gfa-border-3: solid 1px var(--gfa-link-color-1);
	--gfa-hoverborder-3: solid 1px var(--gfa-link-hovercolor-1);
	/* /borders ===== */

	/* width/height ===== */
	--gfa-panel-width: 1030px;
	--gfa-panel-width-2: 775px;
	--gfa-form-width: 500px;

	--gfa-featimg-height: 430px;
	/* /width/height ===== */

	/* misc ===== */
	--gfa-margin-bot-1: 1rem;
	--gfa-margin-bot-2: 0.5rem;
	--gfa-margin-bot-3: 0.75rem;
	--gfa-margin-bot-4: 2rem;

	--gfa-padding-bot-1: 1rem;
	--gfa-padding-bot-2: 0.5rem;
	--gfa-padding-bot-3: 0.75rem;

	--gfa-padding-1: 2rem 0 2rem 0;
	--gfa-padding-topbot: 2rem;


	--gfa-block-gap: 1.5%;/* left and right */

	--gfa-line-height-1: 1.6;

	--gfa-transition-time-1: 150ms;
	--gfa-transition-time-2: 350ms;
	/* /misc ===== */

	--gfa-max-width-1: 600px;
}

@media (max-width: 768px) {
	:root {
		--gfa-basefont: 400 18px "Merriweather","Times New Roman",serif;
	}
}
/* /0.0 :root ============================================== */

/* 1.0 Normalize ============================================== */
* {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	box-sizing: border-box !important;
}
/* /1.0 Normalize ============================================== */

/* 2.0 Tags ========================================================= */
html,body,td,input,textarea,select,option,blockquote {
	font: var(--gfa-basefont);
}
html {
	overflow-x: hidden;/* allows objects to be absolutely positioned off the right and no scrollbar */
}
body {
	color: var(--gfa-fgcolor-1);
	background-color: var(--gfa-bgcolor-1);
}

a {
	text-decoration: none;
	color: var(--gfa-link-color-1);
}
a:hover {
	color: var(--gfa-link-hovercolor-1);
}

p {
	/* margin-bottom: var(--gfa-margin-bot-1); */
	margin-bottom: 0;
	padding-bottom: var(--gfa-padding-bot-1);
	text-wrap: pretty;
	/* border: solid 1px red; */
}
p,
li,
td {
	line-height: var(--gfa-line-height-1);
}

h1,h2,h3,h4,h5,h6,h7 {
	padding-bottom: var(--gfa-padding-bot-1);
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	text-wrap: balance;
	color: var(--gfa-fgcolor-3);
}
h2 {
	font-size: 38px;
	font-size: 1.727rem;
}
h3 {
	font-size: 42px;
	font-size: 1.909rem;
	color: var(--gfa-fgcolor-4);
}
h1.wp-block-post-title {
}

pre {
	/* do NOT use css var() here, this is mainly used for php print_r() to ensure visibility */
	color: #000;
	background-color: #fff;
}

fieldset {
	position: relative;
	margin: 0 0 var(--gfa-margin-bot-1) 0 !important;
	padding: 0.5rem 1rem 1rem 1rem;
	border: var(--gfa-border-1);
	display: inline-block;
}
fieldset.change-password {
	/* see form element width */
	max-width: var(--gfa-form-width);
	width: 100%;
}
fieldset p:last-of-type:not(:only-of-type) {
	/* can cause problems, be cautious about using */
	margin-bottom: 0;
	padding-bottom: 0;
}
legend {
	font-size: var(--gfa-font-small-1);
	padding: 0 0.5rem 0 0.5rem;
	margin: 0 0.5rem 0 0.5rem;
	/* border: solid 1px red; */
}

blockquote {
	border: 0;
	margin: 0 0 var(--gfa-margin-bot-1) 0;
	padding: 0 1.5rem 0 1.5rem;
	/* border: solid 1px #000; */
}
blockquote p:last-of-type:not(:only-of-type) {
	margin: 0px;
	padding: 0;
}
blockquote::after {
	content: "";
	clear: both;
	display: table;
}
blockquote cite {
	float: right;
}
blockquote cite::before {
	content: '\2013 \00A0';
}

hr {
	margin: 0 0 var(--gfa-margin-bot-1) 0;
	border: 0 !important;
	border-top: solid 1px var(--gfa-border-color-2) !important;
}

/* Transitions ===== */
a {
	transition: all var(--gfa-transition-time-1) ease-in-out;
}
/* 2.0 Tags ========================================================= */

/* 3.0 Lists ========================================================= */
ul,
ol {
	margin: 0 0 var(--gfa-margin-bot-1) 0.5rem;
	padding: 0 0 0 0;
}
li {
	margin: 0 0 0 0.5rem;
}

li > ul,
li > ol {
	margin: 0 0 0 0.5rem;
}

ul.wp-block-post-template,
ul.wp-block-post-template li {
	margin: 0;
}
li .wp-block-post-featured-image {
	justify-content: left;
}
/* /3.0 Lists ========================================================= */

/* 4.0 Form ================================================================= */
.ck-editor,
input,
textarea,
select {
	color: var(--gfa-fgcolor-1);
}

.ck-editor,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea {
	padding: 0.8rem 1rem;
	max-width: var(--gfa-form-width);
	width: 100%;
	background-color: var(--gfa-bgcolor-1);
	border: var(--gfa-border-1);
	border-radius: 0;
}
.ckeditor:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
textarea:focus {
	border: var(--gfa-border-1);
}

select {
	width: auto;
}

label {
	/* display: block; */
	/* see hp-shared.js move_form_labels() */
	display: none;
	margin: 0 0 0 0;
}

/* move form labels, see ../js/shared.js for implementation ========== */
form div {position: relative;}
.label-pos input[type="text"],
.label-pos input[type="password"],
.label-pos textarea {
	padding-top: 1em;
}
.label-pos > label {
	position: absolute;
	top: 0.5em;
	left: 0.3em;
	z-index: 10;
	color: var(--gfa-fgcolor-3);
	transition: all 200ms ease-in-out;
	cursor: text;
}
.label-pos-focused > label {
	top: 0;
	left: 0.5em;
	font-size: var(--gfa-font-small-2);
	color: var(--gfa-fgcolor-3);
}
/* /move form labels, see ../js/shared.js for implementation ========== */

/* form2 ===== */
.form2 {
	margin-bottom: 1.5rem;
xborder: solid 1px red;
}

.form2 fieldset {
	display: inline-block !important;
}
.form2 fieldset > p {
	font-size: var(--gfa-font-small-1);
}

.form2 div,
.form2 fieldset > div,
fieldset.change-password .element-wrapper-password {
	display: flex;
	flex-direction: column;

	position: relative;
	padding: 0px 0px 8px 0px;
}
.form2 div > label,
.form2 fieldset > div > label {
	padding: 0px 0px 3px 0px;
xborder: solid 1px red;
}

.form2 > div > span,
.form2 fieldset > div > span {
	display: flex;
	flex-direction: row;
}

.form2 div > label > span,
.form2 fieldset > div > label > span {
}

.form2 div > span > label,
.form2 fieldset > div > span > label {
	display: inline-block;
	padding-right: 10px;
}
.form2 div > span > div,
.form2 fieldset > div > span > div {
}
.form2 .required-after:after {
	content: '*';
	display: inline-block;
	padding-left: 3px;
}
/* /form2 ===== */

.input-datetime-container input[type="date"] {
	max-width: calc(var(--gfa-form-width)/2);
}
.input-datetime-container select {
	margin-left: 0.5em;
}

.input-password-container {
}
.pswd-container {
	position: relative;
	width: 100%;
	max-width: var(--gfa-form-width);
	/* display: inline-block; */
}
.pswd-container input {
	padding-right: 2.5em;
}
.pswd-container .show-pswd {
	position: absolute;
	top: 2px;
	right: 1em;
	z-index: 20;
	transform: translate(0,50%) scale(1.75);

	padding-left: 0.5em;
	color: rgba(0,0,0,0.50) !important;
	cursor: pointer;
}
.pswd-container .show-pswd.active {
	color: rgba(0,0,0,1) !important;
}
.pswd-container .show-pswd:after {
	content: '\01F441';
}

/* hide recaptcha badge */
.grecaptcha-badge {visibility: hidden;}
.recaptcha-terms {
	display: none;
	font-size: var(--gfa-font-small-1);
}
/* /4.0 Form ================================================================= */

/* 4.5 Blocks ================================================================= */
.wp-site-blocks,
body > .is-root-container,
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align="full"] > .wp-block-group,
.is-root-container .wp-block[data-align="full"] > .wp-block-cover {
	padding-left: 0;
	padding-right: 0;
}

/* Blocks | Columns ===== */
.wp-block-columns:where(.is-layout-flex) {
	gap: 0;
	column-gap: var(--gfa-block-gap);
}

.wp-block-columns {
	margin-bottom: 0;
	/* border: solid 1px red; */
}

/* .wp-block-columns > .wp-block-column {border: solid 1px #000;} */
/* .wp-block-columns > .wp-block-column:nth-child(odd) {background: red;} */
/* .wp-block-columns > .wp-block-column:nth-child(even) {background: green;} */

/* /Blocks | Columns ===== */

/* Blocks | Navigation ========== */

.wp-block-navigation__container {
	/* gap: var(--wp--style--block-gap,2em); */
	gap: 0;
}
.wp-block-navigation__container li {
	margin: 0;
}
.wp-block-navigation__container a.wp-block-navigation-item__content,
a.wp-block-navigation-item__content {
	padding: 5px 10px;
	color: var(--gfa-nav-color-1);
	/* border: solid 1px red; */
}
.wp-block-navigation__submenu-container,
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
	padding-right: 10px;
	background-color: var(--gfa-nav-bgcolor-1);
	border: var(--gfa-border-2);
}
.wp-block-navigation__submenu-container a,
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container a {
	/* padding: 0; */
	/* border: solid 1px red; */
}

/* Blocks | Navigation | header ===== */
.topnav {
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 1000;
	/* border: solid 10px red; */
}

/* wp-block-navigation__responsive-container is-menu-open has-modal-open */
html:not(.has-modal-open) .topnav .wp-block-navigation .has-child:where(:not(.open-on-click)) > .wp-block-navigation__submenu-container {
	margin-top: 0.5rem;
	transition: opacity var(--gfa-transition-time-1) linear, margin var(--gfa-transition-time-1) ease-in-out;
}
html:not(.has-modal-open) .topnav .wp-block-navigation .has-child:where(:not(.open-on-click)):hover > .wp-block-navigation__submenu-container {
	margin-top: 0;
}
.topnav .wp-block-navigation .wp-block-navigation__container > .has-child:last-child > .wp-block-navigation__submenu-container {
	left: initial;
	right: 0;
}
.topnav .wp-block-navigation .wp-block-navigation__container .has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
	left: auto !important;
	right: 100% !important;
}
.topnav ul.wp-block-navigation__container > li:last-child > a.wp-block-navigation-item__content {
	padding-right: 0;
}

.topnav .wp-block-navigation-submenu a {
	padding-right: 0;
}
.topnav .wp-block-navigation-submenu svg {
	margin-left: 3px;
}

/* secure a navigation item, see also:
wp-content\themes\hotpepper_v5\functions.php security_system_hp5()
resets to display: flex
*/
.wp-block-navigation-item.private {
	display: none;
}

.topnav .wp-block-navigation__responsive-container-open svg {
	display: none;
}
.topnav .wp-block-navigation__responsive-container-open:after {
	content: '\002630';
	font-size: var(--gfa-font-large-1);
}

.wp-block-navigation__responsive-dialog > br {
    display: none
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{
	padding-top: 0 !important;
}
/* /Blocks | Navigation | header ===== */

/* Blocks | Navigation | footer ===== */
.footernav li:first-child a.wp-block-navigation-item__content {
	padding-left: 0;
}
/* /Blocks | Navigation | footer ===== */

/* /Navigation ========== */

/* /4.5 Blocks ================================================================= */

/* 5.0 Panel Structure ===================================================== */
.panel {
	max-width: var(--gfa-panel-width) !important;
	margin: 0 auto 0 auto;
	/* border: solid 1px red; */
}
@media (max-width: 1080px) {
	body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) .panel,
	.panel {
		margin: 0 3% 0 3% !important;
	}
}
.panel-2 {
	max-width: var(--gfa-panel-width-2) !important;
	margin: 0 auto 0 auto;
	/* border: solid 1px red; */
}
@media (max-width: 800px) {
	body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) .panel-2,
	.panel-2 {
		margin: 0 3% 0 3% !important;
	}
}
/* /5.0 Panel Structure ===================================================== */

/* 6.0 Header ============================================================= */
.sign-in-out-container,
.sign-in-out-container a {
	color: var(--gfa-fgcolor-2);
	background-color: var(--gfa-bgcolor-2);
}
.featured-image-wrapper {
	position: relative;
}
.page-title-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.page-title h1 {
	color: white;
	font-size: 3.2rem;
	text-align: center;
	padding-bottom: 0;
	font-weight: 400;
	text-transform: none;
	text-shadow: #000000A6 8px 8px 15px;
}
/* /6.0 Header ============================================================= */

/* 7.0 Page ============================================================== */
.entry-content.wp-block-post-content {
	margin: 0;
}

.wp-block-image {
	margin: 0;
}
.wp-block-image.featured,
.wp-block-post-featured-image {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: var(--gfa-featimg-height);
	overflow: hidden;
	/* border: solid 1px red; */
}

.wp-block-post .wp-block-post-featured-image {
	height: auto;
	max-height: none;
	/* border: solid 10px red; */
}

.wp-block-image.featured img,
.wp-block-post-featured-image img {
	width: 100%;
	height: auto;
	max-width: 100%;
}
.featured-image-404,
.featured-image-archive,
.featured-image-search {
	background: url("/wp-content/uploads/cat-fred.jpg") no-repeat center;
	background-size: cover;
	min-height: var(--gfa-featimg-height);
}

.wp-block-image.featured {
	position: relative;
}
.wp-block-image.featured figcaption {
	/* display: none; */
	position: absolute;
	bottom: 2em;
	left: 0px;
	z-index: 0;
}

.wp-block-cover,
.wp-block-cover-image {
	min-height: var(--gfa-featimg-height);
}

.components-modal__screen-overlay {
  display: none !important;
}/* /7.0 Page ============================================================== */

/* 8.0 Footer ============================================================= */
.footer-container {
	font-size: var(--gfa-font-small-1);
}
.footernav {
}
.footer-copyright {
}
/* /8.0 Footer ============================================================= */

/* 9.0 Buttons ============================================================= */
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):not(.wp-block-navigation-submenu__toggle),
.button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	padding: 5px 20px 5px 20px;
	font: var(--gfa-basefont);
	text-align: center;
	text-decoration: none !important;
	line-height: 1 !important;
	opacity: 1;
	color: var(--gfa-link-color-1);
	background: transparent;
	border: var(--gfa-border-3);
	border-radius: 0;
	transition: opacity 0.15s linear;
	cursor: pointer;
}
button:focus:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):not(.wp-block-navigation-submenu__toggle),
button:hover:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):not(.wp-block-navigation-submenu__toggle),
.button:focus,
.button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
	color: var(--gfa-link-hovercolor-1);
	border: var(--gfa-hoverborder-3);
}

.bn-back,
.js-back {
	text-decoration: none !important;
}
.bn-back:before,
.js-back:before {
	/* content: '\25C0';
	padding-right: 5px; */
}

.read-more {
	padding-left: 1em;
}
/* /9.0 Buttons ============================================================= */

/* 10.0 Table =============================================================== */
/* /10.0 Table =============================================================== */

/* 11.0 Alignments ========================================================= */
/* /11.0 Alignments ========================================================= */

/* 12.0 Misc =============================================================== */
.alert,
.error,
.required,
.required-after:after {
	color: var(--gfa-color-alert);
}
.alert.sm,
.alert.sm *,
.error.sm,
.error.sm *,
.required.sms,
.required.sms * {
	font-size: var(--gfa-font-small-1);
}

.ct-separator:before {
	display: inline-block;
	content: '>';
	content: '\203A';
}

/* showhide generic mechanism, see assets/js/hp-global.js showhide() */
/* .showhide-container {} */
.showhide-trigger {
	width: fit-content;
}
.showhide-content {
	display: none;
}

/* /12.0 Misc =============================================================== */

/* 13.0 Blog =============================================================== */
.post-meta {
}
/* /13.0 Blog =============================================================== */

/* 14.0 RSS Feed ============================================================ */
/* /14.0 RSS Feed ============================================================ */

/* 15.0 Dashboard =============================================================== */
/* /15.0 Dashboard =============================================================== */

/* 16.0 Print =============================================================== */
/* /16.0 Print =============================================================== */



.section {
}

.bg-2 {
	background-color: var(--gfa-bgcolor-2);
}
.bg-3 {
	background-color: var(--gfa-bgcolor-3);
}
.bg-4 {
	background-color: var(--gfa-bgcolor-4);
}

/* .section.header =================================================== */
#header {
	padding: var(--gfa-padding-1);
	color: var(--gfa-fgcolor-2);
	background: url("/wp-content/uploads/GFA_hero.jpg") no-repeat top left;
	background-size: cover;
	/* background-attachment: fixed; */
	/* border: solid 1px black; */
}

.logo-nav {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 16px;
	font-size: 0.727rem;
	/* border: solid 1px white; */
}
.logo-nav.wp-block-columns {
	align-items: center !important;
}
.logo-nav a {
	scroll-behavior: smooth;
}
/*
@media (max-width: 740px) {
	.logo-nav .wp-block-navigation__responsive-container-open:not(.always-shown) {
		display: flex;
	}
	.logo-nav .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
		display: none;
	}
}
 */
/* @media (max-width: 740px) {
	.logo-nav .wp-block-column {
		width: 100%;
	}
} */

@media (max-width: 870px) {
	.logo-nav {
		text-align: center;
	}
	.wp-block-navigation {
		/* justify-content: flex-start; */
		justify-content: center;
	}
}
@media (max-width: 400px) {
	.wp-block-navigation {
		font-size: 12px;
		font-size: 0.545;
	}
}
.gfa-hero-logo {
	/* border: solid 1px white; */
}
.gfa-hero-text {
	max-width: 1020px;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
	text-shadow: 0px -4px 39px rgba(0, 0, 0, 0.8);
	/* border: solid 1px yellow; */
}
.gfa-hero-pointer {
	font-size: 4rem;
}
.gfa-hero-pointer:after {
	content: "\f107";
	font-family: FontAwesome;
	color: var(--gfa-fgcolor-2);
}
@media (max-width: 600px) {
	.gfa-hero-text {
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.gfa-hero-text {
		font-size: 1.5rem;
	}
}
/* /.section.header =================================================== */

/* .section.about =================================================== */
#about {
	/* border: solid 1px red; */
}
#about-gfa {
	padding: var(--gfa-padding-1);
	/* text-align: center; */
}
#about-gfa p:last-of-type,#about-gfa p:only-of-type {
	/* padding-bottom: 0; */
}

#members {
	padding: var(--gfa-padding-1);
}
#members .owl-stage {
	display: flex;
	align-items: center;
}
#members .owl-stage-outer-container {
	padding-top: 50px;
	display: flex;
	/* border: solid 1px red; */
}
#members .owl-stage-outer-container button {
	font-family: FontAwesome;
	font-size: 4rem;
	font-weight: 100;
	padding: 0;
	color: rgba(108,108,120,1);
	border: 0;
}
#members .owl-stage-outer-container .owl-prev:before {
	content: "\f104";
	padding-right: 50px;
}
#members .owl-stage-outer-container .owl-next:before {
	content: "\f105";
	padding-left: 50px;
}
#members .owl-item {
	float: none;
	height: 100%;
}
#members .owl-item figure {
	width: 100%;
}
#mission {
	padding: var(--gfa-padding-1);
	/* text-align: center; */
}
/* /.section.about =================================================== */

/* .section.focus =================================================== */
#focus {
	/* border: solid 1px blue; */
}
#focus h3 {
}
#focus .wp-block-media-text__media {
	text-align: center;
}
@media (max-width: 600px) {
	#focus .wp-block-media-text__media img {
		max-width: 335px;
	}
}
#focus .wp-block-media-text {
	margin-bottom: var(--gfa-margin-bot-4);
	background-color: var(--gfa-bgcolor-2);
}
#focus .wp-block-media-text__content {
	padding-top: var(--gfa-padding-topbot);
	/* padding-bottom: var(--gfa-padding-topbot); */
}
@media (max-width: 1100px) {
	#focus .wp-block-media-text figure {
		padding: 8% 0 8% 8%;
		height: 100%;
		width: 100%;
	}
	#focus .wp-block-media-text figure img {
		max-width: unset;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	#focus .wp-block-media-text.has-media-on-the-right figure {
		padding: 8% 8% 8% 0;
		height: 100%;
	}
}
@media (max-width: 600px) {
	#focus .wp-block-media-text figure,
	#focus .wp-block-media-text.has-media-on-the-right figure {
		padding: 8% 8% 0;
	}
}
/* /.section.focus =================================================== */

/* .section.approach =================================================== */
#approach {
	/* border: solid 1px green; */
}
#approach h3 {
	font-family: "Merriweather", serif;
	font-weight: 700;
	font-style: italic;
	font-size: 36px;
	font-size: 1.636rem;
	color: var(--gfa-fgcolor-5);
}
@media (max-width: 600px) {
	#approach .wp-block-media-text__content {
		padding-top: var(--gfa-padding-topbot);
		padding-bottom: var(--gfa-padding-topbot);
	}
}
#approach .wp-block-media-text__media {
	text-align: center;
}
#approach .wp-block-media-text__media img {
	max-width: 335px;
}
#approach .wp-block-media-text__content p:last-of-type {
	padding-bottom: 0;
}
#approach .wp-block-media-text {
	padding: var(--gfa-padding-1);
	font-family: "Montserrat", sans-serif;
	/* font-weight: 500; */
	padding-bottom: 0;

}
/* #approach .wp-block-media-text:nth-child(even) {
	border: solid 10px red;
}
#approach .wp-block-media-text:nth-child(odd) {
	border: solid 10px blue;
} */

/* /.section.approach =================================================== */

/* .section.resources (difference) =================================================== */
#resources {
	/* border: solid 1px yellow; */
}
#gfa-difference {
	padding: var(--gfa-padding-1);
}
#gfa-difference h3 {
	font-size: 1.3rem;
	/* font-size: 32px; */
}
#gfa-difference .wp-block-column figure {
	padding: 0 0 var(--gfa-padding-bot-1) 0;
	text-align: center;
}
#gfa-difference .wp-block-column figure img {
	width: 100%;
	max-width: 335px;
}

@media (max-width: 1080px) {
	#gfa-difference {
		font-size: 18px;
	}
	#gfa-difference h3 {
		font-size: 1rem;
		padding-bottom: 5px;
	}
	#gfa-difference p {
		font-size: 16px;
		margin-bottom: 12px;
	}
}

#join-us {
	padding: var(--gfa-padding-1);
	color: var(--gfa-fgcolor-2);
	background: url("/wp-content/uploads/footer-blue-gradient-1.jpg") no-repeat top left;
	background-size: cover;
}
#join-us h2 {
	font-size: 42px;
	color: var(--gfa-fgcolor-2);
}
/* /.section.resources (difference) =================================================== */

/* .section.footer =================================================== */
#footer {
	padding: var(--gfa-padding-1);
	font-family: "Montserrat", sans-serif;
	/* font-size: 24px;
	font-size: 1.091rem; */
	text-align: center;
	color: var(--gfa-fgcolor-2);
	/* border: solid 1px brown; */
}
#footer a {
	color: var(--gfa-link-color-2);
}
/* /.section.footer =================================================== */
