.page .sc-page-subheading-video p {
	width: 80%;
	max-width: 100%;
	line-height: 1.3em;
}

.sc-section-video-hero {
	display: grid;
	grid-template-columns: 60% 38%;
	grid-template-rows: auto auto;
	column-gap: 2%;

	max-width: 1200px;
}

.sc-section-video-hero .sc-row-embedded-video {
	height: 100%;
	width: 100%;
	grid-area: 1 / 1 / span 2 / span 1;
}

.sc-section-video-hero .sc-row-embedded-video-text {
	height: 100%;
	width: 100%;
	grid-area: 1 / 2 / span 1 / span 1;
	color: white;
	font-size: 18px;
}

.sc-section-video-hero .sc-row-embedded-video-text * {
	color: white;
}

.sc-section-video-hero .sc-row-embedded-video-text .wpb_column,
.sc-section-video-hero .sc-row-embedded-video-text .vc_column-inner {
	display: block;
	height: 100%;
}

.sc-section-video-hero .sc-row-embedded-video-text .wpb_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.sc-section-video-hero .sc-row-embedded-video-text h2 {
	font-size: 30px;
	margin-bottom: 24px;
	margin-top: 8px;
}

.sc-section-video-hero .sc-row-embedded-video-text h4 {
	color: black;
	background-color: white;
	display: flex;
	width: fit-content;
	padding: 2px 8px;
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 8px;
}

.sc-section-video-hero .sc-video-youtube-playlists {
	position: relative;
	height: 100%;
}

.sc-section-video-hero .sc-video-youtube-playlists .vc_tta-panels-container {
	height: 240px;
	min-height: 200px;
}

.sc-section-video-hero .sc-row-embedded-video-ctas {
	height: 100%;
	width: 100%;
	grid-area: 2 / 2 / span 1 / span 1;
}

.sc-section-video-hero .sc-row-embedded-video-ctas .theme-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: var(--sc-button-primary-border-radius);
	background: none;
	font-weight: var(--sc-font-weight-regular);
	font-size: 22px;
	font-family: var(--sc-font-family-header);
	letter-spacing: var(--sc-letter-spacing-uppercase);
	text-decoration: none;
	text-transform: uppercase;
	width: 200px;
}

.sc-section-video-hero
	.sc-row-embedded-video-ctas
	.theme-button.sc-primary-cta {
	border: 1px solid var(--sc-color-primary);
	background-color: var(--sc-color-primary);
	color: var(--sc-color-light-mode);
	margin-right: auto;
}

.sc-section-video-hero
	.sc-row-embedded-video-ctas
	.theme-button.sc-secondary-cta {
	border: 1px solid var(--sc-color-dark-mode);
	background-color: none;
	color: var(--sc-color-dark-mode);
	margin-left: auto;
}

.sc-section-video-hero
	.sc-row-embedded-video-ctas
	.theme-button.sc-primary-cta:hover {
	border: 1px solid var(--sc-color-primary-darker);
	background-color: var(--sc-color-primary-darker);
}

.sc-section-video-hero
	.sc-row-embedded-video-ctas
	.theme-button.sc-secondary-cta:hover {
	color: var(--sc-color-light-mode);
	background-color: var(--sc-color-dark-mode);
}

.sc-section-video .sc-row-video-carrousel {
	border-top: 1px solid var(--sc-color-dark-mode-20);
	padding: 32px 0;
}

.sc-section-video .sc-row-video-carrousel h3 {
	font-family: var(--sc-font-family-header);
	font-weight: var(--sc-font-weight-extralight);
	font-size: 22px;
	margin-bottom: 32px !important;
	margin-top: 0;
	color: var(--sc-color-dark-mode-90);
}

.sc-section-video .sc-row-video-carrousel .post-cards-con-video {
	position: relative;
	max-width: 1000px;
	margin: auto;
	width: 90%;
}

.sc-section-video
	.sc-row-video-carrousel
	.post-cards-con-video
	.wpex-post-cards-inner {
	position: relative;
	z-index: 10;
}

/* PAGINACIÓN */

.sc-section-video .sc-row-video-carrousel .owl-nav {
	position: absolute;
	width: 100%;
	top: calc(50% - 40px);
}

