/*--/*
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: 2.2.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: #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 {
	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 {
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 200%;
	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: 42px;
	height: 20px;
	background-image: url("/wp-content/uploads/fs-lettermark-white.svg");
	background-repeat: no-repeat;
	background-size: 42px 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 {
		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: 32px;
	margin: 0 0 21px !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;
	}
	.checklist ul li {
		margin: 0 0 16px !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 {
		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 {
		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 {
		column-count: 4;
	}
}

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

/* -- 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 {
	transform: scale(-1,-1);
}

/* -- END TESTIMONIALS PLUGIN -- */


/* -- GRAVITY FORMS -- */
/*-- hide text in button after click --*/
.gform_wrapper .gf_simple_horizontal .gform_body, .gform_wrapper .gf_simple_horizontal .gform_footer.top_label, .gform_wrapper.gravity-theme *{
	position:relative;
}
body .gform_wrapper .gform_footer input.button:focus, body .gform_wrapper .gform_page_footer input.button:focus, body div.form_saved_message div.form_saved_message_emailform form input[type=submit]:focus {
	opacity:0 !important;
}
/* we swap out form ajax spinner via PHP Function, and add spinning if its PNG */
img.gform_ajax_spinner[src$=".png"] {
	animation: lime-spin 1.5s linear infinite;
	padding: 0;
	margin-left: 10px;
	position: absolute;
    bottom: 3vh;
    left: 50%;
	border-radius:50%;
}
@keyframes lime-spin { 100% { transform:rotate(360deg); } }

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


/*menu fonts*/
.menu.et_pb_menu ul li a:hover {
    font-weight: 700;
}
@media (max-width: 980px){
	.menu .et_pb_menu__menu {
    	display: inherit;
	}
	.menu .et_mobile_nav_menu {
		display: none;
	}
	.et_pb_menu--with-logo .et_pb_menu__menu>nav>ul>li>a {
		padding: 20px 5px 16px 6px;
	}
}

@font-face {
    font-family: 'ApercuBold';
       src: url('/wp-content/themes/divi-child/fonts/apercu-bold.otf') format('otf');
}
@font-face {
    font-family: 'ApercuRegular';
       src: url('/wp-content/themes/divi-child/fonts/apercu-regular.otf') format('otf');
}
@font-face {
    font-family: 'NeueMachina-Light';
       src: url('/wp-content/themes/divi-child/fonts/NeueMachina-Light.otf') format('otf');
}
@font-face {
    font-family: 'Neue Machina Regular';
       src: url('/wp-content/themes/divi-child/fonts/NeueMachina-Regular.otf') format('otf');
}
@font-face {
    font-family: 'NeueMachina-Ultrabold';
       src: url('/wp-content/themes/divi-child/fonts/NeueMachina-Ultrabold.otf') format('otf');
}
@font-face {
    font-family: 'OCR A Std Regular';
       src: url('/wp-content/themes/divi-child/fonts/OCR A Std Regular.ttf') format('ttf');
}
/*footer social icons*/
.footer-social li a.icon {
    height: 40px!important;
    width: 40px!important;
}
.footer-social li a.icon:before {
    line-height: 40px!important;
    height: 40px!important;
    width: 40px!important;
}
@media (max-width: 980px){
	.footer-social li a.icon {
    	height: 32px!important;
    	width: 32px!important;
}
.footer-social li a.icon:before {
    	line-height: 32px!important;
    	height: 32px!important;
    	width: 32px!important;
	}
}


/*footer email form*/
.footer-form form#gform_2 {
    margin-left: 0px;
}
.footer-form input#input_2_4 {
    background-color: #ffffff30;
    width: 396px;
    border-bottom: 1px solid #ffffff;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px 5px 0px 0px;
	color:#fff;
}
.footer-form input#gform_submit_button_2 {
    background-color: #cf3939;
    color: #fff !important;
    border-radius: 6px;
    border: 0px;
    width: 144px;
    height: 48px!important;
    margin-top: 12px;
	font-family: 'Apercu Regular',Helvetica,Arial,Lucida,sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: 2px;
}
.footer-form input#gform_submit_button_2:hover {
    background-color: #ffffff;
    color: #000000;
}
@media (max-width: 767px){
	.footer-form input#input_2_4 {
    	width: 179px;
	}
	.footer-form input#gform_submit_button_2 {
    	width: 136px;
    	padding: 10px;
	}
}
@media (max-width: 419px){
	.footer-form input#input_2_4 {
    	width: 150px;
	}
	.footer-form input#gform_submit_button_2 {
    	width: 114px;
    	padding: 10px;
	}
}

/*footer columns*/
@media (max-width: 1338px) and (min-width: 1116px){
	.foot-col1 {
		width:38%!important;
	}
	.foot-col2 {
		width:17%!important;
	}
	/*footer email*/
	.footer-form input#input_2_4 {
    	width: 216px;
	}
}
@media (max-width: 1115px) and (min-width: 981px){
	.foot-col1 {
		width:31%!important;
	}
	.foot-col2 {
		width:20%!important;
	}
	/*footer email*/
	.footer-form input#input_2_4 {
    	width: 160px;
	}
	/*footer subscribe button*/
	.footer-form input#gform_submit_button_2 {
    	width: 104px;
    	padding: 0px;
	}
}

@media (max-width: 767px){
	.footer-row .et_pb_column {
		width:100%!important;
	}
	.word-space {
		word-spacing:14px;
	}
}


/*place category blog meta above blog title*/
.et_pb_module.et_pb_posts .et_pb_post {
    display: flex;
    flex-direction: column;
}
.et_pb_module.et_pb_posts .et_pb_post .post-meta {
    order: 1;
}
.et_pb_module.et_pb_posts .et_pb_post .entry-title {
    order: 2;
}
.et_pb_module.et_pb_posts .et_pb_post .post-content {
    order: 3;
}

/*blog meta distance*/
.et_pb_post .entry-featured-image-url {
    margin-bottom: 15px;
}
.et_pb_post p.post-meta {
    padding-bottom: 6px!important;
}


/*blog extra style modules*/

/*image radius*/
.standard-blog .et_pb_post_extra .post-media img {
    border-radius: 6px;
}
/*text padding*/
.standard-blog .et_pb_post_extra.el_dbe_box_extended .post-content {
    padding: 10px 0px;
}
.standard-blog .et_pb_post {
	margin-bottom: 30px;
}
/*category font*/
.standard-blog a.el_category_term.el_term_blog, .standard-blog a.el_category_term {
    font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif;
}

/* blog image to the left*/
@media (min-width: 767px) {
	.circle-blog .et_pb_post_extra .post-content { 
		order: 3; 
	}
	.circle-blog .post-content {
        width: 70%!important;
    	padding: 0px 0px 0px 15px!important;
	}
	.circle-blog .post-media {
    	display: flex;
    	width: 30%!important;
    	align-items: center;
	}
	/*circle image*/
	.circle-blog .et_pb_post_extra .post-media img {
    	border-radius: 50%;
    	height: 90px;
    	width: 100px;
    	object-fit: cover;
    	display: inline-block;
	}
	.circle-blog .et_pb_post_extra.el_dbe_grid_extended .entry-title {
    	margin-top: 0px;
    	margin-bottom: 0px;
    	padding-bottom: 0px;
	}
	/*align text*/
	.circle-blog .post-content {
    	align-items: center;
    	display: flex;
	}
	/*bottom spacing*/
	.circle-blog .et_pb_post {
    	margin-bottom: 40px;
	}
}
@media (max-width: 1430px) and (min-width: 1150px) {
	.circle-blog .et_pb_post_extra .post-media img {
    	height: 70px;
		width: 70px;
	}
}
@media (max-width: 1149px) and (min-width: 981px) {
	.circle-blog .et_pb_post_extra .post-media img {
    	height: 60px;
		width: 70px;
	}
}



/*image hover*/
.standard-blog .et_pb_post_extra .post-media img:hover {
    opacity: 1.0!important;
    pointer-events: none;
    cursor: auto;
}


/*button width*/
a.et_pb_button {
    width: 273px;
    text-align: center;
}
@media (max-width: 460px) {
	a.et_pb_button {
    	width: 100%;
    	text-align: center;
	}
}


