@charset "UTF-8";
/*
 Theme Name:     Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         CMRIgnite
 Author URI:     https://www.elegantthemes.com
 Template:       Divi
 Version:        1.0.7, continuing mods by Barry K at Spertus
*/
/* Theme customization starts here
------------------------------------------------------- */

/* Make the main nav's submenu wider.
 * by Barry, July 3, 2023
 * Context
 * This is the orange navbar which the theme calls "bottom nav".
 * Amie noticed that the Admission tab's submenu was too tall to fit on her screen.
 * Some menu items were set in two or more lines
 * Solution
 * Added a CSS ID #main-nav so that these changes only apply to
 * this navbar and don't alter the width of "top nav", our utility menu
 * Make the link wider
 * Make the bg of the submenu wide enough to "hold" the link
 * That's all, shouldn't affect mobile.
*/
#main-nav .et-menu li li a {width:240px;}
#main-nav .nav li ul {width:280px;}
/* End of code mod to make main nav submenu wider */

/* Another hack to force equal-height columns
 * by Barry, June 8, 2023
 * Used on home page blog modules for now.
 * This gives the column the same background color as the article item,
 * which is the container that holds all the card elements.
 * This doesn't work, keep trying tomorrow.
*/
/* .home-news-blog .column {background-color:#717e81;} */

/* Let links in h3 heads be orange */
h3 a {color:#eb7b25;}

/* Whole card as button mod
 * May 5, 2023 by Barry
 * Fun hack to make the entire card made by the Divi blog feed module
 * behave like a link. Replicates a feature that exists in other content modules.
 * Source: 
*/

/* Add a necessary position to the blog posts */

.et_pb_blog_grid .et_pb_post, .whole-card-button .et_pb_post {
position: relative;
}

/* Make the title link spread over the entire post */

.et_pb_blog_grid .et_pb_post .entry-title a:after, .whole-card-button .et_pb_post .entry-title a:after {
position: absolute;
display: block;
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
}

/* Change the mouse cursor into a pointer */

.et_pb_blog_grid .et_pb_post:hover, .whole-card-button .et_pb_post:hover {
cursor: pointer;
}
/* End of Whole card as button mod */


/* Caption appearance */
#main-content .et_pb_text_inner .wp-caption {
	background: none;
	border:none;
	text-align: left;
	padding: 8px 0;
}
.wp-caption p.wp-caption-text {padding:0 4px 5px 0;}

/* Global Divi fix
 * 
 * Barry note
 * May 31, 2023
 * This innocuously-named mod created by the dev team seems to interfere with the 
 * main functionality of the Equalize Column Height setting that can be applied to rows.
 * Temporarily disabled.
 * Betsy likes vertically centered adjacent columns, so we will have to implement vertical centering with a different method.
------------------------------------------------------- */
.et_pb_equal_columns {
/*  align-items: center; */
}

/* Barry's rebuilt version
 * June 1, 2023
 * Inspired by a blog post at https://www.markhendriksen.com/how-to-equalize-column-heights-in-divi/
 * But using flexbox instead of absolute positioning
 * The .et_pb_promo is common to the CTA module and the text module. so this will possibly work the same with other modules.
 * We use it for rows containing 3 or 4 CTA blocks. Could be useful elsewhere with simple mods.
 * Works by setting the module's container div to position:flex, justify-content: space-between, and height:100%
 * Plus a few other rules to keep it tidy.
 * The original post said to remove background and border-radius from the module itself,
 * But this flexbox hack might let us go back to styling the module instead of the columns.
 * That's a slight improvement as column styling controls are a little hard to find and use.
 */
.et_pb_equal_columns .et_pb_promo {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

body {
  font-size: 16px;
  line-height: 24px;
  color: #58595b;
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  color: #58595b;
}

/* March 16, 2023 by Barry
 * Fun fix for position of the down-caret symbol in menu items with children
 * aka has submenu
 * Use the menu name ID in the UL, otherwise it will adjust caret position of other menu items
 * If we rename the menu, its ID will change of course so be careful
 * Necessary because I have been adjusting margin + padding of various navbar components
 * */
ul#menu-bottom-menu.et-menu .menu-item-has-children>a:first-child:after {top:18px;}

/* March 9 2023 by Barry
 * main nav menu doesn't need that much left/right padding
 * reduce padding so it fits on macbook air screen. Trying to avoid adding vertical scroll to the menu.
 * change from 20px lr padding to 0
*/
.et-menu li li a {padding: 6px 0;}

/* Header
------------------------------------------------------- */
header .et_pb_section_0_tb_header .et_pb_row_0_tb_header,
header .et_pb_section_1_tb_header .et_pb_row_1_tb_header {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .et_pb_section_0_tb_header .et_pb_row_0_tb_header .et_pb_menu__wrap,
header .et_pb_section_0_tb_header .et_pb_row_0_tb_header .et_pb_menu__menu,
header .et_pb_section_0_tb_header .et_pb_row_0_tb_header .et-menu-nav,
header .et_pb_section_1_tb_header .et_pb_row_1_tb_header .et_pb_menu__wrap,
header .et_pb_section_1_tb_header .et_pb_row_1_tb_header .et_pb_menu__menu,
header .et_pb_section_1_tb_header .et_pb_row_1_tb_header .et-menu-nav {
  display: block;
  width: 100%;
}

header .et_pb_section_1_tb_header,
header .et_pb_section_1_tb_header .et_pb_row,
header .et_pb_section_1_tb_header .et_pb_row .et_pb_column,
header .et_pb_section_1_tb_header .et_pb_row .et_pb_column .et_pb_module {
  background: #eb7b25 !important;
}

header .et_pb_section_1_tb_header a {
  color: white;
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
/* Barry March 16, 2023
 * Fix the sticky navbar problem when page is scrolled to top
 * Orange navbar appears cropped on top. Jumps to correct height when user scrolls down a few px
 * super annoying
 * Update, still need to adjust this, it's not perfect yet. Downpage the navbar is now too tall.
 * noticed I can possibly remove the 23px margin-top on another element in the navbar.
 * But would need to use another method to shift the submenu down the 23px
 * Something tells me I could simply rip this menu out and rebuild it, save myself time & aggravation
 * Need to cast a spell on the developer who originally created this navbar
 * 
 * Took a walk, more notes follow:
 * check line 1587
 * change "top" value of .et_pb_menu .et_pb_menu__menu > nav > ul > li > ul to 55px
 * Make it apply only to the main nav, not the top nav
 * also make carets set at correct position. they are too high now
 * and finally the orange bar itself it too tall, remove the 23px margin-top as mentioned in this comment block
 * then continue to tweak other affected positioning/padding/margin vals until it's happy everywhere
 * then cast an even more malicious spell on the dipshit who fathered this time sucking debugging escapade
*/
	padding-top:16px;
}

header #menu-top-menu,
header #menu-bottom-menu {
  display: flex;
  justify-content: space-around;
}

header #menu-top-menu a {
  color: #58595b;
}

header img {
  max-width: 250px;
}

@media screen and (max-width: 980px) {
  header img {
    max-width: 150px;
  }
}
header .et_pb_section_0_tb_header {
  z-index: 10011 !important;
  box-shadow: 5px 5px 15px 3px rgba(0, 0, 0, 0.16);
}

header .et_pb_section_1_tb_header {
  border-bottom: 3px solid white;
}

header #menu-top-menu a {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 18px;
  color: #58595b;
  transition: 0.2s all;
}

header #menu-top-menu a:hover {
  color: #eb7b25;
}

header .et_pb_section_0_tb_header .et_pb_menu_inner_container {
  padding-right: 50px;
}

header .et_pb_section_0_tb_header .et_pb_menu__wrap {
  display: flex !important;
  align-items: center;
}

header .et_pb_section_0_tb_header .et_pb_menu__wrap .et_pb_menu__menu {
  flex: 1;
}

header .et_pb_menu__icon {
  margin: 0 !important;
  font-size: 20px;
  color: #58595b !important;
  background: #d9dadc;
  padding: 8px 15px;
  border-radius: 25px;
}

