/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Divi child theme via FreshySites
Author: FreshySites
Author URI: https://freshysites.com/
Template: Divi
Version: 1.8.2
*/
/* 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: #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 -- */



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

/* if parent link of child menu is a deadlink, then make it not clickable */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a[href="#0"] { 
	pointer-events: none;
}

/* - 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,
span.copyright_via {
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 200%;
	background: rgba(0,0,0,0.25);
	vertical-align: middle;
	margin: 10px auto 15px;
	display: block;
}

#freshy_copyright a.copyright_fs {
	display: block;
	vertical-align: middle;
	width: 68px;
	height: 20px;
	background-image: url("/wp-content/uploads/Freshy_Logo_Black_RGB.svg");
	background-repeat: no-repeat;
	background-size: 68px 20px;
	text-indent: 200%;
	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,
	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;	
	}
	.checklist-columns-2-alt > ul,
	.checklist-columns-3-alt > ul,
	.checklist-columns-4-alt > ul {
		-moz-column-count: 2;
		-moz-column-gap: 8px;
		-webkit-column-count: 2;
		-webkit-column-gap: 8px;
		column-count: 2;
		column-gap: 20px;
	}
	.checklist-columns-2-alt ul li,
	.checklist-columns-3-alt ul li,
	.checklist-columns-4-alt ul li {
		break-inside: avoid-column;
	}
}
@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;	
	}
	.checklist-columns-3-alt ul,
	.checklist-columns-4-alt ul {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}
@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-columns-4-alt ul {
		-moz-column-count: 4;
		-webkit-column-count: 4;
		column-count: 4;
	}
}

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

.pluslist ul li::before {
	content: '\50';
	color: green;
}
.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';
}
.minuslist ul li::before {
	content: '\4f';
}

/* -- END CHECKLIST -- */


/* -- DIVI HACKS -- */

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

/* Divi was turning off bottom padding on last paragraphs, when it should be only if it's the last child */
p:last-of-type,
p:not(.has-background):last-of-type {
	padding-bottom: 1em;
}
p:last-child,
p:not(.has-background):last-child {
	padding-bottom: 0;
}

/* if there are more than one paragraphin the Fullwidth Header module, they should have padding */
.et_pb_fullwidth_header p:not(:last-child) {
	padding-bottom: 1em;
}

/* -- END DIVI HACKS -- */


/* -- PASSWORD PROTECTED -- */

/* set a max width to make it only as wide as most content */
.post-password-required .et_password_protected_form {
	width: 80%;
	margin: 10% auto;
	max-width: 1140px;
}

/* give the input a border */
.post-password-required .et_password_protected_form p input {
	border: 1px solid !important;
}

/* remove the arrow on hover of the submit button */
.post-password-required .et_password_protected_form .et_submit_button::after {
	display: none;
}

/* -- END PASSWORD PROTECTED -- */


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

/* -- END TESTIMONIALS PLUGIN -- */


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

/* we swap out form ajax spinner via PHP Function, and add spinning if its PNG */
img.gform_ajax_spinner[src$=".png"] {
	-webkit-animation: lime-spin 1.5s linear infinite;
	-moz-animation: lime-spin 1.5s linear infinite;
	animation: lime-spin 1.5s linear infinite;
	padding: 0;
	margin-left: 10px;
}
@-moz-keyframes lime-spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes lime-spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes lime-spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/* fix for when Date Picker is used */
#ui-datepicker-div:empty {
	margin-top: 0;	
}

/* confirmation (success) message */
.gform_confirmation_wrapper .gform_confirmation_message {
	font-size: 1.2rem;
	line-height: 1.5em;
	padding: 2rem;
	background: rgba(90, 90, 90, 0.1);
	text-align: center;
}

/* -- END GRAVITY FORMS -- */


/* -- HELPERS -- */

/* use the "fullwidth-section" class on a SECTION to make a "standard" SECTION truly be fullwidth 
(NOTE: the SECTION needs THIS class) */
.fullwidth-section.et_pb_section {
	padding: 0;
}
.fullwidth-section.et_pb_section > .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0;
}

