/*
Theme Name: GNFRD Custom Theme
Theme URI: 
Description: 
Author: 
Author URI: 
Version: 2.0.20
*/

.chromeframe {position: absolute; top: 0;}

/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* A Linux- and Windows-friendly sans-serif font stack: http://prospects.mhurrell.co.uk/post/updating-the-helvetica-font-stack */
body {
	font: 16px;
	background: #fdfaf4;
}

/* Using local fonts? Check out Font Squirrel's webfont generator: http://www.fontsquirrel.com/tools/webfont-generator */

/* We like off-black for text. */
body, select, input, textarea {color: #424141;}

a {color: #ab202b; text-decoration: none;}
a:hover {color: #5f0a10;}

.entry a {
	font-weight: 700;
}

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #fcd700; color: #fff; text-shadow: none;}
::selection {background: #fcd700; color: #fff; text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcd700;}

ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }


/* And here begins the WordPress fun.
-------------------------------------------------------------------------------*/

body {
	font-family: 'Open Sans', sans-serif;
	color: #424141;
}

h1 {
	
}

h2 {
		text-transform: uppercase;
		font-size: 1.5em;
		font-weight: 700;
		line-height: 1.5em;
		margin:0 0 1.5em 0;
	}
	
h3 {
		font-size: 1.5em;
		line-height: 1.5em;
		margin-bottom: 1.75em;
		color: #636363;
	}




p {
		line-height: 150%;
		margin-bottom: 1.25em;
	}
	
	
.entry ul {
	list-style: disc;
	margin-left: 20px;
}


.entry ul.gnfrd-single-photos, .entry ul.list-management {
	margin-left: 0;
	list-style: none;
}

.entry ul.gnfrd-single-photos li {
	margin-bottom: 0;
}

.entry ul li {
	margin-bottom: 15px;
}


header {
	position: relative;
	background: #b71125;
	color: #fff;
	text-align: left;
}

.topline {
	padding: .75em;
	margin-right: 40px;
}

header h1 {
	 text-transform: uppercase;
    font-size: 1.75em;
    font-weight: 700;
    line-height: 1em;
}
header h1 a {
	color: #fff;
}

header h1 a:hover {
	color: #fff;
	text-shadow: 1px 1px 1px #000
}

.navbar {
	background: #252525;
	position: relative;
	display: none;
}

.mainnav li a {
	font-weight: 700;
}


.aligncenter {
	margin: auto;
	text-align: center;
	display: block;
}








/* === SPLIT MENU CONTAINER === */
.split-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 71em;
  margin: auto;
}

/* === LEFT AND RIGHT NAVIGATION GROUPS === */
.nav-left,
.nav-right {
  display: flex;
  gap: 1.5rem;
}

/* === TOP-LEVEL MENU LIST === */
.menu-left,
.menu-right {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}

.menu-left li,
.menu-right li {
  position: relative;
}

/* === TOP-LEVEL MENU LINKS === */
.menu-left a,
.menu-right a {
  display: block;
  padding: 1em;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.menu-left a:hover,
.menu-right a:hover {
  color: #ccc;
}

/* === DROPDOWNS: BASE === */
.menu-left .sub-menu,
.menu-right .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 220px;
  z-index: 999;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.25em;
  font-weight: bold;
  text-align: left;
}

/* === SHOW DROPDOWN WHEN OPEN === */
.menu-left li.open > .sub-menu,
.menu-right li.open > .sub-menu {
  display: block;
}

/* === SUB-SUBMENUS (3rd level) === */
.menu-left .sub-menu .sub-menu,
.menu-right .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  text-align: left;
}

/* === DROPDOWN LINKS === */
.menu-left .sub-menu li a,
.menu-right .sub-menu li a {
  padding: 0.75em 1em;
  font-size: .85rem;
  font-weight: 600;
  background: #444;
  color: white;
  text-transform: none;
  white-space: nowrap;
}

.menu-left .sub-menu li a:hover,
.menu-right .sub-menu li a:hover {
  background: #555;
}

/* === CARET ICON FOR PARENT MENU ITEMS === */
.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 0.6em;
  margin-left: 0.25em;
}

/* === MOBILE FRIENDLY ADJUSTMENTS (OPTIONAL) === */
@media screen and (max-width: 992px) {
  .menu-left,
  .menu-right {
	flex-direction: column;
	gap: 0;
  }

  .menu-left .sub-menu,
  .menu-right .sub-menu {
	position: static;
	background-color: #222;
	padding-left: 1em;
  }

  .menu-left .sub-menu .sub-menu,
  .menu-right .sub-menu .sub-menu {
	padding-left: 1em;
  }

  .split-menu {
	flex-direction: column;
	align-items: stretch;
  }

  .site-logo {
	margin: 1em auto;
  }
}