header .et_pb_section_0_tb_header .et_pb_menu .et_pb_menu__search {
  justify-content: right;
}

header .et_pb_section_0_tb_header .et_pb_menu .et_pb_menu__search-form {
  flex: 0.5 1 auto;
  border-top: 3px solid #eb7b25;
  border-bottom: 3px solid #eb7b25;
  border-left: 3px solid #eb7b25;
  border-radius: 25px 0 0 25px;
  position: relative;
}

header .et_pb_section_0_tb_header .et_pb_menu .et_pb_menu__search-form::before {
  content: " ";
  display: block;
  position: absolute;
  background-color: #eb7b25;
  width: 20px;
  right: -15px;
  height: 3px;
  top: -3px;
}

header .et_pb_section_0_tb_header .et_pb_menu .et_pb_menu__search-form::after {
  content: " ";
  display: block;
  position: absolute;
  background-color: #eb7b25;
  width: 20px;
  right: -15px;
  height: 3px;
  bottom: -3px;
}

header .et_pb_section_0_tb_header .et_pb_menu .et_pb_menu__search-form input {
  margin: 6px 0px 5px 20px;
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
}

header .et_pb_menu__icon.et_pb_menu__close-search-button {
  background-color: #eb7b25;
  color: white !important;
  padding: 1px 10px;
}

header .et_pb_section_0_tb_header .et_pb_menu .et_pb_menu__search-container {
  width: 96% !important;
}

.et-menu-nav .menu-item-type-custom .fa-magnifying-glass {
  text-align: center;
  width: 1.25em;
  font-weight: 900;
  font-style: inherit;
}

.et-menu-nav .menu-item-type-custom .fa-magnifying-glass::after {
  content: "U";
  font-family: "ETModules";
  z-index: 1;
  font-size: 20px;
}

header #menu-top-menu .sub-menu {
  border-top: 3px solid #eb7b25 !important;
}

header #menu-top-menu .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 40%;
  width: 0px;
  height: 0px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #eb7b25;
}

header #menu-bottom-menu .sub-menu {
  background-color: #eb7b25 !important;
  border-top: 3px solid white !important;
  margin-top:16px;
}

/* June 16, 2023
 * Barry stuff
 * A hack to fix submenus on the 404 page
 * Context: Divi introduces trash classes and IDs on 404 pages, i.e. .et-db and #et-boc
 * This causes submenus to appear in white.
 * Orange navbar submenu should have orange bg as in previous block for
 * header #menu-bottomp-menu .sub-menu
*/
body.error404.et-db #et-boc .et-l .et_pb_menu_1_tb_header.et_pb_menu .nav li ul {background-color:#eb7b25 !important;}

/* hack works, hallelujah */

header #menu-bottom-menu .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 40%;
  width: 0px;
  height: 0px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}

.sub-menu li {
  transition: 0.2s all;
}

.sub-menu li a {
  transition: 0.2s all;
  line-height: 1.5em;
}

.sub-menu li:hover {
  background-color: white !important;
  color: #eb7b25;
}

.sub-menu li:hover a {
  color: #eb7b25 !important;
}

#menu-bottom-menu .sub-menu li:hover li a {
  color: white !important;
}

#menu-bottom-menu .sub-menu li:hover li:hover a {
  color: #eb7b25 !important;
}

.mobile-menu {
  box-shadow: 5px 5px 15px 3px rgba(0, 0, 0, 0.16);
}

.mobile-menu .et_pb_row {
  display: flex;
}

.mobile-menu .et_pb_row .et_pb_column {
  width: 50% !important;
  display: flex;
  justify-content: right;
  margin-bottom: 0;
}

.mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
  width: 100vw;
/* Barry edit to prevent menu positioning hacks.
 * Change left from -85.7vw to -100vw
 * Then use margin-left of 79px
 * margin-left value will likely need to be adjusted if we change a setting in the Divi Theme Builder.
 * Currently set to 21px.
*/
/*  left: -85.7vw; */
  left: -100vw;
  margin-left:79px;
/* end of Barry's mobile menu edits */
	
  top: 56px;
  padding: 0;
  border-top: 3px solid #eb7b25;
  overflow-y: scroll;
  max-height: 90vh;
}

.mobile-menu .mobile_menu_bar::before {
  font-size: 46px;
  color: #58595b !important;
}

.mobile-menu .et_mobile_menu li a {
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  font-size: 14px;
  padding: 6px 5%;
  color: #58595b;
}

/*change hamburger icon to x when mobile menu is open*/
#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before,
.et_pb_module.et_pb_menu .et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before {
  content: "M";
}

/*adjust the new toggle element which is added via jQuery*/
ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
ul.et_mobile_menu li.page_item_has_children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.page_item_has_children .mobile-toggle {
  width: 44px;
  height: 100%;
  padding: 0px !important;
  max-height: 44px;
  border: none;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 999;
  background-color: transparent;
}

/*some code to keep everyting positioned properly*/
ul.et_mobile_menu > li.menu-item-has-children,
ul.et_mobile_menu > li.page_item_has_children,
ul.et_mobile_menu > li.menu-item-has-children .sub-menu li.menu-item-has-children,
.et-db #et-boc .et-l ul.et_mobile_menu > li.menu-item-has-children,
.et-db #et-boc .et-l ul.et_mobile_menu > li.page_item_has_children,
.et-db #et-boc .et-l ul.et_mobile_menu > li.menu-item-has-children .sub-menu li.menu-item-has-children {
  position: relative;
}

/*remove default background color from menu items that have children*/
.et_mobile_menu .menu-item-has-children > a,
.et-db #et-boc .et-l .et_mobile_menu .menu-item-has-children > a {
  background-color: transparent;
}

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

/*show the submenu when toggled open*/
ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
#main-header ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
.et-db #et-boc .et-l ul.et_mobile_menu .menu-item-has-children .sub-menu.visible,
.et-db #main-header ul.et_mobile_menu .menu-item-has-children .sub-menu.visible {
  display: block !important;
  visibility: visible !important;
}

/*adjust the toggle icon position and transparency*/
ul.et_mobile_menu li.menu-item-has-children .mobile-toggle,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle {
  text-align: center;
  opacity: 1;
}

/*submenu toggle icon when closed*/
/* Barry @ Spertus
 * March 22 2023 edit
 * Improve appearance of submenu toggle buttons
 * Originally green on white i.e. #00d26x on #f0f3fb
 * Changed to white arrow on orange i.e. #fff on #eb7b25
*/ 
ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children .mobile-toggle::after {
  top: 10px;
  position: relative;
  font-family: "ETModules";
  content: "3";
  color: #fff;
  background: #eb7b25;
  border-radius: 50%;
  padding: 3px;
}

/*submenu toggle icon when open*/
ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after,
.et-db #et-boc .et-l ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after {
  content: "2";
}

/*add point on top of the menu submenu dropdown*/
.et_pb_menu_0.et_pb_menu .et_mobile_menu:after {
  position: absolute;
  right: 5%;
  margin-left: -20px;
  top: -14px;
  width: 0;
  height: 0;
  content: "";
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
}

/*adjust the position of the hamburger menu*/
.mobile_menu_bar {
  position: relative;
  display: block;
  line-height: 0;
}

/*force the background color and add a rounded border*/
.et_pb_menu_0.et_pb_menu .et_mobile_menu,
.et_pb_menu_0.et_pb_menu .et_mobile_menu ul {
  background-color: #ffffff !important;
  border-radius: 10px;
}

/* Search Page
------------------------------------------------------- */
.search .search-title .et_pb_text_inner {
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif;
  color: #58595b;
  font-size: 16px;
}

.search .et_pb_post {
  background-color: transparent;
  min-height: unset;
}

.search .more-link {
  background-color: #eb7b25;
  color: white;
  width: fit-content;
  transition: 0.2s all;
}

.search .more-link:hover {
  background-color: rgba(235, 123, 37, 0.8);
  width: fit-content;
}

/* Footer
------------------------------------------------------- */

/* Barry footer mods Feb 06, 2023 
	Note, there is another block of footer styles below
_________________________________________*/

