/**************/

:root{
	--colorPrimary: #3bf5ee;
	--colorSecondary: #303EA0;

	--colorVerde: #00aa55;
	--colorAmarillo: #F2D45C;
	--colorRojo: #EA4949;

	--colorBack: #2E3030;
	--colorWhite: #E8FDFD;

	--colorTitle: #384748;
	--colorSubtitle: #596d69;
	--colorText: #5e797d;
	--colorDetails: #909a99;
	--colorBorder: #e4eaed;

	--sizeDetails: 14px;
	--sizeText: 16px;
	--sizeSubtitle: 18px;
	--sizeTitle: 28px;
	--sizeBigtitle: 58px;

	--lineheightText: 1.6;
	--lineheightTitle: 1.4;
	--lineheightNone: 1;

	--itemShadow: 0px 18px 38px rgba(42,20,30,0.06);
}
h1, h2, h3, h4, h5{
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}
body{
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	background-color: #fff;
}
strong{
	font-weight: 500;
}

h1{font-size: 38px;}
h2{font-size: 28px;}
h3{font-size: 24px;}
h4{font-size: 20px;}
h5{font-size: 14px;}

.bg_white{background-color: #fff;}

.padding_80{padding: 80px 0;}
.padding_90{padding: 90px 0;}
.padding_100{padding: 100px 0;}
.padding_120{padding: 120px 0;}

.mb_90{margin-bottom: 90px;}
.mb_80{margin-bottom: 60px;}
.mb_60{margin-bottom: 60px;}
.mb_40{margin-bottom: 40px;}
.mb_30{margin-bottom: 30px;}
.mb_20{margin-bottom: 20px;}

.mt_20{margin-top: 20px;}
.mt_40{margin-top: 40px;}
.mt_60{margin-top: 60px;}


.txtcenter{text-align: center;}

.ue_title{
	position: relative;
	margin-bottom: 40px;
}
.ue_title.uet_i h2{
	color: #fff;
}
.ue_title h5{
	color: var(--colorSecondary);
	margin: 0 0 6px;
	position: relative;
	font-size: 17px;
}

}
/*.ue_title h5:before{
	content: "";
	width: 120px;
	height: 8px;
	position: absolute;
	bottom: -1px;
	left: -1px;
	background-color: var(--colorSecondary);
	z-index: -1;
	opacity: 0.6
}*/
.ue_title h2{
	color: var(--colorTitle);
	margin: 0;
}

.ue_text{
	color: var(--colorText);
	margin-bottom: 40px;
}

.ue_footer a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	height: 48px;
	background-color: var(--colorPrimary);
	color: var(--colorSecondary);
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0px 2px 8px rgba(0,0,0,0.06);
	transition: all 300ms;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.ue_footer a:before{
	content: "";
	width: 240px;
	height: 240px;
	position: absolute;
	background-color: var(--colorSecondary);
	border-radius: 50%;
	top: 20px;
	right: 220px;
	z-index: -1;
	transition: all 300ms;
}
.ue_footer a:hover{
	box-shadow: 0px 6px 18px rgba(0,0,0,0.14);
	/*transform: translateX(4px);*/
	transform: scale(1.02);
	color: #fff;
}
.ue_footer a:hover:before{
	width: 320px;
	height: 320px;
	top: -80px;
	right: -40px;
}



.ue_footer.uef_inv a{
	background-color: var(--colorSecondary);
	color: #fff;
}


ul.ue_list{
	position: relative;
	margin: 0 0 40px;
	padding: 0;
	padding-left: 40px;
	list-style: none;
}
ul.ue_list li{
	margin-bottom: 4px;
}
ul.ue_list li a{
	font-size: 16px;
	font-weight: 700;
	color: var(--colorSubtitle);
	text-decoration: none;
	transition: all 300ms;
}
ul.ue_list li a:hover{
	color: var(--colorSecondary);
	padding-left: 4px;
}




/* whatsapp button */
.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:20px;
  right:100px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:13px;
}


/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: var(--colorSecondary);
  color: #fff;
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}



/**************************/
.mydrop > a.mdrop_ac{
	position: relative;
	padding-right: 20px !important;
}