/* use the "fullwidth-row" class on a SECTION to make a "full width" ROW truly be fullwidth 
(NOTE: the ROW module settings needs to be Gutter Width 1, and the SECTION needs THIS class,
and unlike the class above, THIS class will auto-add padding to the columns) */
.fullwidth-row.et_pb_section {
	padding: 0;	
}
.fullwidth-row.et_pb_section .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* helps add padding to each column */
.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
	padding: 50px 10%;
}
@media (min-width: 767px) {
	.fullwidth-row.et_pb_section .et_pb_row > .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 */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module:not(:last-child) {
	margin-bottom: 30px;
}
@media (min-width: 981px) {
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_2_3 .et_pb_module:not(:last-child) {
		margin-bottom: 4.242%;
	}
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_1_3 .et_pb_module:not(:last-child) {
		margin-bottom: 9.27%;
	}	
}
/* reduce gap between toggles if in fullwidth row */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module.et_pb_toggle:not(:last-child) {
	margin-bottom: 3px;
}

@media (max-width: 980px) {
	/* use the "stacked-flex" class on a ROW to make it be flexbox when stacked, to help with adjusting order of stacked columns */
	.stacked-flex {
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	/* add the desired class to COLUMNS to designate their order when stacked within a "stacked-flex" ROW */
	.stacked-order-negative-4 {
		order: -4;
	}
	.stacked-order-negative-3 {
		order: -3;
	}
	.stacked-order-negative-2 {
		order: -2;
	}
	.stacked-order-negative-1 {
		order: -1;
	}
	.stacked-order-1 {
		order: 1;
	}
	.stacked-order-2 {
		order: 2;
	}
	.stacked-order-3 {
		order: 3;
	}
	.stacked-order-4 {
		order: 4;
	}
	/* adds margin to former "last" column that otherwise wouldn't have it */
	.stacked-flex:last-child .et_pb_column:last-child {
		margin-bottom: 30px;
	}
}

/* -- END HELPERS -- */

/* -- BLOG -- */

/* sidebar recent posts */
.et_pb_widget.widget_recent_entries ul li  {
	margin-bottom: 1em;
}

/* sidebar recent posts dates */
.et_pb_widget.widget_recent_entries ul li span.post-date {
	display: table;
	font-size: 0.85em;
}

/* -- END BLOG -- */

/*-- custom --*/

body{
	font-family: jaf-bernina-sans, serif;
	letter-spacing:1px;
}
h1,h2,h3,h4,h5,h6{
	font-family: jaf-bernina-sans, serif;
	font-weight:800 !important;
}
#page-container{
	overflow:hidden;
}
.mp-vertical-align { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

@media (min-width: 981px) {
	.vertically-aligned {
		margin: auto;
	}
}

@media only screen and (max-width:1429px) and (min-width:1378px){
	h1 {
    	font-size: 70px;
	}
	.home .header-text{
		font-size:32px !important;
	}
}
@media only screen and (max-width:1378px)and (min-width:769px){
	.header-text h1 {
    	font-size: 45px !important;
	}
	h2 {
		font-size:30px !important;
	}
	/*h3{
		font-size:30px !important;
	}*/
}

@media only screen and (max-width:1571px)and (min-width:769px){
	.header-text-charlottesville h1 {
		font-size: 45px !important;
	}
}

@media only screen and (max-width:1570px)and (min-width:769px){
	.home .header-text h1 {
    	font-size: 45px !important;
	}
	.home .header-text {
		font-size:23px !important;
	}
}

@media only screen and (max-width:768px){
	h2 {
		font-size:26px !important;
	}
	
	/*h3{
		font-size:26px !important;
	}*/
}
@media only screen and (max-width:640px){
	h2{
		font-size:24px !important;
	}
	/*h3{
		font-size:24px !important;
	}*/
}
/*-- Main menu --*/
/*logo blurry*/
body header .logo {
	-webkit-transform: initial!important;
}
body header .logo img {
	-webkit-transform: initial !important;
}
@media only screen and (max-width:980px){
	.logo-row .et_pb_column{
		margin-bottom:0 !important;
	}
	.et_mobile_menu{
		text-align:center !important;
	}
	.mobile_nav::before { 
		content:'MENU'; 
		vertical-align:top; 
		line-height:2.2em; 
		color:#fff;
		font-weight:800;
		margin-right: 6px;
    	margin-top: 2px;	
	}
	.mobile_nav{
   	 	display: flex;
	}
}
/**-- custom order stack --*/
@media all and (max-width: 980px) {
	/*** wrap row in a flex box ***/
	.custom_row {
  		display: -webkit-box;
  		display: -moz-box;
  		display: -ms-flexbox;
  		display: -webkit-flex;
  		display: flex;
		-webkit-flex-wrap: wrap; /* Safari 6.1+ */
		flex-wrap: wrap;
	}
 
	/*** custom classes that will designate the order of columns in the flex box row ***/
	.first-on-mobile {
		-webkit-order: 1;
		order: 1;
	}
 
	.second-on-mobile {
		-webkit-order: 2;
		order: 2;
	}
 
	.third-on-mobile {
		-webkit-order: 3;
		order: 3;
	}
	/*** add margin to last column ***/
	.custom_row:last-child .et_pb_column:last-child {
	margin-bottom: 0px;
	}
 
}

/*-- scroll up --*/
.et_pb_scroll_top.et-pb-icon {
	background: #EE3B34;
	bottom: 20px;
	right: 10px;
	-webkit-border-top-left-radius: 30px;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-topleft: 30px;
	-moz-border-radius-bottomright: 0px;
	border-top-left-radius: 30px;
	border-bottom-right-radius: 0px;
	-webkit-border-top-right-radius: 30px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topright: 30px;
	-moz-border-radius-bottomleft: 0px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 0px;
	font-size: 40px;
	padding: 10px;
}
/*--CTA --*/
.cta-inline h3{
	padding-bottom:10px;
}
.cta-inline .et_pb_button.et_pb_promo_button{
	background:#fff !important;
	color:#000 !important;
	border:0 !important;
	box-shadow: 0px 1px 13px 0px rgb(0 0 0 / 20%);
}
.cta-inline .et_pb_button.et_pb_promo_button:hover{
	border:0 !important;
}
@media only screen and (min-width:981px){
	.cta-inline{
		display: flex;
    	flex-direction: row;
    	flex-wrap: wrap;
	}
	.cta-inline .et_pb_promo_description{
		display: flex;
  		flex-direction: column;
  		flex-basis: 65%;
		justify-content: center;
		padding-bottom:0;
		padding-right:1.5%;
		text-align:left;
	}
	.cta-inline .et_pb_promo_description h3{
		padding-bottom:10px;
	}
	.cta-inline .et_pb_button_wrapper {
    	display: flex;
    	flex-direction: column;
    	flex-basis: 21.5%;
		text-align:center;
		justify-content: center;
	}
}

@media only screen and (max-width:1342px){
	.cta-inline{
		padding:40px 20px;
	}
}
@media only screen and (max-width:1350px) and (min-width:1238px){
	.cta-inline .et_pb_promo_description {
    	flex-basis: 71%;
	}
}
@media only screen and (max-width:1237px) and (min-width:981px){
	.cta-inline .et_pb_promo_description {
    	flex-basis: 65%;
	}
}
@media only screen and (max-width:1240px) and (min-width:1051px){
	.cta-inline.et_pb_promo .et_pb_promo_description .et_pb_module_header{
		font-size:24px !important;
	}
	.cta-inline.et_pb_promo .et_pb_promo_description div {
    	font-size: 20px !important;
	}
}
@media only screen and (max-width:1050px) and (min-width:981px){
	.cta-inline.et_pb_promo .et_pb_promo_description .et_pb_module_header{
		font-size:20px !important;
	}
	.cta-inline.et_pb_promo .et_pb_promo_description div {
    	font-size: 16px !important;
	}
	.cta-inline .et_pb_button.et_pb_promo_button{
		min-width:176px !important;
	}
}

@media only screen and (max-width:1175px) and (min-width:1045px){
	.cta-inline .et_pb_promo_button.et_pb_button{
		font-size: 16px !important;
	}
}
@media only screen and (max-width:1046px) and (min-width:981px){
	.cta-inline .et_pb_promo_button.et_pb_button{
		font-size: 14px !important;
	}
	.cta-inline .et_pb_promo_description h3{
		font-size:28px;
	}
}

/*-- inline buttons home --*/
@media only screen and (min-width:981px){
	.inline-buttons .et_pb_button_module_wrapper{
		display:inline-block;
		float:left;
		margin-right:20px;
	}
	.inline-buttons .et_pb_button_module_wrapper:last-child{
		margin-right:0px;
	}
}
.mp-vertical-align-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
   justify-content: flex-end;
}
@media only screen and (max-width:1193px) and (min-width:1115px){
	.et_pb_button_module_wrapper .header-button.et_pb_button{
		font-size:16px !important;
		min-width: auto !important;
	}
}
@media only screen and (max-width:1114px) and (min-width:996px){
	.et_pb_button_module_wrapper .header-button.et_pb_button{
		font-size:14px !important;
		min-width: auto !important;
	}
}
@media only screen and (max-width:995px) and (min-width:981px){
	.et_pb_button_module_wrapper .header-button.et_pb_button{
		font-size:12px !important;
		min-width: auto !important;
	}
}
@media only screen and (max-width:980px){
	.mp-vertical-align-inline {
    	justify-content: space-evenly;
	}
}
@media only screen and (max-width:480px){
	.et_pb_button_module_wrapper .header-button.et_pb_button{
		font-size:14px !important;
		min-width: auto !important;
	}
}
@media only screen and (max-width:300px){
	.et_pb_button_module_wrapper .header-button.et_pb_button{
		font-size:12px !important;
	}
}
@media only screen and (max-width:263px){
	.et_pb_button_module_wrapper .header-button.et_pb_button{
		font-size:8px !important;
	}
}

/*-- header contact tag --*/
.contact-column{
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 16% 100%);
}
.contact-blurb .et_pb_blurb_content {
    max-width: 100%;
    display: flex;
    justify-content: center;
}
.contact-blurb .et_pb_module_header{
	font-weight:600 !important;
}
.contact-blurb .et_pb_blurb_description{
	font-weight:800 !important;
}
@media only screen and (max-width:300px){
	.contact-row-home{
		width:90% !important;
	}
	.contact-blurb.et_pb_blurb {
		font-size: 16px !important;
	}
}
/*-- footer --*/
.cta-footer-row{
	background: rgb(239,62,51);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 3.5%, rgba(239,62,51,1) 3.5%, rgba(239,62,51,1) 96.5%, rgba(255,255,255,1) 96.5%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 3.5%, rgba(239,62,51,1) 3.5%, rgba(239,62,51,1) 96.5%, rgba(255,255,255,1) 96.5%);
	background: linear-gradient(180deg, rgba(255,255,255,1) 3.5%, rgba(239,62,51,1) 3.5%, rgba(239,62,51,1) 96.5%, rgba(255,255,255,1) 96.5%);	
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.credits{
	font-size:12px;
}