/*smart slider tab*/
/*text backgrounds*/
div#n2-ss-2 .n2-style-be308ba303ff725f8d79ae2ac5aed47c-simple,
div#n2-ss-3 .n2-style-7b1076d32d1f4cf1e0a7c8052d62f052-simple,
div#n2-ss-8 .n2-style-d4c0af36bedf40bcc07bd43f308c1f72-simple,
div#n2-ss-9 .n2-style-f58d52632d016e4532dc73de3ceef8d2-simple,
div#n2-ss-12 .n2-style-7b1076d32d1f4cf1e0a7c8052d62f052-simple,
div#n2-ss-14 .n2-style-d4c0af36bedf40bcc07bd43f308c1f72-simple,
div#n2-ss-15 .n2-style-f58d52632d016e4532dc73de3ceef8d2-simple,
div#n2-ss-18 .n2-style-d4c0af36bedf40bcc07bd43f308c1f72-simple,
div#n2-ss-19 .n2-style-f58d52632d016e4532dc73de3ceef8d2-simple,
div#n2-ss-21 .n2-style-d4c0af36bedf40bcc07bd43f308c1f72-simple,
div#n2-ss-22 .n2-style-f58d52632d016e4532dc73de3ceef8d2-simple,
div#n2-ss-23 .n2-style-d4c0af36bedf40bcc07bd43f308c1f72-simple{
    background: transparent!important;
}
/*hide background image*/
div#n2-ss-2 .n2-thumbnail-dot img,
div#n2-ss-3 .n2-thumbnail-dot img,
div#n2-ss-8 .n2-thumbnail-dot img,
div#n2-ss-9 .n2-thumbnail-dot img,
div#n2-ss-12 .n2-thumbnail-dot img,
div#n2-ss-14 .n2-thumbnail-dot img,
div#n2-ss-15 .n2-thumbnail-dot img,
div#n2-ss-18 .n2-thumbnail-dot img,
div#n2-ss-23 .n2-thumbnail-dot img{
    opacity: 0;
}
div#n2-ss-2  .n2-thumbnail-dot.n2-active  img,
div#n2-ss-3  .n2-thumbnail-dot.n2-active  img,
div#n2-ss-8  .n2-thumbnail-dot.n2-active  img,
div#n2-ss-9  .n2-thumbnail-dot.n2-active  img,
div#n2-ss-12 .n2-thumbnail-dot.n2-active img,
div#n2-ss-14 .n2-thumbnail-dot.n2-active img,
div#n2-ss-15 .n2-thumbnail-dot.n2-active img,
div#n2-ss-18 .n2-thumbnail-dot.n2-active img,
div#n2-ss-23 .n2-thumbnail-dot.n2-active img{
    opacity: 1;
}
div#n2-ss-2  .n2-thumbnail-dot:hover img,
div#n2-ss-3  .n2-thumbnail-dot:hover img,
div#n2-ss-8  .n2-thumbnail-dot:hover img,
div#n2-ss-9  .n2-thumbnail-dot:hover img,
div#n2-ss-12 .n2-thumbnail-dot:hover img,
div#n2-ss-14 .n2-thumbnail-dot:hover img,
div#n2-ss-15 .n2-thumbnail-dot:hover img,
div#n2-ss-18 .n2-thumbnail-dot:hover img,
div#n2-ss-23 .n2-thumbnail-dot:hover img{
    opacity: 1;
}
.neue-slide h2 {
    font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif!important;
    font-size: 32px!important;
    line-height: 38.4px!important;
}
.neue-slide p {
	font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif!important;
	text-transform: uppercase!important;
}
.apercu-slide p {
    font-family: 'Apercu Regular',Helvetica,Arial,Lucida,sans-serif!important;
}
/*slider button*/
.red-slider-button div {
    letter-spacing: 1px;
    font-size: 16px!important;
    text-transform: uppercase!important;
	font-weight:700!important;
	font-family: 'Apercu Regular',Helvetica,Arial,Lucida,sans-serif!important;
}
.red-slider-button a {
    width: 273px;
}
@media (max-width: 370px) {
	.red-slider-button a {
    	width: 220px;
	}
}
/*tabs transparent background*/
div#n2-ss-2 .n2-style-d4c0af36bedf40bcc07bd43f308c1f72-simple,
div#n2-ss-3 .n2-style-f58d52632d016e4532dc73de3ceef8d2-simple,
div#n2-ss-8 .n2-style-be308ba303ff725f8d79ae2ac5aed47c-simple,
div#n2-ss-9 .n2-style-7b1076d32d1f4cf1e0a7c8052d62f052-simple,
div#n2-ss-14 .n2-font-7afee3ff111512f9554d74e26193da8f-simple,
div#n2-ss-14 .n2-style-be308ba303ff725f8d79ae2ac5aed47c-simple,
div#n2-ss-15 .n2-style-7b1076d32d1f4cf1e0a7c8052d62f052-simple,
div#n2-ss-18 .n2-style-be308ba303ff725f8d79ae2ac5aed47c-simple,
div#n2-ss-19 .n2-style-7b1076d32d1f4cf1e0a7c8052d62f052-simple,
div#n2-ss-21 .n2-style-be308ba303ff725f8d79ae2ac5aed47c-simple,
div#n2-ss-22 .n2-style-7b1076d32d1f4cf1e0a7c8052d62f052-simple,
div#n2-ss-23 .n2-style-be308ba303ff725f8d79ae2ac5aed47c-simple{
	background: transparent!important;
}
/*tab font*/
div#n2-ss-2 .n2-font-7afee3ff111512f9554d74e26193da8f-simple,
div#n2-ss-12 .n2-font-eaed940841b231d62bb4dda11837a5f6-simple,
div#n2-ss-8 .n2-font-7afee3ff111512f9554d74e26193da8f-simple,
div#n2-ss-14 .n2-font-7afee3ff111512f9554d74e26193da8f-simple,
div#n2-ss-15 .n2-font-fc4d90183b53a8d7049df3b59a797c31-simple,
div#n2-ss-18 .n2-font-7afee3ff111512f9554d74e26193da8f-simple,
div#n2-ss-19 .n2-font-fc4d90183b53a8d7049df3b59a797c31-simple,
div#n2-ss-22 .n2-font-fc4d90183b53a8d7049df3b59a797c31-simple,
div#n2-ss-21 .n2-font-7afee3ff111512f9554d74e26193da8f-simple{
    font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif!important;
    color: #ffffff!important;
    font-size: 14px!important;
	line-height:22px!important;
}

div#n2-ss-3 .n2-font-fc4d90183b53a8d7049df3b59a797c31-simple {
    font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif!important;
    color: #ffffff!important;
    font-size: 12px!important;
	line-height:22px!important;
}

/*slider test buttons*/
a.n2-style-86efea88420a0c908b80bd7b0c020eab-heading.n2-ow.popmake-33232 {
    width: 110px;
}
/*accelerator slider tab background*/
div#n2-ss-12 .n2-style-4ab10aae93cb89c6d9ac3d9dcc3cc541-dot {
	background: #fff!important;
}
div#n2-ss-12 .n2-font-eaed940841b231d62bb4dda11837a5f6-simple{
	color:#000!important;
}
div#n2-ss-12 .n2-active .n2-font-eaed940841b231d62bb4dda11837a5f6-simple, div#n2-ss-12 .n2-thumbnail-dot:hover .n2-font-eaed940841b231d62bb4dda11837a5f6-simple{
	color:#fff!important;
}
@media (max-width: 390px) {
	/*mobile tab width*/
	div#n2-ss-3 .n2-thumbnail-dot img {
    	width: 138px!important;
	}
}

/*individual page events single tab event widths on mobile*/
@media  (max-width: 980px) {
	/*background picture*/
	div#n2-ss-9 .n2-thumbnail-dot img {
    	width: 100%!important;
	}
	/*tab*/
	div#n2-ss-9 .nextend-thumbnail-scroller picture {
    	width: 280px;
	}
}
@media (max-width: 981px) and (min-width: 767px) {
/*blog slider on mobile image*/
	.mobile-slider .post-media {
    	width: 100%;
    	max-height: 210px!important;
    	height: 100%;
	}
}
@media (max-width: 766px) and (min-width: 560px) {
/*blog slider on mobile image*/
	.mobile-slider .post-media {
    	width: 100%;
    	max-height: 160px!important;
    	height: 100%;
	}
}
@media (max-width: 559px) and (min-width: 371px) {
/*blog slider on mobile image*/
	.mobile-slider .post-media {
    	width: 100%;
    	max-height: 130px!important;
    	height: 100%;
	}
}
@media (max-width: 370px) {
/*blog slider on mobile image*/
	.mobile-slider .post-media {
    	width: 100%;
    	max-height: 89px!important;
    	height: 100%;
	}
}
/*hide borders*/
.mobile-slider .entry-title {
    border-bottom: 0px solid #ededed!important;
}
.mobile-slider .et_pb_post_extra.el_dbe_vertical_grid {
    -webkit-box-shadow: 0 0 0px rgb(0 0 0 / 20%);
    box-shadow: 0 0 0px rgb(0 0 0 / 20%);
}
.mobile-slider .post-content {
    padding: 0px!important;
}


/*remove space under column*/
@media (max-width: 981px) {
	.shrink-column {
		margin-bottom:0px;
	}
}

/*home collections slider*/
.large-circle-slider .post-media {
    display: flex;
    width: 23%!important;
    align-items: center;
	max-height: 100%!important;
}

.large-circle-slider.mobile-slider .post-content {
    padding: 0px 0px 0px 15px!important;
}
.large-circle-slider .et_pb_post_extra .post-media img {
    border-radius: 50%;
    height: 70px!important;
    width: 70px!important;
    object-fit: cover!important;
    display: flex;
    align-items: center;
    vertical-align: middle;
    align-content: center;
}
.large-circle-slider .el-dbe-blog-extra-slider .post-media .entry-featured-image-url{
	display:flex;
	align-items:center;
}
.large-circle-slider .circle-blog .post-content {
	width: 77%!important;
}
.large-circle-slider .post-content {
    align-items: center;
    display: flex;
	width:77%!important;
}
@media (max-width: 1375px) and (min-width: 1190px) {
	.large-circle-slider .et_pb_post_extra .post-media img {
		height: 60px!important;
		width: 60px!important;
	}
}
@media (max-width: 1189px) and (min-width: 981px) {
	.large-circle-slider .et_pb_post_extra .post-media img {
		height: 45px!important;
		width: 45px!important;
	}
}
@media (max-width: 628px) and (min-width: 463px) {
	.large-circle-slider .et_pb_post_extra .post-media img {
		height: 50px!important;
		width: 50px!important;
	}
}

