/*
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(230,90,37,1);
	z-index: 1;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	top: 4px;
	right: 4px;
	cursor: pointer;
	text-align: center;
	color:#fff;
}
/* the new toggle element when popped */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped {
	background-color: rgba(230,90,37,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: 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 {
		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: #32a709;
	/* set font size helps make icon sharper */
	font-size: 22px;
	font-weight: normal;
}
.pluslist ul li::before {
	content: '\e050';
}
.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 -- */

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



/*-- CUSTOM --*/
#page-container{
	overflow:hidden;
}
.mp-vertical-align { 
	display: flex; 
	flex-direction: column; 
	justify-content: center;
}
@media only screen and (max-width:980px){
	h1,h2,h3,h4,h5,h6{
		letter-spacing:1px !important;
	}
}
/* -- Note from Nick - swapped out the old Franchise Bold and Regular for Pro Bold version  -- */

@font-face {
	font-family: 'Franchise Regular';
	src: url('/wp-content/themes/Divi-child/fonts/Franchise-Pro-Bold-Rounded.otf') format('otf');
}
@font-face {
	font-family: 'Franchise Bold';
	src: url('/wp-content/themes/Divi-child/fonts/Franchise-Pro-Bold-Rounded.otf') format('otf');
}
@font-face {
	font-family: 'Segoe UI Italic';
	src: url('/wp-content/themes/Divi-child/fonts/segoeui-italic.ttf') format('ttf');
}
@font-face{
	font-family: 'Segoe UI Semibold Italic';
	src: url('/wp-content/themes/Divi-child/fonts/segoeui-semibold-italic.ttf') format('ttf');
}
@font-face{
	font-family: 'Segoe UI Bold';
	src: url('/wp-content/themes/Divi-child/fonts/segoeui-bold.ttf') format('ttf');
}
@font-face{
	font-family: 'Segoe UI Black Regular';
	src: url('/wp-content/themes/Divi-child/fonts/segoeui-black-regular.ttf') format('ttf');
}
@media only screen and (max-width:1561px){
	#main-header .container, .et_pb_row{
		width:90%;
	}
}
@media only screen and (max-width:1050px) and (min-width:981px){
	#main-header .container, .et_pb_row {
		width: 93%;
	}
}
@media only screen and (max-width:460px){
/* 	.header-internal h1, .header-internal .header-content h1, h2:not(.n2-ss-item-content), .resources-filter .blurb-icon-wrap h2{
		font-size:50px !important;
	} */
}
/*-breadcrumbs-*/
.white ol.dcsbcm_divi_breadcrumbs, #page-container .white li.dcsbcm_divi_breadcrumb a {
	color: #fff !important;
}
/*-menu-*/
.nav li ul {
	padding: 0;
}
.nav li ul {
	width: 340px;
}
.nav li:not(.menu-donate-cta) ul {
	/*margin-top: -30px;*/
	text-align:center;
	padding:0;
	border-radius:4px;
	left: 18%!important;
	right: auto!important;
	transform: translate(-18%, 0)!important;
	border-top: 4px solid #213367;
}
#top-menu li:not(.menu-donate-cta) li {
	padding: 0 !important;
	width:100%;
	overflow:hidden;
}
#top-menu li:not(.menu-donate-cta) li a {
	padding:10px 20px;
	text-transform:capitalize;
	text-align:left;
	width:100%;
}
#top-menu li:not(.menu-donate-cta) li a:hover{
	background:#E65925;
	opacity:1 !important;
	color:#fff!important;
}
#top-menu li:not(.menu-donate-cta) li.current_page_item a{
	background:#E65925;
	text-transform:uppercase;
	opacity:1 !important;
	color:#fff!important;
}
.nav li ul{
	box-shadow:0 2px 10px rgba(0,0,0,35%);
	-webki-box-shadow: 0 2px 10px rgba(0,0,0,35%);
}
@media only screen and (min-width: 981px){
	.et_header_style_left #et-top-navigation, .et_header_style_split #et-top-navigation {
		padding-bottom: 20px !important;
	}
}
/*-submenu point-*/
.nav li:not(.menu-donate-cta) ul::after {
	content: '';
	position: absolute;
	top: 0;
	left: 14%;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-bottom-color: #213367;
	border-top: 0;
	border-left: 7px solid transparent;
	margin-left: 0px;
	margin-top: -11px;
}
/*-- scholarship button --*/
.menu-scholarship-cta a {
	background-color: #213367 !important;
	padding: 18px 25px 20px !important;
	border-radius:4px;
	color: #fff !important;
	text-align: center;
	min-width:153px;
}
.menu-scholarship-cta a:hover{	
	background-color:#3a87a4 !important;
	opacity:1 !important;
}
.et-fixed-header #top-menu .menu-scholarship-cta a{
	color:#fff !important;
}
/*-- portal button --*/
.menu-portal-cta a {
	background-color: #fff;
	padding: 18px 25px 20px !important;
	border-radius:4px;
	border: 2px solid #213367 !important;
	color: #213367 !important;
	text-align: center;
	min-width:153px;
}
.menu-portal-cta a:hover{	
	background-color:#213367 !important;
	color: #fff !important;
	opacity:1 !important;
}
/*-- donate button --*/
.menu-donate-cta a {
	background-color: #E65A25 !important;
	padding: 18px 15px 20px !important;
	border-radius:4px;
	color: #fff !important;
	text-align: center;
	min-width:153px;
}
.et-fixed-header #top-menu .menu-donate-cta a{
	color:#fff !important;
}
.menu-donate-cta a:hover{	
	background-color:#203466 !important;
	opacity:1 !important;
}
#top-menu .menu-item-has-children>a:first-child:after{
	display:none;
}
#top-menu li.menu-donate-cta>ul {
	left: 50%!important;
	right: auto!important;
	transform: translate(-50%, 0)!important;
}

.et-fixed-header #top-menu li.menu-donate-cta.current-menu-ancestor>a, .et-fixed-header #top-menu li.menu-donate-cta.current-menu-item>a, .et-fixed-header #top-menu li.menu-donate-cta.current_page_item>a{
	color:#fff !important;
}
/*submenu donate*/
.menu-donate-cta .sub-menu{
	background:transparent;
	border-color:transparent;
	text-align:center;
	box-shadow:0 2px 5px rgba(0,0,0,0);
}
.sub-menu-button a{
	background:#C3DBE9 !important;
	color:#203466 !important;
	min-width:153px;
}
.menu-donate-cta .sub-menu-button a:hover{
	background-color:#203466 !important;
	color:#fff !important;
	opacity:1 !important;
}
li.sub-menu-button.menu-item-1546 {
	margin-bottom: 8px !important;
}
.nav li.menu-donate-cta ul {
	padding: 8px 0;
}
#top-menu li li.sub-menu-button a {
	width: auto;
	margin-left:auto;
	margin-right:auto;
}
@media only screen and (min-width:980px){
	#top-menu li li.sub-menu-button{
		padding-bottom:10px;
	}
}
.et-fixed-header #top-menu .sub-menu-button a{
	color:#203466 !important;
}
.et-fixed-header #top-menu .menu-donate-cta .sub-menu-button a:hover{
	color:#fff !important;	
}
#top-menu .menu-item-has-children>a:first-child, #et-secondary-nav .menu-item-has-children>a:first-child {
	padding-right: 0;
}
@media only screen and (max-width:1381px) and (min-width:981px){
	#top-menu li a{
		font-size:18px !important;
	}
	#top-menu li {
		padding-right: 16px;
	}

}
@media only screen and (max-width:1260px) and (min-width:1137px){
	#top-menu li a{
		font-size:16px !important;
	}
	#top-menu li {
		padding-right: 14px;
	}
	#logo {
		max-height: 52% !important;
	}
	.menu-donate-cta a, .sub-menu-button a{
		min-width:130px !important;		
	}
	.nav li.menu-donate-cta ul {
		width: 200px;
	}
}
@media only screen and (max-width:1136px) and (min-width:981px){
	#top-menu li a{
		font-size:13px !important;
	}
	#top-menu li {
		padding-right: 12px;
	}
	#logo {
		max-height: 45% !important;
	}
	.menu-donate-cta a, .sub-menu-button a{
		min-width:130px !important;		
	}
	.nav li.menu-donate-cta ul {
		width: 200px;
	}
}
@media only screen and (max-width:1040px) and (min-width:981px){
	#top-menu li {
		padding-right: 8px;
	}
}
@media only screen and (max-width:980px){
	.menu-donate-cta a {
		padding: 10px 25px !important;
	}
}
@media only screen and (max-width:980px){
	.menu-portal-cta a {
		padding: 13px 15px !important;
		margin: 4px;
	}
}


/*-- search icon --*/
#et_search_icon:before {
	content:"";
	background:url(/wp-content/uploads/Icon-search.svg);
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	width:31px;
	height:31px;
	font-size: 25px;
	top: 6px;
}
/* -- menu mobile -- */

@media only screen and (max-width: 980px){	
	.et_pb_svg_logo #logo {
		height: 100%;
	}
	#logo {
		max-height: 80% !important;
	}
	#main-header .container {
		max-width: 100%;
		width: 95%;
	}
	#et_search_icon:before{
		width:24px;
		height:24px;
		top:11px;
	}
	.mobile_menu_bar:before {
		font-size: 45px;
	}
}
/*-- scroll up --*/
.et_pb_scroll_top.et-pb-icon {
	background: #E65A25;
	bottom: 20px;
	right: 10px;
	border-radius:50%;
	font-size: 30px;
	padding: 10px;
	color:#fff;
	border:2px solid #fff;
}
@media only screen and (max-width:760px){
	.et_pb_scroll_top.et-pb-icon {
		font-size:20px;
		font-weight:bold;
		bottom: 10px;
		right: 10px;
	}
}
/*--- footer --*/
.footer-list-nobullets li{
	margin-bottom:10px;
}
.footer-list-nobullets ul{
	list-style: none;
	padding-left:0;
}
@media only screen and (min-width:981px){
	.blue-footer-info-row.et_pb_gutters2 .et_pb_column, .blue-footer-info-row.et_pb_gutters2.et_pb_row .et_pb_column {
		margin-right: 1.5%;
	}
}
footer .follow-footer.et_pb_social_media_follow li a {
	margin-right: 23px;
}
footer .follow-footer.et_pb_social_media_follow li:last-child a{
	margin-right:0 !important;
}
/*--form --*/
body .gform_wrapper .gform_footer input.button{
	text-align: center;
	-webkit-transition: all .35s;
	transition: all .35s;
	border-radius:4px !important;
	margin-top: 0;
	padding: 0.7em 1.2em 0.7em !important;
	font-weight:700 !important;
	border:2px solid #203466;
	background:transparent;
}
body .contact-form .gform_wrapper .gform_footer, body .contact-form .gform_wrapper .gform_page_footer {
	overflow: hidden;
	text-align: left;
}
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('/wp-content/uploads/chevron-down.svg') !important;
	background-color: #fff;
	padding: .5em;
	padding-right: 1.5em;
	cursor: pointer !important;
	border-radius:4px;
	border:1px solid #203466;
}
@media only screen and (min-width:1240px){
	.contact-form .gform_wrapper.gravity-theme .gfield_label {
		font-size: 25px;
	}
	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]{
		font-size:19px;
	}
}
/*subscribe*/

.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body {
	max-width: 100%;
}