/* Collapse menu items vertically for mobile */
@media screen and (max-width: 992px) {
  .mobilenav .menu-item-has-children > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 1.25em;
  }

  .mobilenav li {
	position: relative;
  }

  .mobilenav .dropdown-menu {
	display: none;
	background: #222;
	padding-left: 1rem;
  }

  .mobilenav li.open > .dropdown-menu {
	display: block;
  }

  .mobilenav .dropdown-menu .dropdown-menu {
	padding-left: 1rem;
  }

  .mobilenav a {
	display: block;
	padding: 1em;
	color: white;
	text-decoration: none;
	border-bottom: 1px solid #333;
  }

  .mobilenav a:hover {
	background: #444;
  }

  .mobilenav .menu-item-has-children > a::after {
	content: " ▼";
	font-size: 0.6em;
	margin-left: auto;
  }
  
  .mobilenav .menu-item-has-children.open > .sub-menu {
	display: block;
  }
}




.home-2col .x-column:first-child h4 {
	font-size: 1.35em;
	background: #363636;
	color: #fff;
	text-align: center;
	padding: 1em;
	margin: 0;
	line-height: 1em;
}

.home-2col .x-column:nth-child(2) h4 {
	font-size: 1.35em;
	background: #626262;
	color: #fff;
	text-align: center;
	padding: 1em;
	margin: 0;
	line-height: 1em;
}

.entry ul.list-recentposts {
	list-style: none;
	margin: 0;
}

.list-recentposts li {
	margin-bottom: .5em;
}

.list-recentposts li a {
	padding: .75em;
	display: block;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.list-recentposts li a:hover {
	background-color: #feeccc;
}

.list-recentposts li h5 {
	font-size:1.25em;
	line-height: 1.35em;
	font-weight: 700;
}

a .list-post-excerpt {
	color: #424141;
	font-weight: 400;
}

.list-recentposts li p {
	margin-bottom: 0;
}


.morenews {
	text-transform: uppercase;
	font-size: .75em;
}

#mapp0_layout {
	margin: 0;
}

footer {
	background: #363636;
	color: #c8c8c8;
}

footer strong {
	color: #fff;
}


.page-id-144 #cs-content .x-feature-box-text, .page-id-144 #cs-content .x-feature-box-graphic{
	margin: 0;
}

.subnav-bar {
	background: #fdca68;
	padding: 1em;
}

.subnav-bar a {
	text-transform: uppercase;
	font-size: .85em;
}

.subnav-bar li:first-child a, .subnav-bar li:first-child {
	color: #6d6d6d;
}



.subnav-bar li {
	display: inline-block;
}

.subnav-bar li:after {
	content: " |";
	color: #6d6d6d;
}

.subnav-bar li:first-child:after, .subnav-bar li:last-child:after {
	content: "";
}

.subnav-bar ul {
	margin: auto;
	max-width: 73em;
}


.white-popup {
  position: relative;
  background: #fff;
  padding: 20px;
  width: auto;
  max-width: 800px;
  margin: 20px auto;
}



/* Float Shadow */
.hvr-float-shadow {
  display: block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 90%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.team-member a:hover .hvr-float-shadow, .team-member a:focus .hvr-float-shadow, .team-member a:active .hvr-float-shadow {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.team-member a:hover .hvr-float-shadow:before, .team-member a:focus .hvr-float-shadow:before, .team-member a:active .hvr-float-shadow:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

.team-member a:active, .team-member a:focus {
	outline: none;
}


/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-rotate:hover, .hvr-rotate:focus {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}


#titletable {
	display: none
}


.home-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}











/* mobile menu
-------------------------------------------------------------------------------*/



.opener {
	position: absolute;
    display: block;
    width: 44px;
    height: 54px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    z-index: 1001;
    top:20px;
    right:20px;
}

.opener:hover {
	overflow: hidden;
    white-space: nowrap;
    color: transparent;
    cursor: pointer;
}
.opener span {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}

.opener span, .opener span::before, .opener span::after {
    position: absolute;
    display: inline-block;
    height: 5px;
    width: 34px;
    background: #ffffff;
}

.opener span::after {
    top: 9px;
}

.opener span::before {
  /* menu icon top line */
  top: -9px;
}

