/*
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;
}

.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: #872425; /* red */
}

.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: #c29445; /* gold */
}

.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: #ccbea6; /* tan */
}

/* 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: #872425; /* red */}
.bg-secondary, a.bg-secondary {background-color: #c29445; /* gold */}
.bg-tertiary, a.bg-tertiary {background-color: #ccbea6; /* tan */}

/* -- 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;
}

p,
.font-weight-light, 
.font-weight-light h1, .font-weight-light h2, .font-weight-light h3, .font-weight-light h4, .font-weight-light h5, .font-weight-light h6, .font-weight-light li, .font-weight-light a {
	font-weight: 300;
}

.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;
	transition: background-color 0.2s ease;
}

#logo:hover {
	background-color: rgba(0,0,0,0.2);	
}

#main-header {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.et-fixed-header #top-menu li li a,
#top-menu li li a {
	padding: 10px 5px;
	font-size: 1em;
	line-height: 1.25em;
	text-transform: none;
}

/* 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';	
}

.et_mobile_menu {
	border-color: #c29445 !important;	
}

/* - 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;
	color: white;
}
/* 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;
	font-weight: 300;
	text-transform: uppercase;
}
/* indent sub menu */
#main-header #mobile_menu.et_mobile_menu li li a {
	padding-left: 40px;
	padding-right: 20px;
	text-transform: none;
}
/* 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;
	color: #c29445;
}

/* -- END HEADER -- */


/* -- FOOTER -- */

#main-footer .highlight-text {
	color: #c29445;
}

#main-footer .container + #footer-bottom {
	border-top: 1px solid #3f3b3b;	
}

#footer-widgets, 
#footer-info, 
#footer-info a {
	font-weight: 300 !important;	
}

#footer-widgets .footer-widget {
	letter-spacing: 0.5px;	
}

#footer-widgets #media_image-2 img {
	width: 100%;
	max-width: 194px !important;
}

@media (max-width: 980px) {
	#footer-widgets #media_image-2 img {
		width: 100%;
		max-width: 128px !important;
	}
}

#footer-widgets #media_image-2 a:hover img {
	transition: all 0.2s ease;	
}
#footer-widgets #media_image-2 a:hover img {
	background-color: rgba(0,0,0,0.2);	
}

#footer-widgets .et_pb_widget a {
	color: white;	
}
#footer-widgets .et_pb_widget a:hover,
#footer-widgets .footer-widget li a:hover {
	color: #ccbea6;
}

#footer-widgets #text-3.et_pb_widget {
	font-size: 13px;
	line-height: 1.5em;
}

#footer-widgets #text-3.et_pb_widget a.btn {
	background-color: #c29445;
	color: #322f2f;
	padding: 7px 10px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: normal;
}

#footer-widgets #text-3.et_pb_widget a.btn:hover {
	color: #322f2f;
	background-color: rgba(194, 148, 69, 0.5)
}

#footer-widgets .footer-widget li {
	padding-left: 2em;
	margin-bottom: 1em;
}

#footer-widgets .footer-widget li,
#footer-widgets .footer-widget li a {
	font-size: 13px;
	line-height: 1.5em;
}

#footer-widgets .footer-widget li::before {
	position: absolute;
	font-family: 'FontAwesome';
    content: '\f0f6';
	font-size: 14px;
	color: #c29445;
	line-height: 1em;
	text-align: center;
	width: 1.5em;
	top: 0.125em !important;
	opacity: 0.5;
	left: 0;
	border-width: 0;
	border-style: solid;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
#footer-widgets .footer-widget li .post-date {
	font-size: 0.875em;
	padding: 0 5px;
	background: rgba(255, 255, 255, 0.1);
	display: inline-block;
	border-radius: 3px;
	opacity: 0.5;
}

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

#freshy_copyright span.copyright_text {
	letter-spacing: 0.5px;	
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
	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: 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 {
		width: 1px;
		height: 20px;
		margin: 0 10px;
		display: inline-block;
	}
	#freshy_copyright a.copyright_fs {
		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: #c29445;
    /* set font size helps make icon sharper */
    font-size: 22px;
	font-weight: normal;
}

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

/* -- 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) */
.fullwidth-section.et_pb_section {
	padding: 0;
}
.fullwidth-section.et_pb_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;
}


