/* START -> Mobile Styles */
.about-callout-module {
  position: relative;  
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.about-callout-module:after {
  content: '';
  background-color: var(--tertiary);
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: .9;
  top: 0;
  left: 0;
  z-index: -1;
}
.container__title {
  position: relative;
}
.container__title h2 {
  color: var(--white);
  font-weight: 300;
  display: flex;
  justify-content: center;
  text-align: center;
}
.container__description {
  margin-top: 2rem;
  position: relative;
  padding-bottom: 16px;
}
.container__description p {
  font-size: .875rem;
  color: var(--white);
  display: flex;
  justify-content: center;
  text-align: center;
}
.cta-btn {
  display: flex;
  margin-top: 10px;
}
/* END -> Mobile Styles */

{# Subscription Lightbox Styles #}
.video-lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
}
.video-lightbox:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .8;
	z-index: -1;
}
.video-lightbox > .container,
.video-lightbox .video-lightbox-wrapper {
	height: 100%;
}
.video-lightbox .video-lightbox-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.video-lightbox .video-lightbox-wrapper .video-content {
	position: relative;
	padding: 0;
	height: 100%;
}
.video-lightbox .video-lightbox-wrapper .video-content .lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	cursor: pointer;
}
.video-lightbox .video-lightbox-wrapper .video-content .video {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 460px;
	height: 100%;
}

/* START -> Desktop Styles */
@media (min-width: 992px) {
  .about-callout-module .container {
    max-width: 700px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* END -> Desktop Styles */