.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body, .subscribe-form .gform_wrapper .gf_simple_horizontal .gform_footer.top_label{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media only screen and (min-width:481px){
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield {
		display: inline-block;
	}
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield:first-of-type {
		width: 50%;
		padding-right:20px;
		padding-bottom:20px;
	}
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body .top_label #field_2_1 {
		width: 50%;
		padding-right:0;
		padding-bottom:20px;
	}
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body .top_label:not(first-child) .gfield {
		width: 70%;
	}
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_footer.top_label{
		display:block;
	}
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_footer.top_label {
		max-width: 28%;
		width:100%;
		text-align: right;
		float: right;
		bottom: 60px;
	}
}
@media only screen and (max-width:480px){
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield {
		display: block;
		padding-bottom:20px;
	}
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_footer.top_label {
		max-width:100%;
	}
	.subscribe-form .gform_wrapper .gf_simple_horizontal .gform_body .top_label .gfield{
		padding-right:0;
	}
}
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:#fff;
	border-radius:4px;
	border:1px solid #203466;
}
body .subscribe-form .gform_wrapper .gform_footer input.button{
	height:60px !important;
	min-width: 100%;
	max-width: 100%;
	text-align: center;
	-webkit-transition: all .35s;
	transition: all .35s;
	border-radius:4px !important;
	margin-top: 0;
	padding: 0.79em 1em 0.79em !important;
	font-weight:700 !important;
	border:2px solid #203466;
	background:transparent;
}
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:#203466;
	color:#fff;
}
/*-- 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;
	}
	.fourth-on-mobile {
		-webkit-order: 3;
		order: 4;
	}
	/*** add margin to last column ***/
	.custom_row .et_pb_column:last-child{
		margin-bottom: 30px !important;
	}
}
/*-- Buttons --*/
body #page-container .et_pb_button, body #page-container .et_pb_button_module_wrapper .et_pb_button, body #page-container .et_pb_button.et_pb_promo_button{
	overflow:hidden;
	text-align:center;
	/*padding: 0.7em 1.2em 0.7em !important;*/
}
.et_pb_button:not(.et_pb_promo_button):not(.cta-yellow):not(.dp-dfg-more-button){
	min-width:180px;
}
.et_pb_button:hover, .et_pb_button_module_wrapper .et_pb_button:hover, .et_pb_button.et_pb_promo_button:hover{
	padding: 0.7em 1.2em 0.7em !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{
		min-width:auto;
		padding: 0.6em 1.2em 0.6em !important;
	}
}
@media only screen and (max-width:324px){
	.et_pb_button, .et_pb_button_module_wrapper .et_pb_button, .et_pb_button.et_pb_promo_button, .home-slider .et_pb_button.et_pb_more_button, .et_pb_button_module_wrapper.et_pb_module .et_pb_bg_layout_light.et_pb_button{
		min-width:200px;
	}
	.et_pb_button, .et_pb_button_module_wrapper .et_pb_button, .et_pb_button.et_pb_promo_button{
		font-size: 12px !important;
	}
}
@media only screen and (max-width:275px){
	.et_pb_button, .et_pb_button_module_wrapper .et_pb_button, .et_pb_button.et_pb_promo_button, .home-slider .et_pb_button.et_pb_more_button, .et_pb_button_module_wrapper.et_pb_module .et_pb_bg_layout_light.et_pb_button{
		min-width:auto;
	}
	.et_pb_button, .et_pb_button_module_wrapper .et_pb_button, .et_pb_button.et_pb_promo_button{
		font-size: 12px !important;
	}
}
/*read more buttons*/
a.read-more-button{
	text-transform:initial !important;
	min-width:300px !important;
}
a.read-more-button.large{
	min-width:600px !important;
}
@media only screen and (max-width:980px){
	a.read-more-button.large{
		min-width:auto !important;
	}
	body #page-container #associate-board a.et_pb_button.read-more-button.large, body #page-container #board a.et_pb_button.read-more-button.large{
		padding-right: 2em!important;
		padding-left: 0 !important;
	}

}
.read-more-button.et_pb_button:after, a.read-more-button-carousel div:after{
	display:initial !important;	
	margin-top:0;
	content:"" !important;
	background:url(/wp-content/uploads/read-more-arrow.png);
	background-size:contain !important;
	background-position:center !important;
	background-repeat:no-repeat;
	width:24px;
	height:24px;
}
a.read-more-button-carousel div:after{
	margin-left: 0.3em;
}

.read-more-button.et_pb_button:hover:after{
	background:url(/wp-content/uploads/arrow-hover-white.png);
}
a.read-more-button-carousel:hover div:after{
	background:url(/wp-content/uploads/arrow-hover-blue.png);
}

/*report button*/
.read-more-button.et_pb_button.dark-blue{
	min-width:auto;
}
.read-more-button.et_pb_button.dark-blue:after{
	background:url(/wp-content/uploads/read-more-arrow-lapiazul.png)
}
.read-more-button.et_pb_button.dark-blue:hover:after{
	background:url(/wp-content/uploads/arrow-hover-blue.png);
}
/*- short buttons -*/
a.et_pb_button.read-more-button.short{
	text-align: left !important;
}
/*team social media --*/
.follow-team-social .et_pb_social_network_link a[href=""], .follow-team-social .et_pb_social_network_link a[href="#"]{
	display: none;
}

/*-- icon row --*/

@media only screen and (min-width:981px){
	.icon-row .arrow-col.et_pb_column{
		width:12%;
	}
	.icon-row .et_pb_column:not(.arrow-col){
		width:24%;
	}
}
@media only screen and (max-width:980px){
	.icon-row .et_pb_column{
		width:100% !important;
	}
	.icon-row .arrow-col img{
		transform: rotate(90deg);
	}
}
/*-- yellow section border --*/

@media only screen and (min-width:981px){
	.yellow-section{
		border-right:1px solid #203466;

	}
}
@media only screen and (max-width:980px){
	.yellow-section{
		padding-bottom: 30px !important;
		margin-bottom: 30px !important;
		border-bottom:1px solid #203466;

	}
}
/*-quote-*/
.quote-text .et_pb_testimonial_author {
	margin-top: 25px;
}
.quote-text.fullwidth .et_pb_testimonial_author {
	margin-top: 20px;
}

/*- stadistics section-*/
@media only screen and (max-width:1147px) and (min-width:981px){
	.et_pb_number_counter .percent p {
		font-size: 130px !important;
	}
	.et_pb_number_counter h3{
		font-size:30px !important;
	}
}
.stadistics-section .et_pb_number_counter.et_pb_with_title .percent{
	margin-bottom:45px;
}
.millions-counter .percent-value:before, .millions-full-counter .percent-value:before, .money-counter .percent-value:before{
	content:"$";
	display:inline-block;
}
.millions-counter .percent-value:after{
	content:"M";
	display:inline-block;
}
.millions-full-counter .percent-value:after{
	content:"Million";
	display:inline-block;
	margin-left:12px;
	text-transform:uppercase;
}

/*- impact tabs -*/
.impact-tabs ul.et_pb_tabs_controls{
	background:transparent !important;
}
.impact-tabs .et_pb_tab {
	border-top-right-radius: 20px;
}
.impact-tabs .et_pb_tab_0.et_pb_tab_active{
	background:#9CC24F;
	border-radius:2px;
}
.impact-tabs .et_pb_tab_1.et_pb_tab_active{
	background:#E7A426;
	border-radius:2px;
}
.impact-tabs .et_pb_tab_2.et_pb_tab_active{
	background:#E65925;
	border-radius:2px;
}
.impact-tabs .et_pb_tab_3.et_pb_tab_active{
	background:#9CC24F;
	border-radius:2px;
}
.impact-tabs .et_pb_tab_4.et_pb_tab_active{
	background:#E7A426;
	border-radius:2px;
}
.impact-tabs .et_pb_tab_5.et_pb_tab_active{
	background:#E65925;
	border-radius:2px;
}
.impact-tabs ul.et_pb_tabs_controls:after {
	border-top: 0;
}
.impact-tabs .et_pb_tabs_controls li{
	border-right:0;
	padding-top:10px;
	padding-bottom:10px;
}
.impact-tabs .et_pb_tab_content p:empty{
	padding-bottom: 0;
}
.impact-tabs-content .et_pb_gutters2 .et_pb_column_1_3, .impact-tabs-content .et_pb_gutters2.et_pb_row .et_pb_column_1_3 {
	width: 49.3333%;
	border-radius:20px;
}
@media only screen and (max-width:1000px) and (min-width:981px){
	.impact-tabs.et_pb_tabs .et_pb_tabs_controls li, .impact-tabs.et_pb_tabs .et_pb_tabs_controls li a {
		font-size: 28px !important;
	}
}
@media only screen and (max-width:980px){
	.impact-tabs-content .tab-image.et_pb_column{
		width:100% !important;
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*-carousel-*/
@media only screen and (max-width:1321px) and (min-width:981px){
	#page-container .carousel-news.et_pb_row{
		padding-top:4px !important;
	}
}
@media only screen and (max-width:980px){
	#page-container .carousel-news.et_pb_row{
		padding-top:60px !important;
	}
}
/*--smartslider --*/
/*-carousel-*/
#n2-ss-3-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-11-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-12-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-13-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-14-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-15-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, .carousel-news .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
	right: 17px;
	top:-55px;
}
#n2-ss-3-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-11-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-12-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-13-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-14-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-15-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-15-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, .carousel-news  .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
	justify-content: end;
	align-items: start !important;
	flex-flow: row !important;
}
@media only screen and (max-width:1560px) and (min-width:981px){
	#n2-ss-3-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-11-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-12-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-13-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-14-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-15-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-15-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, .carousel-news .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls{
		right: -44px;
	}
}
@media only screen and (max-width:980px){
	#n2-ss-3-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-11-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-12-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-13-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-14-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-15-align .n2-ss-slider-controls-absolute-right-top, #n2-ss-15-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, .carousel-news n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls{
		justify-content: center;
	}
	#n2-ss-3-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-11-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-12-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-13-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-14-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-15-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, #n2-ss-15-align .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls, .carousel-news .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls  {
		right: auto;
	}
}

@media only screen and (min-width:1621px){
	.carousel-news{
		width:96% !important;
	}
}
div#n2-ss-11 .n2-ss-slide:after{
	content:"";
	width:1px;
	height:40px;
	background:red;
	display:inline-block;
}
/*- italic font -*/
.italic-font{
	font-family:'Segoe UI Italic',Helvetica,Arial,Lucida,sans-serif !important;
}
.italic-semibold-font{
	font-family:'Segoe UI Semibold Italic',Helvetica,Arial,Lucida,sans-serif !important;
}
.title-font{
	font-family:'Franchise Bold',Helvetica,Arial,Lucida,sans-serif !important;
	-webkit-font-smoothing: antialiased;
}
/*- home header-*/
@media only screen and (min-width:698px){
	#n2-ss-2-align .n2-ss-slider .n2-ss-slider-controls-absolute-center-bottom {
		justify-content: center;
		align-items: end !important;
		flex-flow: row !important;
	}
	.nextend-arrow-previous{
		order:1;
	}
	.n2-ss-control-bullet{
		order:2;
		margin-right:20px !important;
		margin-left:20px !important;
	}
	.nextend-arrow-next{
		order:3;
	}
}
@media only screen and (min-width:698px){
	#n2-ss-20-align .n2-ss-slider .n2-ss-slider-controls-absolute-center-bottom {
		justify-content: center;
		align-items: end !important;
		flex-flow: row !important;
	}
	.nextend-arrow-previous{
		order:1;
	}
	.n2-ss-control-bullet{
		order:2;
		margin-right:20px !important;
		margin-left:20px !important;
	}
	.nextend-arrow-next{
		order:3;
	}
}
/* featured image-*/
#n2-ss-3-align .n2-ss-item-image-content img, #n2-ss-11-align .n2-ss-item-image-content img, #n2-ss-12-align .n2-ss-item-image-content img, #n2-ss-13-align .n2-ss-item-image-content img, #n2-ss-14-align .n2-ss-item-image-content img, #n2-ss-15-align .n2-ss-item-image-content img, #n2-ss-20-align .n2-ss-item-image-content img, #n2-ss-23-align .n2-ss-item-image-content img {
	object-fit: cover;
}
.home-slider-text .n2-ss-layer-col{
	border-top-left-radius:20px !important;
	border-bottom-left-radius:20px !important;
}
@media only screen and (max-width:700px){
	#n2-ss-2.n2-ss-slider .n2-ss-slide-background-image img {
		object-fit: contain !important;
	}
}