/* -- GRAVITY FORMS -- */

.gform_wrapper label.gfield_label {
	font-weight: normal !important;
	text-transform: uppercase;
	color: #c29445;
	letter-spacing: 0.5px;
}

/* tweak stuff for hidden labels and errors */
.gform_wrapper li.hidden_label input {
	margin-top: 0 !important;	
}
body .gform_wrapper .top_label li.hidden_label div.ginput_container {
	margin-top: 0 !important;	
}
body .gform_wrapper.gform_validation_error ul li.hidden_label {
	margin: 0!important;
}
@media only screen and (max-width: 640px) {
	body .gform_wrapper.gform_validation_error ul li.hidden_label:not(.gfield_error) {
		padding-bottom: 20px !important;
	}
}
.et_pb_text_inner > .gform_wrapper {
	margin: 0 !important;
}
.gform_wrapper .gform_footer {
	padding: 0 !important;
	margin: 0 !important;
}
/* fix the extra 16px right indent on most forms */
@media only screen and (min-width: 641px) {
	.gform_wrapper form .gform_body {
		width: calc(100% + 16px);
	}
}
@media only screen and (min-width: 641px) {
	.gform_wrapper .top_label li.gfield.gf_left_half.hidden_label:first-child,
	.gform_wrapper .top_label li.gfield.gf_left_half.hidden_label:first-child + li.gfield.gf_right_half.hidden_label {
		margin-top: 0 !important;	
	}
	body .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half.gfield_contains_required {
		margin-right: 16px !important;
	}
}

/* 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;
	}
}

/* fix Surbma's styling of one-third inputs, when errored.
Otherwise they go to 32% wide even when stacked. */
@media (max-width: 640px) {
	body .gform_wrapper .top_label li.gfield.gfield_error.gf_left_third, 
	body .gform_wrapper .top_label li.gfield.gfield_error.gf_middle_third, 
	body .gform_wrapper .top_label li.gfield.gfield_error.gf_right_third {
		width: 100%;
	}
}

/* -- BLURBS -- */

.blurb-section.et_pb_section .et_pb_row {
	overflow: visible;
}

.blurb-section.et_pb_section .et_pb_row .et_pb_column {
	display: flex;	
}
.blurb-section.et_pb_section .et_pb_row .et_pb_column .et_pb_blurb {
	flex-grow: 1;
	padding: 30px;
	-webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
	-moz-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
	transition: all 0.4s ease-in-out;
	background-color: white;
	position: relative;
}

@media (max-width: 980px) {
	.blurb-section.et_pb_section .et_pb_row .et_pb_column .et_pb_blurb {
		margin-bottom: 30px !important;
	}
}

.blurb-section.et_pb_section .et_pb_row .et_pb_column .et_pb_blurb:hover {
	-webkit-box-shadow: 0 15px 20px rgba(0,0,0,0.12);
	-moz-box-shadow: 0 15px 20px rgba(0,0,0,0.12);
	box-shadow: 0 15px 20px rgba(0,0,0,0.12);
	-webkit-transform: translate(0, -4px);
	transform: translate(0, -4px);
	background-color: rgba(255,255,255,0.95);
	z-index: 1;
}
.et_pb_blurb .et-pb-icon {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0.3;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.et_pb_blurb:not(:hover) .et-pb-icon {
	color: #c29445 !important;
}
.et_pb_blurb:hover .et-pb-icon {
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	opacity: 1;
}

.et_pb_blurb:hover h4 {
	color: #c29445;
}

.et_pb_main_blurb_image {
	margin-bottom: 1em !important;
}

.et_pb_blurb .et-pb-icon {
	font-size: 56px;
}

.et_pb_blurb h4 {
	padding-bottom: 1em !important;
}

/* if blurb has icon on top, and is left aligned, then also left align the image/icon too */
.et_pb_blurb.et_pb_text_align_left.et_pb_blurb_position_top .et_pb_main_blurb_image {
	text-align: left;	
}

/* -- END BLURBS -- */

.circle-img img {
	border-radius: 50%;	
}

/* add this class to a section with two equal-height columns, 
for the second column (right one) to come first when on desktop */
@media (min-width: 981px) {
	.swap-col-on-desktop .et_pb_row.et_pb_equal_columns .et_pb_column_1_2:last-child {
		order: -1;	
	}
}

.header-content h1:only-child,
#article-header .header-content h1:first-child {
	padding-bottom: 0;
	display: inline-block;
	border-bottom: 2px solid rgba(255,255,255,0.5);
}