@media (max-width: 462px) and (min-width: 320px) {
	.large-circle-slider .et_pb_post_extra .post-media img {
		height: 70px!important;
		width: 70px!important;
	}
	.large-circle-slider .et_pb_post {
		width:304px!important;
	}
}


/*switch col on home page size*/
@media (min-width: 767px){
	.small-white-column {
		max-width:440px;
	}
}


/*homepage colored blurbs icon placement*/
.color-blurb .et_pb_main_blurb_image {
    padding-top: 10px;
	width: 8px;
}
@media (max-width: 981px){
	.color-blurb .et_pb_main_blurb_image {
    	padding-top: 5px;
	}
}
.color-blurb .et_pb_blurb_container {
    padding-left: 16px;
}

/*remove bottom space*/
.no-bottom  ul {
    padding-bottom: 0;
}

/*show icon*/
.color-blurb .et-waypoint:not(.et_pb_counters) {
    opacity: 1;
}

/*full width row*/
.color-row {
	width:100%!important;
	border-radius:6px;
}

/*spacing under top color boxes*/
.color-space {
	margin-bottom:48px!important;
}

/*reduce spacing above category*/
@media (min-width: 981px){
	.post-categories {
    	margin-top: 0px;
	}
}

@media (max-width: 767px){
/*home bottom slider image height*/
	.three-slider .post-media {
    	max-height: 162.4px!important;
    	border-radius: 6px;
		margin-bottom: 16px;
		min-height: 162.4px!important;
	}

	.three-slider .et_pb_post {
		max-height: 100%!important;
    	height: 100%!important;
    	width: 260px!important;
	}
}
.three-slider .post-media {
	margin-bottom: 16px;
	max-height: 248px;
	min-height: 248px;
}


.no-margin {
	margin-bottom:0px!important;
}

/*homepage on the regular spacing*/
body .on-the {
	margin-bottom:-20px!important;
}
@media (max-width: 981px){
	body .on-the {
		margin-bottom:20px!important;
	}
}

/*gravity Forms*/
.gform_wrapper.gravity-theme .gfield_label {
    font-size: 16px;
    font-weight: 400;
    color: black;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text] {
    background-color: #00000010;
    border: 0;
    border-bottom: 1px solid #000000;
    font-size: 14px;
    color: #000000;
    border-radius: 6px 6px 0px 0px;
}
body .gform_wrapper .gform_footer input.button, body .gform_wrapper .gform_page_footer input.button, body div.form_saved_message div.form_saved_message_emailform form input[type=submit] {
    background-color: #CF3939;
    color: #fff;
    border-color: #CF3939;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 273px;
}
@media (max-width: 767px){
	body .gform_wrapper .gform_footer input.button, body .gform_wrapper .gform_page_footer input.button, body div.form_saved_message div.form_saved_message_emailform form input[type=submit] {
    	width: 100%;
	}
}
body .gform_wrapper .gform_footer input.button:hover, body .gform_wrapper .gform_page_footer input.button:hover, body div.form_saved_message div.form_saved_message_emailform form input[type=submit]:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    border-radius: 6px;
    letter-spacing: 1px;
}
body .gform_wrapper .gform_footer, body .gform_wrapper .gform_page_footer {
    text-align: center;
}

/*popup maker prevent page from moving when popup opens*/
html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
    padding-right: 0px;
}

/*founder slider mobile box sizing*/
div#n2-ss-4-align.n2-ss-slider .n2-ow, div#n2-ss-4-align .n2-ss-slider .n2-ow:before, div#n2-ss-4-align .n2-ss-slider .n2-ow:after, div#n2-ss-4-align .n2-ss-slider .n2-ow-all *, div#n2-ss-4-align .n2-ss-slider .n2-ow-all :before, div#n2-ss-4-align .n2-ss-slider .n2-ow-all :after {
    box-sizing: border-box!important;
}

/*founder's slider line height*/
div#n2-ss-4-align p, div#n2-ss-4-align ul, div#n2-ss-4-align .et_pb_text_inner {
	line-height:24px!important;
}


/*founders page header*/
@media (min-width: 981px){
	.max-column {
		max-width:760px;
		margin-left: auto;
	}
}


/*vertical align content*/
.vertical-align  {
	margin-top:auto;
	margin-bottom:auto;
}

/*testimonial slider*/
.testimonial-slider .quote p {
    font-family: 'Neue Machina Regular',Helvetica,Arial,Lucida,sans-serif !important;
    font-size: 24px!important;
	line-height: 28.8px!important;
}
.testimonial-slider .person p {
	font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif !important;
    font-size: 20px!important;
	line-height: 24px!important;
}
.testimonial-slider .title p {
	font-family: 'Apercu Regular',Helvetica,Arial,Lucida,sans-serif !important;
    font-size: 20px;
    line-height: 28px;
}

/*testimonial slider on mobile*/
@media (max-width: 980px){
	.testimonial-slider .quote p {
    	font-size: 16px!important;
		line-height: 24px!important;
	}
	.testimonial-slider .person p {
    	font-size: 16px!important;
		line-height: 19.2px!important;
	}
	.testimonial-slider .title p {
    	font-size: 16px;
    	line-height: 24px;
	}
}

/*black email pop up*/
.around-form input#gform_submit_button_2 {
	width: 135px;
}
.around-form form#gform_2 {
    margin: 0px;
    width: 100%!important;
}
.around-form input#input_2_4 {
    background-color: #ffffff30;
    width: 188px;
    border-bottom: 1px solid #ffffff;
    padding: 20px;
    font-size: 16px;
    border-radius: 5px 5px 0px 0px;
    margin-top: 4px!important;
}
.around-form input#gform_submit_button_2:hover {
    background: white;
    color: black;
}
@media (max-width: 980px){
/*coaching page mobile header alignment*/
	.coaching-header {
		background-size: auto!important;
    	background-position: right!important;
	}
}

/*the coaches line up on mobile*/
@media (max-width: 980px){
	.two-third-col {
    	width: 70%;
    	margin-top: auto;
    	margin-bottom: auto!important;
	}
	.third-col {
    	width: 30%!important;
    	margin-top: auto;
    	margin-bottom: auto!important;
		margin-right: 3%;
	}
	.flex-row {
		display:flex;
	}
}
@media (max-width: 479px){
	.two-third-col {
    	width: 70%;
    	margin-top: auto;
    	margin-bottom: auto!important;
	}
	.third-col {
    	width: 45%!important;
    	margin-top: auto;
    	margin-bottom: auto!important;
		margin-right: 3%;
	}
	.flex-row {
		display:flex;
	}
}


/*white gravity form*/
body .white-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .white-form .gform_wrapper textarea.textarea, body .white-form div.form_saved_message div.form_saved_message_emailform form input[type=text] {
	background-color: #fff;
}
body .white-form .gform_wrapper select {
    background: #fff;
    border-bottom: 1px solid black;
	color: #000
}
/*message height*/
textarea#input_8_5 {
    height: 105px;
}



/*pitch page mobile header alignment*/
@media (max-width: 980px){
	.pitch-header {
		background-size: cover!important;
    	background-position: top!important;
	}
}
@media (max-width: 624px){
	.pitch-header {
		background-size: contain!important;
	}
}

/*featured founders image sizes*/
.featured-founders img.dp-dfg-featured-image {
    width: 104px!important;
    margin-left: auto;
    margin-right: auto;
}
/*title padding*/
.featured-founders .dp-dfg-header.entry-header {
    padding-top: 20px;
    padding-bottom: 0px;
}
/*disable link*/
.featured-founders .dp-dfg-skin-default:not([data-action=none]) .dp-dfg-item {
    pointer-events: none;
}
@media (max-width: 980px){
	.feature-row .et_pb_column {
		width:100%!important;
	}
	.feature-row figure.dp-dfg-image.entry-thumb {
    	width: 104px;
    	margin-left: auto;
    	margin-right: auto;
	}
	.feature-row .dp-dfg-item {
		 grid-template-columns: minmax(104px,15%) 1fr!important;
    	-ms-grid-columns: minmax(104px,15%) 1fr!important;
	}
}


/*numbers remove padding on bottom*/
.numbers-number .percent {
    margin-bottom: 0px!important;
}
.numbers-number h3.title {
    color: #000!important;
}

@media (max-width: 980px){
.number-row.et_pb_row {
    display: -ms-box;
    display: -webkit-box;
    display: -webkit-box;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
	overflow-y: scroll;
}
	.number-row .et_pb_column {
    	width: 178px!important;
    	margin-right: 20px!important;
		height: 114px;
	}
	.number-row .et_pb_number_counter .percent {
    	height: 52px;
	}
	/* Hide scrollbar for Chrome, Safari and Opera */
	.number-row::-webkit-scrollbar {
  	display: none;
	}

/* Hide scrollbar for IE, Edge and Firefox */
	.number-row {
  	-ms-overflow-style: none;  /* IE and Edge */
  	scrollbar-width: none;  /* Firefox */
	}
}