.credits a {
	color: #000;	
}

.widget-title h4, .widgettitle{
	font-style:normal !important;
	letter-spacing:1px !important;
	font-weight:600 !important;
}
.et_pb_gutters3 .et_pb_column_1_5 .et_pb_widget{
	margin-bottom:20% !important;
}
@media only screen and (max-width:1340px) and (min-width:981px){
	footer .black-button{
		min-width:auto !important;
	}
}
@media only screen and (max-width:1120px) and (min-width:981px){
	.widget-title h4, .widgettitle, footer .et_pb_widget_area a, footer .et_pb_blurb{
		font-size:12px !important;
	}
	footer .black-button.et_pb_button{
		font-size:16px !important;
	}
}
@media only screen and (max-width:980px) and (min-width:481px){
	.accreditations-row .et_pb_column{
		width: 47.25%;
    	margin-right: 5.5%;
	}
	.icons-row .accreditations-row .et_pb_column:last-child{
    	margin-right: 0;
		width: 47.25% !important;
	}
}
@media only screen and (max-width:980px){
	.et_pb_gutters3 .et_pb_column_1_5 .et_pb_widget{
		margin-bottom:20px !important;
	}
}
/*-- button --*/

.et_pb_button, .et_pb_button_module_wrapper .et_pb_button, .et_pb_button.et_pb_promo_button{
	transition: 800ms ease all;
	overflow: hidden;
	z-index: 9;
    text-align: center;
	padding: 0.7em 0.8em !important;
	min-width:215px;
}
.et_pb_button:hover, .et_pb_button_module_wrapper .et_pb_button:hover, .et_pb_button.et_pb_promo_button:hover{
	padding: 0.7em 0.8em !important;
	border-radius:30px;
	transition: 800ms ease all;
}
.black-button{
	background:#3d3e43 !important;
}
@media only screen and (max-width:980px){
	.et_pb_button, .et_pb_button_module_wrapper .et_pb_button, .et_pb_button.et_pb_promo_button{
		font-size:16px !important;
	}
}
/*-- form --*/
body .gform_wrapper .gform_footer input.button{
	min-width: 260px;
	max-width: 260px;
	max-height: 58px;
	text-align: center;
	-webkit-transition: all .35s;
	transition: all .35s;
	border-radius:0 !important;
	background-color:#EE3B34 !important;	
	margin-top: 0;
	padding: 14px 20px;
}
body .gform_wrapper .gform_footer input.button:hover{
	border-radius:30px !important;
}
/*-- internals --*/
/*-.header-home{
	min-height:97vh;
}-*/
@media only screen and (max-width:980px){
	.header-home{
		min-height:60vh;
	}
}
.contact-row-home{
	padding-bottom:0 !important;
}
.home .contact-row-home{
	padding-bottom:28px !important;
}

