/**************/

:root{
	--colorPrimary: #0A328C;
	--colorSecondary: #475772;

	--colorVerde: #00aa55;
	--colorAmarillo: #F2D45C;
	--colorRojo: #EA4949;

	--colorBack: #2E3030;
	--colorWhite: #f2f7f9;

	--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: 'Merriweather', serif;
    font-weight: 700;
}
body{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	background-color: #fff;
}
strong{
	font-weight: 600;
}

h1{font-size: 40px;}
h2{font-size: 26px;}
h3{font-size: 28px;}
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;}
.padding_160{padding: 160px 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;
    padding-bottom: 28px;
}
.ue_title.uet_i h2{
	color: #fff;
}

.ue_title.uet_i h5{
	color: #fff;
}

.ue_title h5{
	color: #5A77A0;
	margin: 0 0 6px;
	position: relative;
}

.ue_title.uet_i:before,
.ue_title.uet_i:after{
	background: #fff;
}
.ue_title.txtcenter:before,
.ue_title.txtcenter:after{
	display: none;
}
.ue_title p{
	color: var(--colorSecondary);
	margin: 0 0 6px;
	position: relative;
	font-weight: 700;
}
.ue_title:before{
	content: "";
	width: 8px;
	height: 8px;
	position: absolute;
	bottom: 0;
	left: 2px;
	background: var(--colorPrimary);
}
.ue_title:after{
	content: "";
	width: 8px;
	height: 8px;
	position: absolute;
	bottom: 0;
	left: 20px;
	background: var(--colorPrimary);
}
/*.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(--colorPrimary);
	border-radius: 0px;
	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;
	border: 2px solid var(--colorPrimary);
	overflow: hidden;
}
.ue_footer a i{
	position: absolute;
	top: 14px;
	right: 16px;
	opacity: 0;
	transition: all 300ms;
	color: #fff;
}
.ue_footer a:before{
	content: "";
	width: 240px;
	height: 100px;
	position: absolute;
	background-color: var(--colorPrimary);
	/*border-radius: 50%;*/
	top: -20px;
	right: 240px;
	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 i{
	opacity: 1;
}
.ue_footer a:hover:before{
	width: 320px;
	height: 100px;
	top: -20px;
	right: -40px;
}


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;
}


/*******************************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;
}








/* 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: 26px;
    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: 0px;
}

.mydrop .mdrop_cont > ul.mdrop_list > li > a{
	/*color: var(--colorTitle);*/
	color: #fff;
    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(--colorPrimary);*/
}
.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{
	position: relative;
	box-shadow: 0 4px 18px rgba(0,0,0,0.08);
	z-index: 99;
	/*position: relative;*/
	width: 100%;
}
.navbar_top{
	position: relative;
	width: 100%;
	height: 42px;
	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: #EA3D3D;
}*/


.nt_contacts{
	position: relative;
	width: auto;
	display: inline-flex;
}
.nt_contacts .ntc_item{
	font-size: 12px;
	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;}





.navbar_principal{
	position: relative;
	z-index: 1;
	background-color: #fff;
}
.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: 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;*/
	/*box-shadow: 0px 2px 8px rgba(0,0,0,0.08);*/
	text-decoration: none;
	border-radius: 2px;
	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);
	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: 84px;
}






/*****************************/
.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: 800px;}

.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);
	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;
	/*background: rgba(255,255,255,0.8);
	padding: 20px 30px;
	padding-bottom: 80px;
	position: relative;
	border-radius: 2px;*/
}
.ssc_info p.ssc_sub{
	/*color: var(--colorSecondary);*/
	color: #fff;
	margin: 0 0 4px;
}
.ssc_title{
	margin-bottom: 20px;
}
.ssc_text{
	margin-bottom: 40px;
}
.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: 2px;
	text-decoration: none;*/
	/*position: absolute;
	bottom: 0;
	right: 0;*/
}










/**********************Index***************************/
/******************************************************/

.barcut{
	position: relative;
	z-index: 5;
}
.barcut.bc_top:before{
	content: "";
	width: 100%;
	height: 80px;
	background-color: #fff;
	position: absolute;
	top: -80px;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.barcut.bc_buttom:after{
	content: "";
	width: 100%;
	height: 80px;
	background-color: #fff;
	position: absolute;
	bottom: -80px;
	clip-path: polygon(0 0, 0 100%, 100% 0);
}


/****************Instittucion section*****************/
.institucion_section{
	position: relative;
}
.institucion_section .is_img img{
	width: 100%;
}



/*******Numeros Section****************************/
.numeros_section{
	position: relative;
	padding: 20px 0;
	/*background-color: var(--colorPrimary);*/
}
.num_box{
	position: relative;
	/*background-color: var(--colorPrimary);*/
	padding: 40px 40px;
	border-radius: 4px;
	background: url('../img/objetos/bar.jpg');
	background-size: cover;
	background-position: center;
	/*filter: grayscale(1);*/
}
/*.num_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	filter: grayscale(1);
}*/
.num_box:before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--colorPrimary);
	opacity: 0.7;
}

.num_content{position: relative;padding-top: 10px;}

.num_content ul{
	display: flex;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
.num_content ul li{
	width: 25%;
	text-align: center;
	color: #fff;
}
.num_content ul li h1 strong{
	font-weight: 700;
}


/********Oferta section********************************/
.oferta_section{position: relative;}
.oferta_section .os_img img{
	width: 100%;
}
.os_content{
	margin-top: 40px;
}

/***********************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: 400px;
	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 30px;
	background-color: #fff;
	text-align: center;
}
.ppb_text h4{
	font-size: 16px;
	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;
}


.singlepersona_page ul li{padding: 0;}

/**********Institucion page***********/
.institucion_page{position: relative;}
.institucion_page a{
	color: black;
}
.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;
}

.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;
}


/*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;
}

/************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: 40px;
	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);
}

/*******Noticias section*******************************/


.noticias_section{
	position: relative;
	background-color: var(--colorWhite);
}


.noticia_item{
	position: relative;
	border: 1px solid var(--colorBorder);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 4px 12px rgba(0,0,0,0.04);
	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;
}
.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******************/
.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;
}



/*********************Footer section*********************/
.footer{
	position: relative;
	background-color: var(--colorPrimary);
	padding-top: 60px;
}


.fs_info{
	position: relative;
	color: #fff;
}
.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: #fff;
	text-decoration: none;
	transition: all 300ms;
}
ul.fs_social li a:hover{
	color: var(--colorSecondary);
}


.fs_contactos{
	position: relative;
	color: #fff;
}
.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;
}
.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;
}




.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;
}
.fs_details p span{
	opacity: 0.4;
}
.fs_details p a{
	color: var(--colorSecondary);
}

/*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(--colorTitle);
    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;
}





/**RESPONSIVE******/
@media (max-width: 1200px){

}

@media (max-width: 992px){

}

@media (max-width: 767px){

}