#footer-menu-wrap .menu-col ul {
	margin-left: 0;
	padding-left: 0;
}
#footer-menu-wrap .menu-col ul li {
	margin: 0 0 .75em 0;
	text-indent: 0;
}


.footer h3 {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #eb7b25;
}

.footer h5 {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: white;
  line-height: 1.3em;
}

.footer h5 a {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #eb7b25;
}

/*
.footer .menu-col:before {
    content: "";
    display: block;
    top: -10px;
    width: 90%;
    height: 2px;
    background-color: #EB7B25;
    left: 13px;
    position: absolute;
}*/
.bottom:after {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  background: #707e80;
  width: 100%;
  top: -10px;
}

.footer .bottom a,
.footer .bottom {
  color: white;
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  font-size: 18px;
  transition: 0.2s all;
}

.footer .bottom a:hover {
  color: #eb7b25;
}

.footer .menu-col ul {
  list-style: none;
}

.footer .menu-col li {
  margin-bottom: 10px;
}

.footer .menu-col li a {
  color: white;
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 18px;
  transition: 0.2s all;
}

.footer .menu-col li a:hover {
  color: #eb7b25;
}

.footer .health-cir h3 {
  position: relative;
  z-index: 10;
}

.footer .health-cir h3 {
  text-align: center;
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
  color: #393b3d;
  background-color: #ffffff;
  display: block;
  width: fit-content;
  padding: 30px;
  border-radius: 50%;
  margin-left: 10px;
}

.footer .social-row {
  display: flex;
}

.footer .social-row a {
  height: 100%;
  display: block;
  width: fit-content;
}

.footer .social-row a .fa-brands {
  color: white;
  font-size: 34px;
  margin-right: 20px;
}

@media (min-width: 981px) {
  .footer .et_pb_gutters3 .et_pb_column,
  .et_pb_gutters3.et_pb_row .et_pb_column {
    margin-right: 3.5%;
  }
}
/* Home page
------------------------------------------------------- */
.vid-sec {
  display: flex;
  align-items: flex-end;
}

.vid-sec .et_pb_row {
  margin: 0;
}

.vid-sec h1 {
	font-size:60px;
	line-height: 1.15em;
	color: #fff;
	text-shadow:3px 3px 12px rgba(0,0,0,.6);
}

/* Barry March 14, 2023
 * Styles that create orange vertical rules on the left side of columns
 * Typically used for 3-column blurb units.
 * formerly named .home-tri-col
 * Renamed with less specificity as we will likely use it elsewhere.
 * Apply the class to the Row. It was formerly applied to the Section.
 **	I added the rule mod to its original instance. The color & width was added far below.
 **	Former values here for reference only.
    width: 4px; 
    background-color: #58595b;
 */

.vertical-left-column-border .et_pb_text_inner::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  background-color: #eb7b25 !important;
  width: 2px !important;
  left: -22px;
  top: -5px;
}

.vertical-left-column-border .et_pb_text_inner::before {}


.areas-pic-col .et_pb_column {
  position: relative;
  cursor: pointer;
}

.areas-pic-col .et_pb_column:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 23px;
}

.areas-pic-col .et_pb_column:hover:after {
  background-color: rgba(0, 0, 0, 0.16);
}

.areas-pic-col .et_pb_column .et_pb_image {
  margin-bottom: 0 !important;
}

.areas-pic-col .et_pb_text {
  position: absolute;
  padding: 70px 80px;
  top: 0;
  z-index: 9;
}

.areas-pic-col h1,
.areas-pic-col h4 {
  color: white;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.73);
  word-spacing: 100vw;
  line-height: 1.3em;
}

.areas-pic-col .no-break h1,
.areas-pic-col .no-break h4 {
  word-spacing: unset;
}

.areas-pic-col img {
  border-radius: 23px;
}

.grad-sec h3 {
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  color: white;
  font-size: 34px;
}

.grad-sec h6 {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
  color: white;
  line-height: 1.3em;
}

.grad-sec .et_pb_column {
  display: flex;
  align-items: center;
  border: 5px solid white;
  padding: 15px 70px;
  border-radius: 23px;
  overflow: hidden;
}

.grad-sec .et_pb_column .flame {
  position: absolute;
  right: -85px;
  bottom: -20px;
}

.grad-sec .et_pb_column .flame .et_pb_image_wrap {
  border-radius: unset;
}

.grad-sec .et_pb_column .et_pb_image {
  margin: 0;
}

.grad-sec .et_pb_column .et_pb_image_wrap {
  height: 300px;
  width: 300px;
  overflow: hidden;
  border-radius: 50%;
}

.grad-sec .et_pb_column .et_pb_text {
  padding: 50px 130px 23px;
}

@media screen and (max-width: 980px) {
  .grad-sec .et_pb_row .et_pb_column {
    flex-direction: column;
  }
  .grad-sec .et_pb_column .et_pb_image {
    max-width: 300px;
    margin-top: 40px;
  }
  .grad-sec h3 {
    font-size: 32px;
    text-align: center;
  }
  .grad-sec h6 {
    font-size: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .grad-sec .et_pb_column .et_pb_text {
    padding: 50px 0px 23px;
  }
  .grad-sec .et_pb_column .flame {
    display: none;
  }
}
/* About Page
------------------------------------------------------- */
.offer-sec h1,
.offer-sec h3,
.offer-sec h4,
.offer-sec p {
  color: white;
}

.offer-sec .orange-line {
  margin-left: 20px;
}

.offer-sec .orange-line::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 100%;
  left: -15px;
  top: -5px;
  background-color: #eb7b25;
}

.orange-sec h1,
.orange-sec h2,
.orange-sec h3,
.orange-sec h4,
.orange-sec h6,
.orange-sec p,
.orange-sec a {
  color: #ffffff;
}

.orange-sec h3 {
  margin-bottom: 35px;
}

.orange-sec h6 {
  margin-bottom: 30px;
}

.orange-sec a {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 30px;
  line-height: 1.2;
}

.orange-sec .line-sec {
  margin-left: 15px;
}

.orange-sec .line-sec::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 100%;
  left: -15px;
  top: 0px;
  background-color: white;
}

.orange-sec ul {
  list-style: none;
}

.orange-sec ul li::before {
  content: "•";
  color: #ffffff;
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0px;
}

/* Toggle Section
------------------------------------------------------- */
.toggle-sec .et_pb_toggle_close {
  background-color: white;
}

.toggle-sec .et_pb_toggle_item {
  border-top: 1px solid #58595b;
  border-left: none;
  border-bottom: none;
  border-right: none;
  transition: 0.2s all;
  cursor: pointer;
}

.toggle-sec .et_pb_toggle_item:hover {
  background-color: #eb7b25;
}

.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_title,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_title:before,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h1,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h2,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h3,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h4,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h5,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h6,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content p {
  color: white;
}

.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_title:after {
  background-color: white;
}

.toggle-sec .et_pb_toggle_item:last-child {
  border-bottom: 1px solid #58595b;
}

.toggle-sec .et_pb_toggle_item .et_pb_toggle_content {
  padding-left: 70px;
}

.toggle-sec .et_pb_toggle_item .et_pb_toggle_title {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
  padding-left: 70px;
  color: #58595b;
}

.toggle-sec .et_pb_toggle_item .et_pb_toggle_title:before {
  content: "L" !important;
  left: 0 !important;
  font-size: 24px;
  color: #58595b;
}

.toggle-sec .et_pb_toggle_item .et_pb_toggle_title:after {
  height: 100%;
  width: 2px;
  left: 45px;
  top: 1px;
  position: absolute;
  content: "";
  display: block;
  background-color: #58595b;
}

/* Button Styling
------------------------------------------------------- */

/* March 2023 additional mods by Barry at Spertus
 * Make all the buttons look the same, regardless of how they are created   
 * Shortcode, manually styled, auto-generated
*/

.btn {
  margin: 16px 0;
}