.mydrop .mdrop_cont{
	position: absolute;
    padding-top: 32px;
    width: max-content;
    min-width: 240px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    /*transform: translateY(-10px);*/
    z-index: 999;
    transition: all 100ms;
}
.mydrop .mdrop_cont ul{
	width: 100%;
	height: auto;
	padding: 10px 0px;
	background-color: var(--colorPrimary);
	box-shadow: 2px 4px 8px rgba(0,0,0,0.12);
	list-style: none;
	position: relative;
	border-radius: 2px;
}

.mydrop .mdrop_cont > ul.mdrop_list > li > a{
	color: var(--colorTitle);
	font-weight: 1000;
    display: block;
    font-size: 14px;
    padding: 8px 40px 8px 20px !important;
    transition: all 300ms;
    text-decoration: none;
}
.mydrop .mdrop_cont > ul.mdrop_list > li > a:hover{
	/*transform: translateX(4px);*/
	color: var(--colorSecondary);
}
.mydrop:hover .mdrop_cont{
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.md_nivel{position: relative;}
.mdn_box{
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 240px;
	visibility: hidden;
	opacity: 0;
}
.mdn_box ul{
	list-style: none;
	padding: 5px 0px !important;
	margin: 0;
}
.mdn_box ul a{
	display: block;
	font-size: 14px;
	font-weight: 400;
	padding: 8px 30px !important;
	color: var(--colorTitle);
	text-decoration: none;
	transition: all 300ms;
	position: relative;
}
.mdn_box ul a:hover{
	color: var(--colorPrimary);
}
.md_nivel a i{
    position: absolute;
    right: 15px;
    top: 16px;
    font-size: 12px;
    color: var(--colorTitle);
}
.md_nivel:hover .mdn_box{
	visibility: visible;
	opacity: 1;
}


/***/
.navbar_section_paginas{
	position: relative;
	width: 100%;
	/*box-shadow: 0 4px 18px rgba(0,0,0,0.08);*/
	z-index: 99;
}
.navbar_top_paginas{
	position: relative;
	width: 100%;
	height: 0px;
	z-index: 2;
	background-color: var(--colorPrimary);
}




/***/
.navbar_section{
	position: absolute;
	top: 0;
	width: 100%;
	/*box-shadow: 0 4px 18px rgba(0,0,0,0.08);*/
	z-index: 99;
}
.navbar_top{
	position: relative;
	width: 100%;
	height: 42px;
	z-index: 2;
	/*background-color: var(--colorPrimary);*/
	background-color: transparent;
	border-bottom: 1px solid rgba(255,255,255,0.4);
}

.navbar_section_paginas{
	position: relative;
	width: 100%;
	/*box-shadow: 0 4px 18px rgba(0,0,0,0.08);*/
	z-index: 99;
}
.navbar_top_paginas{
	position: relative;
	width: 100%;
	height: 0px;
	z-index: 2;
	background-color: var(--colorPrimary);
}

.nt_container{
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	height: 42px;
}
.nt_social{
	display: flex;
	margin-left: auto;
}
.nt_item{
	display: inline-flex;
	max-width: 42px;
	height: 42px;
	align-items: center;
	padding: 6px 15px;
	overflow: hidden;
	transition: all 200ms;
	text-decoration: none;
	opacity: 0.8;
	color: #fff;
}
.nt_social a:not(.nt_item){
	color: #fff;
	height: 42px;
	display: inline-flex;
	align-items: center;
	opacity: 0.8;
	font-size: 14px;
	margin-left: 20px;
	text-decoration: none;
	transition: all 300ms;
}
.nt_social a:not(.nt_item):hover{
	color: var(--colorSecondary);
	opacity: 1;
}
.nt_social a span{
	margin-right: 5px;
}
.nt_item i{
	margin-right: 8px;
}
.nt_item .nti_name{
	opacity: 0;
	transition: all 200ms;
	font-size: 12px;
}
.nt_item:hover{
	max-width: 200px;
	text-decoration: none;
	color: #fff;
	opacity: 1;
}
.nt_item:hover .nti_name{
	opacity: 1;
	color: #fff;
}
.nt_item.nt_item_fb:hover{
	background-color: #336ADB;
}
.nt_item.nt_item_tt:hover{
	background-color: #43C5FF;
}
.nt_item.nt_item_ig:hover{
	background-color: #FF45AB;
}
.nt_item.nt_item_yt:hover{
	background-color: green;
}


.nt_contacts{
	position: relative;
	width: auto;
	display: inline-flex;
}
.nt_contacts .ntc_item{
	font-size: calc(8px + .5vw);
	color: #fff;
	opacity: 0.8;
	margin-right: 30px;
	display: inline-flex;
	align-items: center;
}
.nt_contacts .ntc_item i{margin-right: 8px;font-size: 14px;}

.nt_item2{
	display: inline-flex;
	max-width: 42px;
	height: 42px;
	align-items: center;
	padding: 6px 15px;
	overflow: hidden;
	transition: all 200ms;
	text-decoration: none;
	opacity: 0.8;
	color: #fff;
}

.nt_item2 i{
	margin-right: 8px;
}
.nt_item2 .nti_name{
	opacity: 0;
	transition: all 200ms;
	font-size: 12px;
	font-weight: 800;
}
.nt_item2:hover{
	max-width: 300px;
	text-decoration: none;
	color: black;
	opacity: 1;
}
.nt_item2:hover .nti_name{
	opacity: 1;
	color: black;
}
.nt_item2.nt_item_ct:hover{
	background-color: var(--colorPrimary);
}

.navbar_paginas{
	position: relative;
	z-index: 1;
	background-color: #fff;
}
.navbar_paginas .navbar{
	position: relative;
	width: 100%;
	height: 94px;
}
.navbar_paginas .menu_navbar{
	height: 100%;
}
.navbar_paginas .menu_navbar .contact_btn{
	position: relative;
	width: 180px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	/*color: var(--colorTitle);*/
	font-size: 14px;
	font-weight: 600;
	background-color: var(--colorPrimary);
	/*background-color: #fff;*/
	/*background: rgba(255,255,255,0.2);*/
	box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
	text-decoration: none;
	border-radius: 24px;
	transition: all 200ms;
}
.navbar_paginas .menu_navbar .contact_btn:hover{
	background-color: var(--colorPrimary);
	color: #fff;
}
.navbar_paginas .menu_navbar .contact_btn i{
	font-size: 20px;
	margin-right: 10px;
}
.navbar_paginas .menu_navbar .nav-link{
	font-size: 14px;
	font-weight: 500;
	color: var(--colorTitle);
	/*color: #fff;*/
	padding: 10px 15px;
	transition: all 300ms;
}
.navbar_paginas .menu_navbar .nav-link:hover{
	color: var(--colorPrimary);
}
.navbar_paginas .menu_navbar .nav-item:last-child{
	margin-right: 15px;
}

.navbar_paginas a.navbar-brand img{
	height: 84px;
}

/****************************************/

.navbar_principal{
	position: relative;
	z-index: 1;
	/*background-color: #fff;*/
	background-color: transparent;
}
.navbar_principal .navbar{
	position: relative;
	width: 100%;
	height: 94px;
}
.navbar_principal .menu_navbar{
	height: 100%;
}
.navbar_principal .menu_navbar .contact_btn{
	position: relative;
	width: 180px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/*color: #fff;*/
	color: var(--colorTitle);
	font-size: 14px;
	font-weight: 600;
	background-color: var(--colorPrimary);
	/*background-color: #fff;*/
	/*box-shadow: 0px 2px 8px rgba(0,0,0,0.08);*/
	text-decoration: none;
	border-radius: 12px;
	transition: all 200ms;
}
.navbar_principal .menu_navbar .contact_btn:hover{
	background-color: var(--colorPrimary);
	/*color: #fff;*/
}
.navbar_principal .menu_navbar .contact_btn i{
	font-size: 20px;
	margin-right: 10px;
}
.navbar_principal .menu_navbar .nav-link{
	font-size: 14px;
	font-weight: 600;
	/*color: var(--colorTitle);*/
	color: #fff;
	padding: 10px 15px;
	transition: all 300ms;
}
.navbar_principal .menu_navbar .nav-link:hover{
	color: var(--colorPrimary);
}
.navbar_principal .menu_navbar .nav-item:last-child{
	margin-right: 15px;
}

.navbar_principal a.navbar-brand img{
	height: 120px;
    margin-top: 10vw;
}






/*****************************/
.bx-wrapper .bx-pager{
	padding-bottom: 10px;
}
.bx-wrapper .bx-pager.bx-default-pager a{
	height: 6px !important;
	width: 6px !important;
	border-radius: 50% !important;
	margin: 0 10px !important;
	position: relative;
}
.bx-wrapper .bx-pager.bx-default-pager a:before{
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	top: -7px;
    left: -7px;
	border: 1px solid #fff;
	opacity: 0;
	transform: scale(0.8);
	transition: all 300ms;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover:before, .bx-wrapper .bx-pager.bx-default-pager a.active:before, .bx-wrapper .bx-pager.bx-default-pager a:focus:before{
	opacity: 1;
	transform: scale(1);
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus{
	background: #fff !important;
}


.bxs_item,.slider_section{height: 780px;}

.slider_section{
	position: relative;
	width: 100%;
}
.slider_section .ss_content{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.slider_section .ss_content:before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background-color: rgba(0,0,0,0.3);*/
	background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
	z-index: -1;
	transition: all 300ms;
}
/*.slider_section .bxs_item:hover .ss_content:before{
	background-color: rgba(0,0,0,0.5);
}*/

.bxs_item{
	position: relative;
	width: 100%;
}
.ssc_box{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.ssc_info{color: #Fff;}
.ssc_info h5{
	color: var(--colorPrimary);
}

/*.ssc_info a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--colorPrimary);
	min-width: 240px;
	height: 48px;
	color: #fff;
	margin-top: 20px;
	border-radius: 4px;
	text-decoration: none;
}
*/









/**********************Index***************************/
/******************************************************/


/****************Instittucion section*****************/
.institucion_section{
	position: relative;
	background-color: var(--colorPrimary)
}
.institucion_section .is_img img{
	width: 100%;
}



/*******Numeros Section****************************/
.numeros_section{
	position: relative;
	/*background-color: var(--colorPrimary);*/
}
.num_content{position: relative;padding-top: 20px;}

.num_content ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
.num_content ul li{
	width: 50%;
	flex: 0 0 50%;
	text-align: center;
	margin-bottom: 20px;
	/*color: #fff;*/
}
.num_content ul li h1{
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: var(--colorTitle);
}
.num_content ul li h1:before{
	content: "";
	width: 34px;
	height: 4px;
	border-radius: 2px;
	background-color: var(--colorPrimary);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.num_content ul li p{color: var(--colorText)}
.num_content ul li h1 strong{
	font-weight: 700;
}
.numeros_section .num_img img{
	width: 100%;
	height: auto;
}

/********Oferta section********************************/
.oferta_section{
	position: relative;
	background-color: var(--colorWhite);
}
.oferta_section .os_img img{
	width: 100%;
}
.os_content{
	margin-top: 40px;
}

#clients {
	background:#FFF;
	text-align:center;
}

.clients-carousel .item figure {
	margin: 10px;
	width: 150px;
	margin: 0 auto;
}

.clients-carousel .item figure img {
	display: block;
	margin: 0 auto;
	opacity:0.5;
}

.clients-carousel .item figure img:hover {
	opacity:1;
}


/**********Institucion page***********/
.institucion_page{position: relative;}
.institucion_page .ip_menu{
	position: relative;
}
.ipm_item{
	position: relative;
	margin-bottom: 40px;
}
.ipm_title{
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--colorBorder);
}
.ipm_title:before{
	content: "";
	width: 40px;
	height: 4px;
	background-color: var(--colorPrimary);
	position: absolute;
	left: 0;
	bottom: -2px;
}

.ipm_category ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.ipm_category ul li{margin-bottom: 8px;}
.ipm_category ul li a{
	color: var(--colorText);
	text-decoration: none;
	padding: 4px 15px;
	border-radius: 8px;
	display: block;
}
.ipm_category ul li.active a{
	color: var(--colorPrimary);
	background-color: var(--colorWhite);
	font-weight: 600;
}


.ip_content{
	position: relative;
	padding-left: 40px;
	margin-bottom: 40px;
}
.ip_content .ipc_title{
	margin-bottom: 20px;
}
.ip_content .ipc_title h1{
	margin: 0;
	color: var(--colorTitle);
}
.ipc_head img{
	width: 100%;
	height: auto;
}
.ipc_head{margin-bottom: 20px;}

.ipc_text{
	position: relative;
	color: var(--colorText);
	text-align: justify;
}

.ipc_text strong{
	font-weight: 1000;
}
.ipc_image{
	position: absolute;
	width: 30%;
}

.nsi_details{
	display: flex;
	align-items: center;
}
.nsi_details img{
	width: 28px;
	height: 28px;
	object-fit: cover;
	border-radius: 50%;
	margin-right: 10px;
}
.nsi_details, .vsi_details{
	position: relative;
	/*margin-bottom: 20px;*/
	padding-bottom: 20px;
}
.nsi_details p, .vsi_details p{
	margin: 0;
	color: var(--colorDetails);
	font-size: 14px;
}
.nsi_details p a, .vsi_details p a{
	color: var(--colorSubtitle);
	font-weight: 700;
	text-decoration: none;
}

/***********************Personas page****/
.personas_page{position: relative;}
.personap_box{
	position: relative;
	padding-left: 30px;
}
.ppb_item{
	position: relative;
	margin-bottom: 20px;
	border: 1px solid var(--border);
}
.ppb_head{
	width: 100%;
	height: 200px;
	position: relative;
	overflow: hidden;
}
.ppb_head .ppb_fade{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--bg);
	opacity: 0.1;
	transition: all 200ms;
}
.ppb_head img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 200ms;
}
.ppb_text{
	position: relative;
	padding: 20px 10px;
	background-color: #fff;
}
.ppb_text h4{
	font-size: 14px;
	font-weight: 700;
	color: var(--titulo);
	margin: 0;
}
.ppb_text a{
	text-decoration: none;
	color: black;
	font-style: sans-serif;
}
.ppb_item:hover .ppb_fade{
	opacity: 0.6;
}
.ppb_item:hover img{
	transform: scale(1.04);
}

.singlepersona_page{position: relative;}
.sp_content .spp_head{position: relative;}
.sp_content .spp_head img{
	width: 100%;
	position: relative;
}
/*******************************Pages*******
********************************************/
.ruta_sec{
	position: relative;
	background-color: var(--colorWhite);
	padding: 40px 0;
	background-position: center;
	background-size: cover;
	/*border-bottom: 1px solid var(--colorBorder);*/
}
.ruta_sec ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	color: var(--colorDetails);
}
.ruta_sec ul li{
	margin-right: 10px;
}
.ruta_sec ul li a{
	color: var(--colorDetails);
	text-decoration: none;
}


/*******Noticias section*******************************/


.noticias_section{
	position: relative;
	/*background-color: var(--colorWhite);*/
}


.noticia_item{
	position: relative;
	/*border: 1px solid var(--colorBorder);*/
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0px 12px 28px rgba(0,0,0,0.06);
	margin-bottom: 20px;
	transition: all 300ms;
	background-color: #fff;
}
.noticia_item:hover{
	box-shadow: 0px 12px 24px rgba(0,0,0,0.06);
}
.noticia_item .ni_head{
	position: relative;
	width: 100%;
	height: 240px;
}
.noticia_item .ni_head img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ni_box{
	position: relative;
	padding: 20px 30px;
}
.ni_title{
	margin-bottom: 10px;
	height: 74px;
	overflow: hidden;
}
.ni_title a{
	color: var(--colorTitle);
	text-decoration: none;
	transition: all 300ms;
}
.ni_title a:hover{
	color: var(--colorTitle);
	text-decoration: none;
	color: var(--colorSecondary);
}
.ni_content{
	color: var(--colorText);
	font-size: 16px;
	height: 80px;
	overflow: hidden;
	position: relative;
}
.ni_content:before{
	content: "";
	width: 100%;
	height: 18px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}

.ni_footer{
	position: relative;
	padding: 10px 30px;
	/*border-top: 1px solid var(--colorBorder);*/
}
.ni_details{
	display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.ni_details img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}
.ni_details p{
	margin: 0;
	font-size: 14px;
}
.ni_details p a{
	color: var(--colorTitle);
	font-weight: 600;
}
.ni_details p span{
	color: var(--colorDetails);
	font-size: 12px;
}





/*************Multimedia section******************/
.multimedia_section{
	position: relative;
	background-color: var(--colorWhite);
}
.ms_content{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.ms_content .ms_item{
	width: 100%;
	height: 180px;
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	flex: 0 0 25%;
	width: 25%;	
	padding: 0 5px;
	margin-bottom: 20px;
}
.ms_content .ms_item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ms_item .ms_fade{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ms_item .ms_fade:before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to top, rgba(42,68,79,0.4), rgba(42,68,79,0.1));
	opacity: 0.4;
	transition: all 300ms ease-in-out;
}
.ms_item .ms_fade a{
	width: 42px;
	height: 42px;
	position: relative;
	background-color: var(--colorSecondary);
	color: var(--colorPrimary);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transform:  translateY(10px);
	opacity: 0;
	transition: all 300ms ease-in-out;
	border-radius: 4px;
}
.ms_item:hover .ms_fade a{
	transform: translateX(0px);
	opacity: 1;
}
.ms_item:hover .ms_fade:before{
	opacity: 1;
}

/************Noticias***********/
.singlenoticia_page{
	position: relative;
}
.snp_content{
	position: relative;
	/*box-shadow: 0px 2px 16px rgba(0,0,0,0.06);*/
	background-color: #fff;
	border-radius: 12px;
}
.snp_content .snp_image{
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-bottom: 20px;
	/*border-radius: 12px 12px 0px 0px;*/
}
.snp_content .snp_image img{
	width: 100%;
	height: auto;
}
.snp_content .snp_image iframe{
	width: 100%;
	height: 420px;
}


.snp_title{
	position: relative;
	margin-bottom: 20px;
}
.snp_title h2{
	/*font-size: 34px;*/
	margin: 0;
	font-weight: 700;
	color: var(--colorTitle);
}

.snp_box{
	position: relative;
	background-color: #fff;
	/*padding: 0 30px;*/
	margin-bottom: 40px;
}
.snp_head{
	/*padding: 0 30px;*/
	margin-bottom: 20px;
	background-color: #fff;
}

.snp_text{
	font-size: 16px;
	font-weight: 400;
	color: var(--colorText);
	line-height: 1.6;
	/*padding-bottom: 40px;*/
}
.snp_text h1 ,.snp_text h2,.snp_text h3,.snp_text h4,.snp_text h5{
	color: var(--colorSubtitle);
}
.snp_text ul li{
	padding-left: 15px;
	margin-bottom: 5px;
}
.snp_text blockquote{
	padding-left: 30px;
	position: relative;
	font-style: italic;
	margin-top: 20px;
	margin-bottom: 40px;
	color: var(--colorDetails);
}
.snp_text blockquote:before{
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--colorPrimary);
}
.snp_text strong{font-weight: 600;color: var(--colorSubtitle)}