/*-- services and home essentials --*/
.services-col .blurbs-services .et_pb_main_blurb_image {
	margin-bottom: 20px;
}
.services-col .et_pb_blurb_description{
	display:none;
	opacity:0;
	transition: all 50ms ease 0ms;
}
.home .services-col .blurbs-services .et_pb_module_header, .home .services-col .blurbs-services .et_pb_module_header a {
    min-height: 56px;
}
.home .services-col:hover .blurbs-services .et_pb_module_header, .home .services-col:hover .blurbs-services .et_pb_module_header a {
    min-height: auto;
}
.services-col:hover .blurbs-services .et_pb_main_blurb_image{
	display:none;
	transition: all 300ms ease 0ms;
}
.services-col:hover .et_pb_blurb_description{
	display:initial;
	opacity:1;
	transition: all 300ms ease 0ms;
}

.blurbs-services h3.et_pb_module_header {
	padding-bottom: 0;
}

@media only screen and (min-width:1620px){
	.blurbs-services{
		min-height: 340px !important;
	}
	.blurbs-services.et_pb_module.et_pb_blurb{
		padding-top:80px!important;
		padding-bottom:80px !important;
	}	
	.blurbs-services .et_pb_module_header{
		font-size:22px !important;
	}
	.blurbs-services .et_pb_blurb_description{
		font-size:18px !important;
	}
}
@media only screen and (max-width:1240px) and (min-width:981px){
	.better-row.et_pb_row_5col>.et_pb_column.et_pb_column_1_5 {
    	width: 47.25%;
    	margin-right: 5.5%;
	}
	.better-row.et_pb_row_5col>.et_pb_column.et_pb_column_1_5:nth-child(2n) {
    	margin-right: 0;
	}
	.better-row .et_pb_column {
   		margin-bottom: 30px;
	}
	.better-row .et_pb_column:last-child{
		width:100% !important;
		margin-right:0;
	}
	.better-row.et_pb_row_5col .et_pb_column:last-child {
    	margin-bottom: 0;
	}
}
@media only screen and (max-width:980px){
	.icons-row .et_pb_column:last-child{
		width:100% !important;
		margin-right:0;
	}
}
/*-- blog --*/
.custom-blog .et_pb_post .entry-title, .custom-blog .not-found-title {
    letter-spacing: 0;
    text-transform: capitalize;
    font-size: 22px!important;
}
.custom-blog .more-link{
	padding-left:5px;
}
.custom-blog .post-content{
	margin-bottom:20px;
}
.custom-blog .entry-title, .custom-blog .post-meta, .custom-blog .post-content{
    padding-left: 10px;
}
@media only screen and (max-width:980px){
	.custom-blog .more-link{
		display:block;
	}
}
.instagram-title{
	color:#ef3e33;
	text-transform:lowercase !important;
}
@media only screen and (max-width:980px){
	.instagram-title{
		display:block;
	}
}