.btn a,
#main-content a.small-button.smallorange,
#main-content p > a.smallorange,
a.btn.orange, 
a.btn {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal !important;
  color: #ffffff !important;
/* I had to use !important in these two cases, to override ET CSS rules for the shortcode button composer. */
/*
    padding: 20px 80px;
    font-size: 30px;
*/
  padding: 10px 24px;
  background: #eb7b25;
  border-radius: 100px;
  cursor: pointer;
  pointer-events: all;
  transition: 0.2s all;
  box-shadow:none;
  text-shadow:none;
  border:none;
/* Barry March 23, 2023
 * Adjustment to add space above and below buttons
 * display inline-block and margin 9px 0
 * Small chance this will adversely affect some instances of buttons.
 * If so, create a separate css rule that applies to the more specific context
 * such as found on /scholarships-fellowships/
*/
	display:inline-block;
	margin:9px 0;
}

@media screen and (max-width: 750px) {
  .btn {
    margin: 30px 0;
  }
  .btn a {
    font-size: 16px;
    padding: 14px 30px;
  }
}
.btn a:hover,
a.btn:hover,
#main-content a.small-button.smallorange:hover,
a.btn.orange:hover {
  color: rgba(255, 255, 255, 0.6) !important;
}

.library .btn a {
  padding: 20px 50px;
}

/* Orange sections use white buttons.
 * Should also create something like a.btn.white
 * or a.button.white
 */
.orange-sec .btn a, .is-orange-sec .btn a {
  background: #ffffff;
  color: #eb7b25 !important;
}

.orange-sec .btn a:hover, .is-orange-sec .btn a:hover {
  color: rgba(235, 123, 37, 0.6) !important;
}

/* Aug 17, 2023
 * Equal height cards fix
 * The theme has a control for this but it's broken
 * This uses flex to force uniform column height in a blog feed module
 * Summary
 * 1. Card has two outer wraps. We'll use HTML generated by the theme
 * 2. Wraps use display:flex and flex-direction:row
 * 3. Card uses display:flex, flex-direction:column
 * 4. The H2 is set to flex-grow:1
 * This all works when the feed has 3 posts
 * But on interior pages the module hs 10 posts, and they don't wrap
 * Instead they are all squished to fit the content area.
 * Source: https://mono.software/2020/07/29/equal-height-cards-with-flexbox/
 * Also, remove the min-height fix assigned to .et_pb_post
 * Near line 1211
---------------- */
.et_pb_blog_grid h2 {
	flex-grow:1;
	margin-bottom:3px;
}
	/* aug 17 2023 card height fix */
.et_pb_salvattore_content {/* display:flex; flex-direction:row; */}
.et_pb_blog_grid .column {/*display:flex; flex-direction:row;*/}

/* Event Module Styling
------------------------------------------------------- */
.et_pb_post.type-tribe_events,
.home-news-blog .et_pb_post {
  position: relative;
	/* aug 17 2023 card height fix */
	/* display:flex; flex-direction:column; */
/*  border-radius: 23px; */
}

.search-results .et_pb_post.type-tribe_events {
  background: white;
}

.search-results .et_pb_post .entry-title a,
.search-results .et_pb_post.type-tribe_events .post-content {
  color: #58595b;
}

.et_pb_post.type-tribe_events,
.home-news-blog .et_pb_post {
  background: #717e81;
	border-radius:29px;
}

.home-news-blog .et_pb_post {
/*  background: #393b3d; */
}

.et_pb_post.type-tribe_events .et_pb_image_container img,
.home-news-blog .et_pb_post .et_pb_image_container img {
  border-radius: 23px 23px 0 0;
}

.et_pb_post.type-tribe_events .entry-title,
.et_pb_post.type-tribe_events .post-meta,
.et_pb_post.type-tribe_events .post-content,
.et_pb_post.type-tribe_events .post-content-inner p,
.home-news-blog .et_pb_post .entry-title,
.home-news-blog .et_pb_post .post-meta,
.home-news-blog .et_pb_post .post-content,
.home-news-blog .et_pb_post .post-content-inner p {
  color: white;
}

.et_pb_post.type-tribe_events .entry-title,
.home-news-blog .et_pb_post .entry-title {
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
  /* aug 17 2023 card height fix */
  flex-grow:1;

}

.et_pb_post.type-tribe_events .post-meta a {
  display: none !important;
  position: absolute;
  top: 28px;
  left: 0;
  background: #393b3d;
  color: white;
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 20px;
}

/* Aug 17, 2023
 * note to self, what is this statement about?
 * */
.home-news-blog .et_pb_post .post-meta a {
  display: none !important;
  position: absolute;
  top: 28px;
  left: 0;
  background: #bc2026;
  color: white;
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 20px;
}

.et_pb_section .et_pb_row .et_pb_column .et_pb_salvattore_content .column.size-1of3 {
  margin-right: 2.5%;
  /* aug 17 2023 card height fix */
  /* display:flex; flex-direction:row; */
}

.et_pb_section .et_pb_row .et_pb_column .et_pb_salvattore_content .column.size-1of3:first-child {
  margin-left: 2%;
}

.et_pb_salvattore_content .size-1of3:nth-child(2) .type-tribe_events .post-meta a {
  background: #522c7f;
}

.et_pb_salvattore_content .size-1of3:nth-child(3) .type-tribe_events .post-meta a {
  background: #eb7b25;
}

.et_pb_post {
  background: #717e81;
  display: flex;
  flex-direction: column;
  min-height: 565px;
  height:100%;
  justify-content: space-between;
}

.et_pb_post .entry-featured-image-url {
  margin-bottom: 0 !important;
}

.more-link {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 20px;
  color: #eb7b25;
  padding: 10px 30px;
  text-transform: capitalize;
  background: white;
  border-radius: 100px;
  cursor: pointer;
  pointer-events: all;
  transition: 0.2s all;
  display: inline-block;
  margin: 15px 0 10px;
}

@media screen and (max-width: 980px) {
  .et_pb_post {
    min-height: 500px;
  }
}
/*Ideas and Impact styling*/
.idea-blog article {
  background-position: 60% 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-radius: 20px;
  justify-content: flex-start;
  position: relative;
}

.idea-blog article img {
  opacity: 0;
  height: 0 !important;
}

.idea-blog .entry-title {
  color: white;
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  font-size: 32px !important;
  line-height: 1.3em;
}

.idea-blog .post-content .post-content-inner p {
  font-size: 24px;
/*  max-width: 50%; */
  color: #fff;
  line-height: 1.2em;
/*  font-weight: 600; */
}

.idea-blog .post-meta {
  position: absolute;
  bottom: 20px;
}

.idea-blog .post-meta .headline {
  color: white;
  font-size: 18px;
}

.idea-blog .post-meta .headline span {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  text-transform: uppercase;
}

/* Post styling
------------------------------------------------------- */
.post-sec .post-title .entry-title {
  font-size: 60px;
  margin-bottom: 30px;
}

.post-sec .post-title img {
  width: 65%;
}

/* Faculty FacetWP Template
------------------------------------------------------- */
.faculty .fwpl-layout {
  display: flex;
  flex-wrap: wrap;
}

.faculty .fwpl-layout .fwpl-result {
  max-width: 47%;
  flex: 45%;
  background: #eb7b25;
  border-radius: 23px;
  box-shadow: 5px 5px 15px 3px rgba(0, 0, 0, 0.16);
  margin: 0 10px 20px;
  padding: 15px 20px;
}

.faculty .fwpl-layout .fwpl-result .fac-img {
  min-width: 40%;
}

.faculty .fwpl-layout .fwpl-result .fac-img img {
  object-fit: cover;
  border-radius: 50%;
  height: 250px;
  width: 250px;
}

.faculty .fwpl-layout .fwpl-result .fwpl-col {
  display: flex;
  flex-direction: row;
}

.faculty .fwpl-layout .fwpl-result .fwpl-row .fwpl-col .fwpl-row .fwpl-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 20px;
}

/*
  .faculty .fwpl-layout .fwpl-result .fwpl-row .fwpl-col .fwpl-row .fwpl-col .fwpl-item:first-child {
*/
.faculty .faculty-name {
	font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
	font-size: 30px;
	color: #fff;
	line-height: 1.2em;
	margin-bottom: 2px;
}