/*- aproach-*/
.img-tl-align{
	display:flex;
	flex-direction:column;
	justify-content:space-evenly;
}
.list-nobullets li{
	margin-bottom:20px;
}
.list-nobullets ul{
	list-style: none;
	padding-left:0;
}

/*hotspot tooltips*/
.hotspot-map .dnxte-hostpot-tooltip-text {
	border-radius: 20px;
}
.hotspot-map .dnxte_tooltip_child_0.et_pb_module {
	transform: translate(0, -24%);
}
.hotspot-map .dnxte_tooltip_child_1.et_pb_module {
	transform: translate(0, -24%);
}
.hotspot-map .dnxte_tooltip_child_2.et_pb_module {
	transform: translate(0, -64%);
}
.hotspot-map .dnxte_tooltip_child_3.et_pb_module {
	transform: translate(0, -90%);
	z-index:99 !important;
}
.hotspot-map .dnxte_tooltip_child_4.et_pb_module {
	transform: translate(0, -64%);
}
@media only screen and (max-width:800px){
	.hotspot-map .dnxte_tooltip_child_0.et_pb_module {
		transform: translate(0, -38%);
	}
	.hotspot-map .dnxte_tooltip_child_1.et_pb_module {
		transform: translate(0, -44%);
	}
	.hotspot-map .dnxte_tooltip_child_2.et_pb_module {
		transform: translate(-52%, -64%);
	}
	.hotspot-map .dnxte_tooltip_child_3.et_pb_module {
		transform: translate(0, -62%);
	}
	.hotspot-map .dnxte_tooltip_child_4.et_pb_module {
		transform: translate(-15%, -64%);
	}
}
@media only screen and (max-width:480px){
	.hotspot-map .dnxte_tooltip_child_0 .dnxte-hostpot-tooltip-text, .hotspot-map .dnxte_tooltip_child_1 .dnxte-hostpot-tooltip-text, .hotspot-map .dnxte_tooltip_child_2 .dnxte-hostpot-tooltip-text, .hotspot-map .dnxte_tooltip_child_3 .dnxte-hostpot-tooltip-text, .hotspot-map .dnxte_tooltip_child_4 .dnxte-hostpot-tooltip-text {
		width: 180px;
		max-width: 300px;
	}
}
@media only screen and (max-width:400px){
	.hotspot-map .dnxte_tooltip_child_0.et_pb_module {
		transform: translate(-34%, -68%);
	}
	.hotspot-map .dnxte_tooltip_child_1.et_pb_module {
		transform: translate(-40%, -76%);
	}
}

/*jedi committed section*/
.equity-blurbs h3{
	text-transform:initial;
	padding-bottom: 25px;
}
.equity-blurbs .et_pb_main_blurb_image {
	margin-bottom: 25px;
}
.equity-blurbs .et_pb_module_header{
	letter-spacing:0 !important;
}
@media only screen and (min-width:981px){
	.jedi-column{
		border-right:1px solid #BEDCF2;
	}
	.dark-border-column{
		border-right:1px solid #203466;
	}
}
@media only screen and (max-width:980px){
	.jedi-column{
		padding-bottom: 30px !important;
		margin-bottom: 30px !important;
		border-bottom:1px solid #BEDCF2;

	}
	.dark-border-column{
		padding-bottom: 30px !important;
		margin-bottom: 30px !important;
		border-bottom:1px solid #203466;
	}
}

/*-- bell cta --*/

.bell-cta-section:before{
	width:80%;
	height:100%;
	margin:0 auto;
	position:absolute;
	display:block;
	border:1px solid #707070;
	top:0;
}
@media only screen and (max-width:1430px) and (min-width:1200px){
	.double-buttons-row .long-button-col{
		width:60% !important;
	}
}
@media only screen and (max-width:1199px) and (min-width:1146px){
	.double-buttons-row .long-button-col{
		width:65% !important;
	}
}
@media only screen and (max-width:1145px) and (min-width:981px){
	.double-buttons-row{
		display:block !important;
	}
	.double-buttons-row .et_pb_column {
		width: 100% !important;
		margin-bottom:20px;
	}
	.double-buttons-row .et_pb_button_module_wrapper.et_pb_button_alignment_right{
		text-align:center !important;
	}
	.double-buttons-row .et_pb_button_module_wrapper.et_pb_button_alignment_left{
		text-align:center !important;
	}
}
@media only screen and (max-width:980px){
	#page-container .bell-cta-section .dnxt-button-wrapper .buttonOne, #page-container .bell-cta-section .dnxt-button-wrapper .buttonTwo{
		display:block;
		max-width:80%;
		margin-right:auto !important;
		margin-left:auto !important;
	}
}
/*inline buttons */
@media only screen and (min-width:1201px){
	.inline-buttons .et_pb_column{
		display:flex;
		flex-direction:row;
		justify-content:flex-start;
		align-items:center;
	}
	#page-container .inline-buttons.et_pb_row_inner{
		padding-bottom:20px !important;
	}
	.inline-buttons-in-col .et_pb_button_module_wrapper{
		display:inline-block;
		margin-right:20px;
	}
	.inline-buttons-in-col .et_pb_button_module_wrapper:last-child{
		margin-right:0;
	}
}

/*- header multiple buttons -*/

@media only screen and (max-width:981px) and (min-width:761px){
	.specialty-header .et_pb_specialty_column, .specialty-header .et_pb_specialty_column, .specialty-header  .et_pb_column.et_pb_column_2.et_pb_column_single {
		width: 47.25% !important;
	}
	.specialty-header  .et_pb_column.et_pb_column_2.et_pb_column_single{
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.specialty-header .et_pb_specialty_column.et_pb_column, .specialty-header .et_pb_specialty_column.et_pb_column {
		margin-right: 5.5%;
	}
	.specialty-header .et_pb_specialty_column.et_pb_column:last-child{
		margin-right:0;
	}
	.specialty-header.et_pb_row.et_pb_equal_columns, .specialty-header  .et_pb_row_inner.et_pb_equal_columns, .specialty-header.et_pb_section.et_pb_equal_columns>.et_pb_row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		direction: ltr;
		justify-content:center;
	}
}

/* Staff */
.team-staff figure.dp-dfg-image.entry-thumb {
	border-radius: 50%;
	overflow: hidden;
	margin-bottom:25px;
}
.team-staff .dp-dfg-skin-default .dp-dfg-item>* {
	padding: 0.5em 0 0;
}
.team-staff .dp-dfg-pagination .pagination a, .team-staff .dp-dfg-skin-default .dp-dfg-filter a, .team-staff .et-l .dp-dfg-pagination .pagination a.pagination-link, .team-staff .et-l .dp-dfg-skin-default .dp-dfg-filter a.dp-dfg-filter-link{
	border:0 !important;
	padding-left:10px !important;
	padding-right:10px !important;
}
.team-staff li.dp-dfg-filter{
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:center;
}
.team-staff li.dp-dfg-filter:after{
	content:"/";
	padding:0 5px;
	color:#3A87A4;
	display:inline;
	font-size:16px;
}
.team-staff li.dp-dfg-filter:last-child:after{
	display:none;
}

.team-staff .dp-dfg-skin-default .dp-dfg-filter a.active, .team-staff .dp-dfg-skin-default .pagination li.active a, .team-staff .et-l .dp-dfg-skin-default .dp-dfg-filter a.active, .team-staff .et-l .dp-dfg-skin-default .pagination li.active a, .team-staff .dp-dfg-skin-default .dp-dfg-filter a:hover, .dp-dfg-skin-default .pagination a:hover, .team-staff .et-l .dp-dfg-skin-default .dp-dfg-filter a:hover, .team-staff .et-l .dp-dfg-skin-default .pagination a:hover{
	background:transparent;
}
.team-staff .dp-dfg-filters.dp-dfg-filters-buttons-layout{
	border-bottom:1px solid #BABBBE;
	margin-bottom:50px;
}
.team-staff .entry-title{
	text-transform:initial !important;
	letter-spacing:0px;
}
@media screen and (max-width: 479px) and (min-width:320px){
	.team-staff .dp-dfg-layout-grid .dp-dfg-items {
		display: grid;
	}
}
/*-- header internal --*/
@media only screen and (max-width:1100px){
	.header-internal h1{
		font-size:60px !important;
	}
}
@media only screen and (max-width:760px) and (min-width:481px){
	.header-internal h1{
		font-size:55px !important;
	}
}
.header-internal .et_pb_header_content_wrapper{
	padding-top:22px !important;
	padding-bottom:25px !important;
}
@media only screen and (max-width:1100px) and (min-width:981px){
	.color-blurbs-row h2.et_pb_module_header{
		font-size:40px !important;
	}
}
/*- impact as corporated partner-*/
@media only screen and (max-width:1274px) and (min-width:981px){
	.five-options .et_pb_text{
		font-size:22px !important;
	}
}

/*--top major declared section --*/
@media only screen and (min-width:1071px){
	.six-spots-row .et_pb_column:first-child{
		width:22% !important;
	}
	.six-spots-row .et_pb_column{
		width:15.1667% !important;
	}
	.six-spots-row .et_pb_column{
		margin-right:1.5% !important;
	}
	.six-spots-row .et_pb_column:last-child{
		margin-right:0;
	}
}
@media only screen and (max-width:1070px) and (min-width:481px){
	.six-spots-row {
		flex-wrap: wrap;
	}
	.six-spots-row .et_pb_column{
		width:48% !important;
	}
	.six-spots-row .et_pb_column{
		margin-right:1.5% !important;
	}
	.six-spots-row .et_pb_column:last-child{
		margin-right:0;
	}
}
@media only screen and (max-width:1070px) and (min-width:981px){
	.six-spots-row .et_pb_blurb{
		padding-bottom:40px !important;
	}
}
@media only screen and (max-width:1378px){
	.six-spots-row .et_pb_blurb{
		font-size:22px !important;
		line-height:1.2em;
	}
	.six-spots-row h2{
		font-size:50px !important;
	}
	.six-spots-row .no-wrap{
		white-space:nowrap;
	}
}
@media only screen and (max-width:1240px){
	.six-spots-row h2{
		font-size:44px !important;
	}
}
@media only screen and (max-width:1062px) and (min-width:981px){
	.six-spots-row h2{
		font-size:40px !important;
	}
}
/*-- checklist odd row --*/
@media only screen and (min-width:1728px){
	.odd-checklist-row{
		max-width:395px;
	}
}

/*- blurb  image space -*/
.et_pb_main_blurb_image {
	margin-bottom: 20px;
}

/*-- support program row --*/

@media only screen and (max-width:980px){
	.support-program-row .et_pb_column:last-child{
		width:100%;
	}
	.five-spots.et_pb_row_5col>.et_pb_column:last-child{
		width:100%;
	}

}
@media only screen and (max-width:480px) and (min-width:250px){
	.five-spots.et_pb_row_5col>.et_pb_column{
		width: 47.25% !important;
		margin-right:5.5% !important;
	}
	.five-spots.et_pb_row_5col>.et_pb_column:last-child, .five-spots.et_pb_row_5col>.et_pb_column:nth-child(2), .five-spots.et_pb_row_5col>.et_pb_column:nth-child(4){
		margin-right:0 !important;
	}
	.five-spots.et_pb_row_4col>.et_pb_column{
		width: 47.25% !important;
		margin-right:5.5% !important;
	}
	.five-spots.et_pb_row_4col>.et_pb_column:last-child, .five-spots.et_pb_row_4col>.et_pb_column:nth-child(2){
		margin-right:0 !important;
	}
}