@media only screen and (min-width:980px){
	.centering-checklist .et_pb_text_inner{
    	display: flex;
    	align-items: center;
    	justify-content: center;
	}
}
.checklist.black ul li:before{
	color:#000;
}
.checklist ul li li:before{
	content:"\f00c";
}
@media only screen and (max-width:554px){
	.mobile-row-space .et_pb_column{
		margin-bottom:0 !important;
	}
}
@media only screen and (max-width:980px) and (min-width:553px){
	.mobile-row-space .et_pb_column{
		width: 47.25%;
    	margin-right: 5.5%;
	}
	.mobile-row-space .et_pb_column:last-child{
    	margin-right: 0!important;
	}
}
/*-- testimonials slider --*/
.testimonial-slider .et_pb_slide_description{
	display: flex;
    flex-direction: column-reverse;
	text-shadow: none !important;
}
.testimonial-slider .et_pb_slide_description .et_pb_slide_title {
    margin-top: 20px;
	text-transform: capitalize;
    font-weight: 400 !important;
	font-style:normal;
}
.testimonial-slider .et_pb_slide_description {
	padding: 14% 0 10% !important;
}

@media only screen and (min-width:1101px){
	.testimonial-slider .et_pb_slide_image {
		width: 35.25%;
	}
	.testimonial-slider .et_pb_slide_with_image .et_pb_slide_description {
		width: 57.25%;
	}
	.testimonial-slider .et_pb_slide_image{
		top:60px;
		margin-top:0 !important;
	}
}
@media only screen and (max-width:1100px){
	.testimonial-slider .et_pb_slide_with_image .et_pb_slide_description {
 	   width: 90% !important;
	}
	.testimonial-slider .et_pb_slide_image{
		display: block!important;
		width: 90% !important;
		position: relative;
    	margin: 50px auto 0;
		padding: 0;
		top:0;
	}
	.testimonial-slider .et_pb_slide_description {
		padding: 14% 0 18% !important;
	}
	.testimonial-slider .et-pb-arrow-prev {
   		left: -15px;
		opacity:1;
	}
	.testimonial-slider .et-pb-arrow-next {
   		right: -15px;
		opacity:1;
	}
}
@media only screen and (max-width:980px){
	.testimonial-slider .et-pb-arrow-prev { 
		left: -20px;
		opacity:0;
}
.testimonial-slider .et-pb-arrow-next {
		right: -20px;
		opacity:0;
	}
}
/* ----- accordion ----- */

/*Icon Animation*/
.custom-accordion .et_pb_toggle_open .et_pb_toggle_title:before {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
/*Closed Icon*/
.custom-accordion .et_pb_toggle_title:before {
	content: '\f067';
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	right: auto;
	left:0;
}
.custom-accordion .et_pb_toggle_title, .custom-accordion h5.et_pb_toggle_title {
    padding: 0 0 0 5px;
}
/*Open Icon*/
.custom-accordion .et_pb_toggle_open .et_pb_toggle_title:before {
	content: '\f068'!important;
	line-height: 40px;
	color: #EF3E33;
}
/* ----- Open ----- */
.custom-accordion {
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
.mfp-figure:after {
    -webkit-box-shadow: 0 0 8px rgb(0 0 0 / 80%) !important;
    box-shadow: 0 0 8px rgb(0 0 0 / 80%) !important;
    background: #fff !important;
}

.pum-container .pum-title, .pum-close.popmake-close{
	text-transform: uppercase;
	font-family: jaf-bernina-sans, serif !important;
	font-weight:800 !important;
}
@media only screen and (max-width:410px){
	.pum-container .pum-title{
		font-size:18px !important;
	}
}


@media only screen and (min-width:981px){
	.mp-vertical-align-inline-title {
    	display: flex;
    	flex-direction: row;
    	align-items: center;
    	justify-content: center;
	}
}
@media only screen and (max-width:1486px) and (min-width:981px){
	.tale-row {
    	max-width: 50% !important;
	}
}

/* -- revision - menu change -- */
/* Button */
.menu-btn a,
.et-fixed-header #top-menu .menu-btn a {
	color: #fff !important;
	transition: 800ms ease all;
    overflow: hidden;
    z-index: 9;
    text-align: center;
    padding: 0.7em 0.8em !important;
    min-width: 215px;
	height: 60px;
	font-size: 18px !important;
    background-color: #ef3e33;
    border-color: rgba(239,62,51,0);
    border-radius: 0px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
	justify-content: center;
}

.menu-btn a:hover,
.et-fixed-header #top-menu .menu-btn a:hover {
	border-radius: 50px;
	opacity: 1 !important;
}