.snp_videos{
	position: relative;
}
.snpv_item{
	position: relative;
	margin-bottom: 20px;
}
.snpv_item h5{
	font-size: 18px;
	font-weight: 700;
	color: var(--colorTitle);
	margin: 0 0 10px 0;
}
.snpv_item iframe{
	width: 100%;
	height: 420px;
}
.snpv_title{
	padding: 0 30px;
}

.snp_gallery .snpg_item{
	position: relative;
	width: 100%;
	height: 320px;
	cursor: pointer;
	margin-bottom: 30px;
	overflow: hidden;
}

.snp_gallery .snpg_item img{
	width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 300ms;
    /*top: 50%;
    transform: translateY(-10%);*/
}
.snp_gallery .snpg_item:hover{box-shadow: 0 4px 12px rgba(0,0,0,0.08);}
.snp_gallery .snpg_item:hover img{
	transform: scale(1.04);
}




.snp_docs{
	position: relative;
	width: 100%;
}
.snp_docs h5{
	font-size: 18px;
	font-weight: 700;
	color: var(--colorTitle);
	margin: 0 0 10px 0;
}
.snp_docs ul{
	padding: 0 0 0 30px;
	margin: 0;
	list-style: none;
}
.snp_docs ul li{margin-bottom: 10px;}
.snp_docs ul a{
	font-size: 16px;
	color: var(--colorDetails);
	text-decoration: none;
}
.snp_docs ul a i{
	color: var(--colorAmarillo);
	font-size: 18px;
	margin-right: 6px;
}