.sc-section-video .sc-row-video-carrousel .owl-nav .owl-nav__btn.owl-prev,
.sc-section-video .sc-row-video-carrousel .owl-nav .owl-nav__btn.owl-next {
	border: 1px solid var(--sc-color-dark-mode);
	border-radius: 50%;
	padding: 0;
	margin: 0;
	font-size: 16px;

	height: 40px;
	width: 40px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.sc-section-video .sc-row-video-carrousel .owl-nav .owl-nav__btn:hover {
	background-color: var(--sc-color-dark-mode-20);
}

.sc-section-video .sc-row-video-carrousel .owl-nav .owl-prev {
	left: -80px !important;
	opacity: 0.9;
}

.sc-section-video .sc-row-video-carrousel .owl-nav .owl-next {
	right: -80px !important;
	opacity: 0.9;
}

.sc-section-video .sc-row-video-carrousel .owl-nav .ticon {
	color: var(--sc-color-dark-mode-90);
}

/* Media Query for Tablets Ipads portrait mode */
@media (max-width: 1024px) {
}

/* Media Query for low resolution  Tablets, Ipads */
@media (max-width: 768px) {
	.page .sc-page-subheading-video p {
		width: 100%;
		max-width: 100%;
		line-height: 1.3em;
	}

	.sc-section-video-hero {
		grid-template-columns: 100%;
		grid-template-rows: auto auto auto;
	}

	.sc-section-video-hero .sc-row-embedded-video {
		height: 100%;
		width: 100%;
		grid-area: 1 / 1 / span 1 / span 1;
	}

	.sc-section-video-hero .sc-row-embedded-video-text {
		height: 100%;
		width: 100%;
		grid-area: 2 / 1 / span 1 / span 1;
		color: white;
		font-size: 18px;
		margin-top: 32px !important;
		margin-bottom: 32px !important;
	}

	.sc-section-video-hero .sc-row-embedded-video-ctas {
		height: 100%;
		width: 100%;
		grid-area: 3 / 1 / span 1 / span 1;
	}

	.sc-section-video .sc-row-video-carrousel {
		padding: 32px;
	}

	.sc-section-video .sc-row-video-carrousel .post-cards-con-video {
		width: 80%;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav .owl-nav__btn.owl-prev,
	.sc-section-video .sc-row-video-carrousel .owl-nav .owl-nav__btn.owl-next {
		font-size: 12px;

		height: 32px;
		width: 32px;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav {
		position: absolute;
		width: 100%;
		top: calc(50% - 60px);
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav .owl-prev {
		left: -70px !important;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav .owl-next {
		right: -70px !important;
	}
}
/* Media Query for Mobile Devices */
@media (max-width: 480px) {
	
	.sc-section-video-hero .sc-row-embedded-video-text h2 {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.sc-section-video-hero .sc-video-youtube-playlists .vc_tta-panels-container {
		height: 260px;
	}

	.sc-section-video-hero .sc-video-youtube-playlists .vc_tta-panels-container * p{
		line-height: 1.3em; 
	}

	.sc-section-video-hero .sc-row-embedded-video-ctas {
		display: flex;
	}

	.sc-section-video-hero .sc-row-embedded-video-ctas .theme-button {
		font-size: 18px;
		width: 132px;
	}

	.sc-section-video .sc-row-video-carrousel .post-cards-con-video {
		width: 100%;
	}

	.sc-section-video .sc-row-video-carrousel {
		padding: 32px 16px;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav {
		position: absolute;
		width: 100px;
		top: -64px;
		right: 0;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav .owl-prev {
		left: 0 !important;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav .owl-next {
		right: 0 !important;
	}


	.sc-section-video .sc-row-video-carrousel .owl-nav .owl-nav__btn.owl-prev, .sc-section-video .sc-row-video-carrousel .owl-nav .owl-nav__btn.owl-next {
		font-size: 24px;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav .ticon.ticon-chevron-right {
		padding-left: 2px;
	}

	.sc-section-video .sc-row-video-carrousel .owl-nav .ticon.ticon-chevron-left {
		padding-right: 2px;
	}
}