/*
  .faculty .fwpl-layout .fwpl-result .fwpl-row .fwpl-col .fwpl-row .fwpl-col .fwpl-item:nth-child(2) {
*/
.faculty .faculty-title {
	font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	margin-bottom: 15px;
}

/* April 20, 2023 Barry
 * FacetWP deprecated use of button
 * The button element is now created using the a:link and a wrapper div
 * These declarations are excruciatingly verbose.
 * It's sufficient to use the more compact .faculty divfwpl-item.el-02yfuo to target the button wrapper div
 * Also, each unit output by Facet can be assigned a unique CSS class
 * Trivial to target them
 * Just venting here
*/

.faculty .faculty-read-more-button {margin-top:9px;}

/*
 * .faculty .fwpl-layout .fwpl-result .fwpl-row .fwpl-col .fwpl-row .fwpl-col button, .faculty div.fwpl-item.faculty-read-more-button
*/
 .faculty .faculty-read-more-button a {
  background-color: #fff;
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
  color: #eb7b25;
  font-size: 24px;
  border-radius: 50px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.2s all;
}

.faculty .fwpl-layout .fwpl-result .fwpl-row .fwpl-col .fwpl-row .fwpl-col a:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.flex-row .et_pb_code_inner {
  display: flex;
  flex-direction: row;
}

.flex-row .et_pb_code_inner p {
  margin-right: 10px;
}

/* Faculty Result page Mobile styles
------------------------------------------------------- */
/* 	Barry 02/16/2023
 	Full-width cards on phone
------------------------------------------------------- */

/* iphone originally used max-width 414 */
/* Bump up to iphone SE horiz width of 568px */

@media screen and (max-width: 568px) {
	  .faculty .fwpl-layout .fwpl-result {
			max-width: 100%;
			margin: 0 0 9px;
			padding: 12px 6px;
	}
	.faculty .faculty-photo.round-img img {
		width:100px; height:100px;
		min-width: 100px;
	}
	.faculty .faculty-name {
		font-size: 22px;
	}
	.faculty .faculty-title {margin-bottom:0;}
	.faculty .faculty-read-more-button {
		margin-top: 15px;
	}
	.faculty .faculty-read-more-button a {
		font-size: 18px;
		padding: 8px 16px;
	}
	.faculty .faculty-title.is-empty {display:none;}
	.faculty .fwpl-layout .fwpl-result .fwpl-row .fwpl-col .fwpl-row .fwpl-col.faculty-card-col2 {margin: 0 10px;}

}

/* ipad mini - 1024 x 768 */
@media screen and (min-width: 667px) and (max-width: 1024px) {
	.faculty .faculty-read-more-button a {
		font-size: 20px;
		padding: 8px 16px;
	}
		.faculty .faculty-name {
		font-size: 22px;
	}
/* June 20, 2023
 * More Barry stuff
 * Additional rules to create 2-column layouts on phone and ipad horizontal */
	#faculty-cards.et_pb_section {
		padding-right:10px !important;
		padding-left:10px !important;
	}
	.faculty .faculty-read-more-button a {
		font-size:16px;
		padding: 8px;
	}
	.faculty .faculty-photo.round-img img {
		width:100px; height:100px;
		min-width: 100px;
	}
	.faculty .fwpl-layout .fwpl-result .fwpl-row .fwpl-col .fwpl-row .fwpl-col {margin: 0 10px;}
}


/* Faculty Post Detail page styles
------------------------------------------------------- */
.faculty-post-content {margin:0;}
.faculty-post-content .et_pb_row.et_pb_row_0 {width: 100%;  padding-top: 0;}
.faculty-post-content .et_pb_section_0 {padding: 0;}
.faculty-post-content .et_pb_row_0 h2:first-child {margin-top: 0;}

/* Staff page
------------------------------------------------------- */
#staff-names-section h2 {
  margin-bottom: 0;
}

/* Admissions
------------------------------------------------------- */
.admissions-tabs .et_pb_tabs_controls li {
  background-color: #eb7b25;
}

.admissions-tabs .et_pb_tabs_controls li a {
  color: white;
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif;
  font-size: 18px;
  padding: 13px 40px;
}

.admissions-tabs .et_pb_tabs_controls {
  background-color: white;
}

.admissions-tabs .et_pb_tabs_controls .et_pb_tab_active {
  background-color: white;
}

.admissions-tabs .et_pb_tabs_controls .et_pb_tab_active a {
  color: #eb7b25 !important;
}

.admissions-tabs .btn a {
  font-size: 20px;
  padding: 15px 60px;
}

/* Typography
------------------------------------------------------- */
h1 {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif;
/*  font-size: 32px; *.
/* dev team changed this, we don't know why. Back to 60px */
  font-size: 60px; 
}

h2 {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.3em;
}

h3 {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  font-size: 36px;
  line-height: 1.3em;
	/* Barry March 29, 2023
	 * Today I discovered the heads had a global margin reset but no custom value was set.
	 * Adding 1em margin above and below. Please adjust here if it looks bad.
	 */ 
  margin: 1em 0;
}

h4 {
  font-family: "FiraSans-Regular", Arial, Helvetica, sans-serif !important;
  font-size: 24px;
  line-height: 1.3em;
}

/* Disabled this as it is already assigned in the body statement */
/*p,
.et_pb_text_inner {
  font-family: "FiraSans-Regular" !important;
  font-size: 16px;
}
*/

@media screen and (max-width: 750px) {
  h1 {
    font-size: 35px;
  }
  h3 {
    font-size: 20px;
  }
/* Barry added June 19, 2023
 * Smaller H1 size for mobile
 * Side note, this section class shouldn't be named vid-sec.
 * It's the full-height hero unit, and it usually has a static background image, not a video.
 * Leave for now. Should also use a font-size unit that scales gracefully, if one is available.
 */ 
.vid-sec h1 {font-size:32px !important;}
}

/* Font Imports
------------------------------------------------------- */
@font-face {
  font-family: "FiraSans-SemiBold";
  src: url("./fonts/FiraSans-SemiBold.ttf");
}
@font-face {
  font-family: "FiraSans-Regular";
  src: url("./fonts/FiraSans-Regular.ttf");
}
@font-face {
  font-family: "FiraSans-SemiBold";
  src: url("./fonts/FiraSans-SemiBold.ttf");
}
/* menu size fucked up */
/* This set of hacks was likely committed by Tom Fortune */
/* Aug 2023 update, sorry Tom, I was being petty */
/* Barry fixes below */
/* Commenting all of these hacks out to troubleshoot */

/*

@media screen and (max-width: 960px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -85.6vw;
  }
}
@media screen and (max-width: 950px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -85.5vw;
  }
}
@media screen and (max-width: 940px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -85.4vw;
  }
}
@media screen and (max-width: 930px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -85.3vw;
  }
}
@media screen and (max-width: 920px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -85.2vw;
  }
}
@media screen and (max-width: 910px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -85.1vw;
  }
}
@media screen and (max-width: 850px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -84vw;
  }
}
@media screen and (max-width: 800px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -82.8vw;
  }
}
@media screen and (max-width: 750px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -81vw;
  }
}
@media screen and (max-width: 700px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -80vw;
  }
}
@media screen and (max-width: 650px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -79vw;
  }
}
@media screen and (max-width: 600px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -77vw;
  }
}
@media screen and (max-width: 550px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -75vw;
  }
}
@media screen and (max-width: 500px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -72vw;
  }
}
@media screen and (max-width: 450px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -69vw;
  }
}
@media screen and (max-width: 400px) {
  .mobile-menu .et_pb_row .et_pb_column .et_mobile_menu {
    left: -65vw;
  }
}
*/
/* end of Tom's mobile menu positioning hacks */

/* Barry fixes, Feb 22, 2023 */
/* The following run of h1, h2, h3, h4, p, button, .btn a mods might apply to a specific mobile breakpoint. */
/* I disabled the h1 font-size statement for now. Others might need to be disabled during QA of mobile display. */