#article-header .header-content h1:first-child {
	margin-bottom: 10px;	
}

.header-content h1:only-child::after,
#article-header .header-content h1:first-child::after {
	content: '';
	display: block;
	width: 100%;
	height: 0;
	margin-top: 6px;
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-top: 2px solid rgba(255,255,255,0.5);
	border-bottom: 2px solid rgba(255,255,255,0.5);
}

@media (min-width: 480px) {
	#home-hero .et_pb_fullwidth_header {
		padding-top: 75px;
		padding-bottom: 75px;
	}
}

@media (min-width: 768px) {
	#home-hero .et_pb_fullwidth_header {
		padding-top: 85px;
		padding-bottom: 85px;
	}
}

@media (min-width: 981px) {
	#home-hero .et_pb_fullwidth_header {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

#home-hero .et_parallax_bg {
	background-position: center bottom;
}

#home-hero .et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

#home-hero img.header-logo {
	width: 50%;
	max-width: 256px;
	background-color: rgba(50,47,47,0.7);
	margin-bottom: 30px;
	transition: all 0.2s ease;
	background: linear-gradient(225deg, rgba(50,47,47,0.7), rgba(50,47,47,0.2), rgba(50,47,47,0.7));
	background-size: 600% 600%;
	-webkit-animation: gradientSlide 7s ease infinite;
	-moz-animation: gradientSlide 7s ease infinite;
	animation: gradientSlide 7s ease infinite;
}
@-webkit-keyframes gradientSlide {
    0%{background-position:93% 0%}
    50%{background-position:0% 100%}
    100%{background-position:93% 0%}
}
@-moz-keyframes gradientSlide {
    0%{background-position:93% 0%}
    50%{background-position:0% 100%}
    100%{background-position:93% 0%}
}
@keyframes gradientSlide { 
    0%{background-position:93% 0%}
    50%{background-position:0% 100%}
    100%{background-position:93% 0%}
}

#home-hero img.header-logo:hover {
	box-shadow: 0 3px 12px rgba(0,0,0,0.333);
}

#home-hero .header-content h1,
#home-hero .header-content .et_pb_fullwidth_header_subhead {
	font-weight: 300;
}

#home-hero .header-content h1 {
	padding-bottom: 0.5em;	
}

#map-section {
	overflow: hidden;	
}

.dwd-map-content h3 {
	font-size: 18px;
}

.dwd-map-content .infowindow {
	line-height: 1.4em;	
}

.et_pb_toggle .et_pb_toggle_content h6:first-child {
	text-transform: none;
	padding-bottom: 20px;
}

/* override bullets for the Talks and Worlships lists */
#talks-and-workshops .locationlist ul li::before,
#talks-and-workshops .checklist ul.locationlist li::before,
#talks-and-workshops .topiclist ul li::before,
#talks-and-workshops .checklist ul.topiclist li::before {
	content: '\f111';
}

#talks-and-workshops .checklist-columns-2 ul li::before, 
#talks-and-workshops .checklist-columns-3 ul li::before, 
#talks-and-workshops .checklist-columns-4 ul li::before {
    width: 10px;
    font-size: 10px;
}

#talks-and-workshops .checklist-columns-2 ul li, 
#talks-and-workshops .checklist-columns-3 ul li, 
#talks-and-workshops .checklist-columns-4 ul li {
	margin-bottom: 5px !important;
	line-height: 1.5em;
	font-size: 13px;
    padding-left: 15px;
}

#talks-and-workshops .checklist-columns-2 ul li:last-child,
#talks-and-workshops .checklist-columns-3 ul li:last-child,
#talks-and-workshops .checklist-columns-4 ul li:last-child {
	margin-bottom: 0 !important;
}

/* create columns of list items with this class */
@media (min-width: 639px) {
	#talks-and-workshops .checklist-columns-2 ul {
		-moz-column-count: 2;
		-moz-column-gap: 20px;
		-webkit-column-count: 2;
		-webkit-column-gap: 20px;
		column-count: 2;
		column-gap: 20px;
	}
	#talks-and-workshops .checklist-columns-2 ul li {
		float: none;
		width: 100%;
		padding-right: 0;
	}
}

