/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi
Description: Divi child theme via FreshySites
Author: FreshySites
Author URI: https://freshysites.com/
Template:  Divi
Version: 1.0.0
*/
/* Add your own styles at the bottom */

/* -- COLORS -- */

.white, 
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white li, .white a,
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, li.white, a.white, p.white {
	color: #fff;
}

.white a {
	text-decoration: underline;
}

.black, 
.black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black li, .black a,
h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, li.black, a.black, p.black {
	color: #000;
}

.primary, 
.primary h1, .primary h2, .primary  h3, .primary h4, .primary h5, .primary h6, .primary li, .primary a,
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary, li.primary, a.primary, p.primary {
	color: #32a709;
}

.secondary, 
.secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary li, .secondary a,
h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary, li.secondary, a.secondary, p.secondary {
	color: #daf238;
}

.tertiary, 
.tertiary h1, .tertiary h2, .tertiary h3, .tertiary h4, .tertiary h5, .tertiary h6, .tertiary li, .tertiary a,
h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary, li.tertiary, a.tertiary, p.tertiary {
	color: #e4debe;
}

/* background colors */
.bg-white, a.bg-white {background-color: #fff;}
.bg-black, a.bg-black {background-color: #000;}
.bg-primary, a.bg-primary {background-color: #32a709;}
.bg-secondary, a.bg-secondary {background-color: #daf238;}
.bg-tertiary, a.bg-tertiary {background-color: #e4debe;}

/* -- END COLORS -- */


/* -- TYPOGRAPHY -- */

.text-lowercase, 
.text-lowercase h1, .text-lowercase h2, .text-lowercase h3, .text-lowercase h4, .text-lowercase h5, .text-lowercase h6, .text-lowercase li, .text-lowercase a {
	text-transform: lowercase !important;
}

.text-uppercase, 
.text-uppercase h1, .text-uppercase h2, .text-uppercase h3, .text-uppercase h4, .text-uppercase h5, .text-uppercase h6, .text-uppercase li, .text-uppercase a {
	text-transform: uppercase !important;
}

.text-capitalize, 
.text-capitalize h1, .text-capitalize h2, .text-capitalize h3, .text-capitalize h4, .text-capitalize h5, .text-capitalize h6, .text-capitalize li, .text-capitalize a {
	text-transform: capitalize !important;
}

.text-transform-none, 
.text-transform-none h1, .text-transform-none h2, .text-transform-none h3, .text-transform-none h4, .text-transform-none h5, .text-transform-none h6, .text-transform-none li, .text-transform-none a {
	text-transform: none !important;
}

.font-weight-bold, 
.font-weight-bold h1, .font-weight-bold h2, .font-weight-bold h3, .font-weight-bold h4, .font-weight-bold h5, .font-weight-bold h6, .font-weight-bold li, .font-weight-bold a {
	font-weight: 700;
}

.font-weight-normal, 
.font-weight-normal h1, .font-weight-normal h2, .font-weight-normal h3, .font-weight-normal h4, .font-weight-normal h5, .font-weight-normal h6, .font-weight-normal li, .font-weight-normal a {
	font-weight: 400;
}

.font-italic {font-style: italic;}

.text-underline-none, .text-underline-none a {text-decoration: none !important;}

.text-underline, .text-underline a {text-decoration: underline !important;}

.text-nowrap, .text-nowrap a {white-space: nowrap !important;}

.text-wrap-normal, .text-wrap-normal a {white-space: normal !important;}

/* -- END TYPOGRAPHY -- */


/* -- TEMPLATE -- */

/* make page wrapper be flex and at least the height of the viewport */
body.et_divi_theme.desktop #page-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* make the actual main content wrapper fill height (not including headers), 
and make it also flex so actual content area can fill needed height to push footer down */
body.et_divi_theme.desktop #page-container #et-main-area {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

/* grow main content area to fill needed height, which pushes footer down */
body.et_divi_theme.desktop #page-container #et-main-area #main-content {
	flex-grow: 1;
}

/* -- END TEMPLATE -- */


/* -- HEADER -- */

/* helps logo to not be pixelated when scaled down */
#logo {
	-webkit-transform: none !important;
	transform: none !important;
}

/* when mobile menu is open, change hamburger icon to x icon */
#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before {
	content: '\4d';
}

/* makes sub sub menu icon be right arrow instead of down arrow */
#top-menu .menu-item-has-children .menu-item-has-children > a:first-child::after, 
#et-secondary-nav .menu-item-has-children .menu-item-has-children > a:first-child::after {
	content: '5';	
}

/* - mobile menu toggling elements, injected via jQuery - */

/* make menu list item be relative, to be able to position toggle within this item */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children {
	position: relative;	
}
/* the new toggle element, which is added via jQuery */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle {
	position: absolute;
	background-color: rgba(0,0,0,0.03);
	z-index: 1;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	top: 4px;
	right: 4px;
	cursor: pointer;
	text-align: center;
}
/* the new toggle element when popped */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped {
	background-color: rgba(0,0,0,0.1);
}
/* toggle icon */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle::before {
	font-family: "ETmodules" !important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 36px;
	font-size: 24px;
	text-transform: none;
	speak: none;
	content: '\33';
}
/* toggle icon when triggered */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped::before {
	content: '\32';
}
/* hide sub menus by default */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle ~ ul.sub-menu {
	display: none !important;
	padding-left: 0;
}
/* show sub menu when triggered via jQuery toggle, and add slight bg color */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu {
	display: block !important;
	background-color: rgba(0,0,0,0.03);
}
/* remove sub menu list item left padding, since padding will be on anchors */
#main-header #mobile_menu.et_mobile_menu li li {
	padding-left: 0;
}