/*hide gravity form page bar*/
div#gf_progressbar_wrapper_10 {
	display:none!important;
}
/*gravity form select height*/
body .gform_wrapper select {
	height: 47px;
}
/*gravity form pitch session lower text area to match the one next to it*/
textarea#input_10_24 {
    margin-top: 25px;
}
/*hide previous button on pitch form*/
input#gform_previous_button_10 {
	display:none;
}
/*height of text boxes on pitch form*/
textarea#input_10_24, textarea#input_10_23, textarea#input_10_5 {
	height:105px;
}
/*left align labels for pitch form*/
div#gform_fields_10 {
    text-align: left;
}

/*pop up email on large screens*/
@media only screen and (min-width: 1751px){
	div#pum-32498 .et_pb_section {
    	padding: 0px 0;
	}
}

/*thank you page single post image sizing*/
.side-blog .post-media {
    	margin-bottom: 0px!important;
    	margin-top: -0px;
    	max-height: 206px;
	}
@media only screen and (min-width: 981px){
	.side-blog .post-media {
    	margin-bottom: 0px!important;
    	margin-top: -94px;
    	max-height: 404px;
	}
	.side-blog .et_pb_post_extra .post-media img {
    	border-radius: 0px;
	}
	.side-blog .post-content {
    	padding-right: 55px!important;
	}
}
@media (max-width: 767px) {
	.side-blog .et_pb_post {
    	width: 100%!important;
		max-height: 206px;
    	min-height: 206px;
	}	
}
.side-blog a.et_pb_button {
    width:340px!important;
}
@media (max-width: 467px) {
	.side-blog a.et_pb_button {
    	width:100%!important;
	}
}
@media only screen and (max-width: 767px) {
	.acc-header {
		background-size:auto!important;
	}
}
@media only screen and (min-width: 1751px){
	.large-max-col {
		padding-left:5%!important;
	}
}


/*accelerator page growth slider*/
/*icon font family*/
div#n2-ss-12 .n2-font-4bf3e8682536d941c8c2128e05027ab3-paragraph {
	font-family: 'Apercu Regular',Helvetica,Arial,Lucida,sans-serif!important;
}

/*second slide title*/
div#n2-ss-12 .n2-font-55ca8e894f91bcfbe648bad66fc9bdc9-hover {
    font-family: 'Neue Machina Regular',Helvetica,Arial,Lucida,sans-serif!important;
}
.growth-slide .n2-ss-slider .n2-ow-all * ul li {
    font-size: 16px;
	line-height: 38px;
}

/*cohort images*/
.cohort-filter .dp-dfg-skin-default .dp-dfg-image img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: 50%;
}
.cohort-filter .dp-dfg-skin-default .dp-dfg-image img {
	width: 89%;
}
/*two columns for cohort images*/
@media only screen and (min-width: 768px) {
	.cohort-filter .dp-dfg-items {
		grid-template-columns: 50% 1fr;
	}
}


/*moving arrow on angel session page*/
@media only screen and (min-width: 1646px) {
	.angel-arrow {
		margin-top: -100px!important;
	}
}
@media only screen and (max-width: 1645px) and (min-width: 1518px) {
	.angel-arrow {
		margin-top: -114px!important;
	}
}
@media only screen and (max-width: 1517px) and (min-width: 1417px) {
	.angel-arrow {
		margin-top: -111px!important;
	}
}
@media only screen and (max-width: 1416px) and (min-width: 1258px) {
	.angel-arrow {
		margin-top: -135px!important;
	}
}
@media only screen and (max-width: 1257px) and (min-width: 1110px) {
	.angel-arrow {
		margin-top: -141px!important;
	}
}
@media only screen and (max-width: 1109px) and (min-width: 1072px) {
	.angel-arrow {
		margin-top: -141px!important;
	}
}
@media only screen and (max-width: 1071px) and (min-width: 981px) {
	.angel-arrow {
		margin-top: -170px!important;
	}
}
/*---------- [Equalise the Tabs] ----------*/

.equal-tabs .et_pb_tabs_controls li {
    width: 50%; /*change width of tabs here depending on the number of tabs you have*/
    text-align: center;
	float: left;
}

@media screen and (max-width: 768px){ /*change device breakpoint here depending on the number of tabs you have*/
	.equal-tabs .et_pb_tabs_controls li {
    	width: 50%; 
		text-align: center;
	}
	.equal-tabs .et_pb_tabs_controls li a {
    	display: block;
	}
}
.equal-tabs .et_pb_tab_content ul li {
    margin-bottom: 16px;
}
.equal-tabs .et_pb_tabs_controls li a {
    padding-top: 19px;
    padding-bottom: 19px;
}
.equal-tabs li.et_pb_tab_active {
    background-image: url(https://switchthefuture.com/wp-content/uploads/angel-tab-background.jpg);
    background-size: cover;
}

.equal-tabs ul.et_pb_tabs_controls:after {
	border-top: 0px solid black;
}

.equal-tabs .et_pb_tabs_controls li {
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
}


@media screen and (min-width: 981px) {
/*icons in tabs heights*/
	.tab-icons span.et_pb_image_wrap.et_pb_only_image_mode_wrap {
    	height: 70px;
	}
}


/* column and row styles */
.column {
 	float: left;
	width: 50%;
}
.column-right {
	text-align:right;
}
/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* dropdown on gravity form*/
.gform_wrapper.gravity-theme .gfield select.large {
    width: 100%;
    border-bottom: 1px solid black;
}

/*dropdown arrow*/
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex select {
	color:black;
}


/*gravity form angel group button*/
input#gform_submit_button_12 {
    width: 100%;
}



/* -- DROPDOWN SELECTORS -- */

select:not([multiple]),
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .ginput_complex select,
.gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b,
.gform_wrapper.gravity-theme .chosen-container-single .chosen-single {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: 98% 50%;
    background-repeat: no-repeat;
    background-image: url('https://switchthefuture.com/wp-content/uploads/chevron-down.svg') !important;
	background-color: #eeeeee;
    padding: .5em;
    padding-right: 1.5em;
	cursor: pointer !important;
}

/*tabs height*/
.equal-tabs .et_pb_tab.et-pb-active-slide{
	max-height:100%!important;
}
/*tabs with black background*/
.black-tabs .et_pb_tabs_controls li {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.black-tabs li.et_pb_tab_active, .blue-tabs li.et_pb_tab_active, .blue-tabs li.et_pb_tab_active, .blue-tabs li.et_pb_tab_active{
    background-image: url(https://switchthefuture.com/wp-content/uploads/blue-red-tab.jpg);
    background-size: cover;
}
.acc-tabs li.et_pb_tab_active {
    background-image: url(https://switchthefuture.com/wp-content/uploads/red-pruple-rectangle.png);
    background-size: cover;
}
.hire-tabs li.et_pb_tab_active {
    background-image: url(https://switchthefuture.com/wp-content/uploads/red-pruple-rectangle.png);
    background-size: cover;
}

.header-tabs .et_pb_tab {
    max-width: 760px;
    float: right;
}
@media screen and (max-width: 980px) {
	.header-tabs .et_pb_tab {
    	float: left;
	}
}
/*gravity form tooltip*/
div#powerTip {
    box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 37%);
	border: 1px solid rgb(0 0 0 / 37%);
}
div#powerTip:before {
	width: 0; 
  height: 0; 
  border-left: 5px solid rgb(0 0 0 / 37%);
  border-right: 5px solid rgb(0 0 0 / 37%);
  border-bottom: 5px solid white;
}


/*guides team display*/
.guides-filter .dp-dfg-skin-default .dp-dfg-image img {
    -webkit-filter: none;
    filter: none;
}
.excerpt-filter .dp-dfg-custom-content {
    grid-row: 2;
}
.excerpt-filter .dp-dfg-content.entry-summary {
    grid-row: 4;
}
.excerpt-filter .dp-dfg-custom-content {
    /*padding-top: 0px;*/
    padding-bottom: 5px!important;
}

@media only screen and (max-width: 767px) {
	.excerpt-filter .dp-dfg-layout-list .dp-dfg-item {
    	grid-template-columns: minmax(60px,60px) 1fr!important;
    	-ms-grid-columns: minmax(60px,60px) 1fr!important;
	}
	.excerpt-filter figure.dp-dfg-image.entry-thumb {
    	padding-right: 15%!important;
	}
}

/*white gravity form dropdown color*/
.white-form .gform_wrapper.gravity-theme .gfield select.large {
    background-color: white;
}
/*rewire form button*/
input#gform_submit_button_13 {
	width:318px;
}
@media only screen and (max-width: 467px) {
	input#gform_submit_button_13 {
		width:100%;
	}
}

/*rewire tabs header col on mobile*/
@media only screen and (max-width: 981px) {
	.rewire-col {
		height:276px;
	}
	.rewire-col .et_pb_tabs_controls li a {
		padding: 14px 13px;
	}
}
@media only screen and (max-width: 396px) {
	.rewire-col .et_pb_tabs_controls li a {
    	width: 170px;
    	margin-left: auto;
    	margin-right: auto;
	}
	.rewire-col {
		height:296px;
	}
}

/*subscription row*/
.form-row .column {

    width: 48%;
}
.form-row .column.column-right {
    color: #AAAAAA;
}
select#input_14_6 {
    background: #1440AA10;
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 12px;
    border-radius: 3px 3px 0px 0px;
}