/*-- image carousel slider --*/
.image-slider .mb-30 {
	margin-bottom: 0 !important;
}
.image-slider .dnxte_coverflowslider_child {
	display: initial;
}
@media only screen and (min-width:1022px){	
	.image-slider .swiper-wrapper{
		height:19vw !important;
	}
}
@media only screen and (max-width:1021px) and (min-width:761px){
	.swiper-wrapper {
		height: 26vw !important;
	}
}
@media only screen and (max-width:760px){
	.swiper-wrapper {
		height: 39vw !important;
	}
}
.image-slider .dnxte_coverflowslider_parent .swiper-button-prev, .image-slider .dnxte_coverflowslider_parent .swiper-button-next{
	background-color:transparent !important;
}
.image-slider .dnxte_coverflowslider_parent .swiper-button-next:after{
	content:"";
	background:url(/wp-content/uploads/next-round-arrow-white.svg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:contain;
	width:62px;
	height:62px;
}
.image-slider .dnxte_coverflowslider_parent .swiper-button-prev:after{
	content:"";
	background-image:url(/wp-content/uploads/prev-round-arrow-white.svg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:contain;
	width:62px;
	height:62px;
}

/*- donation blurbs -*/
.full-height, .full-height .et_pb_module_inner, .donation-plans, .donation-plans .et_pb_module_inner{
	height:100%;
}

@media only screen and (min-width:981px){
	.full-height .dnxt-button-wrapper{
		position:absolute;
		left:0;
		right:0;
		margin-left:auto;
		margin-right:auto;
		bottom:30px;
	}
	.full-height .dnxt-blurb-description{
		margin-bottom:70px;
	}
}
/*-- BLOG --*/

@media only screen and (min-width:1621px){
	.carousel-news {
		max-width: 1429px !important;
	}
}
@media only screen and (max-width:980px) and (min-width:560px){
	.blog-category-titles .et_pb_column {
		width: 48%;
		margin-right:2%;
		margin-bottom:0 !important;
	}
	.blog-category-titles .et_pb_column:last-child {
		margin-right:0 !important;	
	}
	.blog-category-titles {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		direction: ltr;
	}
}
@media only screen and (min-width:981px){
	.blog-category-titles .et_pb_column:last-child{
		width:calc(48.5% - 200px) !important;
	}
	.blog-category-titles .et_pb_column a{
		text-align:right !important;
	}
}
.post-meta-single-post .et_pb_column{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:start;
	flex-wrap:wrap;
}

.post-meta-single-post .et_pb_blurb_position_left .et_pb_main_blurb_image{
	vertical-align: middle;
}
.read-time-blurb .et_pb_blurb_container{
	padding-left:5px;
}
.fullwidth-related .et_pb_post_extra {
	flex-direction: column-reverse;
}
.fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-content, .fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-content, .fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-content{
	box-shadow: 0 0 0 0 rgb(0,0,0,0);
	width:100%;
	margin:0;
	padding:50px 0;
	display: flex;
	flex-direction: column;
}
.fullwidth-related .et_pb_post_extra.el_dbe_box_extended:nth-child(odd) .post-content {
	margin: 0;
}
.fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-content .post-meta{
	order:1;
	margin-top:0;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap:wrap;
}
.fullwidth-related .et_pb_post_extra .entry-title {
	order: 2;
}
.fullwidth-related .post-data{
	order:3;
}
.fullwidth-related .el-read-more-link {
	order: 6;
}
.fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-content {
	-ms-flex-order: 1;
	order: 1;
}
.fullwidth-related span.author.vcard img {
	max-width: 25px;
}
.fullwidth-related .post-meta .read-time:before {
	content:"";
	background:url(/wp-content/uploads/Clock.png);
	width:16px;
	height:16px;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	display:inline-block;
	margin-right:5px;
}
.fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-media {
	width: auto;
	height:428px;
	margin: 0 auto;
}
.fullwidth-related .et_pb_post_extra .post-media img{
	border-radius:20px;
}
.fullwidth-related .post-meta-extended{
	display:flex;
	flex-direction:row-reverse;
	justify-content:start;
	margin:0 auto;
	width:100%;
	padding-bottom:25px;
	border-bottom:1px solid #BABBBE;
	margin-bottom:30px;
	flex-wrap:wrap;
}
@media only screen and (max-width:980px){
	.fullwidth-related .post-meta-extended .post-categories, .fullwidth-related .post-meta-extended .post-meta{
		margin-bottom:15px !important;
	}
	.fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-meta span.read-time, .fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-meta .author{
		padding-bottom:10px;
	}
}
.fullwidth-related .et_pb_post_extra .post-categories {
	width: auto;
}
.fullwidth-related .et_pb_post_extra .post-categories a{
	padding:0 10px !important;
	border:2px solid #3988A4 !important;
	border-radius:4px;
	margin-bottom:0;
}

.fullwidth-related .et_pb_post_extra.el_dbe_box_extended .post-meta span.read-time{
	margin:0 20px !important;
	font-size:18px !important;
	color:#3A87A4 !important;
}
.fullwidth-related .et_pb_post_extra .author {
	font-weight: 400 !important;
}

.social-share-row{
	display:flex;
	flex-direction:row;
	align-items:center;
	flex-basis: 100%;
	flex: 1;
	flex-wrap:wrap;
}
.social-share-row div.heateor_sss_follow_ul a, .social-share-row div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
	margin-right: 10px;
}
.share-divider{
	flex: 1;
}

/*-- donate montly --*/
.custom-gallery-donate .et_pb_gallery_image, .custom-gallery-donate .et_pb_gallery_image a{
	pointer-events:none !important;
}
.button-bottom-header.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll {
	padding-top: 0px;
	padding-bottom: 0;
	position: relative;
}
.button-bottom-header.et_pb_fullwidth_header .et_pb_fullwidth_header_container .et_pb_button_one {
	margin-right: 0;
}
.button-bottom-header.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
	margin: 40px auto 0;
	padding:0;
}
@media only screen and (max-width:1110px) and (min-width:981px){
	body #page-container .et_pb_section .button-bottom-header.et_pb_fullwidth_header .et_pb_button_one.et_pb_button {
		font-size: 24px !important;
	}
}

@media only screen and (min-width:981px){
	.donation-plans .dnxt-button-wrapper {
		position: absolute;
		bottom: 0px;
		width: 100%;
		margin: 0 auto;
	}
}