/* adjust mobile menu anchors side paddings */
#main-header #mobile_menu.et_mobile_menu li a {
	padding-left: 20px;
	padding-right: 20px;
}
/* indent sub menu */
#main-header #mobile_menu.et_mobile_menu li li a {
	padding-left: 40px;
	padding-right: 20px;
}
/* indent sub sub menus further */
#main-header #mobile_menu.et_mobile_menu li li li a {
	padding-left: 60px;
	padding-right: 20px;
}
/* if mobile menu anchor has toggle, make room for it to fit next to the link */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children .sub-menu-toggle + a {
	padding-right: 44px;
}

/* - end mobile menu toggling elements - */

/* undo Divi's default styling of mobile menu links that have children */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a {
	background-color: transparent;
	font-weight: inherit;
}

/* make the current page's mobile menu link be different */
#main-header #mobile_menu.et_mobile_menu li.current-menu-item > a {
	font-weight: bolder;
}

/* -- END HEADER -- */


/* -- FOOTER -- */

#freshy_copyright span {
	display: inline-block;
	line-height: 1.5em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
	display: none;
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	background: rgba(255,255,255,0.25);
	vertical-align: middle;
	margin: 10px auto 15px;
	/*display: block;*/
}

#freshy_copyright a.copyright_fs {
	display: none;
	/*display: block;*/
	vertical-align: middle;
	width: 44px;
	height: 20px;
	background-image: url("/wp-content/uploads/freshysites_footer_white.png");
	background-repeat: no-repeat;
	background-size: 44px 20px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 auto;
}

/* fix if using Impreza to remove underline */
#freshy_copyright a:hover {
	border: 0 !important;
}

@media (min-width: 600px) {
	/* vertical pipe divider */
	#freshy_copyright span.copyright_via {
		display: none;
		width: 1px;
		height: 20px;
		margin: 0 10px;
		/*display: inline-block;*/
	}
	#freshy_copyright a.copyright_fs {
		display: none;
		/*display: inline-block;*/
	}
}

@media (max-width: 980px) {
	#footer-bottom .et-social-icons li:first-child {
		margin-left: 0;
	}
}

/* -- END FOOTER -- */


/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
	/* hide on mobile */
	.hide-mobile {
		display: none;
	}
}

/* do for desktop */
@media screen and (min-width: 768px) {
	/* hide on desktop */
	.hide-desktop {
		display: none;
	}
}

/* -- END RESPONSIVE -- */


/* -- CHECKLIST -- */

.checklist ul {
    margin: 0;
	padding: 0 !important;
    list-style: none;
}

.checklist ul li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 6px !important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
	margin-bottom: 30px !important;
}

@media (max-width: 638px) {
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		margin-bottom: 20px !important;
	}
	.checklist-columns-2 ul li:last-child,
	.checklist-columns-3 ul li:last-child,
	.checklist-columns-4 ul li:last-child {
		margin-bottom: 0 !important;
	}
}