/*6 mo form button, 12 mo form button, Rewire challenge button*/
input#gform_submit_button_14, 
input#gform_submit_button_15,
input#gform_submit_button_16{
    width: 100%;
}
.form-row .gform_footer.top_label {
    padding-bottom: 0px!important;
}

/*height of hire page tabs*/
.hire-tabs .et_pb_tab {
    height: 380px;
}
.hire-tabs {
	background:white;
}
@media only screen and (max-width: 1197px) and (min-width: 981px) {
	.hire-tabs .et_pb_tab {
    	height: 620px;
	}
	.hire-tabs.et_pb_tabs {
    	height: 650px!important;
	}
}
@media only screen and (max-width: 438px)  {
	.hire-tabs.et_pb_tabs {
    	height: 460px!important;
	}
}
@media only screen and (max-width: 426px)  {
	.hire-tabs.et_pb_tabs {
    	height: 740px!important;
	}
	form#gform_14, form#gform_15 {
    	margin-bottom: -25px!important;
	}
}


.press-blurb h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #cf3939;
	font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif;
}
.press-blurb:hover h2 {
    color: #000000;
}
.press-blurb .et_pb_main_blurb_image {
    vertical-align: middle;
}


/*time line on mobile*/
@media only screen and (max-width: 981px)  {
/*full row*/
/*.full-row .et_pb_column {
	width:33%!important;
}*/
	.timeline-right {
		width: 131px!important;
    	float: right;
		padding-left: 5px;
}
	.timeline-middle {
    width: 310px;
    position: absolute;
}
	.timeline-left {
		width: 140px!important;
}
}


/*conversation page small blog spacing*/
.convo-blog .post-content {
    padding: 14px 0px!important;
}
.convo-blog a.el_category_term.el_term_blog {
    margin-bottom: -2px;
}
.convo-side-blog .post-media {
    height: 160px;
    min-height: 160px!important;
    border-radius: 6px!important;
}

.convo-side-blog  .et_pb_post {
    margin-bottom: 0px;
}
/*blurb icons on mobile for conversation page*/
@media only screen and (max-width: 767px)  {
	.small-blurb .et_pb_main_blurb_image {
   		 width: 21px!important;
	}
	.icon-row .et_pb_column {
		width:100%!important;
	}
	.icon-row .et_pb_blurb {
		max-width:100%!important;
		margin-left:0px;
	}
}
@media screen and (min-width: 981px) {
/*icons in tabs heights*/
	.icon-row span.et_pb_image_wrap.et_pb_only_image_mode_wrap {
    	height: 48px;
	}
}

/*founders page top title*/
@media (max-width: 980px){
	.half-col {
		width: 50%!important;
	}
}

.founder-large .post-media {
    height: 285px;
    border-radius: 6px;
}
/*header column sizes on founders page*/
.blog-large-col {
    width: 36%!important;
}
.blog-small-col {
    width: 22%!important;
}
/*side circle posts on founders page*/
.founder-circle .et_pb_post_extra .post-media img {
    height: 72px;
    width: 70px;
}
.founder-circle .post-media {
    width: 23%!important;
}
/*circle sizing*/
@media (max-width: 1475px){
	.founder-circle .et_pb_post_extra .post-media img {
    	height: 60px;
    	width: 60px;
	}
}
@media (max-width: 1260px){
	.founder-circle .et_pb_post_extra .post-media img {
    	height: 50px;
    	width: 50px;
	}
}
@media (max-width: 1080px){
	.founder-circle .et_pb_post_extra .post-media img {
    	height: 45px;
    	width: 45px;
	}
}
.founder-circle .post-content {
    width: 77%!important;
}


.convo-blurb .et_pb_blurb_container {
    padding-left: 0px;
}


/*search page*/
@media (min-width: 981px){
	.search-blog .post-media {
    	height: 248px;
    	max-height: 248px;
    	min-height: 248px;
		border-radius:6px;
	}
}
@media (max-width: 980px){
	.search-blog .post-media {
    	height: 210px;
    	max-height: 210px;
    	min-height: 210px;
		border-radius:6px;
	}
}
/*hide shadow*/
.search-blog .et_pb_post_extra.el_dbe_vertical_grid {
    -webkit-box-shadow: 0 0 2px rgb(0 0 0 / 20%);
	box-shadow: 0 0 0px rgb(0 0 0 / 20%)
}
.search-blog  .entry-title {
    border-bottom: 0px solid #ededed!important;
}
.search-blog .et_pb_post_extra.el_dbe_vertical_grid .post-content {
    padding: 13px 0px!important;
}


.et_pb_post_extra.el_dbe_block_extended.image-background .post-media:before { 
	background: rgba(0,0,0,.7);
}

/*image opactity on hover*/
.et_pb_post_extra:not(.el_dbe_block_extended) .post-media:hover {
    opacity: 1;
}

/*move post meta / date near category*/
.post-blog h2.entry-title {
    order: 3;
	margin-top: 13px!important;
}
.post-blog p.post-meta {
        order: 2;
    width: 80%;
    position: absolute;
    right: 0;
	padding-top: 3px;
}
.post-blog .et_pb_post_extra .post-content {
    display: inline-grid;
}
/*meta and title width*/
.post-blog .et_pb_post_extra.el_dbe_grid_extended .post-content {
    width: 100%;
    padding: 19px 0px;
}
/*cat font size*/
.post-blog .et_pb_post_extra .post-categories a {
	font-size: 20px;
	line-height:28px;
}
.post-blog .et_pb_post {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.post-blog ul li {
    padding-bottom: 14px;
}
.post-blog .post-media {
    max-height: 500px;
    border-radius: 6px;
}
@media (max-width: 980px){
/*cat font size*/
	.post-blog .et_pb_post_extra .post-categories a {
		font-size: 16px;
		line-height:24px;
	}
}

/*blog masonary height*/
.el-isotope-item {
    min-height: 400px;
}
@media (max-width: 980px){
	.el-isotope-item {
    	min-height: 250px;
	}
}


/*post page author bio*/
.author-post {
	display:flex!important;
}
.author-post img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: 50%;
    margin-right: 20px;
}

/*coaches image*/
.person-coach img {
    max-height: 160px;
    width: auto;
}

/*social icons*/
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
    padding: 0px 6px!important;
}

/*single post subscribe email*/
.post-form .gform_wrapper .gf_simple_horizontal .gform_body {
    max-width: 100%;
	display: block;
}
body .post-form input#input_2_4 {
    background: #ffffff30;
    border-bottom: 1px solid white!important;
}
.post-form div#field_2_4 {
    padding-right: 0px;
}
/*subscribe button*/
.post-form .gform_wrapper .gf_simple_horizontal .gform_footer.top_label {
	display: block;
	max-width: 100%;
}
.post-form input#gform_submit_button_2 {
    width: 100%;
}
.post-form input#gform_submit_button_2:hover {
	background:white;
	color:black;
}


/*related posts*/
span.yarpp-thumbnail-title {
    font-family: 'Neue Machina Regular',Helvetica,Arial,Lucida,sans-serif!important;
    font-size: 16px!important;
    color: #000000!important;
    line-height: 24px!important;
    transition: color 300ms ease 0ms;
	    width: 17%!important;
    margin-top: auto!important;
    margin-bottom: auto!important;
    vertical-align: middle;
    overflow: visible!important;
}
.yarpp-thumbnails-horizontal .yarpp-thumbnail {
	display: contents!important;
}
img.attachment-thumbnail.size-thumbnail.wp-post-image {
    border-radius: 50%;
    height: 70px!important;
    width: 70px!important;
    object-fit: cover!important;
    align-items: center;
    vertical-align: middle;
    align-content: center;
	display: initial;
}
@media (max-width: 1357px){
	   span.yarpp-thumbnail-title {
		   width: 14%!important;
	}
}
/* Hide scrollbar for Chrome, Safari and Opera */
.related-post-row::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.related-post-row {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


/*mega menu styles*/
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
	font-family: 'Apercu Regular',Helvetica,Arial,Lucida,sans-serif;
}
/*hide arrow*/
span.mega-indicator {
	display:none!important;
}
/*about margin*/
li#mega-menu-item-33612 {
    margin-right: 0px!important;
}
/*top menu*/
.et_pb_menu ul li h2.menu-title a, li#mega-menu-item-text-15 h2 {
    font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif;
    font-size: 30px;
    line-height: 38.4px;
    transition: color 300ms ease 0ms;
}
.et_pb_menu ul li h3.submenu-title, .et_pb_menu ul li h3.submenu-title  a  {
    font-family: 'Neue Machina Regular',Helvetica,Arial,Lucida,sans-serif;
}
.et_pb_menu ul li h3.submenu-title a, .et_pb_menu ul li h3.submenu-title{
    font-size: 20px;
    line-height: 28px;
    transition: color 300ms ease 0ms;
	color: #000!important;
}
.et_pb_menu ul li h3.submenu-title a:hover {
    font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif;
}
/*founders section*/
.et_pb_menu ul li h2.menu-title.red-title a, .et_pb_menu ul li h3.submenu-title.red-sub  a {
    color: #CF3939!important;
}