.blurbs-buttons-space .et_pb_column{
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
@media only screen and (max-width:1256px) and (min-width:981px){
	.five-blurbs .et_pb_blurb .et_pb_module_header{
		font-size:22px !important;
	}
}
@media only screen and (max-width:1140px) and (min-width:981px){
	.five-blurbs{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.five-blurbs>.et_pb_column.et_pb_column_1_5{
		width: 47.25% !important;
		margin-right: 5.5% !important;
		margin-bottom:30px;
	}
	.five-blurbs .et_pb_column:last-child{
		margin-right:0 !important;
	}
	.five-blurbs>.et_pb_column.et_pb_column_1_5:nth-child(2n), .five-blurbs>.et_pb_column.et_pb_column_1_5:nth-child(2n) {
		margin-right: 0 !important;
	}
}
/* students slider */
div#n2-ss-7 .highschool-sub-title{
	width:auto !important;
	display:inline-block !important;
	margin-left:0 !important;
	margin-right:auto !important;
}

/**-- studens internal headers--**/
@media only screen and (min-width:2000px){
	.students-special-header, .special-header-2{
		min-height: 820px;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
}
@media only screen and (max-width:1999px) and (min-width:981px){
	.students-special-header{
		min-height: 650px;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
}

/*- anchor blurb -*/
.arrow-anchor.et_pb_blurb_position_left .et_pb_blurb_container{
	vertical-align: middle;
}

/*- steps tabs -*/
@media only screen and (max-width:980px){
	.steps-primary-tab-row .et_pb_column{
		margin-bottom:0 !important;
	}
}
@media only screen and (max-width:1507px) and (min-width:981px){
	.steps-primary-tab-text, a.steps-primary-tab-additional-button{
		font-size:22px !important;
	}
}
.checklist.plus ul li::before{
	content:"";
	width:28px;
	height:28px;
	background:url(/wp-content/uploads/checklist-plus.svg);
	background-size:contain;
	background-repeat:no-repeat;
	margin-right:10px;
} 
.checklist.plus ul li {
	padding-left: 39px;
	margin: 0 0 12px !important;
}

.steps-title h2{
	padding:20px;
	background:#E55A25;
	margin-right:20px;
}
.steps-title.additional h2{
	padding:20px;
	background:#DBA132;
	margin-right:20px;
}
.steps-title .et_pb_text_inner{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.checklist.check ul li::before{
	content:"";
	width:60px;
	height:60px;
	background:url(/wp-content/uploads/check-icon-orange-1.svg);
	background-size:contain;
	background-repeat:no-repeat;
	margin-right:30px;
	top: 50%;
	transform: translateY(-50%);
} 
.checklist.check ul li {
	padding-left: 75px;
	margin: 34px 0 74px !important;
}

.checklist.bulb ul li::before{
	content:"";
	width:60px;
	height:60px;
	background:url(/wp-content/uploads/explore-impact-icon.svg);
	background-size:contain;
	background-repeat:no-repeat;
	margin-right:30px;
} 
.checklist.bulb ul li {
	padding-left: 75px;
	margin: 34px 0 74px !important;
}

/*-- resources extended --*/
@media screen and (min-width: 981px){
	.related-resources-module .post-content {
		padding: 20px !important;
	}
}
/*.related-resources-module .post-media, .related-resources-module .post-media-container {
height: 250px;
}*/
.related-resources-module .post-media img {
	-o-object-position: 50% 9% !important;
	object-position: 50% 9% !important;
}
.related-resources-module .resource-meta-extended{
	display:flex;
	flex-direction:row-reverse;
	align-items: center;
	max-width: 227px;
}
@media screen and (min-width: 981px){
	.et_pb_column_4_4 .et_pb_post_extra.el_dbe_block_extended .post-content {
		padding: 30px 15px;
	}
}
.related-resources-module .el-read-more-btn, .related-resources-module a.et_pb_button{
	padding-top:0 !important;
	padding-bottom:0 !important;
	margin:0 !important;
	padding-left:0 !important;
	text-transform:initial;
}

/*extended buttons*/
.read-more-button-resources:after{
	display:initial !important;	
	margin-top:0;
	content:"" !important;
	background:url(/wp-content/uploads/read-more-arrow.png);
	background-size:contain !important;
	background-position:center !important;
	background-repeat:no-repeat;
	width:18px;
	height:18px;
}
.read-more-button-resources:hover:after{
	background:url(/wp-content/uploads/arrow-hover-blue.png);
}
a.et_pb_button.read-more-button-resources.shortest{
	min-width:124px !important;
	padding-right:1em !important;
	padding-bottom:0 !important;
}

#page-container .read-more-button-resources, #page-container .read-more-button-resources:hover, body #page-container .et_pb_section .et_pb_post.et_pb_post_extra .post-content .resource-meta-extended .el-read-more-btn .read-more-button-resources.et_pb_button{
	padding-left:0 !important;
	text-align:left;
}
#page-container .resource-meta-extended .read-more-button-resources, .resource-meta-extended span{
	line-height:1.2em !important;
}
.related-resources-module .et_pb_post_extra.el_dbe_block_extended .post-meta{
	border-top:0;
	padding-left:0;
	align-self:center;
	padding-right:0; 
}
.related-resources-module h3.entry-title {
	text-transform: initial !important;
	line-height:1.5em;
}

.related-resources-module .post-meta:after{
	content:"|";
	margin-left:5px;
	margin-right:5px;
	display:inline;
	font-size:14px;
}

/*-- slider resources --*/
.related-resources-module.slide .swiper-wrapper {
	height: 100% !important;
}
.related-resources-module.slide .el-dbe-blog-extra.el-dbe-blog-extra-slider.solid_dot .swiper-container{
	order:2;
}
.related-resources-module.slide .el-dbe-blog-extra.el-dbe-blog-extra-slider.solid_dot .swiper-pagination{
	order:1;
	margin-top:-55px;
	margin-bottom: 20px;
	text-align:right;
	width:150px;
	margin-left:auto;
	margin-right:0;
}
.related-resources-module.slide .swiper-pagination-bullet, .related-resources-module.slide .swiper-pagination-bullet-active{
	width:16px;
	height:16px;
}
.related-resources-module.slide .swiper-pagination-bullet{
	background:transparent;
	border:2px solid #3988A4;
}
/*- blurb as tabs -*/
/*-- filter --*/

.resources-filter img.dp-dfg-featured-image{
	border-radius:20px;
}
.resources-filter figure.dp-dfg-image.entry-thumb {
	width: 171px;
	height: 171px;
}
.resources-filter .dp-dfg-skin-default .dp-dfg-image img{
	object-fit:cover;
	height:100%;
}
.resources-filter .dp-dfg-layout-list .dp-dfg-item {
	border: 1px solid #213367 !important;
	padding: 25px 40px;
	border-radius: 20px;
	align-items:center;
}
.resources-filter .et_pb_button_wrapper.read-more-wrapper {
	padding: 0 !important;
}
.resources-filter .blurb-icon-wrap  {
	background: #BEDCF2;
	padding:60px 0;
	width:100%;
	margin-bottom:60px;
}
.resources-filter .blurb-icon-wrap p.dp-dfg-taxonomy-label.dp-dfg-taxonomy-category {
	padding-bottom: 40px !important;
	text-align: left !important;
	max-width: 1366px;
	width:80%;
	margin: 0 auto;
}
.resources-filter .blurb-icon-wrap ul.dp-dfg-level.dp-dfg-taxonomy-category {
	max-width: 1366px;
	width:80%;
	margin: 0 auto;
	justify-content:space-between;
}
.resources-filter .blurb-icon-wrap .dp-dfg-taxonomy-category .dp-dfg-filter{
	margin-right:10px;
	flex: 1 0 16%;
}
.resources-filter .blurb-icon-wrap .dp-dfg-taxonomy-category .dp-dfg-filter:last-child{
	margin-right:0;
}
.resources-filter .blurb-icon-wrap .dp-dfg-taxonomy-category .dp-dfg-filter .dp-dfg-filter-link{
	text-transform:initial !important;
	letter-spacing:0;
	text-align:center;
	padding: 1em 0;
	background:transparent;
	border:0;
	line-height:1.3em !important;
}
.resources-filter .blurb-icon-wrap .dp-dfg-filter[data-parent="all"],.resources-filter .blurb-icon-wrap ul.dp-dfg-level.dp-dfg-taxonomy-category .dp-dfg-filter-link.all{
	display:none;
}
.resources-filter .dp-dfg-layout-list .dp-dfg-items{
	max-width: 1366px;
	width:80%;
	margin: 0 auto;
}

.resources-filter .dp-dfg-taxonomy-label.dp-dfg-taxonomy-dsf_resources_tag {
	font-family: 'Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif!important;
	font-size: 18px!important;
	color: #3988a4!important;
}
.resources-filter .secondary-filters-wrap {
	display: flex;
	width: 80%;
	max-width: 1366px;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	flex-wrap:wrap;
}
@media only screen and (max-width:980px){
	.resources-filter .secondary-filters-wrap{
		flex-direction:column-reverse;
	}
	.resources-filter .dp-dfg-taxonomy-label.dp-dfg-taxonomy-dsf_resources_tag{
		margin-top:20px;
	}
}
@media screen and (max-width: 767px){
	.resources-filter .dp-dfg-layout-list .dp-dfg-image, .dp-dfg-layout-list .dp-dfg-overlay {
		margin: 0 0 3em;
	}
	.resources-filter .dp-dfg-layout-list .dp-dfg-item {
		padding: 25px 25px;
	}
}
.resources-filter .dp-dfg-container .entry-title{
	text-transform:initial !important;
	letter-spacing:0 !important;
}
/*- icons for resources filters -*/

.resources-filter .blurb-icon-wrap .dp-dfg-filter .dp-dfg-filter-link.dsf-scholarship::before{
	content:"";
	background:url(/wp-content/uploads/the-dsf-scholarship-icon.svg);
	background-repeat:no-repeat;
	background-size:contain;
	display:block;
	width:118px;
	height:118px;
	margin:0 auto 10px;
}
.resources-filter .blurb-icon-wrap .dp-dfg-filter .dp-dfg-filter-link.faq::before{
	content:"";
	background:url(/wp-content/uploads/faqs-icon.svg);
	background-repeat:no-repeat;
	background-size:contain;
	display:block;
	width:118px;
	height:118px;
	margin:0 auto 10px;
}
.resources-filter .blurb-icon-wrap .dp-dfg-filter .dp-dfg-filter-link.financial-assistance::before{
	content:"";
	background:url(/wp-content/uploads/applying-financial-icon.svg);
	background-repeat:no-repeat;
	background-size:contain;
	display:block;
	width:118px;
	height:118px;
	margin:0 auto 10px;
}
.resources-filter .blurb-icon-wrap .dp-dfg-filter .dp-dfg-filter-link.applying-for-college::before{
	content:"";
	background:url(/wp-content/uploads/applying-college-icon.svg);
	background-repeat:no-repeat;
	background-size:contain;
	display:block;
	width:118px;
	height:118px;
	margin:0 auto 10px;
}
.resources-filter .blurb-icon-wrap .dp-dfg-filter .dp-dfg-filter-link.college-pathways::before{
	content:"";
	background:url(/wp-content/uploads/college-pathways-icon.svg);
	background-repeat:no-repeat;
	background-size:contain;
	display:block;
	width:118px;
	height:118px;
	margin:0 auto 10px;
}
.resources-filter .blurb-icon-wrap .dp-dfg-filter .dp-dfg-filter-link.resource-videos::before{
	content:"";
	background:url(/wp-content/uploads/videos-icon.svg);
	background-repeat:no-repeat;
	background-size:contain;
	display:block;
	width:118px;
	height:118px;
	margin:0 auto 10px;
}
/*- read more arrow button -*/
.resources-filter .dp-dfg-container .read-more-wrapper{
	background-image:url(/wp-content/uploads/next-arrow-round.svg);
	background-size:contain;
	width:62px;
	height: 62px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 0;
	margin-left: auto;
}
.resources-filter .dp-dfg-container .read-more-wrapper:hover{
	background-color:#90B9CE;
}
.resources-filter .dp-dfg-container:not(.dp-dfg-vb) .dp-dfg-more-button:after{
	content:"";
}


.inline-buttons-in-col.choice .et_pb_button_module_wrapper{
	margin-right:0;
}
.inline-buttons-in-col.choice .or-choice{
	display:inline-block;
	z-index:5;
}

@media only screen and (min-width:981px){
	.centered .double-button-choice-col{
		display: flex;
		justify-content: center;
		flex-direction: row;
		align-items: center;
	}
	.centered .double-button-choice-col .et_pb_button_module_wrapper{
		min-width:50% !important;
	}
	.centered .double-button-choice-col .et_pb_button{
		width:100%;
	}
}
/*-annual gala -*/
.align-bottom .et_pb_row{
	min-height:80vh;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
}
.title-text.pp-primary-title{
	font-family: 'Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif!important;
	letter-spacing:initial !important;
}
/*-- summit header--*/
.special-summit-header{
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
}

/*-- summit hover--*/
.summit-hover:hover .date-hover{
	color:#bedcf2 !important;
}
.toggle-summit h3.et_pb_toggle_title{
	text-transform:initial !important;
}

/*-- blog --*/
.blog-posts-modules:after{
	display:initial !important;	
	margin-top:0;
	content:"" !important;
	background:url(/wp-content/uploads/read-more-arrow.png);
	background-size:contain !important;
	background-position:center !important;
	background-repeat:no-repeat;
	width:18px;
	height:18px;
}
.blog-posts-modules a.et_pb_button:hover:after{
	background:url(/wp-content/uploads/arrow-hover-blue.png);
}
#page-container .blog-posts-modules .resource-meta-extended a.et_pb_button.read-more-button-resources.shortest{
	min-width:124px !important;
	padding-right:1em !important;
	padding-bottom: 1.5px !important;
}

.blog-posts-modules .post-meta:after{
	content:"";
	margin-left:5px;
	margin-right:5px;
	display:inline;
	font-size:14px;
}

.blog-posts-modules .et_pb_post_extra.el_dbe_block_extended .post-media-container {
	border-radius: 20px;
}
.blog-posts-modules.blog-page  .et_pb_post_extra.el_dbe_block_extended .post-media-container {
	height: 250px;
	border-radius: 20px;
}
.blog-posts-modules.blog-page .et_pb_post.et_pb_post_extra .entry-title{
	text-transform:initial !important;
	line-height:1.4em !important;
	letter-spacing:0 !important;
}
.blog-posts-modules .et_pb_post.et_pb_post_extra .entry-title{
	letter-spacing:0 !important;
}
.blog-posts-modules.blog-page .et_pb_post{
	border:0 !important;
	box-shadow:none !important;
}
.blog-posts-modules .post-media img {
	-o-object-position: 50% 9% !important;
	object-position: 50% 9% !important;
}
.blog-posts-modules .resource-meta-extended .post-meta{
	margin-top:0 !important;
	margin-bottom:0 !important;
}
.blog-posts-modules .resource-meta-extended{
	display:flex;
	flex-direction:row-reverse;
	align-items: center;
	justify-content:flex-end;
	margin-top:20px;
}
.blog-posts-modules.blog-page .resource-meta-extended{
	width:227px !important;
}
.blog-posts-modules .el-read-more-btn, .blog-posts-modules a.et_pb_button{
	padding-top:0 !important;
	padding-bottom:0 !important;
	margin:0 !important;
	padding-left:0 !important;
	text-transform:initial;
}
.blog-posts-modules .post-categories{
	text-transform:uppercase;
}
/*@media only screen and (max-width:1595px){
.blog-posts-modules .resource-meta-extended{
flex-wrap:wrap-reverse;
}
}*/
.blog-posts-modules .et_pb_post_extra.el_dbe_block_extended .post-meta{
	border-top:0;
	padding-left:0;
	align-self:center;
	padding-right:0; 
	padding-top:0 !important;
	padding-bottom:0 !important;
}
.blog-posts-modules h3.entry-title {
	text-transform: initial;
	line-height:1.5em;
	letter-spacing:0 !important;
}

/*-search field-*/
.blog-search form input.et_pb_s {
	width: calc(100% - 150px) !important;
	border: 2px solid #203466 !important;
	border-radius:4px;
}
.blog-search.et_pb_search.et_pb_text_align_center .et_pb_searchsubmit, .blog-search.et_pb_search.et_pb_text_align_left .et_pb_searchsubmit{
	border: 2px solid #203466 !important;
	border-radius:4px;
	width: 130px;
}
.blog-search.et_pb_search.et_pb_text_align_center .et_pb_searchsubmit:hover, .blog-search.et_pb_search.et_pb_text_align_left .et_pb_searchsubmit:hover{
	background: #203466 !important;
	color:#fff !important;

}

h2.entry-title {
	text-transform: initial;
	line-height:1.4em;
}
.single.single-post h2.entry-title{
	text-transform:uppercase !important;
}
/*-- events --*/
.signature-events .et_pb_post_extra.el_dbe_block_extended{
	border:1px solid #213367;
	border-radius:20px;
}
.signature-events .post-content {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.signature-events .entry-title{
	text-transform:initial !important;
}
.countdown-incoming article.mec-event-countdown-style1.col-md-12 {
	display: flex;
	flex-direction: column;
}

.countdown-incoming .mec-event-countdown-part1{
	display: flex !important;
	flex-direction: row;
	width:100%;
	align-items:center;
	flex-wrap:wrap;
}
.countdown-incoming .mec-event-countdown-part2{
	display: flex !important;
	flex-direction: row;
	width:100%;
	align-items:center;
	flex-wrap:wrap;
	background-color:transparent !important;
}
.countdown-incoming .mec-event-countdown{
	display:none;
}
.countdown-incoming .mec-event-countdown-part1{
	order:1;
}
.countdown-incoming .mec-event-countdown-part2{
	order:2;
}
.countdown-incoming .mec-event-countdown-part3{
	order:3;
	display:flex !important;
	background:transparent !important;
	width:100%;
	justify-content:flex-end;
	padding: 0 4% 30px 4% !important;
}

.countdown-incoming .mec-event-date{
	margin-right:20px;
}
.countdown-incoming .mec-event-date, .countdown-incoming .mec-event-place{
	font-size:30px !important;
	font-family:'Segoe UI Black',Helvetica,Arial,Lucida,sans-serif!important
}
.countdown-incoming .mec-event-place span, .countdown-incoming .mec-event-date span{
	text-align:left;
	font-family: 'Segoe UI Semibold',Helvetica,Arial,Lucida,sans-serif;
	color:#BEDCF2;
	font-size:18px !important;
}
.countdown-incoming .mec-event-countdown-part2 .mec-event-place, .countdown-incoming .mec-event-countdown-part2 .mec-event-date{
	display:flex;
	flex-direction:column;
}
.countdown-incoming .mec-event-countdown-part2 .mec-event-date-place {
	display: flex;
	flex-direction:row;
	flex-wrap:wrap;
}
.countdown-incoming .mec-event-countdown-part3 .mec-event-button {
	padding: 10px 30px 10px 0 !important;
	background-image:url(/wp-content/uploads/read-more-arrow-lapiazul.png) !important;
	background-position:center right !important;
	background-repeat:no-repeat !important;
	color:#94BED5;
	text-transform:capitalize !important;
}
.countdown-incoming .mec-event-countdown-part3 .mec-event-button:hover{
	background:transparent;
	color:#fff !important;
}
.countdown-incoming .mec-event-countdown-part1 .mec-event-upcoming{
	font-size: 55px !important;
	font-family:'Franchise Bold',Helvetica,Arial,Lucida,sans-serif;
	letter-spacing:2px;
	color:#BEDCF2;
	text-transform:uppercase;
}
.countdown-incoming .mec-event-countdown-part1{
	padding: 30px 1% 20px 4% !important;
}
.countdown-incoming .mec-event-countdown-part2{
	padding: 0px 1% 10px 4% !important;
}
.countdown-incoming .mec-event-countdown-part1 .mec-event-upcoming:after{
	content:":";
	margin-right:10px;
}
.countdown-incoming .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title {
	font-size: 55px !important;
	font-weight: 800;
	margin-top:0;
	margin-bottom:0;
	padding-bottom:0;
}
.countdown-incoming .mec-event-countdown-part1 .mec-event-upcoming span{
	display:none;
}
.countdown-incoming  .mec-event-countdown-style1 .mec-event-countdown-part2:after{
	display:none;
}
@media only screen and (max-width:480px){
	.countdown-incoming .detail-event-featured, .countdown-incoming .mec-event-place span{
		margin:10px 0;
	}
	.countdown-incoming .mec-event-countdown-part3 .mec-event-button {
		margin-bottom:30px;
	}
	.countdown-incoming .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title, .countdown-incoming .mec-event-countdown-part1 .mec-event-upcoming {
		font-size: 35px !important;
	}
	.countdown-incoming .mec-event-date, .countdown-incoming .mec-event-place{
		font-size:26px !important;
		text-align:left;
		margin-bottom:15px !important;
	}
	.countdown-incoming  .mec-event-countdown-style1 .mec-event-countdown-part2{
		padding-top:25px;
		padding-bottom:25px;
	}
}
/*-- list --*/
.mec-event-list-minimal .mec-event-article {
	border: 1px solid #213367;
	border-radius: 20px;
}
.mec-event-list-minimal .mec-event-date.mec-bg-color{
	font-family: 'Segoe UI Black','Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif !important;
	font-size:20px;
	color:#BEDCF2;
}
.mec-event-list-minimal .mec-event-date.mec-bg-color{
	border-radius:13px;
	background:#213367 !important;
}
.mec-event-list-minimal .mec-event-date.mec-bg-color span{
	font-size:90px;
	color:#fff !important;
	padding-bottom:20px;
}
.mec-event-list-minimal .mec-event-date:after{
	display:none;
}
.mec-event-list-minimal .mec-event-date.mec-bg-color {
	display: flex;
	flex-direction: column;
	padding: 30px 10px 15px;
}
.mec-event-list-minimal h4.mec-event-title a{
	font-family: 'Segoe UI Black','Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif !important;
	font-size:40px !important;
}

.mec-event-list-minimal .mec-event-article{
	display: flex;
	flex-direction: row;
	flex-wrap:wrap;
	padding: 24px 10px;
}
.mec-event-list-minimal .mec-time-details{
	display: flex;
	order:2;
	flex-direction:column;
	font-size:28px !important;
	color:#203466 !important;
	font-family: 'Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif !important;
}
.mec-event-list-minimal .mec-event-title{
	margin-bottom:0 !important;
}
.list-detail-events {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.mec-event-list-minimal .mec-event-detail{
	display: flex;
	order:3;
	font-size:28px !important;
	color:#203466 !important;
	font-family: 'Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif !important;
	margin-left:20px;
}
.mec-event-list-minimal .mec-event-loc-place span.detail-event-list{
	display:flex;
}
.mec-event-list-minimal .mec-event-loc-place{
	margin-left:5px;
}
.mec-event-list-minimal span.event-day-name {
	display: none;
}
.mec-event-list-minimal .mec-time-details span.detail-event-list, .mec-event-list-minimal .mec-event-loc-place span.detail-event-list{
	text-align:left;
	font-family: 'Segoe UI Semibold',Helvetica,Arial,Lucida,sans-serif;
	color:#3988A4;
	font-size:18px !important;
	margin-top:10px;
}
@media only screen and (max-width:1024px) and (min-width:981px){
	.mec-event-list-minimal .mec-time-details, .mec-event-list-minimal .mec-event-detail {
		font-size: 20px !important;
	}
}
@media only screen and (max-width:980px){
	.mec-event-list-minimal h4.mec-event-title a {
		font-size: 26px !important;
	}
	.mec-event-list-minimal .mec-time-details, .mec-event-list-minimal .mec-event-detail{
		font-size:20px !important;
		text-align:left;
		margin-bottom:15px !important;
	}
	.mec-event-list-minimal .mec-event-detail{
		margin-left:10px;
	}
	.mec-event-list-minimal .mec-event-date.mec-bg-color span {
		padding-bottom: 35px;
	}
}

@media only screen and (max-width:768px){
	.mec-event-list-minimal .mec-event-loc-place {
		margin-left: 0;
	}
	.mec-event-list-minimal .mec-event-detail {
		margin-left: 0;
	}
}
@media only screen and (max-width:480px){
	.mec-event-list-minimal .col-md-9.col-sm-9 {
		margin: 0 auto;
		width: 95%;
	}
	.mec-event-list-minimal .mec-event-date span {
		padding-right: 0;
		margin-right: 0;
	}
	.list-detail-events {
		flex-direction: column;
	}
	.mec-event-list-minimal .mec-event-title{
		text-align:left !important;
	}
}
@media only screen and (max-width:420px){
	.mec-event-list-minimal .mec-event-detail{
		margin-left:0;
	}
	.list-detail-events{
		flex-direction:column;
	}
}
/* event button */
.mec-event-list-minimal .btn-wrapper{
	background-image:url(/wp-content/uploads/next-arrow-round.svg);
	background-size:contain;
	width:62px;
	height: 62px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 30px;
	margin-left: auto;
	align-self: flex-end;
}
.mec-event-list-minimal a.mec-detail-button{
	color:transparent !important;
	background-color:transparent;
}
.mec-event-list-minimal .btn-wrapper:hover{
	background-color:#90B9CE !important;
}
.mec-event-list-minimal a.mec-detail-button:hover{
	background-color:transparent !important;
}
.single-mec-events h1, .single-mec-events h2, .single-mec-events h3, .single-mec-events h4, .single-mec-events h5, .single-mec-events h6{
	color:#213367 !important;
	letter-spacing:2px;
	font-weight:bold;
}
@media only screen and (min-width:981px){
	.single-mec-events h1, .single-mec-events h2{
		font-size:55px !important;
	}
	.mec-single-event .mec-event-meta h3 {
		font-size: 26px !important;
	}
	.mec-single-event .mec-wrap p, .mec-single-event .mec-event-meta .mec-events-event-categories a, .mec-single-event .mec-event-meta dd, .mec-single-event .mec-event-meta dd .mec-address{
		font-size:22px !important;
	}
}
#block-5 h3{
	padding-bottom:0 !important;
	margin-bottom:0 !important;
}
.mec-single-event .mec-booking-button, .mec-single-event .mec-event-meta dt{
	font-family:'Segoe UI semibold',Helvetica,Arial,Lucida,sans-serif;
	text-transform:uppercase;
}
.mec-single-event .mec-event-meta dt{
	color:#213367 !important;
}
.mec-wrap .mec-single-event-description.mec-events-content p, .mec-single-event .mec-event-meta .mec-events-event-categories a, .mec-single-event .mec-event-meta dd, .mec-single-event .mec-event-meta dd .mec-address{
	color:#213367;
	font-family:'Segoe UI Regular',Helvetica,Arial,Lucida,sans-serif;
	font-size:16px !important;
	font-weight:normal;
}
#main-content li ul li {
	list-style-type: circle;
}

@media only screen and (min-width:981px){
	body.single .post-blog{
		font-size:22px !important;
		line-height:1.4;
	}
}

.dnxt-hover-fade{
	-webkit-transform: none !important;
	transform: none !important;
}
.faq .et_pb_toggle_open h6.et_pb_toggle_title:before {
	content: "\f056"!important;
}
.spaced-list li {
	margin-bottom: 10px;
}

/* ----- Annual Report 2022 ----- */

#ar-2021-header .et_pb_menu__wrap {
	justify-content: flex-end;
}