li.menu-btn {
	align-items: center !important;	
}

/* - mobile menu - */
/*Proper Collapsable Mobile Menu*/

/*Style the icon's placeholder*/
ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
ul.et_mobile_menu li.page_item_has_children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.page_item_has_children .mobile-toggle {
	width: 44px;
	height: 100%;
	padding: 0px !important;
	max-height: 44px;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 999;
	background-color: transparent;
	border-bottom: 0;
	text-align: center;
}
ul.et_mobile_menu > li.menu-item-has-children,
ul.et_mobile_menu > li.page_item_has_children,
ul.et_mobile_menu > li.menu-item-has-children .sub-menu li.menu-item-has-children,
.et-db #et-boc .et-l ul.et_mobile_menu > li.menu-item-has-children,
.et-db #et-boc .et-l ul.et_mobile_menu > li.page_item_has_children,
.et-db #et-boc .et-l ul.et_mobile_menu > li.menu-item-has-children .sub-menu li.menu-item-has-children {
	position: relative;
}
.et_mobile_menu .menu-item-has-children > a,
.et-db #et-boc .et-l .et_mobile_menu .menu-item-has-children > a {
	background-color: transparent;
}

/*Hide the Sub-menu*/
ul.et_mobile_menu .menu-item-has-children .sub-menu,
#main-header ul.et_mobile_menu .menu-item-has-children .sub-menu,
.et-db #et-boc .et-l ul.et_mobile_menu .menu-item-has-children .sub-menu,
.et-db #main-header ul.et_mobile_menu .menu-item-has-children .sub-menu {
	display: none !important;
	visibility: hidden !important;
}

/*Show the sub-menu when the + icon is clicked*/
ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
#main-header ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
.et-db #et-boc .et-l ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
.et-db #main-header ul.et_mobile_menu .menu-item-has-children .sub-menu.visible {
	display: block !important;
	visibility: visible !important;
}

/*Create the opening/closing icon using the Divi's Icons*/
ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after {
	top: 10px;
	position: relative;
	font-family: "ETModules";
}

/*Set the opening icon for custom Tax Pages*/
body.single-product:not(.et-tb-has-template) ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
body.tax-product_cat ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
body.tax-project_category ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
body.single-product.et-db:not(.et-tb-has-template) #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
body.tax-product_cat.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
body.tax-project_category.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after {
	content: "+";
}

/*Set the opening icon for default WordPress Pages*/
ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after {
	content: "\4c";
}

/*Set the closing icon*/
ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
body.single-product:not(.et-tb-has-template) ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
body.single-product.et-db:not(.et-tb-has-template) #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
body.tax-product_cat ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
body.tax-product_cat.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
body.tax-project_category ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
body.tax-project_category.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after {
	content: '\4d';
}


/* dropdown items */
.et_mobile_menu li ul.sub-menu li,
.et_mobile_menu li ul.sub-menu {
	text-align: center;
	padding-left: 0;
}

/* mobile icons */
ul li.mobile-icon a::before {
	font-family: 'ETModules';
	width: 20px;
	margin: 0;
	display: inline-block;
	text-align: center;
    position: relative;
    top: 6px;
    left: -8px;
	color: #EF3E33;
	/* set font size helps make icon sharper */
	font-size: 22px;
	font-weight: normal;	
}

ul li.mobile-icon.call a::before {
	content: '\e063';
}

ul li.mobile-icon.map a::before {
	content: '\e081';
}

ul li.mobile-icon.user a::before {
	content: '\e08a';
}

/* italics headings */
.non-italic h3 {
	font-style: normal;
}

/* - FOOTER - */
.footer-heading h3 {
	font-weight: 600 !important;
	padding-bottom: 0;
	font-size: 16px !important;
}

.accred.footer-heading h3 {
	white-space: nowrap;
}

.footer-row .et_pb_menu .et-menu-nav .et-menu {
	justify-content: flex-start;
    flex-direction: column;
}

.footer-row .et_pb_menu .et_pb_menu__wrap {
	justify-content: start;
}

.footer-row .et_pb_menu--without-logo .et_pb_menu__menu>nav>ul>li>a {
	padding-bottom: 0;
	font-weight: 500;
	color: #000;
}

@media (max-width: 980px) {
	.footer-row .et_mobile_nav_menu {
		display: none !important;
	}
	
	.footer-row .et_pb_menu__menu {
		display: block !important;
	}
}

@media (min-width: 480px) and (max-width: 980px) {
	.accred-col {
		padding-top: 20px;
	}
}

@media (max-width: 980px) {
	.accred-col .accred.footer-heading h3 {
		text-align: center;
	}
}