/*captal section*/
.et_pb_menu ul li h2.menu-title.green-title a, .et_pb_menu ul li h3.submenu-title.green-sub, .et_pb_menu ul li h3.submenu-title.green-sub  a {
    color: #3BBEA3!important;
}
/*workplace section*/
.et_pb_menu ul li h2.menu-title.blue-title a, .et_pb_menu ul li h3.submenu-title.blue-sub, .et_pb_menu ul li h3.submenu-title.blue-sub  a {
    color: #1440aa!important;
}
/*community section*/
.et_pb_menu ul li h2.menu-title.black-title a, .et_pb_menu ul li h3.submenu-title.black-sub, .et_pb_menu ul li h3.submenu-title.black-sub  a {
    color: #000000!important;
}
body .et_pb_menu ul li h3.submenu-title.white-sub a {
	color:white!important;
}


/* -- Menu Blur effect -- */

/* for an active menu item with mega menu, add a pseudo element to create a website cover for blurring */
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-toggle-on::before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(6px);
	background: rgb(124 124 124 / 25%);
	pointer-events: none;
	margin: 0;
	padding: 0;
	transition: all 2s ease;
}

/*menu spacing*/
li#mega-menu-19316-0 {
    /*padding: 30px 60px 52px 60px!important;*/
	padding: 0 60px 30px 60px!important;
	background-image: url(https://switchthefuture.com/wp-content/uploads/menu-background.jpg)!important;
    background-repeat: no-repeat!important;
    background-position: bottom right!important;
}
li.mega-menu-row.menu-black {
	background:#000000!important;
	/*padding: 41px 60px 0px 60px!important;*/
	padding: 0px 30px 22px 60px!important;
}
li.mega-menu-row.black-menu {
	background:#000000!important;
	/*padding: 0px 60px 60px 60px!important;*/
	padding: 0px 60px 60px 60px!important;
	border-radius: 0px 0px 6px 6px!important;
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item{
	padding:0px 15px 0px 15px;
}

.on-tag h2, .on-tag p{
	display: inline;
    vertical-align: top;
}
.on-tag p {
    color: white;
    font-size: 16px;
    vertical-align: bottom!important;
    padding-left: 15px;
}

/*- small screens  -*/
@media only screen and (max-width:1440px) and (min-width:981px){
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item{
		line-height:1.5em !important;
	}
}
@media only screen and (max-width:1240px) and (min-width:981px){
	.et_pb_menu ul li h2.menu-title a, li#mega-menu-item-text-15 h2 {
    	font-size: 20px;
		line-height: 24px;
	}
	.et_pb_menu ul li h3.submenu-title a, .et_pb_menu ul li h3.submenu-title {
		font-size: 18px;
		line-height:24px;
	}
	.et_pb_menu li.mega-menu-row.menu-black {
    	padding: 0px 30px 17px 60px!important;
	}
}
/*mobile menu*/
@media (max-width: 980px){
/*move logo to center*/
	.top-header .et_pb_menu__logo-wrap {
    	margin-left: auto;
    	margin-right: auto;
		}
	.top-header .et_pb_menu_inner_container.clearfix {
		display:grid;
	}
	.top-header .et_pb_menu__wrap {
    	margin-right: auto;
    	margin-left: auto;
    	padding-top: 20px;
	}
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item {
		margin: 0 0% 0 0;
	}
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
    	width: 100%;
	}	
	li#mega-menu-19316-0 {
		padding: 0px 20px 20px 20px!important;
	}
	.et_pb_menu ul li h2.menu-title a, li#mega-menu-item-text-15 h2 {
    	font-size: 24px;
    	line-height: 32px;
	}
	.et_pb_menu ul li h3.submenu-title a, .et_pb_menu ul li h3.submenu-title {
    	font-size: 16px;
		line-height: 24px;
	}
	li#mega-menu-19316-0 {
		background-image: none!important;
	}
	li.mega-menu-row.menu-black {
    	padding: 28px 20px 0px 20px!important;
	}
	li.mega-menu-row.black-menu {
    	padding: 0px 20px 28px 20px!important;
	}
	.on-tag h2, .on-tag p {
    	display: block!important;
	} .on-tag p {
    	padding-left:0px!important;
	}
	li#mega-menu-item-text-23 a, li#mega-menu-item-text-25 a {
		color:#000000!important;
	}
	
	li#mega-menu-item-text-25, li#mega-menu-item-text-23 {
    	padding-bottom: 23px!important;
	}
	/*center mobile sub menu*/
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-align-bottom-right > ul.mega-sub-menu {
    	right: -65%;
	}
}
/*span.menu-title.red-title {
    	position: absolute;
    	margin-top: -20px;
    	margin-left: 20px;
	}*/
li#mega-menu-item-text-22 h2 a{
    color: #CF3939!important;
    font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif;
    font-size: 30px;
    line-height: 24px;
    transition: color 300ms ease 0ms;
}
li#mega-menu-item-text-22 h2 a:hover{
    color: #000!important;
}
span.tiny-title {
    font-size: 20px;
    position: absolute;
	padding-left: 24px;
}
/*hide dropdown on desktop*/
@media (min-width: 981px){
	
	h2.menu-title.red-title.tiny-title a{
		font-size:20px;
	}
	/*convo and about menu*/
	li#mega-menu-item-text-22, li#mega-menu-item-text-24 {
    	/*padding: 60px 60px 0px 60px!important;*/
		padding: 30px 60px 0px 60px!important;
	}
	li#mega-menu-item-text-23, li#mega-menu-item-text-25 {
    	padding: 15px 60px 60px 60px!important;
	}
}

/*space between menus */
#page-container li#mega-menu-item-text-23 h3.submenu-title, #page-container li#mega-menu-item-text-25 h3.submenu-title{
	padding-bottom: 20px!important;
}

/*home menu*/
.home-header #mega-menu-wrap-primary-menu {
	background: transparent!important;
}
.home-header .et_pb_menu_0_tb_header.et_pb_menu ul li a {
	color: #000!important;
}
.home-header.et_pb_sticky .et_pb_menu_0_tb_header.et_pb_menu ul li:hover>a{
	color:#000 !important;
}
.home-header .et_pb_menu_0_tb_header.et_pb_menu ul li a:hover {
	/*color: #000!important;*/
	background:transparent!important;
}

@media (min-width: 981px){
.home header.et-l.et-l--header {
    position: fixed;
    z-index: 999999;
    width: 100%;
}
}

/*red header menu*/
.con-header.et_pb_menu_0_tb_header.et_pb_menu ul li a {
	color: #000!important;
}
/*--menu headers hover --*/
/*-.con-header.et_pb_menu_0_tb_header.et_pb_menu ul li a:hover,-*/ .et_pb_menu ul li h2.menu-title.red-title a:hover,.et_pb_menu ul li h2.menu-title.green-title a:hover, .et_pb_menu ul li h2.menu-title.blue-title a:hover {
	color: #000!important;
}

/*-- black header menu --*/

.et_pb_menu ul li h2.menu-title.black-title a:hover{
	color: #CF3939!important;
}
/*slider buttons*/
.n2-ss-button-container a{
	padding:14px 30px!important;
}

/*menu white founders text*/
body .home-header h3.submenu-title.white-sub a, body .home-header h3.submenu-title.white-sub a:hover{
	color:#fff!important;
}

/*pop up rounded corners*/
.popmake .et_pb_section {
    border-radius: 6px;
}

/*sub menu rounded corners*/
ul.mega-sub-menu {
    border-radius: 6px!important;
}


.ffc-img p:before {
	content:url('/wp-content/uploads/fcc-circle.svg');
  	position:relative; 
  	z-index:100000;
    left: 0px;
  	top: 12px;
    padding-right: 17px;
}


/*pitch sessions large date sizing*/
@media (min-width: 981px){
	.date-col {
		width:170px!important;
	}
	.text-col {
		width:100%!important;
	}
	/*header image col size*/
	.profile-col {
		width:420px!important;
	}
	/*up next col size*/
	.next-col {
		width:300px!important;
	}
}

/*anchor links angel session*/
.jump:before {
    content: "";
    display: block;
    padding-top: 150px;
    margin-top: -80px;
}
/*anchor links investing course*/
.jump2:before {
    content: "";
    display: block;
    padding-top: 150px;
    margin-top: -130px;
}

/*angel sessions overflow*/
.page.page-id-33242 {
    overflow-x: hidden;
}

/*-- revs Mp 01/19 --*/
.theme-32503 .pum-content+.pum-close: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: '\4d';
	color:#fff !important;
	background:#000;
	position:absolute;
}
.theme-32373 .pum-content+.pum-close: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: '\4d';
	color:#000 !important;
	background:#fff;
	position:absolute;
}
/*-- lower mega menu--*/
#mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary-menu #mega-menu-primary-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu{
	transform: translate(0, 10px);
}
#gform_8 .gfield_required{
	color:transparent !important;
}

/*-- angel registration form --*/
.gform_wrapper.gravity-theme #gform_12 .gform_fields {
	grid-column-gap: 2.8% !important;
}

@media only screen and (max-width:1392px) and (min-width:1323px){
	.gform_wrapper.gravity-theme #gform_12 .gfield_label {
	    font-size: 15px !important;
    	line-height: 20px;
	}
}
@media only screen and (max-width:1322px) and (min-width:1225px){
	.gform_wrapper.gravity-theme #gform_12 .gfield_label {
	    font-size: 14px !important;
    	line-height: 20px;
	}
}
@media only screen and (max-width:1224px) and (min-width:981px){
	.gform_wrapper.gravity-theme #gform_12 .gfield_label {
	    font-size: 12px !important;
    	line-height: 20px;
	}
}

