@charset "utf-8";
/* CSS Document */


/*////// FUENTES ///////*/

@font-face {
	font-family: bebas;
	src: url("../fuentes/bebas.otf");
}

@font-face {
	font-family: open;
	src: url("../fuentes/opensans.ttf");
}

/*////// GENERAL ///////*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: #f5f5f5;
	height: 100vh;
	color: #005461;
	
}

h1{
	font-family: bebas;
    font-weight: 400;
    font-style: normal;
	font-size: 18pt;
}

h2, h3{
	width: 100%;
	height: auto;
	font-family: open;
	font-weight: 600;
	font-size: 13pt;
    padding: 5px 10px;
    color: #000;
	
	
}

p{
    width: 100%;
	height: auto;
	font-family: open;
	font-weight: 600;
    padding: 10px;
    color: #000;
	
}

a{
	font-family: sans-serif;
	font-weight: bold;
	border-radius: 10px;
	text-decoration: none;
	padding: 7px;
	
}


/*////// CABECERA ///////*/

header{
	width: 100%;
	height: 68px;
	display: flex;
	justify-content: flex-start;
	align-items: center;	
	position: relative;
	z-index: 2;
/*	border-bottom: 1px solid #FFFFFF; */
	background-color:#1F1F1F;
}

header a{
	margin-left: 15px;
	
}


/*////// BARRA DE NAVEGACION ///////*/

.navigation{
	position: fixed;
	top: 8px;
	right: 20px;
	width: 120px;
	height: 60px;
	background: #1F1F1F;
	display: flex;
	justify-content: space-between;
	transition:  height 0.5s, width 0.5s, border 0.5s;
	transition-delay: 0s, 0.75s; 
	overflow: hidden;
	z-index: 3;
	border-radius: 10px;
/*	border: 2px solid #3BB8E7; */
}

.navigation.active{
	width: 312px;
	height: 500px;
	transition: width 0.5s, height 0.5s;
	transition-delay: 0s, 0.75s; 
	border: 2px solid #3BB8E7; 
}

.navigation .userBx{
	position: relative;
	width: 60px;
	height: 60px;
	background: #1F1F1F;
/*	border: 1px solid #3BB8E7; */
	display: flex;
	align-items: center;
	overflow: hidden;
	transition: 0.5s;
	transition-delay: 0.5s;
}

.navigation.active .userBx{
	width: calc(100% - 60px);
	transition-delay: 0s;
}

.navigation .userBx .username{
	white-space: nowrap;
	color: #3BB8E7;
	font-family: sans-serif;
    font-size: 10pt;
	margin-left: 0px;
	margin-top: 0px;
}

.navigation .userBx .imgBx{
	position: relative;
	min-width: 60px;	
	height: 60px;
/*	background: #00007B; */
	border-radius: 50%;
	border: 10px solid #1F1F1F;
	overflow: hidden;
		
}

.navigation .userBx .imgBx img{
	position: absolute;
	top: 1px;
    left: 7px;
    width: 65%;
    object-fit: cover;
}