#ar-2021-header .et_pb_menu .et-menu {
	margin-right: 0;
	margin-left:0;
}

#ar-2021-header .et_pb_menu__menu>nav>ul>li {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

#ar-2021-header .ar-header-row {
   	transition: padding 0.6s;
}

#ar-2021-header.et_pb_sticky .ar-header-row {
   	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

#ar-2021-header.et_pb_sticky {
   	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

#ar-2021-header #mobile_menu1 {
	padding: 0px;
}

#ar-video-header .et_pb_section_video_bg  .mejs-controls {
	opacity: 1 !important;
    display: block !important;
    clip: unset;
    -webkit-clip-path: unset;
    clip-path: unset;
    top: 10px;
	left: 10px;
	background: transparent;
}

#ar-video-header .et_pb_section_video_bg  .mejs-controls {
	position: relative;
    z-index: 999;
	width: 100vw;
    margin: auto;
}

#ar-video-header .et_pb_section_video_bg  .mejs-controls > div:not(.mejs-unmute):not(.mejs-mute) {
	display: none;
}

#ar-video-header .et_pb_section_video_bg {
	pointer-events: all;
}

#ar-video-header .et_pb_section_video_bg  .mejs-controls > .mejs-unmute,
#ar-video-header .et_pb_section_video_bg  .mejs-controls > .mejs-mute {
	position: relative;
    z-index: 999;
    transform: scale(1.8);
}

@media (max-width: 980px) {
/* 	#ar-voices-section .et_pb_column {
		margin-bottom: 60px;
	} */
	
	#ar-voices-section .et_pb_column:after {
		display: none
	}
}

.annual-report-blurb img {
	max-height: 344px;
	object-fit: cover;
}

.annual-report-blurb .et_pb_blurb_container {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 0.5s;
}

.annual-report-blurb:hover .et_pb_blurb_container {
	opacity: 1;
}

.annual-report-blurb .et_pb_blurb_content:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(33,51,103,0.75);
	opacity: 0;
	transition: opacity 0.5s;
}

.annual-report-blurb:hover .et_pb_blurb_content:before {
	opacity: 1
}