/*-- blog posts --*/

.convo-blurb.invert .et_pb_blurb_container{
	display:flex;
	flex-direction:column-reverse;
}
.convo-blurb.invert .et_pb_blurb_description {
    padding-left: 17px;
    margin-bottom: -10px !important;
}
.post-form .gform_wrapper #gform_2.gf_simple_horizontal .gform_footer.top_label{
	margin-top:20px !important;
}

/*-- blog posts hover ---*/
#page-container .et_pb_column:not(.collection-blog-col) .standard-blog .et_pb_post:hover .entry-title a{
	color:#CF3939!important;
}

/*- space between list elements -*/
ul li{
	padding-bottom:0.5em;
}

/*-- search --*/

.search-no-results .search-blog .entry{
	font-size:20px !important;
	margin:20px;
	font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif;
	text-align:center;
	color:#CF3939;
}

/*-- acceleration tabs --*/

.et_pb_tabs_controls li{
	font-weight:400;
}

/*- pitch sessions form --*/

.pitch-sessions-form .gfield:not(.gfield_html){
	text-align:left !important;
}
.pitch-sessions-form .gform_wrapper .gfield_validation_message, .pitch-sessions-form .gform_wrapper .validation_message {
    background: transparent;
}
 .gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
	border: 0px solid #c02b0a;
}
.featured-founders .dp-dfg-header.entry-header {
    max-width: 90px;
    margin: auto;
}
/*scroll up */
.et_pb_scroll_top.et-pb-icon {
	bottom: 200px;
}

/*-- post collection Name Home --*/
.collection-name-home .et_pb_post .entry-title a{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; 
  overflow: hidden; 
}
/*-- corner hover home--*/

.black-color-triangle, .pink-color-triangle {
  position: relative;
  overflow: hidden;
}
.black-color-triangle:hover:before, .pink-color-triangle:hover:before{
	opacity:1;
	right: 0;
    transition:all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.black-color-triangle:before{
  content: '';
  border-style: solid;
  border-width: 0 130px 130px 0;
  border-color: transparent #000 transparent transparent;
  right: -150px;
  top: 0;
  position: absolute;
	transition: all .35s;
	opacity:0;
}
.pink-color-triangle:before{
  content: '';
  border-style: solid;
  border-width: 0 130px 130px 0;
  border-color: transparent #CF3939 transparent transparent;
  right: -150px;
  top: 0;
  position: absolute;
	transition: all .35s;
	opacity:0;
}

/*-- home crossfade logo --*/

.home .et_pb_menu__logo-wrap .et_pb_menu__logo{
	background:url(/wp-content/uploads/SWITCH-logo-initial-finalsize-1.svg);
	background-repeat:no-repeat;
	background-size:196px 36px;
	transition: background 1s ease-in-out;
}
.home .et_pb_menu__logo-wrap .et_pb_menu__logo.animation{
	animation: fadeOut 1.3s ease-in-out forwards;
  	-webkit-animation: fadeOut 1.3s ease-in-out forwards;
  	-moz-animation: fadeOut 1.3s ease-in-out forwards;
  	-o-animation: fadeOut 1.3s ease-in-out forwards;
	-ms-animation: fadeOut 1.3s ease-in-out forwards;
	animation-delay:1s;
}
.home .et_pb_menu__logo-wrap .et_pb_menu__logo img{
	opacity:0;
}
.home .et_pb_menu__logo-wrap .et_pb_menu__logo img.animation{
	animation: fadeIn 1s ease-in-out forwards;
  	-webkit-animation: fadeIn 1s ease-in-out forwards;
  	-moz-animation: fadeIn 1s ease-in-out forwards;
  	-o-animation: fadeIn 1s ease-in-out forwards;
	-ms-animation: fadeIn 1s ease-in-out forwards;	
	animation-delay:1s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
/*- fade out -*/
@keyframes fadeOut {
  100% {background:transparent;
	transition: background 1s ease-in-out;}
}

@-moz-keyframes fadeOut {
  100% {background:transparent;
	transition: background 1s ease-in-out;}
}

@-webkit-keyframes fadeOut {
  100% {background:transparent;
	transition: background 1s ease-in-out;}
}

@-o-keyframes fadeOut {
  100% {background:transparent;
	transition: background 1s ease-in-out;}
}
@media only screen and (max-width:1620px) and (min-width:1165px){
	#gform_wrapper_14, #gform_wrapper_15{
		font-size:16px !important;
	}
}
@media only screen and (max-width:1164px) and (min-width:981px){
	#gform_wrapper_14, #gform_wrapper_15{
		font-size:14px !important;
	}
}
.gform_wrapper.gravity-theme .gfield select{
    color: #000;
}


/*blog post layout with date*/

/*hide title and excerpt*/
.standard-blog.hide-title h2.entry-title, .standard-blog.hide-title .post-data{
		display:none;
}
/*date pacement*/
.post-date .post-meta span.published {
    border-right: 1px solid white;
    padding-right: 20px;
    padding-top: 5px;
}
.post-date {
    display: flex;
    float: left;
    max-width: 170px;
}
.post-cat{
    display: flex;
    float: left;
}

.single-post-order .post-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
}
/*.single-post-order .post-content div:nth-child(4n+2) {
  grid-column-end: span 2;
  grid-row-end: span 2;
}*/
.single-post-order  .post-content div:nth-child(1) {
    margin-left: 120px;
    font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif;
    margin-top: -26px;
    margin-left: 110px;
    font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif;
    width: 73%;
    line-height: 20px!important;
    grid-row: 2 / 3;
    margin-bottom: -15px;
}
.single-post-order  .post-content p.post-meta {
   grid-row: 1 / 1;
    margin-top: 0px;
    width: 94px!important;
    border-right: 1px solid white;
    height: 15px;
    padding: 0px!important;
    font-size: 14px!important;
}
.single-post-order  .post-content h2.entry-title {
    grid-column-end: span 3;
    /*grid-row-end: span 1;*/
	    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.single-post-order  .post-content .post-data {
    grid-column-end: span 3;
    /*grid-row-end: span 1;*/
}


/*slider posts order*/
.slider-post-order .et_pb_post {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
}
.slider-post-order .post-content {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 10px;
/* add height so the categories all stay inline */
	height: 162px;
}
.slider-post-order .post-content div:nth-child(1) {
    margin-left: 110px;
    font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif;
    margin-top: -14px;
    width: 73%;
    line-height: 20px!important;
    grid-row: 1 / 1;
    margin-bottom: -15px;
}
.slider-post-order .post-content h2.entry-title {
    grid-column-end: span 3;
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.slider-post-order p.post-meta {
    grid-row: 2 / 3;
    margin-top: 0px;
    width: 94px!important;
    border-right: 1px solid white;
    height: 15px;
    padding: 0px!important;
		font-size: 14px!important;
}
.slider-post-order span.et-pb-icon {
    display: none;
}
.black-meta-line p.post-meta {
	border-right: 1px solid black!important;
}

/*image radius*/
.three-slider .post-media {
    border-radius: 6px;
}
.single-post-order .post-media {
    border-radius: 6px;
}

/*founders page padding on content*/
.founders-post-order .post-content {
    padding: 16px 0px!important;
}
.founders-post-order .post-content {
    gap: 0px;
}
.founders-post-order .post-content div:nth-child(1) {
	margin-top: -30px;
}
.founders-single-post-order .post-content div:nth-child(1), .seemore-blog .post-content div:nth-child(1) {
	margin-top: -20px;
}
.founders-post-order h2.entry-title {
    padding-bottom: 12px!important;
}

/*search page*/
.search-blog .post-content div:nth-child(1) {
    margin-top: -27px;
}


/*single post page*/
.single-post-blog .post-content {
    display: grid!important;
    grid-template-columns: repeat(1, 1fr);
	gap: 0px;
}
	
.single-post-blog	.post-categories {
    margin-left: 137px;
    font-family: 'OCR A Std Regular',Helvetica,Arial,Lucida,sans-serif;
    margin-top: 0px;
    width: 44%!important;
    line-height: 20px!important;
    grid-row: 1 / 1;
    margin-bottom: -15px;
}

.single-post-blog p.post-meta {
    display: inline-flex!important;
    position: relative!important;
    width: 100%!important;
    margin-top: -49px;
}
.single-post-blog span.published {
    grid-row: 1 / 3;
    width: 131px!important;
    height: 15px;
    padding-right: 8px!important;
    font-size: 20px!important;
}
.single-post-blog span.read-time {
    grid-row: 1 / 1;
    width: 100%;
    height: 15px;
    font-size: 20px!important;
}

@media only screen and (max-width:1220px) and (min-width:981px) {
.single-post-blog span.read-time {
	grid-row: 1 / 1!important;
    float: left;
    margin-right: auto;
    width: 100%!important;
    text-align: left!important;
    margin-top: 30px;
    margin-left: -133px;
}
}
@media only screen and (max-width:981px){
.single-post-blog span.read-time, .single-post-blog span.published {
	font-size: 16px!important;
}
	.single-post-blog span.published {
		width: 108px!important;
	}
	.single-post-blog .post-categories {
    margin-left: 117px;
		margin-top: 0px;
	}
	.single-post-blog p.post-meta {
    margin-top: -46px;
}
}
@media only screen and (max-width:580px) {
.single-post-blog span.read-time {
	grid-row: 1 / 1!important;
    float: left;
    margin-right: auto;
    width: 100%!important;
    text-align: left!important;
    margin-top: 30px;
    margin-left: -110px;
}
	.single-post-blog p.post-meta {
    display: inline-flex!important;
    position: relative!important;
    width: 100%!important;
    float: left;
    margin-right: auto;
    text-align: left!important;
}
	.single-post-blog span.published {
		width: 101px!important;
	}
}

/*center logo on mobile*/
@media only screen and (max-width:981px) {
.et_pb_menu--style-left_aligned .et_pb_menu__logo {
    margin-right: 0px;
}
	/*founders names left aligned*/
	.featured-founders .dp-dfg-header.entry-header {
    max-width: 100%!important;
    margin: auto;
    float: left;
    margin-right: auto;
    width: 100%;
}
}

/*credit card field on rewire challenge and angel group reg*/
div#input_16_11_1, div#input_12_9_1 {
    background-color: #00000010;
    border: 0;
    border-bottom: 1px solid #000000;
    font-size: 14px;
    color: #000000;
    border-radius: 6px 6px 0px 0px;
    padding: 20px 10px 35px 10px;
}

/*credit card field on why hire us*/
div#input_14_14_1, div#input_15_14_1 {
    background-color: #1440AA10;
    border: 0;
    border-bottom: 1px solid #000000;
    font-size: 14px;
    color: #000000;
    border-radius: 6px 6px 0px 0px;
    padding: 20px 10px 35px 10px;
}
/*email field on why hire us*/
input#input_15_15, input#input_14_15 {
    background-color: #1440AA10;
    border: 0;
    border-bottom: 1px solid #000000;
    font-size: 14px;
    color: #000000;
    border-radius: 6px 6px 0px 0px;
}

