/****ADMIN COLORS PRESETS****/
.has-azul-background-color{ background-color: var(--azul) !important; }
.has-azul-color{ color: var(--azul) !important; }
.has-morado-background-color{ background-color: var(--morado) !important; }
.has-morado-color{ color: var(--morado) !important; }
.has-morado-hover-background-color{ background-color: var(--morado-hover) !important; }
.has-morado-hover-color{ color: var(--morado-hover) !important; }
.has-teal-background-color{ background-color: var(--teal) !important; }
.has-teal-color{ color: var(--teal) !important; }
.has-gris-background-color{ background-color: var(--gris) !important; }
.has-gris-color{ color: var(--gris) !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: 90px;
}

*{
	scroll-margin-top: 90px;
}

/****************************************** PAGINATION ***************************************/

.page-numbers.next,
.page-numbers.prev{
	overflow: hidden;
	text-indent: -999px;
	font-size: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-color: transparent;
	background-color: transparent;
}

.page-numbers.next{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23353431' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.page-numbers.prev{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23353431' viewBox='0 0 16 16'%3E%3Cpath d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z'/%3E%3C/svg%3E");
}

.page-numbers.next:hover{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23035941' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
	background-color: var(--light);
}
.page-numbers.prev:hover{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23035941' viewBox='0 0 16 16'%3E%3Cpath d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z'/%3E%3C/svg%3E");
	background-color: var(--light);
}

.pagination{
	gap: .25rem;
}

.page-numbers{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	width: 2.375rem;
	height: 2.375rem;
	border: 2px solid var(--light);
	color: var(--black);
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	border-radius: 50%;
}

.page-numbers:not(.next):not(.prev):not(.current):hover{
	border-color: var(--verde);
	color: var(--verde);
	text-decoration: none;
}
.page-numbers:not(.next):not(.prev):not(.current):active{
	border-color: var(--lima);
	background-color: var(--lima);
	color: var(--black);
}
.page-numbers.current{
	background-color: var(--lima);
	color: var(--black);
	border-color: var(--lima);
}
/****************************************** WHATSAPP ***************************************/

.block_wa{
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 4;
}

.block_wa_link:hover,
.block_wa_link{
	color: var(--white);
	text-decoration: none;
}

.block_wa_link .icon{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--whatsapp);
	border-radius: 50%;
	width: 3.25rem;
	height: 3.25rem;
	transition: transform .3s ease;
	-webkit-box-shadow: 6px 6px 9px 0 rgba(0,0,0,.15);
	box-shadow: 6px 6px 9px 0 rgba(0,0,0,.15);
}
.block_wa_link .icon svg{
	display: block;
	width: 55%;
	height: auto;
}
.block_wa_link .label{
	display: block;
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%) translateX(-.5rem);
	white-space: nowrap;
	background-color: var(--whatsapp);
	padding: .7rem .75rem;
	border-radius: .5rem;
	font-size: .8889rem;
	line-height: 1;
	margin-bottom: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.block_wa_link:hover .label{
	opacity: 1;
}
.block_wa_link:hover .icon{
	transform: scale(1.1);
}
/****************************************** HEADER ***************************************/

.site_header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	z-index: 999;
}

.site_header .site_header_brand{
	transition: opacity .3s ease;
}

.home .site_header .site_header_brand{
	opacity: 0;
}
.home.scrolled .site_header .site_header_brand{
	opacity: 1;
}

.sub-menu,
.main_menu{
	list-style: none;
	margin: 0;
	padding: 0;
}

.main_menu{
	align-items: center;
	gap: 2.5rem;
}

.main_menu >li:not(.cta) >a{
	display: block;
	position: relative;
	color: var(--azul);
	text-decoration: none;
	padding: .35rem 0;
}

.main_menu >li:not(.cta) >a:hover{
	color: var(--morado);
}

.sub-menu li.current-menu-item > a,
.main_menu >li:not(.cta).current-menu-item > a{
	font-family: var(--font-smart-bold);
	color: var(--morado);
}

.main_menu >li:not(.cta):not(.menu-item-has-children)> a::after{
	content: '';
	display: block;
	position: absolute;
	bottom: .25rem;
	width: 0;
	height: 2px;
	background-color: var(--morado);
	transition: all .3s ease;
}

.main_menu >li:not(.cta):not(.menu-item-has-children)> a:hover::after{
	width: 100%;
}

.main_menu .menu-item-has-children{
	position: relative;
}

.main_menu .sub-menu{
	display: none;
	position: absolute;
	background-color: var(--white);
	border-top: 3px solid var(--morado);
	top: 100%;
	right: 0;
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
	padding: .5rem 0;
}

.menu-item-has-children.active > .sub-menu{
	display: block;
}

.main_menu .sub-menu a{
	display: block;
	white-space: nowrap;
	padding: .5rem 1rem;
	color: var(--azul);
}
.main_menu .sub-menu a:hover{
	color: var(--morado);
}
/****************************************** FOOTER ***************************************/

.site_footer a{
	color: inherit;
}

.rrss_links,
.footer_menu{
	list-style: none;
	margin: 0;
	padding: 0;
}
.rrss_links{
	align-items: center;
	gap: 1rem;
}
.rrss_link svg{
	width: 1.5rem;
	height: auto;
}

.rrss_link:hover{
	opacity: .4;
}
/****************************************** HERO ***************************************/

.block_hero .block_image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.block_hero .block_content{
	position: relative;
	z-index: 2;
	min-height:32.292vw;
}

/****************************************** SLIDER ***************************************/

