/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 20px;
}
/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}



body {
	font-family: 'Barlow', sans-serif;
	/*font-family: 'Poller One', cursive; negrita*/
	color: #333333;
	overflow-x: hidden;
	background-image: url(../imagenes/fondo_body2.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: #FFF;
}

body.overflow-hidden {
  /* when author bio is visible, the out-of-focus content won't scroll */
  overflow: hidden;
}

#open_preferences_center
{
	font-size: 1em;
	font-weight: bolder;
	color: #fafdf4;
	padding: 10px;
	z-index: 100;
	background-color: #000;
	height: 40px;
	border-radius: 10px;
	position: fixed;
	left: 10px;
	bottom: 10px;
	}
.espacio {
	height: 80px;
	width: 100%;
}
#topcontrol{
	z-index: 10;
	
	}
.bto-sobre
{
	opacity: 1.0;
	filter: alpha(opacity=100); /* For IE8 and earlier */
	border: 0px;
	cursor: pointer;	

}
.bto-sobre:hover
{
	opacity: 0.3;
	filter: alpha(opacity=40); /* For IE8 and earlier */
	cursor: pointer;
	text-decoration: none;	
}
.separa {
	width: 100%;
	text-align: center;	/*background-size : 100% auto;*/
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 50px;
	padding-left: 0px;
	margin: 0px;
	background-image: url(../imagenes/separador2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.marco-imagen {
	border: 5px solid #FFF;
	border-radius: 10px;
	padding-top: 46px;
	padding-bottom: 50px;
}
.derecha {
	float: left;
	text-align: left;
}


.grande {
	font-size: 3em;
}
.numeros
 {
	font-size: 1.5em;
	font-weight: bolder;
	font-family: 'Barlow', sans-serif;
	margin-left: 20px;
}

.icono {
	font-size: 9em;
	color: #fff;
	text-align: center;
	font-weight: 800;
	border-radius: 50%;
	margin-left: 10px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-top: 10px;
}
.borde {
	border: 2px solid #FFF;
	height: auto;
	width: auto;
}


video {
outline:none;
}


.color {
	background-color: rgba(0,0,0,0.05);
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}

	
.center {
	text-align: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.right {text-align:right;}
.preloader_hide {
	opacity: 0;
	background-color: #FFFFFF;
}

#preloader {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	z-index: 100000;
	background-image: url(../imagenes/preloader-fondo.png);
	background-repeat: no-repeat;
	background-size: 50% auto;
	background-position: center 20px;
	text-align: center;
	padding-top: 750px;
	background-color: #FFFFFF;
	height: 200%;
}

button{
	outline: none;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dotted;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
}



img {
  max-width: 100%;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
	/* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
main {
  position: relative;
  z-index: 2;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
main.slide-out {
  /* the main element slides to the left when the author bio is visible */
  -webkit-transform: translateX(-470px);
  -moz-transform: translateX(-470px);
  -ms-transform: translateX(-470px);
  -o-transform: translateX(-470px);
  transform: translateX(-470px);
}
main.slide-out .cd-overlay {
  /* the overlay layer gets visible when the author bio slides in */
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}
@media only screen and (min-width: 768px) {
  main.slide-out {
    /* change in size of the author bio section */
    -webkit-transform: translateX(-900px);
    -moz-transform: translateX(-900px);
    -ms-transform: translateX(-900px);
    -o-transform: translateX(-900px);
    transform: translateX(-900px);
  }
}
@media only screen and (min-width: 1200px) {
  main.slide-out {
    -webkit-transform: translateX(-1300px);
    -moz-transform: translateX(-1300px);
    -ms-transform: translateX(-1300px);
    -o-transform: translateX(-1300px);
    transform: translateX(-1300px);
  }
}


.cd-section {
   padding: 2em 0;
  text-align: center;
}
.cd-section .cd-container {
  max-width: 100%;
}
.menu-sub{
	height: 100px;
	background-color: rgba(255,255,255,0.9);
background-image: url(../imagenes/fondo_body.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.web {
	float: left;
	width: 50%;
	padding-top: 10px;
	padding-left: 10px;
}
.bton-superior {
	width: 40%;
	text-align: right;
	padding-top: 30px;
	float: right;
	padding-right: 10px;
}

.bton-superior li {
	display: inline;
	list-style-type: none;
	text-align: center;
	padding-right: 20px;
}
.bton-superior a:link {
	font-size: 1.5em;
	color: #FFFFFF;
	font-weight: bolder;
}
.bton-superior a:visited {
	color: #FFFFFF;
}

.bton-superior a:hover {
	color: #999999;
	text-decoration: none;
}


.imagen-cabecera {
	width: 100%;
	/*background-image: url(../imagenes/fondo_body.jpg);*/
	background-image: url(../imagenes/fondo_body.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	margin: 0px;
	background-position: 0px -100px;

}
.titulo-cabecera {
	width: 100%;
	z-index: 10;
	text-align: center;
	position: relative;
	padding-top: 9px;
}

#cat1 {
	width: 100%;
	text-align: justify;
	margin-right: auto;
	margin-left: auto;
	background-color: rgba(255,255,255,0.7);
	border-radius: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: auto;
}


.leer{
	color: #72909b;
	font-size: 5em;
}

.leer:hover, .leer:focus {
	cursor: pointer;
	color: #999;	
}

.ocultar{	
float: right;
	color: #c32e2e;
	font-size: 3em;	
}

.ocultar:hover, .ocultar:focus {
	cursor: pointer;
	color: #999;	
}

#presentacion{
	width: 100%;	
	cursor: pointer;
	border-radius:10px;
}


.sobre-esta-web {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 80px;
	margin-bottom: 0px;
}

.sobre-esta-web h3 {
	font-size: 3.5em;
	line-height: 45px;
	text-align: center;
	font-family: 'Barlow', sans-serif;
}
.sobre-esta-web  b {
	color: #1F1F1F;
	font-size: 1.3em;
	font-weight: bolder;
}

.recursos {
	background-image: url(../imagenes/web-recursos-fundacioncnse.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}
.dgt {
	background-image: url(../imagenes/dgt-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}
	
.dgt2 {
	background-image: url(../imagenes/dgt-victimas-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}
.toxicologia {
	background-image: url(../imagenes/toxicologia-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}
	
.cnae {
	background-image: url(../imagenes/cnae-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}	
	
.fad {
	background-image: url(../imagenes/fad-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}
.unad {
	background-image: url(../imagenes/unad-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}
	
.plan-nacional-drogas {
	background-image: url(../imagenes/plan-nacional-drogas-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}
.proyecto-hombre {
	background-image: url(../imagenes/proyecto-hombre-web.png);
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-size: 100% auto;
	background-position: center top;
	}	
	
.mas-enlaces {
	background-image: url(../imagenes/mas-enlaces.png);
	background-repeat: no-repeat;
	background-position: right;
	}
	
.enlace {
	color: #000;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	height: auto;
	margin-bottom: 40px;
	margin-top: 40px;
	padding-top: 100px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-radius: 10px;
	/*border: 10px solid #000;*/
	-webkit-box-shadow: 0px 6px 14px -5px #000000;
	box-shadow: 0px 6px 14px -5px #000000;
	}
.enlace span{
	font-size: 2em;	
	}
.enlace a:link {
	font-family: 'Barlow', sans-serif;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	width: 100%;
	font-size: 1.8em;
	background-color: rgba(0,0,0,0.9);
	text-align: center;
	display: block;
	line-height: 25px;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	}
.enlace a:visited {
	color: #FFF;
	background-color: rgba(0,0,0,0.9);	
}
.enlace a:hover {
	background-color: rgba(255,255,255,0.9);
	color: #000;
}



.purpose_block {
	padding-top: 5px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	
}
.purpose_block a {
	color: #333;
	text-decoration: none;
	}


.purpose_block h2 {
	font-size: 3em;
	line-height: 25px;
	text-align: center;
	font-family: 'Barlow', sans-serif;
	font-weight: bolder;
	padding-bottom: 10px;
}
.purpose_block b {
	color: #1F1F1F;
	font-size: 1.3em;
	font-weight: bolder;
}
.purpose_block span {
	color: #000000;
	font-size: 1.3em;
	font-weight: 800;
	line-height: 60px;
}
.purpose_block h3 {
	font-size: 2.7em;
	color: #333333;
	line-height: 40px;
	text-align: left;
	text-transform: none;
	padding-top: 20px;
	padding-bottom: 20px;
	font-family: 'Barlow', sans-serif;
}
.purpose_block h4 {
	font-size: 2em;
	font-weight: 800;
	color: #000000;

}
.purpose_block h5 {
	font-size: 2em;
	font-weight: 800;
	color: #333333;
	line-height: 25px;
	margin-top: 20px;
	text-align: left;
	padding-left: 30px;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.purpose_block h6 {
	font-size: 4em;
	font-weight: 900;
	color: #000000;
	line-height: 40px;
	letter-spacing: -0.05em;
	
}

.purpose_block h6 b {
	font-weight: 500;
	
}


.purpose_block p {
	margin-bottom: 0px;
	line-height: 32px;
	font-size: 1.5em;
	text-align: justify;
	margin-top: 15px;
	color: #333;
	width: 95%;
	margin-right: auto;
	margin-left: auto;
}
.purpose_block ul {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 70px;	
}
.purpose_block li {
	line-height: 23px;
	font-size: 1.2em;
	margin-bottom: 15px;
	list-style-type: none;
	color: #000;
	display: inline;
	margin-right: 10px;

	
}

.enlace-purpuse{
	color: #000;
	font-weight: bolder;
	text-decoration: none;
}

.enlace-purpuse:hover, .enlace-purpuse:focus {
	cursor: pointer;
	color: #999;
	text-decoration: none;
}
	
	


@media screen and (max-width: 1024px) {


 .cd-section {
    padding: 0em;
  }
  
.texto-presentacion {
	font-size: 0.8em;
	color: #000;
	text-align: justify;
	line-height: 30px;
	margin-right: auto;
	margin-left: auto;
	overflow: auto;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 0px;
	width: 100%;
	height: 400px;
}
.bton-superior {
	width: 50%;
	text-align: right;
	padding-top: 30px;
	margin-right: auto;
	margin-left: auto;
	height: auto;
}
.bton-superior a:link {
	font-size: 1em;

}

#preloader {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 200%;
	z-index: 100000;
	background-image: url(../imagenes/preloader-fondo.png);
	background-repeat: no-repeat;
	background-size: 80% auto;
	background-position: center 150px;
	text-align: center;
	padding-top: 750px;
	
}
.purpose_block h2 {
	color: #1F1F1F;
	font-weight: bolder;
	line-height: 60px;
	font-size: 4em;
	line-height: 65px;
	text-align: center;
	font-family: 'Barlow', sans-serif;
	font-weight: bolder;
	letter-spacing: -0.05em;
}

/*.enlace a:link {	
	font-size: 1.5em;	
	line-height: 25px;
	}*/
	
.enlace {	
	width: 100%;	
	height: 100px;	
	padding-top: 50px;
	}

.enlace a:link {	
	font-size: 1.5em;	
	line-height: 22px;
	}

	}
	

/*-----------------------------------------------------------------------------------*/
/*	pie
/*-----------------------------------------------------------------------------------*/
.post_item_inf a {
	padding-right: 12px;
	font-weight: 300;
	font-size: 14px;
}
.post_item_img a.link {
	position: absolute;
	z-index: 30;
	left: 0%;
	bottom: 10%;
	width: 311px;
	height: 87px;
	opacity: 0;
	background-image: url(../imagenes/zoom_h2.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
	display: block;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: -30px;
	margin-left: -3px;
}
.post_item:hover .post_item_img a.link {
	bottom:50%;
	opacity:1;
}
.post_item_img a.link:hover {
	background-image: url(../imagenes/zoom2.png);
	
}


/* __________ Recent Posts Small __________ */
.recent_posts_small {margin-bottom:15px;}
.post_item_img_small {
	overflow: hidden;
	float: left;
	width: 50%;
	
	margin-top: 2px;
	margin-right: 15px;
	margin-bottom: 13px;
	margin-left: 0;
}

.post_item_img_small img {
	width: auto;
	max-width: none;
	height: 50%;
	transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
}
.recent_posts_small:hover .post_item_img_small img {opacity:0.5;}
.post_item_content_small a.title {
	display:block;
	line-height:17px;
	font-size:14px;
	color:#ccc;
}
.post_item_content_small a.title:hover {color:#666;}
.post_item_inf_small li {
	display:inline-block;
	padding-top:4px;
	padding-right:10px;
	line-height:17px;
	font-size:11px;
	color:#666;
}
footer {
	/*	background-color: rgba(19,58,77,0.9);*/
	padding-top: 60px;
	padding-right: 0;
	padding-bottom: 0px;
	width: 100%;
	font-size: 1.5em;
	text-decoration: none;
	line-height: 20px;
	background-color: #000000;
	background-image: url(../imagenes/fondo_body.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
}
footer h4 {
	color: #fff;
	line-height: 30px;
	margin: 0px;
	padding: 0px;
	font-size: 1.2em;
	font-weight: bolder;
}



/* __________ direccion fundacion __________ */
.foot_about_block p {
	margin-bottom: 24px;	
	line-height: 28px;
	font-size: 0.9em;
	color: #FFF;	
}

.foot_about_block a {
	color: #FFF;
	font-size: 0.9em;
	margin-left: 10px;
	text-decoration: none;
}
.foot_about_block a:hover {
	color: #CCC;
	border-color: #ccc;
}
.pie-submenu {
	background-color: #161616;
	width: 100%;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.pie-submenu li {
	display: inline;
	list-style-type: none;
	margin-right: 20px;
	margin-left: 20px;
	line-height: 40px;
}
.pie-submenu ul {
	margin: 0px;
}

.pie-submenu li a {
	color: #FFF;
	font-size: 0.8em;
	text-decoration: none;
}
.pie-submenu li a:hover {
	color: #999;
	
}

header p {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #93861d;
}

/*.fondo-modulos-bto {
	background-image: url(../imagenes/fondo-modulos.png);
	background-repeat: no-repeat;
	background-position: right;
	
	}*/

.titulo-curso{
	text-align: right;
	width: 100%;
	position: relative;
	margin-bottom: 100px;
	margin-top: 50px;	
	}
.titulo-curso  h3 {
	font-size: 4em;
	line-height: 50px;
	text-align: right;
	font-family: 'Poller One', cursive;
	font-weight: bolder;
	color: #fff;
	letter-spacing: -0.05em;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-color: rgba(0,0,0,0.6);
	padding-top: 15px;
	padding-bottom: 80px;
	padding-right: 10%;
}
.titulo-curso span {
	font-size: 0.5em;
	line-height: 50px;
	text-align: right;
	font-family: 'Barlow', sans-serif;
	letter-spacing: 0.01em;
	font-weight: lighter;
}
.titulo-curso  b {
	font-size: 1em;
	line-height: 55px;
	font-family: 'Barlow', sans-serif;
	color: #fff;
	text-shadow: 0 0 0.5em #000, 0 0 0.5em #000, 0 0 0.5em #000;
	letter-spacing: -0.05em;
	font-weight: lighter;
}
.titulo-curso  spam {
	font-size: 1.6em;
	font-family: 'Barlow', sans-serif;
	color: #FFFFFF;
	font-weight: bolder;
}

#cd-team {	
	background-image: url(../imagenes/fondo_body.png);
	background-repeat: no-repeat;
	background-size: 100% auto;	
	
}
#cd-team .cd-container {
	max-width: 90%;
	padding-bottom: 50px;
	padding-top: 100px;
}
#cd-team li {
	margin-bottom: -5em;
	/*border-radius: 0.25em;*/
	box-shadow: 0 0 10px rgba(92, 75, 81, 0);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
/*.no-touch #cd-team li:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}*/
.no-touch #cd-team li:hover .cd-img-overlay {
  opacity: 1;
}
#cd-team figure {
	position: relative;
}
/*#cd-team img {
	display: block;
	width: 100%;
	border-radius: .25em .25em 0 0;
}*/
#cd-team .cd-img-overlay {
	width: 100%;
	height: 100%;
	opacity: 0;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
	/* border-radius: .25em .25em 0 0;*/
	border-radius: 30px;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
	position: absolute;
	top: 0px;
	margin: 0px;
	padding: 0px;
	border: 10px solid #FFFFFF;
	background: rgb(1,7,37);
	background: linear-gradient(-50deg, rgba(33,57,100,1) 20%, rgba(33,57,100,1) 39%, rgba(74,122,146,0.48783263305322133) 80%, rgba(255,255,255,1) 100%);	/*background-color: rgba(0, 14, 83, 0.9);
	/*background-repeat: no-repeat;
	background-image: url(../imagenes/fondo-boton-index.png);*/
}
#cd-team .cd-img-overlay span {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	color: #FFF;
	font-size: 3em;
	font-weight: 800;
	margin: 0px;
	padding: 0px;
	text-shadow: 1px 1px 13px rgba(0, 0, 0, 1);
}
#cd-team .cd-member-info {
	height: 80px;
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
	border-radius: 0 0 .25em .25em;
	color: #333;
	font-size: 2em;
	width: 100%;
}
#cd-team .cd-member-info span {
	display: block;
	font-weight: normal;
	color: #000000;
	font-size: 0.8em;
}



@media only screen and (min-width: 768px) {

 
  #cd-team li {
	width: 31%;
	float: left;
	margin-right: 3.5%;
	
  }
  #cd-team li:nth-child(3n) {
    margin-right: 0;
  }

  
}

.cd-member-bio {
	position: fixed;
	top: 0;
	right: 0;
	width: 470px;
	height: 100%;
	overflow-y: auto;
	/* smooth scrolling on mobile phones and tablets */
	-webkit-overflow-scrolling: touch;
	z-index: 1;
	/* this how we move the author bio section off the canvas */
	-webkit-transform: translateX(470px);
	-moz-transform: translateX(470px);
	-ms-transform: translateX(470px);
	-o-transform: translateX(470px);
	transform: translateX(470px);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	background-color: #FFFFFF;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 10px;
	
}
.cd-member-bio.slide-in {
  /* the author bio section slides in when the user clicks on the team member picture */
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-member-bio .cd-member-bio-pict {
	position: relative;
	background-color: #FFF;
}
.cd-member-bio .cd-member-bio-pict::after {
  /* gradient at the bottom of the image - same color of the background of the section */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
 /* background: -webkit-linear-gradient( bottom , #5c4b51, rgba(92, 75, 81, 0));
  background: linear-gradient(to top, #5c4b51, rgba(92, 75, 81, 0));*/
}
.no-cssgradients .cd-member-bio .cd-member-bio-pict::after {
  display: none;
}
.cd-member-bio .cd-bio-content img {
	width: 50%;
	margin-left: 23%;
	margin-top: 50px;
}
.cd-member-bio .cd-bio-content h1 {
	font-weight: 800;
	text-align: center;
	line-height: 35px;
	font-size: 3em;
	border-radius: 20px;
	background-color: rgba(0,0,0,0.8);
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}

.cd-member-bio .cd-bio-content p {
	font-size: 14px;
	font-size: 1em;
	margin: 1em 0;
	line-height: 20px;
	color: #333333;
}



@media only screen and (min-width: 768px) {
  .cd-member-bio {
    width: 900px;
    -webkit-transform: translateX(900px);
    -moz-transform: translateX(900px);
    -ms-transform: translateX(900px);
    -o-transform: translateX(900px);
    transform: translateX(900px);
	background-image: none;
	background-attachment: fixed;
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 20px;
	
  }

.cd-member-bio h1 {
	width: 100%;
	text-align: left;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 2em;
	z-index: 100;
	line-height: 80px;
	color: #FFFFFF;

}
  .cd-member-bio .cd-bio-content {
    padding: 2em;
  }
  .cd-member-bio .cd-bio-content p {
	margin: 2em 0;
	font-size: 1em;
  }
  
  
  
}
@media only screen and (min-width: 1200px) {
  .cd-member-bio {
    width: 1300px;
    -webkit-transform: translateX(1300px);
    -moz-transform: translateX(1300px);
    -ms-transform: translateX(1300px);
    -o-transform: translateX(1300px);
    transform: translateX(1300px);
	background-image: url(../imagenes/fondo_body2.jpg);
	background-attachment: fixed;
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 20px;
  }

  .cd-member-bio .cd-member-bio-pict::after {
    height: 150px;
  }
  .cd-member-bio .cd-bio-content {
    padding: 4em;
    /* we move the content up so the title is over the color gradient */
    -webkit-transform: translateY(-80px);
    -moz-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    transform: translateY(-80px);
  }
  .cd-member-bio .cd-bio-content h1 {
	font-size: 40px;
	font-size: 3em;
  }
  .cd-member-bio .cd-bio-content p {
   font-size: 14px;
	font-size: 1em;
  }
  .no-cssgradients .cd-member-bio .cd-bio-content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  
}

.cd-member-bio-close {
	width: 50px;
	height: 50px;
	overflow: hidden;
	position: fixed;
	top: 80px;
	text-indent: 100%;
	white-space: nowrap;
	z-index: 3;
	display: none;
	margin-top: 80px;
	margin-right: 10px;
	right: 10px;
	background-color: #d7110d;
	background-image: url(../imagenes/cd-icon-close.svg);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 20px;
	padding: 20px;
}
.cd-member-bio-close.is-visible {
  display: block;
  -webkit-animation: cd-move-in 0.8s;
  -moz-animation: cd-move-in 0.8s;
  animation: cd-move-in 0.8s;
}
@media only screen and (min-width: 1200px) {
  .cd-member-bio-close {
    right: 20px;
    top: 20px;
  }
}

.cd-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200%;
	cursor: pointer;
	display: none;
	background-color: rgba(0,0,0,0.8);
	margin-top: -8px;
	z-index: 101;
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes cd-move-in {
  0% {
    -webkit-transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-move-in {
  0% {
    -moz-transform: translateX(100px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-move-in {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@media only screen and (max-width: 20000px) {
  .cd-section {
    padding: 0em;
  }

}
@media only screen and (max-width: 768px) {
#cd-team .cd-container {
	max-width: 95%;
	padding-bottom: 20px;
}	

 
}


@media only screen and (max-width: 368px) {

 .menu-sub{
	height: 50px;
	
}
#preloader {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 200%;
	z-index: 100000;	
	background-image: url(../imagenes/preloader-fondo.png);
	background-repeat: no-repeat;
	background-size: 80% auto;
	background-position: center 150px;
	text-align: center;
	padding-top: 380px;
	
}

.bton-superior {
	display: none;
}
.imagen-cabecera {
	width: 100%;
	/*background-image: url(../imagenes/fondo_body.jpg);*/
	background-image: url(../imagenes/fondo_body.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	margin: 0px;
	background-position: 0px -100px;

}
.titulo-cabecera {
	width: 100%;
	z-index: 10;
	text-align: center;
	position: relative;
	padding-top: 80px;
}

.sobre-esta-web {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 10px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.sobre-esta-web h3 {
	font-size: 2em;
	line-height: 30px;
	text-align: center;
	font-family: 'Barlow', sans-serif;
}
.sobre-esta-web  b {
	color: #1F1F1F;
	font-size: 1.3em;
	font-weight: bolder;
	line-height: 60px;

}

.marco-imagen {
	border: 5px none #FFF;
	border-radius: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	
}
.ocultar{
	display:none;
}

/*#cd-team {
	background-color: rgba(255,255,255,0.8);
	background-image: url(../imagenes/ico.png);
	background-repeat: no-repeat;
	background-size: 450% auto;	
	
}*/

.enlace {
	color: #000;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 120px;
	margin-top: 50px;
	padding-top: 70px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-radius: 10px;
	/*border: 10px solid #000;*/
	-webkit-box-shadow: 0px 6px 14px -5px #000000;
	box-shadow: 0px 6px 14px -5px #000000;
	}

.enlace a:link {
	font-family: 'Poller One', cursive;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	font-weight: 300;
	padding: 10px;
	width: 100%;
	font-size: 1em;
	background-color: rgba(0,0,0,0.9);
	text-align: center;
	display: block;
	line-height: 25px;
	}
.enlace a:visited {
	color: #FFF;
	background-color: rgba(0,0,0,0.9);	
}
.enlace a:hover {
	background-color: rgba(255,255,255,0.9);
	color: #000;
}
.letrero {
	display: none;
}	

.purpose_block img {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	border-radius: 10px;
	border: 5px solid #FFF;
}

.purpose_block h2 {
	font-size: 3em;
	color: #000000;
	line-height: 30px;	
	font-weight: normal;
}
.purpose_block b {
	color: #666666;
	font-size: 0.8em;
	font-weight: normal;
	line-height: 20px;
}
.purpose_block h3 {
	font-size: 2em;
	padding-bottom: 0px;
	line-height: 35px;
}
.purpose_block h5 {
	font-size: 2em;
	font-weight: 800;
	line-height: 25px;
	margin-top: 20px;
}
.purpose_block h6 {
	font-size: 1.3em;
	
}


.purpose_block span {
	font-weight: 500;
}

.purpose_block p {
	line-height: 23px;
	font-size: 0.9em;	
	width: 95%;
}

/*.md-modal {
	position: fixed;
	top: 49%;
	left: 50%;
	max-width: 95%;
	min-width: 50%;
	border-radius:0px;
	
}
.md-content video {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding: 0px;
}
.md-content h3 {

	text-align: center;
	font-size: 1.5em;
	
}*/


#cd-team img {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
#cd-team .cd-img-overlay {
	width: 100%;
	height: 100%;
	margin-left: auto;
}

#cd-team .cd-member-info {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

footer {
	/*	background-color: rgba(19,58,77,0.9);*/
	padding-top: 60px;
	padding-right: 0;
	width: 100%;
	font-size: 1.3em;
	text-decoration: none;
	line-height: 20px;
	text-align: center;
}
.foot_about_block p {
	margin-bottom: 24px;
	line-height: 25px;
	font-size: 0.8em;
	color: #FFF;
	font-weight: lighter;
	text-align: center;
}

}