.snp_docs ul a:hover{
	color: var(--colorTitle);
}

/*Galeria page*/
/*************************************/
.galeria_page{position: relative;}
.galeria_page .gp_item{
	position: relative;
	width: 100%;
	margin-bottom: 40px;
}
.galeria_page .gp_item .gp_img{
	width: 100%;
	height: 280px;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 10px;
}
.galeria_page .gp_item .gp_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.galeria_page .gp_item > a{
	font-size: 16px;
	font-weight: 600;
	color: var(--colorTitle);
	text-decoration: none;
}

/*CONTACTOS*/

.contactos_page{
	position: relative;
}
.cpc_form{
	position: relative;
	padding: 30px 40px;
	background-color: #fff;
	box-shadow: 0px 8px 24px rgba(0,0,0,0.1);
}
.cpc_head{
	position: relative;
	margin-bottom: 20px;
}
.cpc_form form input{
	width: 100%;
	height: 48px;
	border: 1px solid var(--colorBorder);
	border-radius: 8px;
	padding: 0 15px;
}
.cpc_form form label{
	margin: 0;
	font-weight: 600;
	font-size: 12px;
}
.cpc_form form textarea{
	width: 100%;
	border: 1px solid var(--colorBorder);
	border-radius: 8px;
	padding: 10px 15px;
}
.cpc_form form button{
	position: relative;
    width: 180px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--colorWhite);
    font-size: 14px;
    font-weight: 600;
    background-color: var(--colorPrimary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 200ms;
    border: none;
}


