.hero-container {
	margin: 0 auto;
	position: relative;
	width: 100%;
	height: 500px;
}
.inner-hero {
	box-sizing: border-box;
	padding: 35px;
	position: absolute;
	top: 75px;
	left: 10%;		
	width: 500px;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
/* Hero Title */
.hero-title h2 {
	color: #fff;
}
.hero-title a {
	display: block;
	font-size: 33px;
	font-weight: normal;
	line-height: normal;
}
.hero-title a:hover {
	color: #fff;
	text-decoration: none;
}
/* Hero Body */
.hero-body {
	width: 400px;
}
.hero-body p {
	color: #fff;
	font-size: 17px;
	font-weight: normal;
	line-height: normal;
}
.hero-body h5 {
	color: #fff;
	font-weight: normal;
	line-height: normal;
}
/* Hero Buttons */
.hero-buttons {
	display: flex;
	gap: 15px;
}
a.hero-button, 
a.hero-ghost,
a.hero-button:visited, 
a.hero-ghost:visited {
  background: #00aeef;
	border-radius: 25px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	padding: 10px 20px;
	text-transform: uppercase;
}
a.hero-ghost,
a.hero-ghost:visited {
	background: #00304280;
  border: 1px solid #00aeef;
	color: #fff;
}
a.hero-button:hover, 
a.hero-ghost:hover,
a.hero-button:focus, 
a.hero-ghost:focus {
	color: #fff;
	text-decoration: underline;
}

/* Better Decisions Faster - SLIDE */

.bdf-slide {
	background: url('/sites/default/files/slide/better-decisions-hero-grad.jpg') no-repeat top center #04032d;
	background-size: auto;
}
.bdf-slide .inner-hero {
	background: rgba(1, 12, 40, 0.85);	
}
.bdf-slide .hero-title a {
	color: #fff;
	font-style: italic; 
}
.bdf-slide .hero-button, 
.bdf-slide .hero-ghost {
	border: 1px solid #00aeef;
}
.bdf-slide .hero-button {
	background: #00aeef;
}
 

 /* 
.slide {
  background-size: cover;
  background-position: center;
  height: 600px; adjust
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-content {
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.4); optional overlay  padding: 20px;
}
.hp-hero-carousel-block {
	background-color:#05051c;
}
 */
/* this is full width */
/* 
.hp-carousel #views_slideshow_cycle_main_carousels-block_1 {
}
 */
/* this is relative to content width */
/* 
.hp-carousel .views_slideshow_cycle_teaser_section { 
 	margin: 0 auto;
}
.hp-carousel .hero-background {
	width: 100%;
	height: 600px;
}
.hp-carousel .hero-container {
 	margin: 0 auto;
 	max-width: 1320px;
 	padding: 50px;
}
.hp-carousel .views-row,
.hp-carousel .views_slideshow_slide {
	width: 100%;
}
.hp-carousel .hero-content {
	position: relative;
	top: 125px;
	left: 0;
	width: 90%;
	min-width: 300px;
	max-width: 700px;
}
.hp-carousel h2 {
	font-weight: 700;
	font-size: 4em;
	margin-bottom: 2rem;
}
.hp-carousel h5 {
	font-weight: 300;
	font-size: 1.5em;
	line-height: 150%;
	margin-bottom: 1.25rem;
}
.hp-carousel .hero-content .cta {
	display: flex;
	gap: 25px;
	padding: 15px 0;
}
.hp-carousel .views-slideshow-controls-bottom {
	height: 35px;
	margin-top: -35px;
	position: relative;
	z-index: 99;
}
.hp-carousel .views-slideshow-controls-bottom .views-slideshow-pager-bullets li {
	background-color: #aaa;
}
.hp-carousel .views-slideshow-controls-bottom .views-slideshow-pager-bullets li.active {
	background-color: #fff;
}
#views_slideshow_cycle_teaser_section_image_carousels-block_1,
.hp-carousel .views_slideshow_slide,
.hp-carousel .views-row {
	position: relative;
	width: 100% !important;
	height: 500px;	
}
.views-slideshow-controls-bottom {
	position: absolute;
	bottom: 0;
	left: 50%;
}
.views-slideshow-controls-bottom .views-slideshow-pager-bullets li {
	background: #fff;
}
*/

/* RESPONSIVE HERO CAROUSEL */
/* .inner-hero is absolutely positioned with a fixed 500px width (and
   .hero-body a fixed 400px), which overflows small viewports. */
@media (max-width: 767px) {
	.inner-hero {
		left: 20px;
		right: 20px;
		width: auto;
		padding: 25px;
	}
	.hero-body {
		width: auto;
	}
	.hero-title a {
		font-size: 26px;
	}
	.hero-buttons {
		flex-wrap: wrap;
	}
}