/* create columns of list items with this class */
@media (min-width: 639px) {
	.checklist-columns-2 ul::after,
	.checklist-columns-3 ul::after,
	.checklist-columns-4 ul::after {
		content: '';
		clear: both;
		display: table;
	}
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 50%;
      	padding-right: 30px;
	}
	.checklist-columns-2 ul li:nth-child(odd),
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd){
		clear: both;	
	}
}
@media (min-width: 981px) {
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 33.333333%;
	}
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-3 ul li:nth-child(3n+1),
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: both;	
	}
}
@media (min-width: 1199px) {
	.checklist-columns-4 ul li {
		float: left;
		width: 25%;
	}
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(4n+1) {
		clear: both;	
	}
}

.checklist ul li::before {
    font-family: 'FontAwesome';
    content: '\f058';
    width: 20px;
    margin: 0;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #26a9e0;
    /* set font size helps make icon sharper */
    font-size: 22px;
	font-weight: normal;
}

.checklist-white ul li::before {
    font-family: 'FontAwesome';
    content: '\f058';
    width: 20px;
    margin: 0;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    /* set font size helps make icon sharper */
    font-size: 22px;
	font-weight: normal;
}


.checklist-white ul {
    margin: 0;
	padding: 0 !important;
    list-style: none;
}

.checklist-white ul li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 6px !important;
}

.pluslist ul li::before {
    content: '\f055';
}
.eventlist ul li::before {
    content: '\f274';
}
.locationlist ul li::before {
    content: '\f041';
}
.externallist ul li::before {
	content: '\f14c';	
}
.pdflist ul li::before {
    content: '\f1c1';
	color: red;
}
.userlist ul li::before {
	content: '\f2c0';
}

.downloadlist ul li::before {
	content: '\f019';
}

/* -- END CHECKLIST -- */


/* make parallax image be centered at the start */
.et_parallax_bg {
	background-position: center center;	
}

/* use to make a standard section truly be fullwidth (if the row is set to fullwidth, and if the section has this class) */
.et_pb_section.fullwidth-section {
	padding: 0;
}
.et_pb_section.fullwidth-section > .et_pb_row.et_pb_row_fullwidth {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0;
}

/* use the "fullwidth-row" class on a section to really make a "full width" row be full width 
NOTE: unlike the class above, THIS class will auto-add padding to the columns */
.et_pb_section.fullwidth-row {
	padding: 0;	
}
.et_pb_section.fullwidth-row .et_pb_row.et_pb_row_fullwidth {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* helps add padding to each column */
.et_pb_section.fullwidth-row .et_pb_row.et_pb_row_fullwidth > .et_pb_column {
	padding: 50px 10%;
}
@media (min-width: 767px) {
	.et_pb_section.fullwidth-row .et_pb_row.et_pb_row_fullwidth > .et_pb_column {
		padding: 80px 6%;
	}
}

/* for some reason Divi removes bottom margin from modules if in column with no gutters, 
so we need to add margins back */
.et_pb_section.fullwidth-row .et_pb_row.et_pb_row_fullwidth.et_pb_gutters1 > .et_pb_column .et_pb_module:not(:last-child) {
	margin-bottom: 30px;
}
@media (min-width: 981px) {
	.et_pb_section.fullwidth-row .et_pb_row.et_pb_row_fullwidth.et_pb_gutters1 > .et_pb_column_2_3 .et_pb_module:not(:last-child) {
		margin-bottom: 4.242%;
	}
	.et_pb_section.fullwidth-row .et_pb_row.et_pb_row_fullwidth.et_pb_gutters1 > .et_pb_column_1_3 .et_pb_module:not(:last-child) {
		margin-bottom: 9.27%;
	}	
}
.et_pb_section.fullwidth-row .et_pb_row.et_pb_row_fullwidth.et_pb_gutters1 > .et_pb_column .et_pb_module.et_pb_toggle:not(:last-child) {
	margin-bottom: 3px;
}


/* -- TESTIMONIALS PLUGIN -- */

/* flip quote so it's an opening quote icon for grid and slider versions */
.b3_archive_testimonials_grid article .b3_quote.grid_quote::before,
.et_pb_module.et_pb_testimonial_slider .et_pb_slides_testi::before {
	-moz-transform: scale(-1,-1);
	-o-transform: scale(-1,-1);
	-webkit-transform: scale(-1,-1);
	transform: scale(-1,-1);
}


/* -- GRAVITY FORMS -- */

/* partially due to Surbma's restyling of the form, 
there now apepars to be excess margin above fields at certain screen sizes,
when two or more inputs have errors side by side (hence the + in the CSS),
so let's remove that top gap */
@media only screen and (max-width: 761px), (max-device-width: 1023px) and (min-device-width: 768px) {
	.gform_wrapper form .gform_body ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
		margin-top: 0;
	}
}