.cp_info{margin-bottom: 40px;}
.cpi_item{
	position: relative;
	margin-bottom: 60px;
}
.cpii_content i{
	color: var(--colorPrimary);
	width: 28px;
}




/*********************Footer section*********************/
.footer{
	position: relative;
	background-color: var(--colorPrimary);
}


.fs_info{
	position: relative;
	/*color: #fff;*/
	color: var(--colorTitle);
}
.fs_info img{
	width: 240px;
	margin-bottom: 30px;
}
.fsi_text{
	margin-bottom: 30px;
}
ul.fs_social{
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.fs_social li{
	margin-right: 20px;
}
ul.fs_social li a{
	font-size: 18px;
	color: var(--colorTitle);
	text-decoration: none;
	transition: all 300ms;
}
ul.fs_social li a:hover{
	color: var(--colorSecondary);
}


.fs_contactos{
	position: relative;
	/*color: #fff;*/
	color: var(--colorTitle);
}
.fs_contactos h3{
	margin-bottom: 30px;
}
.fs_contactos ul{
	list-style: none;
	padding: 0 0 0 0px;
	margin: 0;
}
.fs_contactos ul li{
	margin-bottom: 10px;
}
.fs_contactos ul li i{width: 24px;}


.fs_links{
	position: relative;
	/*color: #fff;*/
	color: var(--colorTitle);
}
.fs_links h3{
	margin-bottom: 30px;
}
.fs_links ul{
	list-style: none;
	padding: 0 0 0 10px;
	margin: 0;
}
.fs_links ul li{
	margin-bottom: 10px;
}
.fs_links ul li a{
	text-decoration: none;
	/*color: #fff;*/
	color: var(--colorTitle);
}




.fs_details{
	position: relative;
	padding: 15px 0;
}
.fs_details .fsd_left{
	text-align: left;
}
.fs_details .fsd_right{
	text-align: right;
}
.fs_details p{
	margin: 0;
	font-size: 14px;
	/*color: #fff;*/
	color: var(--colorTitle);
}
.fs_details p span{
	opacity: 0.8;
}
.fs_details p a{
	color: var(--colorSecondary);
}





/**RESPONSIVE******/
@media (max-width: 1200px){

}

@media (max-width: 992px){

}

@media (max-width: 767px){

}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
    max-height: 200px;
    vertical-align: middle;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    display: flex;
   align-items: center;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    display: flex;
   align-items: center;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.customer-logos{
	padding-top: 30px;
	padding-bottom: 30px;
}
.text_slider{
	text-align: center;
	padding-top: 10px;
}