h1 {
/*  font-size: 32px !important; */
	border:none;
}

h2 {
  font-size: 24px !important;
}

h3 {
  font-size: 20px !important;
}

h4 {
  font-size: 18px !important;
}

p {
  font-size: 16px !important;
  line-height: 24px !important;
}

button,
.btn a {
  padding: 10px 24px !important;
  font-size: 20px !important;
}

button,
.btn a {
  padding: 10px 24px !important;
  font-size: 20px !important;
}

/*
	Styles for Bullets
	Orange, except where they need to be white (i.e., on an orange background.)
	Feb 2023, Barry @ Spertus
	Mod to list elements with orange bullets
	Solves absence of line indent on turnover lines
	Increase size of bullets by a few px
	To do: apply this bullet style to list instances not within this highly specific context
	March 2, 2023
	Added list-style: none to .entry-content ul to fix edge cases of li inside toggle content
	Might also fix li inside other content modules we don't use yet
	I noticed a possible bug, the font-size of bullets may not be recognized.
*/
.et_pb_section .et_pb_text_inner ul,
#main-content .entry-content ul {
	list-style: none;
	text-indent:-1em;
	margin-top: 1em;
}

.et_pb_section .et_pb_text_inner ul li h2 {
  display: inline-block;
}

/* Barry March 16, 2023
 * The following block shows the original author's rule adding orange bullets to list elements
 * The comments appear to be his
 * */

/* tried to apply this rule more universally
 * unfortunately it ruins the nav menu
 * sb easy to fix tho, restrict it with #main-content
 * need to honor orange-sec case too
 */
.et_pb_section .et_pb_text_inner ul li::before,
#main-content ul li::before {
  content: "• ";
color: #eb7b25;
font-size: 30px;
vertical-align: middle;
/*  position: relative;
  top: 2px;
	*/
}
#main-content .orange-sec ul li::before {
	color:#ffffff;
}

.et_pb_section .et_pb_text_inner ul li {
	margin: 0 0 .75em 1em;
	text-indent: -1.25em;
}

footer ul {
  list-style: none;
}

footer h3 {
  padding-bottom: 20px !important;
}

footer ul li::before {
  position: unset !important;
  top: unset !important;
  content: unset !important;
  color: unset !important;
}

.footer .health-cir h3 {
  font-size: 20px !important;
  padding: 22px !important;
}

div.et_pb_section.grad-sec.et_section_regular {
  background-image: unset !important;
}

div.et_pb_section.grad-sec.et_section_regular div:first-of-type {
  background-color: #eb7b25;
  border-radius: 23px !important;
  border: unset !important;
}

@media screen and (min-width: 768px) {
  div.et_pb_section.grad-sec.et_section_regular .et_pb_row::before {
    content: url("/wp-content/uploads/2022/04/Artwork-8.png");
    position: absolute;
    right: -26px;
    bottom: -32px;
    z-index: 5;
  }
}

.et_pb_post.type-tribe_events,
.home-news-blog .et_pb_post {
	/* Barry note June 6 2023
	 * We're going back to rounded corners on the blog card rows
	 * make them 29px for now
	 * disabling this next line which was the latest killswitch
	 */
/*  border-radius: 0 !important; */
}

.et_pb_post.type-tribe_events .et_pb_image_container img,
.home-news-blog .et_pb_post .et_pb_image_container img {
  border-radius: 0;
}

@media screen and (max-width: 1200px) {
  .et_pb_section_0.et_pb_section,
  .et_pb_section_1.et_pb_section,
  .et_pb_section_2.et_pb_section,
  .et_pb_section_3.et_pb_section {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .et_pb_post h2.entry-title {
    font-size: 26px !important;
  }
}
.home .mejs-mediaelement video {
  width: 100%;
  height: 100vh;
  min-height: 400px;
}

header .et_pb_section_0_tb_header {
  box-shadow: unset !important;
}

header #menu-bottom-menu .sub-menu::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.et_pb_menu .et_pb_menu__menu > nav > ul > li > ul {
  top: 38px;
}
/* Barry 03-13-2023
 * Part of fix for submenu gap
 * But it expands the height of its orange bar
 * */
.et_pb_menu--without-logo .et_pb_menu__menu>nav>ul>li>a {padding-bottom:24px;}


div.et_pb_row_1_tb_header.et_pb_row {
	margin-top:16px;
  padding-top: 1px !important;
  padding-bottom: 0px !important;
	/* Barry 03-13-2023
	 * these were both 16px previously
	 * */
}

header #menu-top-menu .sub-menu::before {
  border-left: 10px solid transparent !important;
  border-right: 10px solid transparent !important;
  border-top: 10px solid #eb7b25 !important;
}

.offer-sec .orange-line::before {
  width: 2px;
}

.orange-sec .line-sec::before {
  width: 2px;
}

.et_pb_cta_0.et_pb_promo,
.et_pb_cta_1.et_pb_promo,
.et_pb_cta_2.et_pb_promo,
.et_pb_cta_3.et_pb_promo {
  border-radius: 23px !important;
}