.opener span::before, .opener span::after {
    content: '';
    right: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}

.opener.active span {
  /* hide line in the center */
  background: rgba(255, 255, 255, 0);
}
.opener.active span::before, .opener.active span::after {
  /* keep visible other 2 lines */
  background: white;
}
.opener.active span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.opener.active span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}


.mobilenav {
	display: block;
}

.cbp-spmenu {
    background: #252525;
    position: fixed;
    padding-top: 3em;
    
}
 
.cbp-spmenu h3 {
    color: #fff;
    font-size: 1.9em;
    padding: 31px;
    margin: 0;
    font-weight: 300;
    background: #1d8129;
}
 
.cbp-spmenu a {
    display: block;
    color: #fff;
    font-size: .85em;;
    font-weight: 700;
}
 
.cbp-spmenu a:hover {
    background: #434343;
	color:#fff;
	text-decoration:none;
}
 
.cbp-spmenu a:active {
    background: #afdefa;
    color: #fff;
}
 
/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	padding: .5em .5em .5em 1em;
	text-transform: uppercase;
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.cbp-spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
}

.cbp-spmenu-right {
	right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#closeRightPush {
	color: #fff;
	cursor:pointer;
	text-align: right;
	padding: .75em;
	margin-right: .5em;
}


#showRightPush {
	float: right;
	margin-right: .75em;
}


.mobilenav .dropdown-menu {
	background: #434343;
}


/* SUB SUB MENU */




#cbp-spmenu-s1 ul ul {
  padding-left: 1em;
  background: #333;
}

#cbp-spmenu-s1 ul ul a {
  font-weight: 400;
  font-size: 0.8em;
  padding-left: 1.5em;
}

#cbp-spmenu-s1 li.has-sub > a {
  position: relative;
  padding-right: 2em;
}



body.single #x-section-33 .x-column  {
	
	margin: auto;
	float: none;
}

#x-section-33 {
	overflow: hidden;
	clear: both;
}

.prevpost a, .nextpost a {
	background-color: #fff;
	border: 1px solid rgba(0,0,0,0.125);
    border-radius: 3px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
    padding: .5em 1em;
    display: inline-block;
}


body.single .navigation {
    float: none;
    clear:both;	
    font-size: .75em;
    overflow: hidden;
    margin-bottom: 3em;
}

body.single .navigation .prevpost {
	float: left;
}

body.single .navigation .nextpost {
	float: right;
}

body.single #cs-content ul {
	margin-bottom: .75em;
	list-style: disc;
}

body.single ul.dropdown-menu, body.single ul.touchnav {
	margin-bottom: .75em;
	list-style: none
}

body.single article ul li {
	margin-bottom: .75em;
	margin-left: 30px;
}



.ico-pdf {
	padding: 5px 0 5px 40px;
	background: url('_/img/ico-pdf.png') left no-repeat;
}

body.home #x-section-1, body.page-id-119 #x-section-1, body.single-post #x-section-1 { display: block;}



.nav-tel, .nav-twitter,.nav-fb, .nav-insta {
vertical-align: sub;
}

.nav-ico, .footer-social li.nav-ico a {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
width: 24px;
height: 20px;
opacity: .7;
padding: 0;
display: block;
}

.nav-tel {
background: url('_/img/ico-navsprite.png');
width: 23px;
}

.nav-fb, .footer-social li.nav-fb a {
background: url('_/img/ico-navsprite.png')-23px 0;
}

.nav-fb {
	width: 21px;
}
.nav-twitter {
	width: 24px;
}

#menu-item-11259 a, #menu-item-11261 a, #menu-item-11262 a {
padding: 14px 5px;	
}



.nav-twitter, .footer-social li.nav-twitter a {
background: url('_/img/ico-navsprite.png') -46px 0;
}

.nav-insta, .footer-social li.nav-insta a {
background: url('_/img/ico-navsprite.png') -70px 0;
width: 22px
}



.nav-ico:hover, .footer-social li.nav-ico a:hover {
opacity: 1;
background-color: none;
}


.mainnav li a, .footer-social li a {
padding: 1.15em .5em;
font-size: .85em;
color: #fff;
display: block;
text-transform: uppercase;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}


ul.mainnav, body.single ul.mainnav {
margin: 0 auto 0 auto;
max-width: 76em;
padding: 0;
list-style: none;
}

.mainnav li, .footer-social li {
display: inline-block;
margin-right: .75em;
}