@media (max-width: 980px) {
	#talks-and-workshops > .et_pb_row > .et_pb_column_1_2:last-child {
		padding-top: 0;	
	}
}

/* -- SIDEBAR -- */

@media (min-width: 981px) {
	/* style the border line of the sidebar */
	#main-content .container:before {
		width: 3px;
		background-color: #c29445;
	}
}

/* remove excess left padding on the right sidebar */
.et_right_sidebar #sidebar {
	padding-left: 0;
}

/* sidebar widget titles */
.et_pb_widget_area.et_pb_module.et_pb_sidebar_no_border .et_pb_widget h4.widgettitle,
#sidebar h4.widgettitle {
	text-transform: uppercase;
	position: relative;
	padding-bottom: 0;
	margin-bottom: 10px;
	border-bottom: 2px solid rgba(204, 190, 166, 1);
	color: #c29445;
}

.et_pb_widget_area.et_pb_module.et_pb_sidebar_no_border .et_pb_widget h4.widgettitle::after,
#sidebar h4.widgettitle::after {
	content: '';
	display: block;
	width: 100%;
	height: 0;
	margin-top: 6px;
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-top: 2px solid rgba(204, 190, 166, 1);
	border-bottom: 2px solid rgba(204, 190, 166, 1);
}

/* reduce size of text that is in the sidebar TEXT widget */
#sidebar .et_pb_widget.widget_text .textwidget p {
	font-size: 0.875em;
	line-height: 1.3em;
}
/* add button style if anchor link has this class on it */
#sidebar .et_pb_widget.widget_text .textwidget a.btn {
	background-color: #c29445;
	color: #322f2f;
	padding: 7px 10px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: normal;
	transition: all 0.2s ease;
	position: relative;
	z-index: 1;
}
#footer-widgets #text-3.et_pb_widget a.btn {
	background-color: #c29445;
	color: #322f2f;
	padding: 7px 10px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: normal;
}

#sidebar .et_pb_widget.widget_text .textwidget a.btn:hover {
	color: #322f2f;
	background-color: rgba(194, 148, 69, 0.5)
}

/* tweak styling of child links */
.et_pb_widget_area.et_pb_module.et_pb_sidebar_no_border .et_pb_widget.widget_nav_menu ul.menu li ul li,
#sidebar .et_pb_widget ul li ul li {
	margin: 0.5em 0 1em 15px;
	font-size: 0.875em;
	line-height: 1.3em;
}

/* parent categories are more bold */
.et_pb_widget_area.et_pb_module.et_pb_sidebar_no_border .et_pb_widget.widget_categories > ul > li > a,
.et_pb_widget_area.et_pb_module.et_pb_sidebar_no_border .et_pb_widget.widget_nav_menu ul.menu > li > a,
#sidebar .et_pb_widget.widget_categories > ul > li > a {
	font-weight: bolder;
}
/* active menu item in divi sidebar module is new color, and 
active page is new color */
#sidebar .et_pb_widget.widget_categories > ul li.current-cat > a {
	color: #322f2f;
}
/* add external link icon to links that go to new domain and open in new tab */
#sidebar .et_pb_widget.widget_nav_menu ul.menu > li > a[target="_blank"]::after {
    font-family: 'FontAwesome';
    content: '\00a0\f08e';
    display: inline;
    color: rgba(102, 102, 102, 0.5);
	padding-left: 2px;
	font-size: 13px;
	font-weight: normal;
}

/* hide "Archive" label since it already has that title above it */
#sidebar .et_pb_widget.widget_categories h4 + label.screen-reader-text,
#sidebar .et_pb_widget.widget_archive h4 + label.screen-reader-text {
	display: none;	
}

#sidebar .et_pb_widget.widget_recent_entries ul li,
#sidebar .et_pb_widget.widget_recent_entries ul li a {
	font-size: 13px;
	line-height: 1.5em;
	color: #872425;
}

#sidebar .et_pb_widget.widget_recent_entries ul li {
	padding-left: 2em;
	margin-bottom: 1em;
	position: relative;
}

#sidebar .et_pb_widget.widget_recent_entries ul li a:hover {
	color: #322f2f;
}