@media (max-width: 479px) {
	.footer-row .et_pb_menu .et-menu-nav .et-menu {
		justify-content: center;
		flex-direction: column;
	}

	.footer-row .et_pb_menu .et_pb_menu__wrap,
	.footer-row .et_pb_menu .et_pb_menu__wrap .et_pb_menu__menu .et-menu-nav ul li {
		justify-content: center;
	}	
}

/* top bar */
.top-bar-blurb.et_pb_blurb_position_left .et_pb_blurb_container {
	padding-left: 0;
}

.top-bar-blurb.et_pb_blurb_position_left .et_pb_main_blurb_image {
	vertical-align: middle;
	width: 27px;
}

.top-bar .col-2 {
	display: flex;
    justify-content: flex-end;
}

.top-bar-blurb.et_pb_blurb_position_left .et_pb_blurb_description {
	padding-top: 2px;
}

/* main menu responsive */
@media (min-width: 1756px) and (max-width: 1835px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 5px;
    	padding-right: 5px;
	}
}

@media (min-width: 1697px) and (max-width: 1755px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 5px;
    	padding-right: 5px;
	}
	
	.menu-btn a, 
	.et-fixed-header #top-menu .menu-btn a {
		font-size: 15px !important;
		min-width: 197px;
	}
}

@media (min-width: 1540px) and (max-width: 1696px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 3px;
    	padding-right: 3px;
	}
	
	.menu-btn a, 
	.et-fixed-header #top-menu .menu-btn a {
		font-size: 13px !important;
		min-width: 174px;
	}
	
	.main-menu.et_pb_menu ul li a {
		font-size: 13px !important;
	}
}

@media (min-width: 1440px) and (max-width: 1539px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 3px;
    	padding-right: 3px;
	}
	
	.menu-btn a, 
	.et-fixed-header #top-menu .menu-btn a {
		font-size: 13px !important;
		min-width: 174px;
	}
	
	.main-menu.et_pb_menu ul li a {
		font-size: 13px !important;
	}
	
	.main-menu.et_pb_menu .et_pb_menu__logo-wrap {
		width: 290px !important;
	}
}


@media (min-width: 1340px) and (max-width: 1439px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 3px;
    	padding-right: 3px;
	}
	
	.menu-btn a, 
	.et-fixed-header #top-menu .menu-btn a {
		font-size: 13px !important;
		min-width: 174px;
	}
	
	.main-menu.et_pb_menu ul li a {
		font-size: 13px !important;
	}
	
	.main-menu.et_pb_menu .et_pb_menu__logo-wrap {
		width: 200px !important;
	}
}

@media (min-width: 1265px) and (max-width: 1339px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 3px;
    	padding-right: 3px;
	}
	
	.menu-btn a, 
	.et-fixed-header #top-menu .menu-btn a {
		font-size: 13px !important;
		min-width: auto;
	}
	
	.main-menu.et_pb_menu ul li a {
		font-size: 13px !important;
	}
	
	.main-menu.et_pb_menu .et_pb_menu__logo-wrap {
		width: 200px !important;
	}
}

@media (min-width: 1170px) and (max-width: 1264px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 3px;
    	padding-right: 3px;
	}
	
	.menu-btn a, 
	.et-fixed-header #top-menu .menu-btn a {
		font-size: 12px !important;
		min-width: auto;
	}
	
	.main-menu.et_pb_menu ul li a {
		font-size: 12px !important;
	}
	
	.main-menu.et_pb_menu .et_pb_menu__logo-wrap {
		width: 170px !important;
	}
	
	.main-menu.et-menu .menu-item-has-children>a:first-child {
		padding-right: 15px;
	}
}

@media (min-width: 981px) and (max-width: 1169px) {
	.main-menu.et_pb_menu .et-menu>li {
		padding-left: 3px;
    	padding-right: 3px;
	}
	
	.menu-btn a, 
	.et-fixed-header #top-menu .menu-btn a {
		font-size: 10px !important;
		min-width: auto;
	}
	
	.main-menu.et_pb_menu ul li a {
		font-size: 10px !important;
	}
	
	.main-menu.et_pb_menu .et_pb_menu__logo-wrap {
		width: 95px !important;
	}
	
	.main-menu.et_pb_menu .et_pb_menu__logo-wrap .et_pb_menu__logo {
		margin-right: 0;
	}
	
	.main-menu.et-menu .menu-item-has-children>a:first-child {
		padding-right: 15px;
	}
}

/* homepage - services - image blurbs */
.image-services-section .et_pb_blurb .et_pb_blurb_content {
	max-width: 100%;
	background-color: rgb(239 62 51 / 80%);
	padding: 10px;
}

@media (min-width: 981px) and (max-width: 1260px) {
	.image-services-section .et_pb_blurb .et_pb_blurb_content h3.et_pb_module_header {
		font-size: 21px !important;
	}
}

/* homepage - expect more from us */
.icon-blurb-headings .et_pb_blurb .et_pb_blurb_content h3.et_pb_module_header {
	font-size: 15px !important;
}