/* -------------------- BEGIN DEVELOPER CSS -------------------- */
.entry-content {
	overflow: hidden;
}

/* ---------- Raleway ---------- */
body, input, textarea, select, h1, h2, h3, h4, h5, h6, p {
	font-family: raleway, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.15em;
}

h2:last-child, h3:last-child {
    padding-bottom: 0;
}

/* ---------- Navigation ---------- */

#et-top-navigation {
	font-weight: 400;
}

#top-menu li.current-menu-item>a {
	font-weight: 700;
}

.et_mobile_menu li a {
	line-height: 1em;
}

.et_slide_in_menu_container #mobile_menu_slide li li a {
	opacity: 1;
}

.et_slide_in_menu_container #mobile_menu_slide ul.sub-menu li a {
    margin-left: -30px;
	font-size: 22px;
	}

.et_slide_in_menu_container #mobile_menu_slide ul.sub-menu {
    background-color: rgba(0,110,134,0.5);
}

@media (max-width: 767px) {
.et_header_style_fullscreen .et_slide_in_menu_container .et_mobile_menu li a {
	font-size: 20px;
	}
}

/* ---------- Footer ---------- */
#footer-bottom {
	border-top: 1px solid #fff;
}

#footer-bottom .container {
	margin-right: 2.773%;
	margin-left: 2.773%;
	width: 94.454%!important;
	max-width: 94.454%;
}

/* -- Footer Menu Tweaks -- */
#footer-widgets .footer-widget li:before{
	display:none;
}
#main-footer .footer-widget h4 {
	padding-bottom: 5px!important;
}
#footer-widgets .footer-widget li {
	padding-left: 0px;
}
.et_pb_widget ul li {
    line-height: 1.5em;
	margin-bottom: 0px;
}

/* ---------- Home Slider ---------- */
#home-slider .et_pb_slide {
	max-height: 600px;
}

/*removes text shadow and aligns content to the left*/
#home-slider .et_pb_bg_layout_dark .et_pb_slide_description {
	text-align: left;
}

#home-slider p {
	text-shadow: none;
}

#home-slider .et_pb_slide_description{
	padding: 16% 0px;
	/*padding-top: 16%;
	padding-bottom: 16%;
	padding-left: 0px;
	padding-right: 8%;*/
	max-width: 800px;
    margin-left: 0px;
}

/*changes color of h2 tag*/
#home-slider h2 {
	color: #006e86 !important;
	font-weight: 700 !important;
}

/*changes color of p and li tags*/
#home-slider p, #home-slider li {
	color: #111;
}

/*resizes h2, p, and li tags*/
@media (min-width: 981px) {
#home-slider h2 {
	font-size: 50px;
	}
#home-slider p, #home-slider li {
	font-size: 30px;
	}
}

@media (max-width: 980px) and (min-width: 768px) {
#home-slider h2 {
	font-size: 40px;
	}
#home-slider p, #home-slider li {
	font-size: 25px;
	}
}

@media (max-width: 767px) {
#home-slider h2 {
	font-size: 30px;
	}
#home-slider p, #home-slider li {
	font-size: 20px;
	}
}

/*slider controls*/
#home-slider .et-pb-arrow-prev, #home-slider .et-pb-arrow-next {
	color: #006e86 !important;
}

#home-slider .et-pb-controllers .et-pb-active-control {
	background-color: #26a9e0 !important;
}

#home-slider .et-pb-controllers a {
	background-color: #006e86 !important;
}

/* ---------- Blurbs ---------- */
.blurb-click:hover, .blurb-click-tab:hover {
	cursor: pointer;
}

.et_pb_blurb_content {
	 max-width: 100%;
}

/*resize blocks*/
@media (min-width: 1281px) {
#blurbs {
	padding: 16% 10%;
	height: 325px;
	}
}

@media (max-width: 1280px) and (min-width: 981px) {
#blurbs {
	padding: 16% 10%;
	height: 300px;
	}
}

@media (max-width: 980px) and (min-width: 480px) {
#blurbs {
	padding: 16% 10%;
	height: 200px;
	}
}

