/* Guttenberg */

/****ADMIN COLORS PRESETS****/
.has-amarillo-background-color{ background-color: var(--amarillo) !important; }
.has-amarillo-color{ color: var(--amarillo) !important; }
.has-turquesa-background-color{ background-color: var(--turquesa) !important; }
.has-turquesa-color{ color: var(--turquesa) !important; }
.has-azul-background-color{ background-color: var(--azul) !important; }
.has-azul-color{ color: var(--azul) !important; }
.has-rosado-background-color{ background-color: var(--rosado) !important; }
.has-rosado-color{ color: var(--rosado) !important; }
.has-celeste-background-color{ background-color: var(--celeste) !important; }
.has-celeste-color{ color: var(--celeste) !important; }
.has-verde-background-color{ background-color: var(--verde) !important; }
.has-verde-color{ color: var(--verde) !important; }
.has-rojo-background-color{ background-color: var(--rojo) !important; }
.has-rojo-color{ color: var(--rojo) !important; }
.has-black-background-color{ background-color: var(--black) !important; }
.has-black-color{ color: var(--black) !important; }
.has-light-background-color{ background-color: var(--light) !important; }
.has-light-color{ color: var(--light) !important; }
.has-white-background-color{ background-color: var(--white) !important; }
.has-white-color{ color: var(--white) !important; }

main{
	margin-top: 140px;
	min-height: calc(100vh - 140px);
}

/* ----------------------------------------------------- Swiper ----------------------------------------------------- */

.swiper-button-next,
.swiper-button-prev{
	display: block;
	border: 1px solid;
	background-color: transparent;
	text-decoration: none;
	color: inherit;
	padding: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	opacity: 0.6;
}

.swiper-button-next::after,
.swiper-button-prev::after{
	font-size: 1.5rem;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
	opacity: 1;
}

.swiper-pagination{
	position: static;
	transform: none !important;
	margin-left: auto;
	margin-right: auto;
}

.swiper-pagination-bullet{
	background-color: var(--black);
	margin-top: 1.5rem !important;
}

/* ----------------------------------------------------- HEADER ----------------------------------------------------- */

.site_header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	-webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.1);
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.1);
}

.site_header .site_header_nav{
	justify-content: flex-end;
}

.site_header .site_header_nav .main_menu{
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 0 2.7rem;
}

.site_header .site_header_nav .main_menu a{
	display: block;
	position: relative;
	font-family: var(--font-head);
	font-size: 1.333em;
	text-decoration: none;
}