.block_slide .block_image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.block_slide .block_content{
	min-height: calc(100vh - 90px);
	position: relative;
	z-index: 2;
}

.hero-pagination{
	bottom: 1.5rem !important;
}

.swiper-pagination-bullet{
	background-color: var(--white);
	opacity: 1;
	border: 1px solid transparent;
	width: .5rem;
	height: .5rem;
}
.swiper-pagination-bullet-active{
	background-color: var(--white);
	border-color: var(--morado);
	transform: scale(1.7);
}

/****************************************** POWERCARD ***************************************/

.block_powercard .block_image{
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	width: 50%;
	height: 100%;
}

.block_powercard .block_image >img{
	max-height: calc(100vh - 90px);
	position: sticky;
	top: 90px;
}

.block_powercard.rtl .block_image{
	left: 0;
	right: auto;
}

.block_powercard .block_content{
	min-height: calc(100vh - 90px);
}
.block_powercard.rtl .block_content .row{
	flex-direction: row-reverse;
}

.block_powercard .float_image{
	position: absolute;
	width: calc(var(--col) * 2 - 30px);
	height: calc(100vh - 90px);
	top: 0;
	left: 0;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}
.block_powercard.rtl .float_image{
	left: auto;
	right: 0;
	transform: translateX(50%);
}

/****************************************** BLOCK BANNER ***************************************/

.block_banner .block_content{
	position: relative;
	z-index: 2;
	min-height: 26vw;
}
.block_banner .block_image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

.block_header .block_image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/****************************************** CARDS ***************************************/

.card_actividad .card_image img{
	transition: all .3s ease;
}
.card_actividad:hover .card_image img{
	transform: scale(1.1);
}
/****************************************** CONTACTO ***************************************/

.block_contacto{
	position: relative;
}

.block_contacto::after,
.block_contacto::before{
	content: '';
	display: block;
	position: absolute;
	width: calc(var(--col) * 1.7 - 30px);
	height: 100%;
	top: 0;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}

.block_contacto::after{
	left: 0;
	transform: translatex(-50%);
	background-position: bottom 2.5rem left;
	background-image: url("../../images/contacto_flecha.png");
}
.block_contacto::before{
	right: 0;
	transform: translatex(50%);
	background-position: top right;
	background-image: url("../../images/contacto_lapiz.png");
}

/****************************************** ACTIVIDAD ***************************************/

.form_embed{
	display: block;
	border: 0 none;
	width: 100%;
	height: calc(100vh - 5rem);
}

.breadcrumbs{
	font-size: .8889rem;
	gap: .5rem;
}
.breadcrumbs a{
	color: var(--azul);
}

.block_share{ font-size: .8889rem; gap: .5rem; }
.block_share .share_link{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: var(--black);
	text-decoration: none;
}

.block_share .share_link svg{
	width: 1rem;
	height: 1rem;
}
.block_share .share_link:hover{
	color: var(--azul);
	text-decoration: none;
}
.card_miembro .card_image .card_overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	color: var(--white);
	font-size: .8889rem;
	opacity: 0;
	transition: all ease .3s;
}
.card_miembro .card_content a{
	color: inherit;
}

.card_miembro:hover{
	color: var(--morado);
}
.card_miembro:hover .card_image .card_overlay{
	opacity: 1;
}

/****************************************** RESPONSIVE ***************************************/

@media only screen and (max-width: 1679px){
}

@media only screen and (max-width: 1399px){
}

@media only screen and (max-width: 1199px){
	
	.site_header_nav{
		display: none;
		position: fixed;
		top: 90px;
		left: 0;
		width: 100%;
		height: calc(100vh - 90px);
		background-color: var(--white);
		border-top: 1px solid var(--light);
		padding: 1rem;
		overflow: hidden;
		overflow-y: auto;
	}
	
	.site_header.show .site_header_nav{
		display: block;
	}
	
	.main_menu{
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}
	
	.main_menu .cta{
		margin-top: 1rem;
	}
	
	.main_menu >li:not(.cta) >a{
		padding: .5rem 0;
	}
	
	.main_menu > li:not(:last-child){
		border-bottom: 1px solid rgba(0,0,0,.1);
	}
	
	.menu-item-has-children{
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23072779' stroke='%23072779' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
		background-position: right .25rem top .75rem;
		background-repeat: no-repeat;
		background-size: .9rem auto;
	}
	
	.menu-item-has-children > a{
		width: calc(100% - 3rem);
	}
	
	.main_menu .sub-menu{
		position: static;
		box-shadow: none;
	}
	.main_menu .sub-menu a{
		padding: .5rem 0;
		white-space: normal;
	}
	
	.block_slide .block_image{
		position: static;
	}
	
	.block_slide .block_content{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		min-height: 0;
	}
	
	.block_powercard .block_image{
		position: static;
		width: 100%;
	}
	.block_powercard .block_content{
		min-height: 0;
	}
	.block_powercard .float_image{
		left: 50%;
		right: auto;
		height: auto;
		top: 100%;
		transform: translateX(-50%) translateY(-50%);
	}
	
	.block_powercard.rtl .float_image{
		right: 50%;
		left: auto;
		transform: translateX(50%) translateY(-50%);
	}
	
}

@media only screen and (max-width: 991px){
	
	.block_powercard .float_image{
		width: calc(var(--col) * 3 - 30px);
	}
}

@media only screen and (max-width: 767px){
	.block_powercard .float_image{
		width: calc(var(--col) * 4 - 30px);
	}
	
	.block_contacto::after,
	.block_contacto::before{
		display: none;
	}
	
}

@media only screen and (max-width: 575px){
}