.mainnav li:last-child, .mainnav li.nomarg {
margin-right: 0;
}




.mainnav li.has-sub a i {
vertical-align: top;
}

.mainnav li.has-sub {
position: relative;
}












footer .container {
padding: 2em;
}

footer .column1, footer .column2, footer .column3, footer .column4 {
margin-bottom: 1em;
}

#cs-content .x-section .x-container.home-mission {
padding: 1em!important;
}



.remodal #gform_fields_5 {
text-align: left;
}

.remodal #gform_fields_5 .gf_left_half {
padding: 0 15px 0 0;
margin-bottom: 15px;
}

.remodal #gform_fields_5 .gf_right_half {
padding: 0 0 0 15px;
margin-bottom: 15px;
}
.remodal #gform_fields_5 label {
text-align: left;
}
.remodal #gform_fields_5 input[type=text] {
padding: 10px;
}

.remodal h6 {
font-size: 1.75em;
margin-bottom: 1em;
}


.feature-left, .feature-right {
float:none;width:100%;
}

.feature-left {
clear: both;
}


.white-popup .staffpic {
text-align: center;
margin-top: 0px;
}

.white-popup.staffbio h2 {
text-align: center;
}


.list-management {
text-align: center;
margin: auto;
}

.list-management li {
display: inline-block;
vertical-align: top;
width: 46%;
margin-bottom: 1em;
}

.list-management li a {
display: block;
padding: 1em;
text-align: center;
color: #424141;
}

.list-management li a img {
margin-bottom: 1em;
}


.list-management li a:hover {
background: #fff;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}

.list-management li h4 {
font-size: 1em;
text-transform: uppercase;
margin-bottom: 0;
}

.staff-position {
margin-bottom: .5em;
color: #a4a4a4;
}

.biolink {
color: #ab202b;
}


.single-post h2 i {
font-size: .5em;
text-transform: none;
color: #808080;
}




/* clear fix */
	.gnfrd-single-photos:after {
	  content: '';
	  display: block;
	  clear: both;
	}

	/* ---- .grid-item ---- */

	.gnfrd-single-photos .grid-sizer,
	.gnfrd-single-photos .grid-item {
	  width: 33.33%;
	}

	.gnfrd-single-photos .grid-item {
	  float: left;
	}
	.gnfrd-single-photos .grid-item:hover {
		 border:1px solid #fff;
	}




	.gnfrd-single-photos .grid-item img {
	  display: block;
	  max-width: 100%;
	}
	
	
	
body.page-id-483 .post-password-form {
    max-width: 50em;
	padding: 7em 0;
    margin: auto;
    text-align: center;
}		
	
	
#post-711 #cs-content .x-block-grid>li {
margin-top: 1%;
}	
	
.emp-forms li {
margin-bottom: 1em;
}	


#post-2257 form, #post-2282 form {
text-align: center;
margin: auto;
padding-top: 6em;
padding-bottom: 3em;
}


.designlove {
color:#555555;
font-size:10px;
margin-top: 10px;
}

.designlove a {
color:#555555;
}

.designlove a:hover {
color: #6a6a6a;
}



li.posts-cat-box {
width: 47%;
display: inline-block;
vertical-align: top;
margin-right: 3%;
margin-bottom: 3%;
border: 1px solid rgba(0,0,0,0.125);
border-radius: 3px;
background-color: #fff;
box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}

li.posts-cat-box:nth-child(2n) {
margin-right: 0;
}


li.posts-cat-box:hover {
background-color:#fef1d8;
}

li.posts-cat-box:hover img {
opacity: .9;
}



li.posts-cat-box a i
{
color:#777777;
font-size: .75em;
}



.posts-cat-box .post-details {
padding: 1em;
}

.posts-cat-box h2 {
font-weight: 400;
font-size: 1.25em;
line-height: 1.15em;
margin-bottom: 0;
text-transform: none;
}

li.posts-cat-box img {
max-height: 205px;
}


.index-news {
margin-bottom: 2em;
clear:both;
}

.remodal #gform_fields_5 {
text-align: left;
}

.remodal #gform_fields_5 .gf_left_half {
float: left;
width: 50%;
padding: 0 15px 0 0;
margin-bottom: 15px;
}



.remodal #gform_fields_5 .gf_right_half {
float: right;
width: 50%;
padding: 0 0 0 15px;
margin-bottom: 15px;
}
.remodal #gform_fields_5 label {
text-align: left;
}
.remodal #gform_fields_5 input[type=text] {
width: 100%;
padding: 10px;
}