.navigation .menuToggle {
	position: relative;
	width: 60px;
	height: 60px;
    cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navigation .menuToggle::before{
	content: '';
	position: absolute;
	width: 32px;
	height: 2px;
	background: #3BB8E7;
	transform: translateY(-10px);
	box-shadow: 0 10px #3BB8E7;
	transition: 0.5s;
}

.navigation .menuToggle::after{
	content: '';
	position: absolute;
	width: 32px;
	height: 2px;
	background: #3BB8E7;
	transform: translateY(10px);
	transition: 0.5s;
}

.navigation.active .menuToggle::before{
	transform: translateY(0px) rotate(45deg);
	box-shadow: 0 0px #555;
}

.navigation.active .menuToggle::after{
	transform: translateY(0px) rotate(-45deg);
}

.menu{
	position: absolute;
	width: 100%;
	height: calc(100% - 60px);
	margin-top: 57px;
	padding:12px;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.menu li{
	list-style: none;
	border-bottom: 1px dashed #3BB8E7 ;
}

.menu li a {
	display: flex;
	align-items: center;
	margin: 3px 0;
	text-decoration: none;
	color:#3BB8E7;
	padding: 10px;
}

.menu li a .contendorIconos{
	
	display: none;
	
	
}

.menu li a .contendorIconos img{
	
}

.menu li a:hover p{
	
	color:#fff;
}

.menu li p{
	margin-left: 0px;
	margin-top: 0px;
	padding: 0px;
	color: #3BB8E7;
}


/*////// SLIDER PROYECTOS ///////*/

.seccion{
	width: 100%;
	height: 550px;
	margin:0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ACA7A7;
}

.contendorsliderpro{
	width: 100%;
	height: 550px;
	overflow: hidden; 
	position: relative;
	
}

.contendorsliderpro .txtpro{
    position: absolute;
	width: 280px;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	top: 117px;
	margin-left: 20px;
	
	}

footer .btnproyectos{
	display: flex;
	justify-content: center;
	margin-top: 5px;
}

footer .btnproyectos a{
	color: #000;
	background: #f36509;
	border: 1px solid #000;
}

footer .btnproyectos a:hover{
	background: #d54904;
    
	
}

.cajasliderpro{
	width: 500%;
	height: 550px;
	display: flex;
	
}

.cajasliderpro input{
	display: none;
}

.sliderimgpro{
	width: 20%;
	transition: 2s;
}

.txtprodes{

	width: 29%;
	height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 20px;
	margin-top: 90px;
	
	}

.txtprodes p{
	padding: 5px 10px;
}

.imagen_slide1{
	width: 100%;
	height: 550px;
	background: url("../imagenes/proyectos_galeria/proyecto_valle_paz/valle_s1.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #f4f5f5;
}
	
.imagen_slide2{
	width: 100%;
	height: 550px;
	background: url("../imagenes/proyectos_galeria/proyecto_valle_paz/valle_s2.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #f4f5f5;
}

.imagen_slide3{
	width: 100%;
	height: 550px;
	background: url("../imagenes/proyectos_galeria/proyecto_valle_paz/valle_s3.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #f4f5f5;
}
	
.imagen_slide4{
	width: 100%;
	height: 550px;
	background: url("../imagenes/proyectos_galeria/proyecto_valle_paz/valle_s4.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #f4f5f5;
}


	
.paginacion{
	position: absolute;
	width: 100%;
	bottom: 35px;
	display: flex;
	justify-content: center;
}

.item_paginacion{
	border: 2px solid #000;
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	transition: 1s;
}

.item_paginacion:not(:last-child){
	margin-right: 30px;
}

.item_paginacion:hover{
	background: #000;
}

#radio1:checked  ~ .primero{
	 margin-left: 0;
}

#radio2:checked  ~ .primero{
	 margin-left: -20%;
}

#radio3:checked  ~ .primero{
	 margin-left: -40%;
}

#radio4:checked  ~ .primero{
	 margin-left: -60%;
}





.nav_auto{
	position: absolute;
	width: 100%;
	bottom: 35px;
	display: flex;
	justify-content: center;
	
}

.nav_auto div{
	border: 2px solid #fff;
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	transition: 1s;
}

.nav_auto div:not(:last-child){
	margin-right: 30px;
	justify-content: center;
}

#radio1:checked  ~ .nav_auto .a_b1{
	 background: #000;
}

#radio2:checked  ~ .nav_auto .a_b2{
	 background: #000;
}

#radio3:checked  ~ .nav_auto .a_b3{
	 background: #000;
}

#radio4:checked  ~ .nav_auto .a_b4{
	 background: #000;
}




/*////// PIE DE PAGINA ///////*/


footer{
	position: sticky;
	width: 100%;
	height: auto;
	border: 1px solid #000000;
	background-color: #1F1F1F;
	top: 100%;
}

footer p{
	color: #3BB8E7;
	text-align: center;
	margin-left: 0px;
	margin-top: 0px;
	
}