.slick-slide .et_pb_row {
	max-width: 100% !important;
}

.slick-slide .slick-dots li button {
	font-family: Ubuntu, sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #ffffff;
}

.slick-slide .slick-dots li.slick-active button {
	color: #213467 !important;
}

.spotlight-slick-slider-2022 #slick-slide10 .slick-dots li button {
	color: #213467;
}

.spotlight-slick-slider-2022 #slick-slide10 .slick-dots li.slick-active button {
	color: #ffffff !important;
}

.slick-slide .slick-dots li button:before {
	display: none;
}

.slick-slide .slick-dots {
	position: relative;
	bottom: 0;
	display: inline-block;
}

.slick-slide .nav-arrow {
	font-size: 25px;
	display: inline-block;
}

.navigation-text .et_pb_text_inner > * {
	display: inline-block;
	line-height: 0.1em;
}


body .slick-slide  .navigation-text .et_pb_text_inner * {
	padding: 0;
}

.navigation-text .et_pb_text_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (min-width: 981px) {
	.ar-spotlight-section .et_pb_row .et_pb_column.et_pb_column_2_3 {
		width: 52.833%;
	}
	.ar-spotlight-section .et_pb_row .et_pb_column.et_pb_column_1_3 {
		width: 41.6667%;
	}
}

body .community-spot-row .active-com-block {
	background-color: #213467 !important;
}

/* ---------- Blog - Annual Report 2022 ---------- */
.custom-blog .et_pb_blog_grid .et_pb_post {
	padding: 0;
}
/* ----- Reorder Elements ----- */
.custom-blog article {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: flex-start;
	align-items: stretch;
}
.custom-blog .et_pb_image_container {
	order: 1;
}
.custom-blog .entry-title {
	order: 2;
}
.custom-blog .post-content {
	order: 3;
}
.custom-blog .post-meta {
	order: 4;
}
/* ----- Featured Image ----- */
.custom-blog .et_pb_image_container {
	margin: 0px 0px 29px;
	padding: 0 18px;
}
.custom-blog .et_pb_image_container a {
	border-top: 30px solid #bedcf2;
	margin-bottom: 0;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.custom-blog .et_pb_image_container a:hover {
	border-top-color: #e7a426;
}
/* ----- Title ----- */
.custom-blog h3.entry-title {
	margin-bottom: 20px;
}
@media (min-width: 981px) {
	.custom-blog h3.entry-title {
		font-size: 22px !important;
	}
}
/* ----- Post Meta ----- */
.custom-blog .post-meta {
	padding: 0 0 0 15px;
	margin: 10px 0 0 0;
}
/* ----- Post Content ----- */
.custom-blog .post-content .post-content-inner {
	margin-bottom: 10px;
}

/* ---------- Align Button to Bottom of Column ---------- */
.align-button-column {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}
.align-button-column .et_pb_button_module_wrapper {
	margin-top: auto !important;
}

/* ---------------- Social Icons ------------------ */

.et_pb_social_icon.et-social-dbdb-tiktok a.icon:before {
	content: "\e07b";
    font-family: FontAwesome!important;
}
#mobile-menu iframe[style^="display: inline-block !important"] {
	display: none !important;
}

/* ========== CSS by Hridoy starts here ========== */

div#page-container .large_single_blog .dp-dfg-more-button{
	overflow: visible;
	padding: 0 !important;
	margin-left: 2%
}

div#page-container .large_single_blog .dp-dfg-item {
    display: flex;
    flex-direction: column;
}

.large_single_blog .dp-dfg-image {
    order: 1;
}

.large_single_blog .dp-dfg-skin-default .dp-dfg-meta {
    order: 2;
	padding-left: 2%;
	padding-right: 2%;
	margin-top: 2%
}

.large_single_blog .dp-dfg-header.entry-header {
    order: 3;
	padding-left: 2%;
	padding-right: 2%;
}

.large_single_blog .dp-dfg-content.entry-summary {
    order: 4;
	padding-left: 2%;
	padding-right: 2%;
}

.large_single_blog .et_pb_button_wrapper.read-more-wrapper {
    order: 5;
	padding-left: 2%;
	padding-right: 2%;
}

.video_play_icon article.category-videos figure.dp-dfg-image.entry-thumb:before {
    content: url(/wp-content/uploads/Video-play-icon.svg);
    position: absolute;
    bottom: 10px;
    left: 32px;
	z-index: 1;
}
.ft_video_fix figure.dp-dfg-image.entry-thumb::after{
    content: '';
    background: transparent linear-gradient(180deg, #0000 0%, rgba(0, 0, 0, 0.6) 100%) 0% 0% no-repeat padding-box !important; 
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    border-radius: 14px;
    z-index: 0;
}
.ft_video_fix .dp-dfg-skin-default .dp-dfg-image img,
.ft_video_fix .dfg_et_overlay{
    border-radius: 14px !important;
}
.ft_video_fix .dp-dfg-overlay{
	margin: 0 !important;
}
.ft_video_fix .dp-dfg-skin-default .dp-dfg-image{
	margin: 0;
	height: 215px;
	overflow: hidden;
}
.large_single_blog .dp-dfg-skin-default .dp-dfg-image{
/* 	height: 400px; */
	height: 530px;
	overflow: hidden;
}
div#page-container .large_single_blog .dp-dfg-item{
	margin: 0;
}
.ft_video_fix .dp-dfg-skin-default .dp-dfg-image img,
.large_single_blog .dp-dfg-skin-default .dp-dfg-image img{
    object-fit: cover;
    object-position: center;
    height: 100%;
}
body .ft_video_fix .dp-dfg-item .dp-dfg-meta{
    padding: 0;
}
body .ft_video_fix .dp-dfg-item .dp-dfg-header{
    padding: 0;
    margin-top: 8px;
}

div#page-container .ft_video_fix .dp-dfg-layout-grid .dp-dfg-item {
    padding: 0;
}
div#page-container .ft_video_fix .dp-dfg-layout-grid .dp-dfg-items {
    row-gap: 12px;
}

/* figure.dp-dfg-image.entry-thumb {
    margin-bottom: 0px;
    border-radius: 14px !important;
}*/

/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
.blog_row .et_pb_column:nth-child(1){
    margin-bottom: 6px;
}
}

.arrow_btn_cmn.et_pb_button:after {
    display: inline-block;
	margin-top: 1px;
}

.large_single_blog .et_pb_button.dp-dfg-more-button:after {
	margin-top: 1px;
}

.ft_video_fix .dp-dfg-header.entry-header {
    margin-top: 9px;
}

.blog_fix_cmn .dp-dfg-header.entry-header {
    order: 2;
    margin-left: 3%;
    margin-right: 2%;
    margin-bottom: 4%;
}

.blog_fix_cmn .dp-dfg-meta.entry-meta {
    margin-left: 3%;
    margin-right: 2%;
	margin-top: 3%;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}



@media all and (min-width: 981px) and (max-width: 1440px) {
 div#page-container .blog_fix_cmn .entry-title {
    font-size: 24px!important;
}
	.dp-dfg-meta.entry-meta span.published {
    font-size: 16px !important;
}
	
	div#page-container .large_single_blog .entry-title {
    font-size: 34px !important;
}
	.large_single_blog .dp-dfg-content.entry-summary {
    font-size: 19px!important;
}
}


/* ========== CSS by Hridoy ends here ========== */ 

/**Porosh CSS**/
body #page-container .Ppb_fltrblgWrap .dp-dfg-skin-default .dp-dfg-header .entry-title {
	text-transform: initial;
	letter-spacing: 0;
	margin-bottom: 20px;
}