@media (min-width: 981px) and (max-width: 1080px) {
	.icon-blurb-headings .et_pb_blurb .et_pb_blurb_content h3.et_pb_module_header {
		font-size: 13px !important;
	}	
}

/* homepage - google reviews slider */
.google-reviews-code .rplg-slider .rplg-slider-prev span {
	top: 45%!important;
    left: 31%!important;
}

.rplg-slider .rplg-slider-next span {
	top: 46%!important;	
}

/* commercial fuel - google reviews slider */
.reviews-gray-background .google-reviews-code .rplg-slider .rplg-box {
	background-color: #fff !important;
}

/* homepage - number counters */
@media (min-width: 981px) and (max-width: 1280px) {
	.number-counter-row .et_pb_number_counter .percent p {
		font-size: 30px !important;
	}	
}

@media (min-width: 1281px) and (max-width: 1580px) {
	.number-counter-row .et_pb_number_counter .percent p {
		font-size: 41px !important;
	}	
}

@media (min-width: 1581px) and (max-width: 1880px) {
	.number-counter-row .et_pb_number_counter .percent p {
		font-size: 51px !important;
	}	
}

@media (min-width: 981px) and (max-width: 1100px) {
	.number-counter-row .et_pb_number_counter .title {
		font-size: 16px;	
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.number-counter-row .et_pb_column.et_pb_column_1_5:last-child,
	.icon-blurb-headings .et_pb_column.et_pb_column_1_5:last-child {
		width: 100%;
	}
}

/* global contact us blurb with image */
.contact-row-home .et_pb_blurb .et_pb_main_blurb_image {
	width: 80px;
	margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 980px) {
	.contact-row-home .et_pb_blurb .et_pb_main_blurb_image {
		width: 48px;
	}	
}

.contact-row-home .et_pb_blurb_position_left .et_pb_blurb_container {
	padding-left: 0;
}

/* checklists - more spacing */
.checklist-more-space .checklist ul li {
	padding-bottom: 18px;
}

/* -- Home Essentials -- */
@media (min-width: 981px) and (max-width: 1115px) {
	.appliances-section .blurbs-services h3 {
		font-size: 17px !important;
	}	
}

@media (max-width: 980px) {
	.appliances-section .et_pb_row .et_pb_column {
		margin-right: 0;
    	width: 100%;
	}
}

/* -- DIVI Toggle icons -- */
.et_pb_toggle_title:before {
	content: "\f067";
}

.et_pb_toggle_open .et_pb_toggle_title:before {
	content: "\f068";
}

/* editors with left or right aligned images on mobile */
@media (max-width: 767px) {
	img.alignright,
	img.alignleft {
		float: none;
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 10px;
	}
}

/* -- WHOLESALE FUEL -- */
@media (min-width: 700px) {
	.wholesale-brand-logos-row .et_pb_column {
		display: flex;
		flex-direction: row;
		gap: 2em;
	}
	
	.wholesale-brand-logos-row .et_pb_column .et_pb_image {
		margin: auto;
    	width: 60%;
	}
}

@media (max-width: 699px) {
	.wholesale-brand-logos-row .et_pb_column {
		display: flex;
		flex-direction: column;
		gap: 2em;
	}	
	
	.wholesale-brand-logos-row .et_pb_column .et_pb_image {
		margin: auto;
    	width: 50%;
	} 
	
	.wholesale-brand-logos-row .et_pb_column .et_pb_image.smaller-mobile {
    	width: 40%;
	}
}

/* -- LOCATIONS -- */
.mfp-content figcaption .mfp-bottom-bar .mfp-title {
	display: none;
}

@media (max-width: 980px) {
	.team-gallery.et_pb_gallery_grid .et_pb_gallery_image {
		max-width: 90%;
	}	
}

/* -- NEWS -- */
.two-blog .et_pb_salvattore_content[data-columns]::before {
    content: '2 .column.size-1of2' !important;
}
@media only screen and ( min-width: 981px ) {
    .two-blog .column.size-1of2 {
        width: 43%!important;
        margin-right: 7%;
    }
}

/* -- 	CONTACT PAGE -- */
@media (max-width: 980px) {
	.emergency-row .et_pb_column {
		margin-bottom: 0;
	}	
}

/* -- REV 3 -- */

.rplg .rplg-review-avatar {
	width: 80px !important;
    height: 80px !important;
}

.locations-dropdown .et_pb_menu__menu>nav>ul>li {
    margin-top: 10px !important;
}

.locations-blurb {
	display: flex;
	align-items: center;
}

.shop_filter_fix .dp-dfg-header.entry-header {
    padding-top: 18px;
}

.shop_filter_fix.shop_related_fix .dp-dfg-header.entry-header{
    padding-bottom: 18px !important;
}

body .Ppb_prdsldWrap .slider-nav .slick-slide img {    
    border: 5px solid #fff;
	width: 100%;
	cursor: pointer;
}
.font_Wrap{
	margin-right: 5px;
	font-weight: 700;
}
.Ppb_termsItem:last-child .Ppb_itemsep{
	display: none;
}