#sidebar .et_pb_widget.widget_recent_entries ul li::before {
	position: absolute;
	font-family: 'FontAwesome';
    content: '\f0f6';
	font-size: 14px;
	color: #c29445;
	line-height: 1em;
	text-align: center;
	width: 1.5em;
	top: 0.125em !important;
	opacity: 0.5;
	left: 0;
	border-width: 0;
	border-style: solid;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

#sidebar .et_pb_widget.widget_recent_entries ul li .post-date {
	display: block;
	color: rgba(0,0,0,0.5);
	line-height: 1.25em;
	font-size: 0.875em;
}

@media (max-width: 980px) {
	/* give gap between content and sidebar when stacked */
	#left-area + #sidebar {
		margin-top: 30px;	
	}
}

@media (min-width: 640px) and (max-width: 980px) {
	/* make sidebar widgets be 2 wide instead of stacked at this size */
	#sidebar::after {
		content: '';
		clear: both;
		display: table;
	}
	#sidebar > .et_pb_widget {
		float: left;
		width: 48%;
		margin: 1%;
	}
}

/* -- END SIDEBAR -- */



/* -- BLOG -- */

/* entry title of posts (and pages) if it's linked */
.entry-title h1 a, .entry-title h2 a, .entry-title h3 a, .entry-title h4 a, .entry-title h5 a, .entry-title h6 a,
h1.entry-title a, h2.entry-title a, h3.entry-title a, h4.entry-title a, h5.entry-title a, h6.entry-title a {
	color: #872425; /* red */
}

/* dim the post meta text */
article.et_pb_post p.post-meta {
	line-height: 1.3em;
}
/* make the post meta date be a little more bold */
article.et_pb_post p.post-meta .published {
	font-weight: bolder;	
}
#left-area .post-meta a {
	color: #872425;	
}

/* gap below posts */
article.et_pb_post {
	margin-bottom: 40px;
	position: relative;
	border-bottom: 2px solid rgba(204, 190, 166, 1);
}

/* clear floating images that we add below */
article.et_pb_post {
	clear: both;	
}


.et_pb_widget_area.et_pb_module.et_pb_sidebar_no_border .et_pb_widget h4.widgettitle::after,
#sidebar h4.widgettitle::after {
	content: '';
	display: block;
	width: 100%;
	height: 0;
	margin-top: 6px;
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-top: 2px solid rgba(204, 190, 166, 1);
	border-bottom: 2px solid rgba(204, 190, 166, 1);
}

/* add line below posts */
article.et_pb_post::after {
	content: '';
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-top: 2px solid rgba(204, 190, 166, 1);
	border-bottom: 2px solid rgba(204, 190, 166, 1);
	clear: both;
	visibility: visible;
	font-size: 0;
	margin-top: 40px;
}