body #page-container .Ppb_fltrblgWrap .dp-dfg-item{
	padding-top: 30px;
    padding-bottom: 30px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .Ppb-blogDescription{
	width: 80%;
	padding: 0;
	margin-top: -1em;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item:first-child{
    border-top: 2px solid #213367;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper{
    position: absolute;
    right: 10px;
    top: 44.5%;
    transform: translateY(-50%);	
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .dp-dfg-image{
	height: 20vw;
    max-height: 180px;
    border-radius: 16px;
    overflow: hidden;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .dp-dfg-image img{
    height: 100%;
    object-fit: cover;
    object-position: center;	
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper:before{
    content: "";
    background-image: url(/wp-content/uploads/next-arrow-round.svg);
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
	background-size: contain;
}

body #page-container .Ppb_fltrblgWrap .dp-dfg-pagination ul{
    gap: 5px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-pagination ul li a{
    padding: 10px;
}

body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button {
	text-indent: -999999px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-search{
	position: absolute;
    right: 0;
	top: 60px;
    width: 60%;
    max-width: 391px;
    border: 1px solid #213367;
    background: transparent !important;
	border-radius: 4px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-search .dp-dfg-search-icon,
body #page-container .Ppb_fltrblgWrap .dp-dfg-search input{
	background: transparent !important;
	line-height: 1em;
	padding: 12.2px;
	border-radius: 4px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-search .dp-dfg-search-icon{
	font-weight: 700;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level{
text-align: left;
    display: inline-block;	
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li{
	display: inline-block;
	margin-right: 2.5vw;
    vertical-align: top;	
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a{
	border: none;
	background: none !important;
	border-radius: 16px;	
	width: 150px;
	text-align: center;
	height: 150px;
	padding: 1vw;
	justify-content: center;
	display: grid;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a.active,
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a:hover{
	background: #DDEDF8 !important;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a:before{   
    position: relative;
    width: 25px;
    height: 40px;
    display: block;
    content: "";
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a.dp-dfg-filter-link.videos:before{
	background-image: url('/wp-content/uploads/Videos-filter-icon.svg');	
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a.dp-dfg-filter-link.events-community:before{
	background-image: url('/wp-content/uploads/Events-filter-icon.svg');
	width: 60px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a.dp-dfg-filter-link.donors-partners:before{
	background-image: url('/wp-content/uploads/Donors-Partners-filter-icon.svg');
    width: 45px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a.dp-dfg-filter-link.students-alumni-stories:before{
	background-image: url('/wp-content/uploads/Student-Alumni-filter-icon.svg');
    width: 60px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters{
    margin-bottom: 30px;	
}
@media only screen and (max-width: 1660px){
body #page-container .Ppb_fltrblgWrap .dp-dfg-search {  
    width: 30%;
    max-width: 300px;
   
}	
}
@media (min-width: 1921px){
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li{
		margin-right: 55px;
	}
}
@media only screen and (max-width: 1170px){
body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a {    
    width: 115px;    
/*     height: 115px; */
    font-size: 16px !important;
}	
body #page-container .Ppb_fltrblgWrap .dp-dfg-search .dp-dfg-search-icon, body #page-container .Ppb_fltrblgWrap .dp-dfg-search input {    
    font-size: 16px !important;
}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-search {   
    top: 40px;
}
}
@media only screen and (max-width: 980px){
    body #page-container .Ppb_fltrblgWrap .dp-dfg-search {
        width: 100%;
        max-width: 100%;
        position: relative;
        margin-bottom: 20px;
		top: 0;
		order: 2;
    }
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters{
		order: 1;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-items{
		order: 3;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-pagination{
		order: 4;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level {
    text-align: center;
    width: 100%;
		display: block;
}
	}
@media only screen and (max-width: 767px){ 
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item {
		column-gap: 2em;
		grid-template-columns: minmax(160px, 100px) 1fr;
	}
	body #page-container #main-content .Ppb_fltrblgWrap .et_pb_button.dp-dfg-more-button {
		padding-right:0 !important;   
		text-indent: unset;
		min-width: unset;
		text-transform: initial;
	}
    body #page-container .Ppb_fltrblgWrap .dp-dfg-item .dp-dfg-image {
        max-height: 150px;
		max-width: 120px;
		height: 100%;
		margin: auto;
    }
    body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper {
        position: relative;
        top: 15px;
        transform: unset;
        text-align: left;
        max-width: 150px;
		padding: 0;
    }
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper::before, body #page-container .Ppb_fltrblgWrap .dp-dfg-item .dp-dfg-header .entry-title {    
    right: 0;
    left: unset;
}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper:before {    
    width: 25px;
    height: 25px;
	top: 6px;
    
}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper:after{
		display: none !important;
	}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .Ppb-blogDescription {
    width: 100%;
    padding: 0px;
    margin-top: 0;
}	
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .Ppb-blogDescription .dp-dfg-content{
		display: none;
	}
}
@media (max-width: 324px){
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper:before {    
		width: 22px;
		height: 22px;
		top: 3px;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper{
		max-width: 125px;
	}
}
/**Single post design**/
@media (min-width: 981px){
    body #page-container .singl_post_latest article > *{
        margin-left: 50%;
    }
    body #page-container .singl_post_latest article{
        padding: 41px 0;
    }
    body #page-container .singl_post_latest article .dp-dfg-image{
        width: 50%;
        position: absolute !important;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        padding: 0 !important;
        height: 100%;
        margin: auto 0 !important;
    }
    body #page-container .singl_post_latest article .dp-dfg-image img{
        object-fit: cover;
        object-position: center !important;
        height: 100%;
    }
    body #page-container .singl_post_latest article .entry-meta{
        margin-top: 0;
    }
    body #page-container .singl_post_latest article .et_pb_button_wrapper{
        padding-bottom: 0;
    }
}
/**Footer Signup Form**/
body #page-container .ftr_signup_frm .gform_heading{
	display: none;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields{
    display: grid !important;
    gap: 24px;
}
body #page-container .ftr_signup_frm form{
    display: flex;
    justify-content: end;
}
body #page-container .ftr_signup_frm form .gform_body{
    max-width: 100%;
    width: 100%;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield{
    padding-right: 0;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield input{
    margin-top: 0 !important;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield:nth-child(2){
    grid-column: span 8;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield:nth-child(3){
    grid-column: span 4;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield .ginput_container input{
    background: #fff;
	color: #6E6E6E;
    border: 1px solid #203466;
    padding: 11.2px 23px 12px 23px !important;
    line-height: 1em;
    font-size: 19px;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield input.gform-button{
    background: transparent;
    border: 2px solid #213367 !important;
	font-size: 15px;
	align-self: unset;
	max-height: 50px;
	transition: all .3s ease;
}
body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield input.gform-button:hover{
    background: #213367;
}
body .ftr_signup_frm textarea::-webkit-input-placeholder,
body .ftr_signup_frm input::-webkit-input-placeholder {
    opacity: 1 !important;
    color: #6E6E6E !important;
}
body .ftr_signup_frm textarea::-moz-placeholder,
body .ftr_signup_frm input::-moz-placeholder {
    opacity: 1 !important;
    color: #6E6E6E !important;
}
body .ftr_signup_frm textarea:-ms-input-placeholder,
body .ftr_signup_frm input:-ms-input-placeholder {
    opacity: 1 !important;
    color: #6E6E6E !important;
}
@media (max-width: 980px){
	body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield .ginput_container input{
		font-size: 17px;
	}
	body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield input.gform-button{
		font-size: 14px;
	}
	body #page-container .ftr_signup_frm .gform_body .gform_fields{
		gap: 10px;
	}
}
@media (max-width: 767px){
	body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield .ginput_container input{
		font-size: 15px;
	}
	body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield input.gform-button{
		font-size: 13px;
	}
}
@media (max-width: 500px){
	body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield{
		grid-column: span 12 !important;
	}
	body #page-container .ftr_signup_frm .gform_body .gform_fields .gfield input.gform-button{
		padding: 9.6px 23px !important;
	}
}
/**equalHeight**/
.equalHeight:not(.et_section_specialty) .et_pb_column,
.et_section_specialty.equalHeight > .et_pb_row > .et_pb_column.et_pb_specialty_column {
    margin: auto;
}
.equalHeight .et_pb_column:first-child {
    margin-left: 0;
}
/**Signup Section**/
body #page-container .subscribe_r h2 {
    text-transform: initial;
    letter-spacing: 0;
}
body #page-container .subscribe_r .et_pb_button_module_wrapper{
    width: max-content;
    margin-left: auto;
}
body #page-container .subscribe_r .et_pb_button{
    display: inherit;
	min-width: auto;
	line-height: 1.2em !important;
}
/**Title Border**/
body #page-container .title_border h2{
    display: inline;
}
body #page-container .title_border .et_pb_text_inner{
    text-align: center;
}
body #page-container .title_border h2:before,
body #page-container .title_border h2:after{
    content: '';
    height: 1.5px;
    width: 50vw;
    position: absolute;
    left: calc(100% + 1.3vw);
    top: 39%;
    transform: translateY(-50%);
    background: #213367;
}
body #page-container .title_border h2:after{
    right: calc(100% + 1.3vw);
    left: unset;
}
body #page-container .up_next_titl h2:before{
	left: calc(100% + 5vw);
    right: unset;
}
body #page-container .up_next_titl h2:after{
	right: calc(100% + 5vw);
    left: unset;
}
body #page-container .title_border h2{
    position: relative;
}
body #page-container .title_border{
    overflow: hidden;
}
body #page-container .stories_heading h1{
	letter-spacing: 0;
}
/**Issue fixes**/
body #page-container .Ppb_fltrblgWrap .dp-dfg-item:hover .et_pb_button_wrapper::before{
    left: -10px;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item:hover .dp-dfg-header .entry-title{
    color: #E55A25 !important;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .et_pb_button_wrapper::before,
body #page-container .Ppb_fltrblgWrap .dp-dfg-item .dp-dfg-header .entry-title{
    transition: all .3s ease;
}
.et-fixed-header #top-menu .menu-portal-cta a:hover{
	color: #fff !important;
}
img.gform_ajax_spinner[src$=".png"]{
	max-width: 15px !important;
	height: 15px !important;
	width: 15px !important;
	margin-top: 15px
}
body #page-container .category_module .dp-dfg-item:first-child{
    border: none;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-search input::-webkit-input-placeholder {
    opacity: 1 !important;
    color: #666666 !important;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-search input::-moz-placeholder {
    opacity: 1 !important;
    color: #666666 !important;
}
body #page-container .Ppb_fltrblgWrap .dp-dfg-search input:-ms-input-placeholder {
    opacity: 1 !important;
    color: #666666 !important;
}
body #page-container .subscribe_r .et_pb_button:after{
    display: none;
}
body #page-container .insta_feed #sbi_load span,
body #page-container .insta_feed #sbi_load svg{
    color: #fff !important;
}
body #page-container .insta_feed .sbi-user-info-inner strong{
    color: #203466;
}
/**Responsiveness**/
@media (min-width: 981px){
    body #page-container .stories_title_r .et_pb_column:first-child{
        width: 35%;
        margin-right: 2%;
    }
    body #page-container .stories_title_r .et_pb_column:last-child{
        width: 63%;
    }
}
@media only screen and (min-width:981px) and (max-width: 1366px){
	body.single .post-blog{
		font-size: 20px !important;
	}
	body #page-container .singl_post_titl .entry-title {
		font-size: 55px !important;
	}
	body #page-container .ft_video_fix .entry-title{
		font-size: 20px !important;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a::before{
		height: 35px;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a{
		font-size: 24px !important;
	}
	body #page-container .Ppb_fltrblgWrap .entry-title{
		font-size: 25px !important;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-content{
		font-size: 20px !important;
	}
	body #page-container .stories_heading h1{
		font-size: 80px;
	}
}
@media (max-width: 980px){
	body #page-container .subscribe_r .et_pb_button_module_wrapper{
		margin-left: auto;
		margin-right: auto;
	}
	body #page-container .subscribe_r .et_pb_column:first-child{
		margin-bottom: 20px;
	}
	body .header-internal h1{
		font-size: 50px !important;
	}
	.large_single_blog .dp-dfg-skin-default .dp-dfg-image{
		height: 300px;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level{
		display: flex;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li{
		width: 50%;
		justify-content: center;
		display: flex;
		margin: 0;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-filters .dp-dfg-level li a{
		margin: 10px;
	}
}
@media (max-width: 767px){
	.large_single_blog .dp-dfg-skin-default .dp-dfg-image{
		height: 230px;
	}
	body #page-container .ft_video_fix,
	body #page-container .blog_fix_cmn{
		margin-bottom: 10px;
	}
	body #page-container .ft_video_fix .dp-dfg-item{
		padding-bottom: 1em !important;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item {
		padding: 20px 0;
		grid-template-columns: minmax(105px, 90px) 1fr;
	}
	body #page-container .Ppb_fltrblgWrap .dp-dfg-item:hover .et_pb_button_wrapper::before {
		left: unset;
		right: -3px;
	}
	body #page-container #main-content .Ppb_fltrblgWrap .et_pb_button.dp-dfg-more-button:hover { 
		color: #213367 !important;
	}
}
/**Up Next Section**/
body #page-container .custom-prev-post {
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
    background: #fff;
}
body #page-container .custom-prev-post .prev-post-image{
    width: 50%;
    display: flex;
}
body #page-container .custom-prev-post .prev-post-image img{
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}
body #page-container .custom-prev-post .prev-post-date{
    font-size: 18px;
    font-family: 'Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif;
    color: #213367;
    line-height: 1.77em;
    padding-bottom: 0;
}
body #page-container .custom-prev-post .prev-post-title{
    font-family: 'Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif !important;
    font-style: italic;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.25em;
    text-transform: inherit;
    padding-bottom: 0;
    margin-bottom: 27px;
}
body #page-container .custom-prev-post .prev-post-excerpt{
    font-size: 22px;
    line-height: 1.45em !important;
    color: #213367;
    padding-bottom: 0;
}
body #page-container .custom-prev-post .prev-post-content{
    padding: 50px 2vw 50px 0;
	width: 50%;
}
body #page-container .custom-prev-post .prev-post-container{
    display: flex;
	gap: 20px;
}
body #page-container .custom-prev-post .read-more{
    color: #3a87a4;
    border-width: 0px;
    font-size: 18px;
    font-family: 'Segoe UI Bold',Helvetica,Arial,Lucida,sans-serif !important;
    font-weight: 400;
    margin-top: 30px;
	transition: all .3s ease;
	display: inline-block;
}
body #page-container .custom-prev-post .read-more:hover{
	color: #213367;
}
body #page-container .custom-prev-post .read-more:after{
	font-family: FontAwesome !important;
	content: '\f35a';
	font-size: 1em;
	margin-left: 5px;
	top: 3px;
	position: relative;
}
@media (max-width: 1366px){
	body #page-container .custom-prev-post .prev-post-excerpt{
		font-size: 20px;
	}
	body #page-container .custom-prev-post .prev-post-title{
		font-size: 35px;
		margin-bottom: 15px;
	}
	body #page-container .custom-prev-post .read-more{
		margin-top: 20px;
	}
}
@media (max-width: 980px){
	body #page-container .custom-prev-post .prev-post-excerpt{
		font-size: 18px;
	}
	body #page-container .custom-prev-post .prev-post-title{
		font-size: 30px;
	}
	body #page-container .custom-prev-post .prev-post-container{
		flex-direction: column;
	}
	body #page-container .custom-prev-post .prev-post-container > *{
		width: 100%;
	}
	body #page-container .custom-prev-post .prev-post-content{
		padding: 0 3vw 20px 3vw;
	}
	body #page-container .custom-prev-post .prev-post-date,
	body #page-container .custom-prev-post .read-more{
		font-size: 16px;
	}
}
@media (max-width: 767px){
	body #page-container .custom-prev-post .prev-post-excerpt{
		font-size: 16px;
	}
	body #page-container .custom-prev-post .prev-post-title{
		font-size: 26px;
	}
	body #page-container .custom-prev-post .prev-post-date,
	body #page-container .custom-prev-post .read-more{
		font-size: 15px;
	}
}
.custom-prev-post.no-post {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    color: #666;
}