.btnAvisoP a{
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.btnAvisoP{
	width: 100%;
	display: flex;
	justify-content: center;
}

.redesIapsa{
	display: flex;
	justify-content: center;

}

.redesIapsa a{
	width: 36px;
	height: 34px;
	display: flex;
	justify-content: center;
	padding: 1px;
	margin-top: 15px;
	margin-right: 17px;
		
}

.redesIapsa img{
	margin: 0 10px;
}

footer img{
	margin-left: 3px;
}

.btnWhatsapp{
	position: fixed;
	right: 0px;
	bottom: 15px;
	z-index: 5;
}



/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){
	
/*////// CABECERA ///////*/

header{
	height: 80px;
	
}
		
/*////// BARRA DE NAVEGACION ///////*/

.navigation.active{
	height: 520px;
	
  }
	
/*////// SLIDER PROYECTOS ///////*/
	
p{
	margin-left: 0px;
}

.seccion{
	
	height: 850px;
	background: #fff;
}	
	
.contendorsliderpro {
    
    height: 850px;
   
}	
	
.contendorsliderpro .txtpro {
	width: 100%; 
	top: 557px;
	align-items: center;
	margin-left: 0px;
}
	
.cajasliderpro{
	height: 850px;
	}	
	
.contlogoseintron {
	display: flex;
	justify-content: center;
	}	
	
.contlogoseintron img{
		width: 80%;
	}	
	
.contendorsliderpro .txtpro h2 {
    margin-top: -12px;
}
	
.txtprodes{

	width: 100%;
	height: 170px;
	text-align: center;
	margin-left: 0px;
	}		
	
.imagen_slide1{
	height: 850px;
	background:url("../imagenes/img_tb/proyectos_galeria_tb/proyecto_valle_paz_tb/valle_s1_tb.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	justify-content: flex-end;
	}	
		
.imagen_slide2{
	height: 850px;
	background:url("../imagenes/img_tb/proyectos_galeria_tb/proyecto_valle_paz_tb/valle_s2_tb.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	justify-content: flex-end;
	}
	
.imagen_slide3{
	height: 850px;
	background:url("../imagenes/img_tb/proyectos_galeria_tb/proyecto_valle_paz_tb/valle_s3_tb.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	justify-content: flex-end;
	}	
		
.imagen_slide4{
	height: 850px;
	background:url("../imagenes/img_tb/proyectos_galeria_tb/proyecto_valle_paz_tb/valle_s4_tb.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	justify-content: flex-end;
	}	
	
		
				
	
}
	
	
/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
/*////// GENERAL ///////*/	
	
h1{
		font-size: 18pt;
	}	
	
p{
		font-size: 11pt;
		margin-left: 0px;
	}	
	
/*////// CABECERA ///////*/

header{
	height: 80px;
	
}
	
header a{
	
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70%;
	margin-left: 0px;
	
}
	
header a img{
		width: 88%;
	}	
	
/*////// BARRA DE NAVEGACION ///////*/
	
.navigation{
	width: 60px;
	
}	
	
.navigation.active{
	width: 170px;
	height: 400px;
	
}
	
.navigation .userBx {
	width: 13px;
			
}
	
.navigation .userBx .username {
		display: none;
	}	
	
.menu li   {
	border-bottom: none;
	display: flex;
	justify-content: space-between;
	}	
	
.menu li a  {
	
	margin: 0px;
	padding: 4px;
	
	}	
		
.menu li a p {
	
	font-size: 11pt;
	padding: 5px;
	}	
	
	
/*////// SLIDER PROYECTOS ///////*/	
	
.seccion{
  height: 600px;
	}	
	
.contendorsliderpro{
	height: 600px;
	top:0px;
	
	}	

.contendorsliderpro .txtpro {
	width: 100%; 
	top: 350px;
	align-items: center;
	margin-left: 0px;
}
	
.cajasliderpro{
		height: 600px;
	}	
	
.contlogoseintron {
	display: flex;
	justify-content: center;
	}	
	
.contlogoseintron img{
		width: 80%;
	}	
			
.txtprodes{

	width: 100%;
	height:144px;;
	text-align: center;
	margin-left: 0px;
	
	}	

.imagen_slide1{
	height: 600px;
	background:url("../imagenes/img_mo/proyectos_galeria_mo/proyecto_valle_paz_mo/valle_s1_mo.jpg");
	justify-content: flex-end;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff;
	}	
		
.imagen_slide2{
	height: 600px;
	background:url("../imagenes/img_mo/proyectos_galeria_mo/proyecto_valle_paz_mo/valle_s2_mo.jpg");
	justify-content: flex-end;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff;
	}	
	
.imagen_slide3{
	height: 600px;
	background:url("../imagenes/img_mo/proyectos_galeria_mo/proyecto_valle_paz_mo/valle_s3_mo.jpg");
	justify-content: flex-end;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff;
	}	
		
.imagen_slide4{
	height: 600px;
	background:url("../imagenes/img_mo/proyectos_galeria_mo/proyecto_valle_paz_mo/valle_s4_mo.jpg");
	justify-content: flex-end;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff;
	}	
	
		
	
.paginacion{
		bottom: 15px;
	}
	
.nav_auto{
		bottom: 15px;
	}
			
/*////// PIE DE PAGINA ///////*/	
		
.redesIapsa a{
	border: solid 1px #3BB8E7;
	border-radius: 0px;
	width: 40px;
	height: 40px;
	padding: 6px;
	margin: 4px;
	
	}	
	

}