@media screen and (min-width: 980px) {
  header ul.sub-menu li a {
    font-size: 14px;
  }
  header .et_pb_menu__menu {
    flex: 0 600px !important;
    margin-left: auto;
  }
  header #menu-top-menu {
    justify-content: flex-end;
    margin-right: 20px;
    column-gap: 15px;
  }
  header .et_pb_menu__wrap {
    flex-wrap: nowrap;
  }
  header .et_pb_section_0_tb_header .et_pb_menu_inner_container {
    padding-right: 0;
  }
  header #menu-bottom-menu {
    justify-content: space-around !important;
    justify-content: center;
  }
  header #menu-bottom-menu li a {
    font-size: 16px;
  }
  header .et_pb_menu .et_pb_menu__wrap {
    flex-wrap: nowrap;
  }
  header .et_pb_menu .et-menu > li {
    padding-left: 0;
    padding-right: 0;
  }
  header #menu-top-menu li a {
    font-size: 16px;
  }
  header ul.sub-menu li a {
    font-size: 14px !important;
  }
}
@media screen and (min-width: 1024px) {
  header #menu-top-menu {
    column-gap: 25px;
  }
}
@media screen and (min-width: 1200px) {
  header #menu-top-menu li a {
    font-size: 18px;
  }
  header #menu-bottom-menu li a {
    font-size: 18px;
  }
  header .et_pb_menu__menu {
/*    flex: 0 600px !important; */
    flex: 0 680px !important;
    margin-left: auto;
  }
  header #menu-bottom-menu li a {
    font-size: 20px;
  }
  header #menu-top-menu {
    column-gap: 30px;
  }
  header ul.sub-menu li a {
    font-size: 14px !important;
  }
  header #menu-top-menu {
    margin-right: 30px;
  }
  .et-menu li li.menu-item-has-children > a:first-child:after {
    right: 15px;
    top: 6px;
  }
}
@media screen and (max-width: 1300px) {
  .grad-sec .et_pb_column .et_pb_text {
    padding: 50px 65px 80px 23px;
  }
}
@media screen and (min-width: 1350px) {
  header #menu-bottom-menu li a {
    font-size: 24px;
  }
  header ul.sub-menu li a {
    font-size: 14px !important;
  }
  header #menu-top-menu {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .et_pb_section_0,
  .et_pb_section_1,
  .et_pb_section_2,
  .et_pb_section_3,
  .et_pb_section_4,
  .et_pb_section_5,
  .et_pb_section_6,
  .et_pb_section_7,
  .et_pb_section_8,
  .et_pb_section_9,
  .et_pb_section_10 {
    width: 100% !important;
  }
}
@media screen and (max-width: 600px) {
  .et_pb_section_0.et_pb_section,
  .et_pb_section_1.et_pb_section,
  .et_pb_section_2.et_pb_section,
  .et_pb_section_3.et_pb_section {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .et_pb_section_2.et_pb_section {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .et_pb_section_4.et_pb_section,
  .et_pb_section_3.et_pb_section,
  .et_pb_section_5.et_pb_section {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .et_pb_section_1.et_pb_section {
    padding-top: 50px !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-bottom: 50px !important;
  }
  .et_pb_text_7 {
    width: 100% !important;
  }
  .et_pb_row_5,
  body #page-container .et-db #et-boc .et-l .et_pb_row_5.et_pb_row,
  body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_5.et_pb_row,
  body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_5.et_pb_row,
  .et_pb_row_6,
  body #page-container .et-db #et-boc .et-l .et_pb_row_6.et_pb_row,
  body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_6.et_pb_row,
  body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_6.et_pb_row {
    width: 100% !important;
  }
  .et_pb_section_0,
  .et_pb_section_1,
  .et_pb_section_2,
  .et_pb_section_3,
  .et_pb_section_4,
  .et_pb_section_5,
  .et_pb_section_6,
  .et_pb_section_7,
  .et_pb_section_8,
  .et_pb_section_9,
  .et_pb_section_10 {
    width: 100% !important;
  }
  .grad-sec .et_pb_column .et_pb_text {
    padding: 50px 0;
  }
  div.et_pb_section.grad-sec.et_section_regular .et_pb_row::before {
    content: unset;
    position: unset;
    right: unset;
    bottom: unset;
    z-index: unset;
  }
  .grad-sec .et_pb_column {
    padding: 15px 35px;
  }
  .grad-sec .et_pb_column .et_pb_image_wrap {
    width: 100%;
    height: 100%;
  }
}
.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}
/* Note about Support Spertus CTA boxes
 * Barry June 1, 2023
 * The following set of styles replicates functionality contained in the Divi theme.
 * Putting them here in style.css complicates further customization
 * and frustrates editors who would otherwise use the theme UI to change
 * the appearance of page elements.
 * These do work in their specific context, but they also break similar uses
 * of the CTA boxes that appear on other pages.
 * I didn't write these and I might end up disabling them.
 * */

.support-four-block {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.support-four-block .et_pb_row_4col {
  width: 100%;
  max-width: 2560px;
  display: flex;
  column-gap: 50px;
}

@media only screen and (max-width: 1140px) and (min-width: 981px) {
  .support-four-block .et_pb_row_4col h2 {
    font-size: 18px !important;
  }
  .support-four-block .et_pb_row_4col .et_pb_button.et_pb_promo_button {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 1201px) {
  .support-four-block .et_pb_row_4col {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.support-four-block .et_pb_row_4col .et_pb_column {
  display: flex;
  flex-basis: 100%;
  margin-right: unset;
}

.support-four-block .et_pb_row_4col .et_pb_column .et_pb_promo {
  padding: 30px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.support-four-block .et_pb_row_4col .et_pb_column .et_pb_promo .et_pb_button_wrapper {
  margin-top: auto;
}

.support-four-block .et_pb_row:after,
.et_pb_row_inner:after {
  display: none;
}

.grad-sec .et_pb_text_inner h3 {
  font-size: 28px !important;
}

.grad-sec h6,
.grad-sec p {
  font-family: "FiraSans-SemiBold", Arial, Helvetica, sans-serif !important;
  color: white;
  line-height: 1.3em;
}

.grad-sec h6 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0;
  margin-top: 10px;
  padding: 0 !important;
  font-weight: 900;
}

.grad-sec p {
  font-size: 22px !important;
  line-height: 30px !important;
  margin-bottom: 0;
  padding: 0 !important;
  font-weight: 900;
}

@media screen and (max-width: 1199px) {
  .grad-sec .et_pb_row .et_pb_column {
    flex-direction: column;
  }
  .grad-sec .et_pb_row .et_pb_column .et_pb_text_inner {
    text-align: center;
  }
}
@media screen and (max-width: 1199px) and (min-width: 749px) {
  .grad-sec .et_pb_module.et_pb_text {
    padding-left: 50px !important;
    padding-right: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .grad-sec .et_pb_module.et_pb_text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 982px) {
  .grad-sec .et_pb_module.et_pb_text {
    padding-right: 170px;
    padding-left: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .grad-sec .et_pb_module.et_pb_text {
    padding-right: 200px;
  }
}
@media screen and (min-width: 1500px) {
  .grad-sec .et_pb_module.et_pb_text {
    padding-right: 200px;
    padding-left: 90px;
  }
}
@media screen and (max-width: 980px) {
  .support-four-block .et_pb_column {
    margin-bottom: 30px !important;
  }
  .support-four-block .et_pb_column.et-last-child {
    margin-bottom: 0;
  }
  .support-four-block .et_pb_row_4col .et_pb_column {
    display: block;
  }
}
/*	Barry Feb 6, 2023. Give round image min-width so they don't shrink if a prof has a long job title
______________________________________*/
.round-img img {
  border-radius: 100%;
	min-width: 150px;
}

.ideas-impact-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ideas-impact-section-pb0 {
  padding-bottom: 0 !important;
}

.ideas-impact-section-pb0 .et_pb_row:first-of-type {
  padding-bottom: 0;
}

@media screen and (max-width: 600px) {
  .ideas-impact-section.et_pb_section_1.et_pb_section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.ideas-impact-three-cols .size-1of3:first-of-type {
  margin-left: 0 !important;
}

.ideas-impact-three-cols .size-1of3:last-of-type {
  margin-right: 0 !important;
}

.ideas-impact-three-cols .size-1of3 {
  width: 31.66% !important;
}

.tribe_events .post-content div.mykey1 {
  display: none !important;
}

.degrees-certs-template-intro .et_pb_row {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.degrees-certs-template-video .et_pb_row {
  padding-bottom: 47px;
}

.degrees-certs-template-cta img {
  max-width: 400px;
  border-radius: 20px;
  width: 100% !important;
}

.degrees-certs-template-cta .et_pb_image {
  text-align: center;
  margin-bottom: 30px;
}

.degrees-certs-template-cta h2 {
  padding-bottom: 0;
  margin-bottom: 20px;
  font-size: 42px !important;
  width: 60%;
  font-weight: 700;
}

.degrees-certs-template-cta h4 {
  padding-bottom: 0;
  font-size: 34px !important;
  width: 60%;
  font-weight: 700;
}

.et_pb_section_3.et_pb_section.degrees-certs-template-three-img {
  padding-left: 130px;
  padding-right: 130px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.degrees-certs-template-three-img .et_pb_image {
  text-align: center;
  margin-bottom: 20px !important;
}

.degrees-certs-template-three-img img {
  width: 100px !important;
}

.degrees-certs-template-three-img h2 {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  text-align: center;
}

.degrees-certs-template-masters h2 {
  padding-bottom: 0;
  margin-bottom: 35px;
  margin-top: 0 !important;
  font-size: 42px !important;
  font-weight: 700;
}

.degrees-certs-template-masters .et_pb_row {
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
}

.degrees-certs-template-masters .et_pb_module {
  margin-bottom: 0 !important;
}

.degrees-certs-template-masters .btn {
  margin-bottom: 0;
  margin-top: 35px;
  padding-left: 50px;
  display: flex;
}

.degrees-certs-template-masters li {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.degrees-certs-template-masters .et_pb_text {
  margin-bottom: 0;
}

.degrees-certs-template-masters.et_pb_section .et_pb_text_inner ul {
  padding-left: 50px;
  padding-bottom: 0;
}

.degrees-certs-template-masters.et_pb_section .et_pb_text_inner ul li::before {
  content: unset;
  color: unset;
  font-size: unset;
  position: unset;
  top: unset;
}

.degrees-certs-template-textcombo.et_pb_section.et_section_regular {
  padding-left: 130px;
  padding-right: 130px;
  padding-top: 50px;
  padding-bottom: 0;
}

.degrees-certs-template-textcombo .et_pb_row {
  padding-bottom: 0;
  padding-top: 0;
}

.degrees-certs-template-textcombo h2 {
  padding-bottom: 0;
  margin-bottom: 35px;
  margin-top: 0 !important;
  font-size: 42px !important;
  font-weight: 700;
}

.degrees-certs-template-textcombo p {
  font-size: 18px !important;
  font-weight: 600;
}

.degrees-certs-template-textcombo img {
  border-radius: 20px;
}

.degrees-certs-template-ph {
  margin-top: 50px;
}

.degrees-certs-template-ph .et_pb_row {
  padding-top: 0;
  padding-bottom: 0;
}

.degrees-certs-template-ph h2 {
  padding-bottom: 0;
  margin-bottom: 35px;
  margin-top: 0 !important;
  font-size: 42px !important;
  font-weight: 700;
}

.degrees-certs-template-ph p {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
}

.degrees-certs-template-ph .js-ph-img {
  position: relative;
  height: 100%;
}

.degrees-certs-template-ph .js-ph-img img {
  border-radius: 20px;
}

.degrees-certs-template-ph .js-ph-img .et_pb_image {
  position: absolute;
}

.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.program-card p {
  margin-top: 0;
  color: #fff !important;
}

.program-card h3 {
  padding-bottom: 0;
  color: #fff !important;
  font-size: 24px;
  width: 80%;
}

.degrees-certs-template-ph-grads.grad-sec {
  margin-bottom: 0 !important;
}

.degrees-certs-template-nckd.et_pb_section.is-orange-sec {
  padding-left: 130px;
  padding-right: 130px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.degrees-certs-template-nckd h2 {
  padding-bottom: 0;
  margin-bottom: 30px;
  margin-top: 0 !important;
  font-size: 42px !important;
  font-weight: 700;
}

.degrees-certs-template-nckd.et_pb_section .et_pb_text_inner ul li::before {
  content: unset;
  color: unset;
  font-size: unset;
  position: unset;
  top: unset;
}

.degrees-certs-template-nckd ul {
  padding-left: 50px;
  padding-bottom: 0;
}

.degrees-certs-template-nckd .et_pb_text_11 {
  margin-left: 0 !important;
}

.degrees-certs-template-nckd ul li {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5;
}

.degrees-certs-template-nckd img {
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.degrees-certs-template-nckd .et_pb_row {
  padding: 0 !important;
}

.degrees-certs-template-nckd .btn {
  display: flex;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 50px;
}

.degrees-certs-template-fom.et_pb_section.et_section_regular {
  padding-left: 180px;
  padding-right: 180px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.degrees-certs-template-fom .et_pb_row {
  width: 100%;
  margin: unset;
  padding-top: 0;
  padding-bottom: 0;
}

.degrees-certs-template-fom p {
  font-size: 18px !important;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.degrees-certs-template-fom h2 {
  padding-bottom: 0;
  margin-bottom: 30px;
  margin-top: 0 !important;
  font-size: 42px !important;
  font-weight: 700;
}

.degrees-certs-template-fom .btn {
  display: flex;
  margin-bottom: 0;
  margin-top: 0;
}

.degrees-certs-template-cicata.et_pb_section.et_section_regular {
  padding-left: 130px;
  padding-right: 130px;
  padding-top: 0;
  padding-bottom: 50px;
}

.degrees-certs-template-cicata .et_pb_row {
  padding-top: 0;
  padding-bottom: 0;
}

.degrees-certs-template-cicata h2 {
  padding-bottom: 0;
  margin-bottom: 30px;
  margin-top: 0 !important;
  font-size: 42px !important;
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.degrees-certs-template-cicata .et_pb_image {
  text-align: center;
}

.degrees-certs-template-ssj.et_pb_section.et_section_regular {
  padding-left: 130px;
  padding-right: 130px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.degrees-certs-template-ssj .et_pb_row {
  padding-top: 0;
  padding-bottom: 0;
}

.degrees-certs-template-ssj h2 {
  padding-bottom: 0;
  margin-bottom: 30px;
  margin-top: 0 !important;
  font-size: 42px !important;
  font-weight: 700;
}

.degrees-certs-template-ssj h3 {
  padding-bottom: 0;
  margin-bottom: 25px;
  margin-top: 0 !important;
  font-size: 30px !important;
  font-weight: 700;
}

.degrees-certs-template-ssj p {
  font-size: 18px !important;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 0;
}

.degrees-certs-template-ssj .btn {
  display: flex;
  margin-bottom: 0;
  margin-top: 0;
}

.degrees-certs-template-ssj img {
  border-radius: 20px;
}

.degrees-certs-template-ssj .et_pb_image {
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
}

.degrees-certs-template-nckd .et_pb_module {
  margin-left: 0 !important;
}

.event-single-s .container::before {
  right: unset !important;
  content: unset !important;
  position: unset !important;
  top: unset !important;
  height: unset !important;
  width: unset !important;
  background-color: unset !important;
}

.is-orange-sec {
  background-color: #eb7b25 !important;
}

.is-orange-sec p,
.is-orange-sec h2,
.is-orange-sec h3,
.is-orange-sec h4,
.is-orange-sec h5,
.is-orange-sec h6,
.is-orange-sec li,
.is-orange-sec ol {
  color: #fff !important;
}

.is-orange-sec .btn a {
  background-color: #fff;
  color: #eb7b25;
  border: 0;
  outline: 0;
}

@media only screen and (max-width: 980px) {
  .degrees-certs-template-video {
    padding-top: 0 !important;
  }
  .degrees-certs-template-cta h2 {
    width: 100%;
  }
  .degrees-certs-template-cta h4 {
    width: 100%;
  }
  .degrees-certs-template-masters.et_pb_section .et_pb_text_inner ul {
    padding-left: 0;
  }
  .degrees-certs-template-masters .btn {
    padding-left: 0;
  }
  .degrees-certs-template-masters .et_pb_column {
    margin-bottom: 0;
  }
  .degrees-certs-template-ph,
  .degrees-certs-template-nckd,
  .degrees-certs-template-fom,
  .degrees-certs-template-cicata,
  .degrees-certs-template-ssj {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .degrees-certs-template-nckd ul {
    padding-left: 0;
  }
  .degrees-certs-template-nckd .btn {
    padding-left: 0;
  }
}
/* .et_pb_section_1.et_pb_section, .et_pb_section_0.et_pb_section {
    padding-top: 43px;
    padding-right: 20px;
    padding-bottom: 1px;
    padding-left: 20px;
} */
.toggle-sec .et_pb_toggle_item:hover {
  background-color: #fff !important;
  color: #58595b !important;
}

.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_title,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_title:before,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h1,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h2,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h3,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h4,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h5,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content h6,
.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_content p {
  color: #58595b !important;
}

.toggle-sec .et_pb_toggle_item:hover .et_pb_toggle_title:after {
  background-color: #58595b !important;
}

.s-container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 981px) {
  .s-container {
    padding-left: 130px;
    padding-right: 130px;
  }
}

.single-event {
  padding-top: 43px;
  padding-bottom: 43px;
}
.single-event * {
  margin-bottom: 20px;
}
.single-event p {
  margin-bottom: 20px;
  padding-bottom: 0;
  font-size: 18px !important;
}
.single-event hr {
  margin-bottom: 35px;
  margin-top: 35px;
}
.single-event__title {
  margin-bottom: 30px;
}
.single-event__title h1 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.single-event__hero {
  margin-bottom: 30px;
}
.single-event__hero img {
  max-height: 450px;
  margin-bottom: 0;
}
.single-event__hero figcaption {
  font-size: 14px;
}
.single-event__date p {
  margin-bottom: 20px;
  font-size: 20px !important;
  font-weight: 600;
}
.single-event__video {
  margin-bottom: 0;
}
.single-event__event-brite {
  margin-bottom: 0;
}
.single-event__details h3 {
  margin-bottom: 20px;
  padding-bottom: 0;
}
.single-event__sponsor {
  margin-bottom: 0;
}
.single-event__sponsor a {
  display: flex;
}
.single-event__sponsor img {
  margin-bottom: 0;
}
.single-event__donor ul {
  display: flex;
  column-gap: 15px;
}
.single-event__donor ul li {
  margin-bottom: 0;
}
.single-event__donor ul li a {
  display: flex;
  margin-bottom: 0;
}
.single-event__donor ul img {
  margin-bottom: 0;
  max-width: 100px;
}

/*# sourceMappingURL=style.css.map */