@media (max-width: 479px) {
#blurbs {
	padding: 10% 10%;
	}
}

/* ---------- Background Color Hover ---------- */
/*1*/
.hover-bg-1 {
    background-color: #26a9e0;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.hover-bg-1:hover {
    background-color: #67cadb;
}

/*2*/
.hover-bg-2 {
    background-color: #006e86;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.hover-bg-2:hover {
    background-color: #26a9e0;
}

/*3*/
.hover-bg-3 {
    background-color: #67cadb;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.hover-bg-3:hover {
    background-color: #006e86;
}

/* -- Custom Blurb Icons -- */
#blurbs .et-pb-icon::after {
	display: inline-block;
	font: normal normal normal 14px/1 'Nucleo Outline';
	speak: none;
	text-transform: none;
	/* Better Font Rendering */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*resize the icons*/
@media (min-width: 1281px) {
#blurbs .et-pb-icon::after {
	font-size: 125px;
	}
}

@media (max-width: 1280px) and (min-width: 981px) {
#blurbs .et-pb-icon::after {
	font-size: 100px;
	}
}

@media (max-width: 980px) and (min-width: 768px) {
#blurbs .et-pb-icon::after {
	font-size: 60px;
	}
}

@media (max-width: 767px) {
#blurbs .et-pb-icon::after {
	font-size: 40px;
	}
}

/*Make an Appointment
.appointment-icon .et-pb-icon::after {
	content: "\ece7";
}
*/

/*Birth Control
.birth-control-icon .et-pb-icon::after {
	content: "\e8a8";
}
*/

/*Family Planning Benefit Program
.program-icon .et-pb-icon::after {
	content: "\ed0d";
}
*/

/*Patient Portal
.patient-icon .et-pb-icon::after {
	content: "\e8a5";
}
*/

/*Donate
.donate-icon .et-pb-icon::after {
	content: "\e89a";
}
*/

/*fax icon*/
.fax-icon .et-pb-icon::after {
    font-family: "FontAwesome";
    content: "\f1ac"!important;
    font-size: 32px;
}

/*text styling*/
#blurbs h4 {
	line-height: 1.15em;
}

@media (max-width: 1280px) and (min-width: 1081px) {
#blurbs h4 {
	font-size: 22px;
	}
}

@media (max-width: 1080px) and (min-width: 981px) {
#blurbs h4 {
	font-size: 18px;
	}
}

/* ---------- News ---------- */

/*Custom Icon*/
.news-icon .et-pb-icon::after {
	display: inline-block;
	font: normal normal normal 14px/1 'Nucleo Outline';
	speak: none;
	font-size: 125px;
	text-transform: none;
	/* Better Font Rendering */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e840";
}

@media (min-width: 981px) {
.news-icon h4 {
	font-size: 27px;
	}
}

/*removes padding and border from grid block*/
#blog.et_pb_blog_grid .et_pb_post {
	padding: 0px;
	border: none;
	margin-bottom: 10px !important;
}

/*styles post header*/
#blog .et_pb_post h2 {
	font-size: 15px;
	line-height: 1.7em;
	padding: 19px;
	background-color: #26a9e0;
	color: #fff;
}

/*styles post content preview*/
#blog .et_pb_post p {
	color: #0082bc;
}

/*styles "Read More" link*/
#blog a.more-link {
	text-transform: capitalize;
	font-weight: 700;
	color: #67cadb;
}

/*adds padding to blog content*/
#blog .post-content {
	padding: 19px;
}

/*width*/
@media (min-width: 768px) {
#blog .column.size-1of2 {
    width: 46.265% !important;
	}
}

@media (max-width: 980px) and (min-width: 768px) {
#blog .column.size-1of2 {
	margin-right: 10px !important;
	}
}

@media (max-width: 767px) {
#gutter-fix.et_pb_column_1_4{
	width: 100% !important;
	}
}

/* ---------- Triangle ---------- */
.triangle::before, .triangle::after {
	position: absolute;
	content: '';
	pointer-events: none;
}
 
/*top triangle*/
@media (max-width: 980px) {
.triangle::before {
	top: -30px;
	background: #67cadb;
	left: 50%;
	width: 50px;
	height: 50px;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	}
}
 
/*left triangle*/
@media (min-width: 981px) {
.triangle::after {
    z-index: 10;
    top: 42%;
    background: #67cadb;
	left: 0;
	width: 50px;
    height: 50px;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	}
}