/*hide price field rewire*/
div#ginput_product_price_16_13 {
    display: none;
}
/*hide price and credit card on angel*/
 div#field_12_10 {
	display:none;
}

/*why hire subscription drop down*/
select#input_14_12, select#input_15_13 {
    background: #1440AA10;
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 12px;
    border-radius: 3px 3px 0px 0px;
}

/*hide credit card on why hire us forms
div#field_14_14, div#field_15_14 {
	display:none;
}*/
/*hide original pick a product field on why hire us forms*/
div#field_14_6, div#field_15_6 {
	display:none;
}

/*-validation error box -*/
.gform_wrapper .gform_validation_errors {
	background: #c02b0a !important;
	font-family: 'Apercu Regular',Helvetica,Arial,Lucida,sans-serif;
}
.gform_wrapper .gform_validation_errors>h2 .gform-icon {
	left: -40px;
}
/*-- submenu title bottom space--*/
h3.submenu-title{
	padding-bottom:3px;
}

/*-- about --*/
#team .dp-dfg-cf-designation{
	font-style:italic;
	padding-bottom:5px !important;
}
/*-subscription texts form-*/
.selection-text .form-row .column.column-right{
	color:#000;
}

/*revieal buttons on accelerator page*/
.rv_button.closed:after {content:"\33";}
.rv_button.opened:after{content:"\32";}

/*hide mobile overflow on risk page*/
@media only screen and (max-width:460px) {
.page-id-33478 div#page-container {
    overflow: hidden;
}
}


/*hide price in rewire form*/
div#field_16_14 {
	display:none;
}


/*program menu drop down*/

@media only screen and (min-width:1431px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-menu-horizontal li#mega-menu-item-19316.mega-menu-megamenu > ul.mega-sub-menu {
    	left: auto!important;
    	right: -340%!important;
	}
}
@media only screen and (max-width:1430px) and (min-width:1200px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li#mega-menu-item-19316.mega-menu-megamenu > ul.mega-sub-menu {
    	width: 1150px !important;
	}
	
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-menu-horizontal li#mega-menu-item-19316.mega-menu-megamenu > ul.mega-sub-menu {
	  right: -409%!important;
	}
}

@media only screen and (max-width:1199px) and (min-width:981px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li#mega-menu-item-19316.mega-menu-megamenu > ul.mega-sub-menu {
    	width: 950px !important;
	}
	
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-menu-horizontal li#mega-menu-item-19316.mega-menu-megamenu > ul.mega-sub-menu {
	  right: -409%!important;
	}
}

@media only screen and (min-width:981px) {
	h2.menu-title{
    	padding-bottom: 20px;
	}
	/*padding under sub sub menu items*/
	.first-menu li#mega-menu-item-text-3, .first-menu li#mega-menu-item-text-4, .first-menu li#mega-menu-item-text-7, .first-menu li#mega-menu-item-text-8,  .first-menu li#mega-menu-item-text-11 {
    	padding-bottom: 18px!important;
	}
	/*bottom sub menu items*/
	.first-menu li#mega-menu-item-text-5, .first-menu li#mega-menu-item-text-9 {
    	padding-bottom: 22px!important;
	}
}

/*counters*/
.wpsm_counterbox .wpsm_count-title {
    font-family: 'Neue Machina Regular',Helvetica,Arial,Lucida,sans-serif!important;
    color: #000000!important;
    margin-top: 0px!important;
	letter-spacing:0px!important;
}
.wpsm_counterbox .wpsm_number {
    font-weight: 800!important;
    font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif!important;
    letter-spacing: 0px!important;
	    margin-top: 0px!important;
}
.wpsm_counterbox {
    margin-top: 0px!important;
    margin-bottom: 0px!important;
}
.wpsm_counterbox span.counter:after {
	content:'+';
	font-family: 'NeueMachina Ultra Bold',Helvetica,Arial,Lucida,sans-serif!important;
	font-size:48px!important;
} 


@media only screen and (max-width:1072px) {
	.wpsm_counterbox .wpsm_count-title {
		font-size:16px!important;
	}
	.wpsm_counterbox .wpsm_number, .wpsm_counterbox span.counter:after {
		font-size:32px!important;
	}
	.wpsm_col-sm-6 {
    	width: 100%;
	}
}




.press-grid .dp-dfg-layout-masonry-standard .dp-dfg-image {
    margin: 0 -1em;
    grid-column: 1;
    grid-row: 1;
    width: 98px;
    vertical-align: middle;
    display: block;
    margin-top: auto;
	grid-row-start: 1;
    grid-row-end: 4;
	margin-right: 10px;
}
.press-grid .dp-dfg-layout-masonry-standard .dp-dfg-item {
    width: 100%;
    display: grid;
    grid-auto-rows: min-content;
    grid-template-columns: 30% 70%;
    padding: 46px 56px;
	grid-column-gap: 10px;
}
.press-grid .dp-dfg-header.entry-header {
    grid-column: 2;
	order: 2;
}
.press-grid .dp-dfg-skin-default .dp-dfg-meta {
    grid-column: 2;
}
.press-grid .dp-dfg-content.entry-summary {
    grid-column: 2;
	order: 3;
}
.press-grid .dp-dfg-custom-content {
    grid-column: 2;
}
@media only screen and (min-width:1096px) {
	.press-grid .dp-dfg-custom-content {
		margin-top: -41px;
    	margin-left: 110px;
	}
}

.press-grid span.published:after {
	content: " | "
}

@media only screen and (max-width:1072px) {
	.press-grid .dp-dfg-layout-masonry-standard .dp-dfg-image {
		width: auto;
		max-width: 98px;
    float: right;
    margin-left: auto;
	}
	.press-grid .dp-dfg-layout-masonry-standard .dp-dfg-item {
    	padding: 20px;
	}
	.press-grid .dp-dfg-layout-masonry-standard .dp-dfg-item {
		grid-template-columns: 20% 80%;
	}
}


/*remove link*/
.no-link {
	    pointer-events: none;
}


/*read time on posts*/

@media only screen and (min-width:1200px) {
	.post-read {
    	text-align: right!important;
    	margin-top: -56px!important;
	}
	.cat-post-main {
		width: 50%!important;
	}
}


/*hide menu-home category*/
a.el_category_term.el_term_menu-homepage {
    display: none;
}


/*conversation page blog title*/
.single-blog-ex .post-content {
    padding-top: 0px!important;
}
.single-blog-ex h2.entry-title {
    padding-bottom: 7px;
}


/*blog small image */
.sm-single img {
    height: 100%;
    object-fit: cover;
}
.sm-single a.entry-featured-image-url {
    height: 162px;
}

.press-grid .dp-dfg-masonry-item:nth-child(3n+3) .dp-dfg-item{
	background-image: url(https://switchthefuture.com/wp-content/uploads/press-triangle.png);
    background-repeat: no-repeat;
    background-position-x: right;
}


.post-blog ol li {
    margin-bottom: 21px;
}


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


/*programs menu on mobile*/

@media only screen and (max-width:980px) {
#mega-menu-wrap-primary-menu #mega-menu-primary-menu.mega-menu-horizontal li#mega-menu-item-19316.mega-menu-megamenu > ul.mega-sub-menu {
    left: 0 !important;
    width: 320px !important;
}
}