.featured-videos-section {
	max-width: 100vw;
	display: flex;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.fv-section-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.fv-container {
	position: relative;
}

.fv-layout-flex {
	display: flex;
	width: 100%;
	flex-direction: column;
	row-gap: 30px;
}

.fv-copy-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 770px;
	gap: 20px;
	margin: 0 auto;
}

.fv-heading {
	color: var(--core-white, #FFF);
	font-family: "Graphik Cond";
}

.fv-subheading {
	color: var(--Neutral-2, #F3F4F6);
	max-width: 570px;
}

.fv-listing-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	row-gap: 50px;
}

.fv-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 576px;
	gap: 20px;
}

.fv-card-title {
	color: var(--white);
	height: 60px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* wistia player style overrides */
.fvc-wistia-player {
	height: 164px;
}

.fvc-wistia-player [id*="big_play_button_background"] {
	background-color: rgba(0, 119, 255, 0.75) !important;
	backdrop-filter: blur(4px);
}

.fvc-wistia-player [id*="big_play_button_bottom_text"] {
	padding: 2px 8px;
	background-color: rgba(243, 244, 246, 0.80) !important;
	backdrop-filter: blur(4px);
	color: var(--core-rich-black, #010203) !important;
	font-family: "Graphik LC Web" !important;
	font-size: 12px !important;
	width: max-content !important;
	left: 50% !important;
	transform: translateX(-50%);
	font-weight: 500;
	line-height: 100%; 
}

@media (min-width: 768px) {
	.fv-layout-flex {
		row-gap: 40px;
	}

	.fvc-wistia-player {
		height: 185px;
	}
}

@media screen and (min-width: 992px) {
	.fv-layout-flex  {
		row-gap: 50px;	
	}

	.fv-subheading {
		max-width: 612px;
	}

	.fv-listing-flex {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px 30px;
	}

	.fv-card {
		max-width: 370px;
	}
}

@media (min-width: 1200px) {
	.fv-listing-flex {
		column-gap: 54px;
	}

	.fv-card {
		max-width: 380px;
	}

	.fvc-wistia-player {
		height: 190px;
	}
}
.youtube-thumbnail {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.youtube-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-in-out;
}
.youtube-thumbnail:hover .youtube-play-icon{
  transform: translate(-50%, -50%)scale(1.2);
}

.video-modal, .video-modal .overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
}

.video-modal {
	overflow: hidden;
	position: fixed;
	opacity: 0.0;

  -webkit-transform: translate(500%,0%);
  transform: translate(500%,0%);

  -webkit-transition: -webkit-transform 0s linear 0s;
  transition: transform 0s linear 0s;


  /* using flexbox for vertical centering */

  /* Flexbox display */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;

  /* Vertical alignment */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.video-modal.show-modal {
  opacity: 1.0;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
}
.video-modal .overlay {
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0.05s;
  transition: opacity 0.2s ease-out 0.05s;
  position: absolute;
}
.video-modal.show-modal .overlay {
  opacity: 1.0;
}
.noscroll { 
	overflow: hidden;
}
.video-modal-content {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.video-modal-content::before {
  content: '';
  display: flex;
  padding-top: 56.25%;
}
.video-modal-content iframe {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.close-video-modal {
    position: absolute;
    top: -24px;
    right: -24px;
}
}