/* ---------- Align Middle Row ---------- */
.align-middle .et_pb_row.et_pb_equal_columns {
	-webkit-align-items: center;
	align-items: center;	
}

/* ---------- Interior Headers ---------- */
#interior-headers {
	padding: 8% 0;
}

@media (min-width: 981px) {
#interior-headers h1 {
	font-size: 50px;
	}
}

/* ---------- Gradient Classes & IDs ---------- */
/*gradient for section bgs*/
#bg-gradient.et_pb_section:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
    width: 100%;
    height: 100%;
    opacity: .7;
    background: linear-gradient(90deg, #006e86, #67cadb, #26a9e0);
	background-size: 400% 400%;
	-webkit-animation: gradientbg 15s ease infinite;
	-moz-animation: gradientbg 15s ease infinite;
	animation: gradientbg 15s ease infinite;
}

@-webkit-keyframes gradientbg {
    0%{background-position:5% 0%}
    50%{background-position:96% 100%}
    100%{background-position:5% 0%}
}
@-moz-keyframes gradientbg {
    0%{background-position:5% 0%}
    50%{background-position:96% 100%}
    100%{background-position:5% 0%}
}
@keyframes gradientbg { 
    0%{background-position:5% 0%}
    50%{background-position:96% 100%}
    100%{background-position:5% 0%}
}

/* ---------- Maps ---------- */
#map h3 {
	font-size: 18px;
}

/* ---------- Projects & Posts ---------- */

.et_pb_post a img {
	width: auto;
}

/* ---------- Accordion ---------- */
#accordion .et_pb_module {
	margin-bottom: 0px;
}

/*closed*/
#accordion .et_pb_toggle_close h5.et_pb_toggle_title, #accordion .et_pb_toggle_close .et_pb_toggle_title:before {
	color: #006282;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

#accordion .et_pb_toggle_close h5.et_pb_toggle_title, #accordion .et_pb_toggle_close .et_pb_toggle_content  {
	padding: 20px;
}

#accordion .et_pb_toggle_close .et_pb_toggle_title:before {
	padding-right: 20px;
}

#accordion .et_pb_toggle_close {
	padding: 0px;
}

/*open*/
#accordion .et_pb_toggle_open:nth-child(odd) h5.et_pb_toggle_title {
	background-color: #26a9e0;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

#accordion .et_pb_toggle_open:nth-child(even) h5.et_pb_toggle_title {
	background-color: #67cadb;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

#accordion .et_pb_toggle_open h5.et_pb_toggle_title, #accordion .et_pb_toggle_open .et_pb_toggle_title:before {
	color: #fff;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

#accordion .et_pb_toggle_open {
	padding: 0px;
}

#accordion .et_pb_toggle_open .et_pb_toggle_title:before {
	padding-right: 20px;
}

#accordion .et_pb_toggle_open h5.et_pb_toggle_title, #accordion .et_pb_toggle_open .et_pb_toggle_content {
	padding: 20px;
}

/* ---------- Dropcaps ---------- */
.dropcap .et-dropcap {
	font-weight: 700;
	color: #26a9e0;
}

/* Gravity forms */
#gravity-form input[type=text]::-webkit-input-placeholder  {
	color: #999;
}

#gravity-form input[type=submit], #gravity-form input:hover[type=submit] {
	color: #fff;
}

#gravity-form span.ginput_total {
	color: #26a9e0;
}

/* ---------- TablePress ---------- */
#table .tablepress thead th {
	background-color: #006e86;
}

#table th {
	color: #fff;
}

.et-top-navigation {
	z-index:1000!important;
}

/* top bar additions - 9/26/2018 */

/*donate button*/
#menu-item-698{
	border: 2px solid #26a9e0;
	color:#26a9e0;
    padding: 5px;
    margin-top: 23px;
    margin-right: 100px;
	z-index:2000;
	cursor:pointer;
	line-height: 1.5em;
    margin-bottom: -68px;
    float: right;
    margin-left: 20px;
}
/*tablet*/
@media (max-width:768px) and (min-width:425px){
#menu-item-698{

    margin-right: 120px!important;

}
}
/*mobile*/
@media (max-width:424px) and (min-width:320px){
#menu-item-698{

    margin-right: 80px!important;
	    font-size: 13px;

}
}