.site_header .site_header_nav .main_menu li:not(.cta) a::after{
	content: '';
	display: block;
	height: 4px;
	width: 0;
	background-color: var(--amarillo);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.site_header .site_header_nav .main_menu li.current-menu-item:not(.cta) a::after,
.site_header .site_header_nav .main_menu li:not(.cta) a:hover::after{
	width: 100%;
}

.site_header .site_header_nav .main_menu li.cta a{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	font-size: 2.1111em;
	font-family: var(--font-druk);
	text-transform: uppercase;
	min-height: 140px;
	padding: 0.2em 2.2em;
	text-align: center;
	align-items: center;
	color: var(--white);
	letter-spacing: 1px;
	background-color: var(--amarillo);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	gap: 0.3em;
	justify-content: center;
}

.site_header .site_header_nav .main_menu li.cta a::after{
	content: '';
	display: block;
	width: 0.3em;
	height: 0.3em;
	border-top: 3px solid;
	border-right: 3px solid;
	transform: rotate(45deg) translateY(0.05em);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.site_header .site_header_nav .main_menu li.cta a:hover::after{
	transform: rotate(45deg) translateY(-0.1em) translateX(.15em);
}

.site_header .site_header_nav .main_menu li.cta a:hover{
	background-color: var(--azul);
	color: var(--white);
}

.site_header.open .site_header_nav .main_menu li.cta a{
	min-height: 90px;
}

.site_header.open .site_header_brand img{
	max-height: 60px;
	width: auto;
}

/* ----------------------------------------------------- FOOTER ----------------------------------------------------- */

.site_footer_secondary{
	border-top: 1px solid rgba(255,255,255,0.3);
}

.rrss_links{
	gap: 0 0.8889rem;
}
.rrss_link{
	width: 3rem;
	height: 3rem;
	background-color: var(--white);
	border-radius: 50%;
	color: var(--black);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.rrss_link svg{
	width: 50%;
	height: auto;
}
.rrss_link:hover{
	color: var(--white);
}
.rrss_link.linkedin:hover{ background-color: var(--linkedin); }
.rrss_link.facebook:hover{ background-color: var(--facebook); }
.rrss_link.twitter:hover{ background-color: var(--twitter); }
.rrss_link.youtube:hover{ background-color: var(--youtube); }
.rrss_link.instagram:hover{ background-color: var(--instagram); }

/* ----------------------------------------------------- HERO ----------------------------------------------------- */

.card_hero{
	min-height: 700px;
	align-items: center;
}
.card_hero .card_image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.card_hero .card_image::before{
	content: '';
	display: block;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
	background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#54000000',GradientType=1 );
}

.card_hero .card_content{
	position: relative;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	transform: translateY(30%);
	opacity: 0;
}

.swiper-slide-active .card_hero .card_content{
	transform: translateY(0);
	opacity: 1;
}
.site_hero_block .swiper-pagination{
	position: absolute;
}
.site_hero_block .swiper-pagination-bullet{
	background-color: var(--white);
}

/* ----------------------------------------------------- PAGE HEADER ----------------------------------------------------- */

.page_header{
	min-height: 420px;
	align-items: center;
}

.page_header_image::before,
.page_header_image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.page_header_content{
	position: relative;
	width: 100%;
}

.page_header_image::before{
	content: '';
	display: block;
	background-color: #000;
	opacity: 0.333;
}

/* ----------------------------------------------------- CURSO ----------------------------------------------------- */

.menu_cursos{
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1rem 3rem;
}

.menu_cursos a{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	line-height: 1;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	transition: all 0.25s ease;
	font-weight: normal;
	z-index: 1;
	gap: 0 1em;
	border-radius: 0;
	color: inherit;
	padding: 0;
	min-height: 0;
	font-family: var(--font-head);
	letter-spacing: 0;
	font-size: 22px;
	text-transform: none;
}

.menu_cursos a:focus,
.menu_cursos a:hover{
	color: var(--amarillo) !important;
}

.menu_cursos a::before{
	content: '';
	display: block;
	width: 0.5em;
	height: 0.5em;
	border-top: 2px solid var(--amarillo);
	border-right: 2px solid var(--amarillo);
	transform: rotate(45deg) translateY(0.05em);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.menu_cursos a:hover::before{
	transform: rotate(45deg) translateY(-0.18em) translateX(0.2em);
}

.menu_cursos .current a{
	opacity: 0.5;
	pointer-events: none;
}
.menu_cursos .current a::before{
	border-color: var(--black);
}

.filtros_cursos .btn_search::after{
	display: none;
}

.filtros_cursos .btn_search{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	background-color: var(--amarillo);
	color: var(--white);
	border: 0 none;
}

.filtros_cursos .btn_search svg{
	width: 20px;
	height: 20px;
}

.filtros_cursos .btn_search:hover{
	background-color: var(--azul);
	color: var(--white);
}
.card_cursos{
	position: relative;
}
.card_cursos .card_content{
	padding: 1rem 2rem 2rem;
}

.card_cursos .card_meta{
	position: absolute;
	top: 0;
	right: 0;
}
.card_cursos .card_meta a{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-light);
	color: var(--white);
	background-color: var(--black);
	min-height: 38px;
	padding: 0.15rem 1rem;
	text-decoration: none;
	font-size: 0.8889em;
}
.card_cursos .card_meta a:hover{
	background-color: var(--amarillo);
	text-decoration: none;
}

.card_cursos .card_temas{
	gap: 1.5rem;
	font-size: 0.8889em;
}

.card_cursos .title a{
	text-decoration: none;
}

.card_cursos .card_actions .btn-link{
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card_cursos:hover .card_actions .btn-link{
	opacity: 1;
}

.card_cursos .card_image img{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card_cursos:hover .card_image img{
	transform: scale(1.2);
}

.card_cursos .card_info{
	font-size: 0.8889em;
	gap: 1.5rem;
}

.btn-submit{
	gap: 0.8rem;
}

.btn-submit::after{
	content: '';
    display: block;
    border-top: 3px solid;
    border-right: 3px solid;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
	width: 0.5em;
    height: 0.5em;
    transform: rotate(45deg);
}
.btn-submit:hover::after{
	transform: rotate(45deg) translateY(-0.1em) translateX(0.115em);
}

.block_capacitadores .block_list{
	list-style: none;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.block_capacitadores .block_list li{
	width: 33.333%;
}

.card_user{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
}
.card_user_title{
	flex: 1 0 0%;
}
.card_user_image{
	width: 52px;
	height: 52px;
}
.card_user_image img{
	border-radius: 50%;
	border: 1px solid var(--white);
}
.card_user.online .card_user_image::before{
	content: '';
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--celeste);
	border: 1px solid var(--white);
	right: 1px;
	top: 1px;
}
.card_user .card_user_title{
	position: static;
}

.accordion .accordion-item{
	margin-top: -1px;
}

.accordion .accordion-button{
	position: relative;
	border: 1px solid var(--gris);
	background-color: var(--light);
	min-height: 58px;
	padding: 0.5rem 1rem;
	width: 100%;
	text-align: left;
	padding-right: 3rem;
}

.accordion .accordion-button::after{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
	position: absolute;
	right: 1rem;
	top: 1.5rem;
	transform: rotate(-45deg);
}

.accordion .accordion-button:not(.collapsed)::after{
	top: 1.25rem;
	transform: rotate(45deg);
}

.accordion .accordion-body{
	padding: 2rem 1rem 3rem 1rem;
}

.accordion .accordion-body ol > li:not(:last-child),
.accordion .accordion-body ul > li:not(:last-child){
	margin-bottom: 0.4rem;
}

.block_video figure{
	position: relative;
	border: 1rem solid var(--verde);
	overflow: hidden;
}

.block_video .btn_play{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: left;
	line-height: 1;
	color: var(--white);
	gap: 1.5rem;
	background-color: rgba(0,0,0,0.4);
	border: 0 none;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.block_video .btn_play:hover{
	transform: scale(1.1);
}

.block_video .btn_play::after{
	content: '';
	display: block;
	width: 62px;
	height: 62px;
	background-color: var(--white);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.498 36'%3e%3cpath fill='%233C3C3C' d='M29.839,15.1,5.09.464A3.356,3.356,0,0,0,0,3.368V32.624a3.372,3.372,0,0,0,5.09,2.9L29.839,20.9A3.371,3.371,0,0,0,29.839,15.1Z' transform='translate(0 -0.002)' /%3e%3c/svg%3e");
	background-position: center;
	background-size: auto 24px;
	background-repeat: no-repeat;
}

.block_informacion .block_list{
	list-style: none;
	margin: 0;
	padding: 0;
}

.block_informacion .block_list li{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 1rem;
	min-height: 58px;
	background-color: var(--light);
	gap: 0.8rem;
}

.block_informacion .block_list li:not(:last-child){
	margin-bottom: 2px;
}

.block_share .block_list{
	list-style: none;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: wrap;
	gap: 2px;
}
.block_share .share_link{
	position: relative;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 0 none;
	color: var(--white);
}

.block_share .share_link svg{
	width: 22px;
	height: auto;
}

.share_link.copy-url{
	color: var(--black);
}

.copy-url #copy{
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    top: 0;
    left: 0;
    cursor: pointer;
    pointer-events: none;
}

.copy-url span{
    position: absolute;
    display: none;
    background-color: var(--black);
    padding: 0.4rem 0.8rem;
    color: var(--white);
    font-size: 12px;
    line-height: 1;
    top: 50%;
    left: 100%;
    opacity: 0;
    transform: translateY(-50%);
    pointer-events: none;
    width: auto;
    white-space: nowrap;
    z-index: 2;
}

.share_link.copy-url svg{
	width: 26px;
	height: auto;
}

.copy-url span::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--black);
    position: absolute;
    top: calc(50% - 4px);
    transform: rotate(45deg);
    left: -3px;
}
.copy-url:hover span {
    display: block;
    opacity: 1;
}
.copy-url:hover #copy {
    pointer-events: all;
}

.share_link.email{ background-color: var(--black); }
.share_link.facebook{ background-color: var(--facebook); }
.share_link.twitter{ background-color: var(--twitter); }
.share_link.linkedin{ background-color: var(--linkedin); }

/* ----------------------------------------------------- Capacitadores ----------------------------------------------------- */

.card_capacitador .card_image{
	max-width: 216px;
	border-radius: 50%;
	overflow: hidden;
}

.social_link .social_icon svg{
	display: block;
	width: 50%;
	height: 50%;
}

.social_link .social_icon{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--black);
	color: var(--white);
}

.social_link:hover{
	color: var(--linkedin);
}

.social_link:hover .social_icon{
	background-color: var(--linkedin);
}
.card_capacitador .tags{
	gap: 8px;
}
.card_capacitador .tags span{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem 0.8rem;
	min-height: 2rem;
	background-color: var(--turquesa);
	color: var(--white);
	font-size: 0.8889em;
	font-family: var(--font-light);
	line-height: 1.1;
}

.page-load-status{
	display: none;
}

/* ----------------------------------------------------- LAZY BLOCKS ----------------------------------------------------- */

.wp-block-lazyblock-carrusel-cards-icon .swiper-slide{
	height: auto;
}