.single-post h2 i {
font-size: .5em;
text-transform: none;
}

#gform_4 #input_4_4 li {
display: inline-block;
margin-right: 3%;
}

#gform_4 #input_4_4 li label {
max-width: 100%;
}


#mapp0_poi_list {
display: none;
}



.list-locations li {
display: inline-block;
vertical-align: top;
padding: 0;
margin-bottom: 1.5em;
background: #fff;
width: 47%;
margin-right: 2%;
}

.list-locations li:nth-child(4n) {
margin-right: 0;
}

.list-locations li img {
width:100%;

}

.location-info {
padding: 1em
}

.page-id-4 #mapp0_directions {
background: #fff;
padding: 40px;
}


#gform_wrapper_7 #field_7_25,
#gform_wrapper_7 #field_7_32,
#gform_wrapper_7 #field_7_33,
#gform_wrapper_7 #field_7_34,
#gform_wrapper_7 #field_7_35,
#gform_wrapper_7 #field_7_36,
#gform_wrapper_7 #field_7_37,
#gform_wrapper_7 #field_7_38,
#gform_wrapper_7 #field_7_39,
#gform_wrapper_7 #field_7_40,
#gform_wrapper_7 #field_7_41,
#gform_wrapper_7 #field_7_42,
#gform_wrapper_7 #field_7_43,
#gform_wrapper_7 #field_7_44,
#gform_wrapper_7 #field_7_45,
#gform_wrapper_7 #field_7_46,
#gform_wrapper_7 #field_7_47,
#gform_wrapper_7 #field_7_48,
#gform_wrapper_7 #field_7_49,
#gform_wrapper_7 #field_7_50,
#gform_wrapper_7 #field_7_51,
#gform_wrapper_7 #field_7_52,
#gform_wrapper_7 #field_7_53,
#gform_wrapper_7 #field_7_54,
#gform_wrapper_7 #field_7_55,
#gform_wrapper_7 #field_7_56,
#gform_wrapper_7 #field_7_57,
#gform_wrapper_7 #field_7_58,
#gform_wrapper_7 #field_7_59,
#gform_wrapper_7 #field_7_60,
#gform_wrapper_7 #field_7_61,
#gform_wrapper_7 #field_7_62,
#gform_wrapper_7 #field_7_63,
#gform_wrapper_7 #field_7_64,
#gform_wrapper_7 #field_7_65
{

margin: 0;
}


#gform_wrapper_7 ul li.field_description_below div.ginput_container_checkbox {
margin-top: 0;
}



#gform_wrapper_7 #field_7_25 > .gfield_label,
#gform_wrapper_7 #field_7_32 > .gfield_label,
#gform_wrapper_7 #field_7_33 > .gfield_label,
#gform_wrapper_7 #field_7_34 > .gfield_label,
#gform_wrapper_7 #field_7_35 > .gfield_label,
#gform_wrapper_7 #field_7_36 > .gfield_label,
#gform_wrapper_7 #field_7_37 > .gfield_label,
#gform_wrapper_7 #field_7_38 > .gfield_label,
#gform_wrapper_7 #field_7_39 > .gfield_label,
#gform_wrapper_7 #field_7_40 > .gfield_label,
#gform_wrapper_7 #field_7_41 > .gfield_label,
#gform_wrapper_7 #field_7_42 > .gfield_label,
#gform_wrapper_7 #field_7_43 > .gfield_label,
#gform_wrapper_7 #field_7_44 > .gfield_label,
#gform_wrapper_7 #field_7_45 > .gfield_label,
#gform_wrapper_7 #field_7_46 > .gfield_label,
#gform_wrapper_7 #field_7_47 > .gfield_label,
#gform_wrapper_7 #field_7_48 > .gfield_label,
#gform_wrapper_7 #field_7_49 > .gfield_label,
#gform_wrapper_7 #field_7_50 > .gfield_label,
#gform_wrapper_7 #field_7_51 > .gfield_label,
#gform_wrapper_7 #field_7_52 > .gfield_label,
#gform_wrapper_7 #field_7_53 > .gfield_label,
#gform_wrapper_7 #field_7_54 > .gfield_label,
#gform_wrapper_7 #field_7_55 > .gfield_label,
#gform_wrapper_7 #field_7_56 > .gfield_label,
#gform_wrapper_7 #field_7_57 > .gfield_label,
#gform_wrapper_7 #field_7_58 > .gfield_label,
#gform_wrapper_7 #field_7_59 > .gfield_label,
#gform_wrapper_7 #field_7_60 > .gfield_label,
#gform_wrapper_7 #field_7_61 > .gfield_label,
#gform_wrapper_7 #field_7_62 > .gfield_label,
#gform_wrapper_7 #field_7_63 > .gfield_label,
#gform_wrapper_7 #field_7_64 > .gfield_label,
#gform_wrapper_7 #field_7_65 > .gfield_label {
display: none;
}