@media (min-width: 981px) {
	/* no gap for last post */
	body.single-post article.et_pb_post:last-of-type {
		margin-bottom: 0;
		border-bottom: 0;
	}
	/* if single post page, then we don't want border at bottom of article */
	body.single-post article.et_pb_post:last-of-type::after {
		height: 0;
		border: 0;
		margin-top: 0;
		margin-bottom: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
}

/* remove excess gap between single post's meta and content */
body.single-post article .et_post_meta_wrapper + .entry-content > .et_pb_section:first-child {
	padding-top: 0;	
}

/* resize featured image and push to left */
article.et_pb_post > a.entry-featured-image-url:first-child,
article.et_pb_post.has-post-thumbnail > a:first-child {
	display: block;
	position: relative;
	float: left;
	width: 207px;
	box-shadow: none;
	margin-right: 30px;
}
/* Post featured image itself */
article.et_pb_post > a.entry-featured-image-url:first-child > img,
article.et_pb_post.has-post-thumbnail > a:first-child > img {
	display: block;
	padding-bottom: 20px;
}

/* Post featured image overlay */
article.et_pb_post > a.entry-featured-image-url:first-child > .et_overlay,
article.et_pb_post.has-post-thumbnail > a:first-child > .et_overlay {
	border: 0;
}
.et_pb_has_overlay .et_overlay::before,
.et_pb_has_overlay:hover .et_overlay::before {
	opacity: 0;
}
.et_pb_has_overlay:hover .et_overlay:hover::before {
	opacity: 1;
}

/* push left the same amount as the image width (plus its margin), so the post content doesnt wrap around the floating image */
article.et_pb_post > a.entry-featured-image-url:first-child ~ h2.entry-title,
article.et_pb_post > a.entry-featured-image-url:first-child ~ p.post-meta,
article.et_pb_post > a.entry-featured-image-url:first-child ~ div.post-content,
article.et_pb_post.has-post-thumbnail > a:first-child ~ h2.entry-title,
article.et_pb_post.has-post-thumbnail > a:first-child ~ p.post-meta,
article.et_pb_post.has-post-thumbnail > a:first-child ~ div.post-content {
	margin-left: 237px;	
}

/* remove excess top margin of post title */
article.et_pb_post h2.entry-title {
	margin-top: 0;
	padding-bottom: 10px;
}

@media (max-width: 767px) {
	article.et_pb_post > a.entry-featured-image-url:first-child,
	article.et_pb_post.has-post-thumbnail > a:first-child {
		width: 120px;
		margin-right: 20px;
	}
	/* push left the same amount as the image width, so the post content doesnt wrap around the floating image */
	article.et_pb_post > a.entry-featured-image-url:first-child ~ h2.entry-title,
	article.et_pb_post > a.entry-featured-image-url:first-child ~ p.post-meta,
	article.et_pb_post > a.entry-featured-image-url:first-child ~ div.post-content,
	article.et_pb_post.has-post-thumbnail > a:first-child ~ h2.entry-title,
	article.et_pb_post.has-post-thumbnail > a:first-child ~ p.post-meta,
	article.et_pb_post.has-post-thumbnail > a:first-child ~ div.post-content {
		margin-left: 140px;	
	}
}

@media (max-width: 479px) {
	article.et_pb_post > a.entry-featured-image-url:first-child,
	article.et_pb_post.has-post-thumbnail > a:first-child {
		float: none;
		width: 160px;
		margin-right: 0;
		margin-bottom: 20px;
	}
	article.et_pb_post > a.entry-featured-image-url:first-child > img,
	article.et_pb_post.has-post-thumbnail > a:first-child > img {
		padding-bottom: 0;
	}
	/* push left the same amount as the image width, so the post content doesnt wrap around the floating image */
	article.et_pb_post > a.entry-featured-image-url:first-child ~ h2.entry-title,
	article.et_pb_post > a.entry-featured-image-url:first-child ~ p.post-meta,
	article.et_pb_post > a.entry-featured-image-url:first-child ~ div.post-content,
	article.et_pb_post.has-post-thumbnail > a:first-child ~ h2.entry-title,
	article.et_pb_post.has-post-thumbnail > a:first-child ~ p.post-meta,
	article.et_pb_post.has-post-thumbnail > a:first-child ~ div.post-content {
		margin-left: 0;
	}
	article.et_pb_post {
		margin-bottom: 20px;
	}
	/* add line below posts */
	article.et_pb_post::after {
		margin-top: 20px;
	}
}

/* Password protected POSTS */
body.single.single-post #left-area > article.post-password-required > .entry-content > .et_pb_section,
body.single.single-post #left-area > article.post-password-required > .entry-content > .et_pb_section > .et_pb_row,
body.single.single-post #left-area > article.post-password-required > .entry-content > .et_pb_section > .et_pb_row > .et_pb_column {
	padding: 0;
	width: 100%;
	margin: 0;
	max-width: 100%;
	float: none;
}
body.single.single-post #left-area > article.post-password-required > .entry-content > .et_pb_section {
	padding: 20px;
	background-color: #fefefe;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border-radius: 8px;
}
body.single.single-post #left-area > article.post-password-required > .entry-content > .et_pb_section > .et_pb_row > .et_pb_column > .et_password_protected_form {
	min-height: 0;
}
body.single.single-post #left-area > article.post-password-required > .entry-content > .et_pb_section > .et_pb_row > .et_pb_column > .et_password_protected_form h1 {
	font-size: 1em;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: 1px;
	color: red;
}
.et_password_protected_form .et_submit_button:hover {
	padding-right: 1.8em;	
}

@media (max-width: 980px) {
	body:not(.et_right_sidebar) #main-content {
		padding-bottom: 0;
	}
}

/* -- END BLOG -- */

/* Fix Divi's update issues */
.et_pb_bg_layout_light.et_pb_module.et_pb_button {
	color: white;	
}