#cs-content .list-management li img, .feature-left  img, .feature-right img {
border-radius: 50%;
max-width:174px;
border: 4px solid #e1e0e0;
}

.parent-pageid-121 #cs-content .list-management li img {

max-width:154px;

}

body.page-id-304 #cs-content .list-management li img {
border-radius:0%;
max-width:100%;
border: none;

}

#cs-content a.btn-homefire {
color:#fff;
background:#b71125;
display:block;
padding:20px;
border-radius:4px;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;

}

#cs-content a.btn-homefire:hover {
color: #fff;
background: #d51930
}


.wp-pagenavi {
	margin-bottom: 20px;
}

.wp-pagenavi a, .wp-pagenavi span {
	border: none;
}

a.fixed-survey {
		position: fixed;
		bottom: -10px;
		right: 70px;
		padding: 10px 15px 20px 15px;
		background: #2783d0;
		color: #fff;
		text-align: center;
		z-index: 9999;
		border-top-right-radius: 4px;
		border-top-left-radius: 4px;
		font-size: 13px;
		-webkit-transition: all 200ms linear;
	}
	
	a.fixed-survey:hover {
		bottom: -5px;
		color: #fff;
		background: #166eb9;
	}



.iframe-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
 
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
 
/* 4x3 Aspect Ratio */
.iframe-container-4x3 {
  padding-top: 75%;
}



/* COMMUNITY RESOURCES TEMPLATE */

/* Container for layout */
.gnfrd-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px 80px 20px;
}

/* Sidebar Styles */
.gnfrd-sidebar {
	flex: 1 1 250px; /* Sidebar has a minimum width of 250px */
	background: white;
	padding: 35px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	max-width: 280px;
}

/* Remove bullet points and default list styles */
.gnfrd-menu {
	
	padding: 0;
	margin: 0;
}

/* Menu link styles */
.gnfrd-menu li {
	margin-bottom: 10px;
	list-style: none;
}

.gnfrd-menu a {
	display: block;
	padding: 12px 18px;
	color: #ab202b; /* Red text for links */
	font-weight: bold;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
	background: white;
	border: none /* Red border */
}

/* Hover effect: red background with white text */
.gnfrd-menu a:hover {
	background: #ab202b;
	color: white;
}

/* Active page link */
.gnfrd-menu a.active,
.gnfrd-menu a.current-menu-item {
	background: #ab202b; /* Red background */
	color: white; /* White text */
	font-weight: bold;
}

/* Main Content */
.gnfrd-content {
	flex: 3;
	padding-left: 40px;
	max-width: 800px;
}

/* Content Typography */
.gnfrd-content h1 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #333;
}

.gnfrd-content p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
	.gnfrd-container {
		flex-direction: column;
	}
	.gnfrd-sidebar {
		max-width: 100%;
		margin-bottom: 20px;
		padding: 20px;
	}
	.gnfrd-menu a {
		padding: 10px;
		text-align: center;
	}
	.gnfrd-content {
		padding-left: 0;
	}
}






/* Print styles!
-------------------------------------------------------------------------------*/
@media print {

}


/* Media queries!
-------------------------------------------------------------------------------*/


@media screen and (min-width: 62em) {
	
	.white-popup .staffpic {
		float: left;
		margin-right: 30px;
		max-width: 300px;
	}
	
	.white-popup.staffbio h2 {
		float: left;
		margin-top: 46px;
		text-align: left;
	}
	
	.white-popup.staffbio h2.apparatus-title {
		float: none;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.staffbio-content {
		clear:both;
	}
	
	.feature-left {
		float:left;width:45%;
	}
	.feature-right {
		float: right; width: 45%;
	}
	
	
	#cs-content .x-section .x-container.home-mission {
		padding: 3em 5em 2em!important;
	}
	
	.navbar, #x-section-1 {
		display: block;
	}
	
	.mobilenav, .opener {
		display: none;
	}
	
	footer .container {
		padding: 0;
	}
	
	p {
		line-height: 170%;
		margin-bottom: 1.75em;
	}
	
	
	
	header {
		padding: 2em 0 0 0;
		position: relative;
		background: #b71125;
		color: #fff;
		text-align: center;
	}
	
	.topline {
		padding: 0;
		margin-right: 0;
	}


	.logo {
	    width: 174px;
	    height: 170px;
	    position: absolute;
	    margin: auto;
	    right: 0;
	    left: 0;
	    top: -73px;
	    text-align: center;
	    padding-top: 1em;
	    z-index: 10;
	}
	
	
	
	
	
	
	
	header .mainnav li.first-right {
	    margin-left: 14.25em;
	}
	
	header h1 {
		color: #fff;
		text-transform: uppercase;
		font-size: 1.75em;
		font-weight: 700;
		line-height: 1.5em;
		margin:0;
	}
	
	
	
	.topline {
		margin-bottom: 4em;
	}
	
	.topline span {
		font-size: 1em;
		line-height: 1.25em;
		text-transform: uppercase;
		color: #e4babd
	}
	
	.tagline {
		color: #e4babd;
		font-style: italic;
		font-size: 1.25em;
	}
	
	
	
	nav li .dropdown-menu {
	    display: none;
	    position: absolute;
	    left: 0;
	    padding: .65em 0 1em 0;
	    margin: 0;
	    text-align: left;
	    z-index: 9;
	    background: #434343;
	    border-bottom-left-radius: 4px;
	    border-bottom-right-radius: 4px;
	}
	
	nav li .dropdown-menu.active {
	    display: block;
	}
	
	nav li a:hover, nav li a.dropdown-toggle.active {
	    background-color: #434343;
	    color: #fff;
	}
	
	nav li.active > a {
		color: #5a74a5	
	}
	
	
	nav li .fa {
		vertical-align: text-top;
	}

	
	nav li:first-child .dropdown-menu a {
	    width: 18em;
	    padding: .35em 1em;
	}
	
	nav li:nth-child(2) .dropdown-menu a {
	    width: 21em;
	    padding: .35em 1em;
	}
	
	nav li:nth-child(3) .dropdown-menu a {
	    width: 18em;
	    padding: .35em 1em;
	}
	
	
	nav li .dropdown-menu a:hover {
		background: #fdc977;
		color: #fff;
	}
	
	.sections-list li {
		margin-bottom: .95em;
	}
	
	footer {
		padding: 4em 0;
		overflow: hidden
	}
	
	footer .container {
		margin: auto;
		max-width: 73em;
	}
	
	.column1 {
		float: left;
		width: 23%;
		margin-right: 2%
	}
	
	.column2 {
		float: left;
		width: 25%;
		margin-right: 2%;
	}
	
	.column3 {
		float: left;
		width: 22%;
	}
	
	.column4 {
		float: right;
		width: 25%;
	}
	
	.list-management li {
		display: inline-block;
		vertical-align: top;
		width: 32.3%;
		margin-bottom: 1em;
	}
	
	.list-management li a {
		display: block;
		padding: 1em;
		text-align: center;
		color: #424141;
	}
	
	
	
	
	.staff-position {
		margin-bottom: .5em;
		color: #a4a4a4
	}
	.biolink {
		color: #ab202b;
	}
	
	
	.alignleft {
		float: left;
		margin: 0 20px 20px 0;
	}
	
	.operations-links a {
		display: inline-block;
		padding: 1.5em;
	}
	
	
	
	/* Sweep To Right */
	.hvr-sweep-to-right {
	  display: inline-block;
	  vertical-align: middle;
	  -webkit-transform: translateZ(0);
	  transform: translateZ(0);
	  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	  -webkit-backface-visibility: hidden;
	  backface-visibility: hidden;
	  -moz-osx-font-smoothing: grayscale;
	  position: relative;
	  -webkit-transition-property: color;
	  transition-property: color;
	  -webkit-transition-duration: 0.3s;
	  transition-duration: 0.3s;
	}
	.hvr-sweep-to-right:before {
	  content: "";
	  position: absolute;
	  z-index: -1;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background: #b71125;
	  -webkit-transform: scaleX(0);
	  transform: scaleX(0);
	  -webkit-transform-origin: 0 50%;
	  transform-origin: 0 50%;
	  -webkit-transition-property: transform;
	  transition-property: transform;
	  -webkit-transition-duration: 0.3s;
	  transition-duration: 0.3s;
	  -webkit-transition-timing-function: ease-out;
	  transition-timing-function: ease-out;
	}
	.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
	  color: white;
	}
	.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
	  -webkit-transform: scaleX(1);
	  transform: scaleX(1);
	}
	

	
	.list-locations li {
		display: inline-block;
		vertical-align: top;
		padding: 0;
		margin-bottom: 1.5em;
		background: #fff;
		width: 23%;
		margin-right: 1%;
	}
	
	.list-locations li:nth-child(4n) {
		margin-right: 0;
	}
	
	.list-locations li img {
		width:100%;
		height:200px!important;
	}
	
	#mapp0_poi_list {
		display: block;
	}
	
	.map-poi-list {
		position: absolute;
	    z-index: 9999;
	    background: rgba(233,229,220,0.8);
	    left: 3em;
	    top: 0;
	    padding: 1em;
	    width: 18em;
	    height: 100%;
	}


	.map-poi-list a {
	
	}
	 .entry #cs-content ul.catlist-listview {
		list-style: none;
	}
	
	.entry #cs-content ul.catlist-listview li {
		margin-bottom: 5px;
		float: left;
		margin-right: 2em;
		list-style: none;
	}
	.entry #cs-content .catlist-listview li:last-child {
		margin-right: 0
	}
	
	
	.entry #cs-content .catlist-listview li a {
		display: block;
	}
	
	.list-address {
		font-size: .85em;
		color: #424141;
	}

	.location-info {
		
		padding: 1em;
	}

	.hvr-grow {
	  display: inline-block;
	  vertical-align: middle;
	  -webkit-transform: translateZ(0);
	  transform: translateZ(0);
	  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	  -webkit-backface-visibility: hidden;
	  backface-visibility: hidden;
	  -moz-osx-font-smoothing: grayscale;
	  -webkit-transition-duration: 0.3s;
	  transition-duration: 0.3s;
	  -webkit-transition-property: transform;
	  transition-property: transform;
	}
	
	.list-locations li a:hover .hvr-grow, .list-locations li a:focus .hvr-grow, .list-locations li a:active .hvr-grow  {
	  -webkit-transform: scale(1.05);
	  transform: scale(1.05);
	}
	
	body.single-gnfrd-location .single-map-container {
		padding: 1em;
	}
	#mapp0_directions form div a:nth-child(2) {
		display: none;
	}
	
	
	
	li.posts-cat-box {
	    width: 30.66666%;
	    display: inline-block;
	    vertical-align: top;
	    margin-right: 2%;
	    margin-bottom: 3%;
	    border: 1px solid rgba(0,0,0,0.125);
	    border-radius: 3px;
	    background-color: #fff;
	    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	    -webkit-transition: all 200ms linear;
		-moz-transition: all 200ms linear;
		-o-transition: all 200ms linear;
		-ms-transition: all 200ms linear;
		transition: all 200ms linear;
	}


	li.posts-cat-box:nth-child(3n) {
		margin-right: 0;
	}
	
	li.posts-cat-box:nth-child(2n) {
		margin-right: 2%;
	}

	a.fixed-survey {
		position: fixed;
		bottom: -10px;
		right: 70px;
		padding: 10px 15px 20px 15px;
		background: #2783d0;
		color: #fff;
		text-align: center;
		z-index: 9999;
		border-top-right-radius: 4px;
		border-top-left-radius: 4px;
		font-size: 13px;
		-webkit-transition: all 200ms linear;
	}
	
	a.fixed-survey:hover {
		bottom: -5px;
		color: #fff;
		background: #166eb9;
	}
}


@media screen and (min-width: 50em) {
				
				
	
					/* clear fix */
				.gnfrd-single-photos:after {
				  content: '';
				  display: block;
				  clear: both;
				}
		
				/* ---- .grid-item ---- */
		
				.gnfrd-single-photos .grid-sizer,
				.gnfrd-single-photos .grid-item {
				  width: 20%;
				}
		
				.gnfrd-single-photos .grid-item {
				  float: left;
				}
				.gnfrd-single-photos .grid-item:hover {
					 border:1px solid #fff;
				}
		
		
		
		
				.gnfrd-single-photos .grid-item img {
				  display: block;
				  max-width: 100%;
				}
}
			



@media screen and (max-width: 992px) {
  .menu-left,
  .menu-right {
	flex-direction: column;
  }

  .menu-left li ul,
  .menu-right li ul {
	display: none;
	position: static;
	background: #333;
	padding-left: 1em;
  }

  .menu-left li.open > ul,
  .menu-right li.open > ul {
	display: block;
  }

  .site-logo {
	margin: 1em auto;
  }
}


