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

@import url('https://fonts.googleapis.com/css?family=Questrial:300,400,500,600,700,800,900&subset=latin-ext');

body{ margin:0; text-align:center; background-color: #fff; font-family: 'Questrial', sans-serif; font-size: 16px; color: #04B5C3; font-weight:400;}


body {
	height: 100%;
background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='30' viewBox='0 0 1000 120'%3E%3Cg fill='none' stroke='%23f5f5f5' stroke-width='10' %3E%3Cpath d='M-500 75c0 0 125-30 250-30S0 75 0 75s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 45c0 0 125-30 250-30S0 45 0 45s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 105c0 0 125-30 250-30S0 105 0 105s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 15c0 0 125-30 250-30S0 15 0 15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500-15c0 0 125-30 250-30S0-15 0-15s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3Cpath d='M-500 135c0 0 125-30 250-30S0 135 0 135s125 30 250 30s250-30 250-30s125-30 250-30s250 30 250 30s125 30 250 30s250-30 250-30'/%3E%3C/g%3E%3C/svg%3E");
	overflow-x: hidden;
	/*max-width: 100vw;*/
}



*, *:before, *:after { box-sizing: border-box; }




.content{
	/*margin:0 auto 0 auto;
	width:100%;*/
}

img{
	width:100%;
	height:auto;
	text-align:center;
}

ul{
	text-decoration: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

li{
	text-decoration: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

a, a:visited, a:active, a:link, modal a, modal a:visited, modal a:active, modal a:link{
	text-decoration: none;
	color: #04B5C3;
}

a:hover{
	text-decoration: none;
	color:#0495a0;
}

::selection {
  background: #48DAE5;
}
::-moz-selection {
  background: #48DAE5;
}

.zero{
	margin: 0;
	padding: 0;
}


#sidebar{
	/*position: fixed;
	right: 0;
	top: 0;
  z-index: 9000;*/
}

#sidebar .menu {
  position: fixed;
  right: -100px;
  top: -100px;
  z-index: 9002;
  width: 200px;
  height: 200px;
  background: #009fb3;
  border-radius: 50% 50% 50% 50%;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #009fb3, 0 0 0 0 #009fb3;
  cursor: pointer;
}

#sidebar .acolor a, #sidebar .acolor a:visited, #sidebar .acolor a:active, #sidebar .acolor a:link{
    text-decoration: none;
    font-size: 48px;
	font-weight: 800;
	line-height: 200%;
    color: #ededed;
    display: block;
    transition: 0.3s;
	cursor: pointer;
}

#sidebar .acolor a:hover{
	text-decoration: none;
	color:#9bd5d9;
	cursor: pointer;
}


#sidebar .hamburger {
  position: absolute;
  top: 135px;
  left: 50px;
  width: 30px;
  height: 2px;
  background: #FFF;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#sidebar .hamburger:after, #sidebar .hamburger:before {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  content: "";
  position: absolute;
	z-index: 9002;
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
}

#sidebar .hamburger:before { top: -10px; }

#sidebar .hamburger:after { bottom: -10px; }

#sidebar input { display: none; }

#sidebar input:checked + .menu {
  box-shadow: 0 0 0 100vw #009fb3, 0 0 0 100vh #009fb3;
  border-radius: 0;
}

#sidebar input:checked + .menu .hamburger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#sidebar input:checked + .menu .hamburger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;
}

#sidebar input:checked + .menu .hamburger:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

#sidebar ul {
  z-index: 9005;
  position: fixed;
  /*top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
	top: 50vh;
  left: 50vw;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: .1s .2s ease-in-out;
  transition: .1s .2s ease-in-out;
  visibility: hidden;
}

#sidebar input:checked + .menu + ul {
	opacity: 1; 
	visibility: visible;
}


#navbar{
	position: fixed;
	z-index: 8000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100px;
	display: block;
	/*overflow: hidden;*/
}


#navbar .navlogo{
	width: 142px;
	height: 30px;
	position: absolute;
	left:  30px;
	top:  30px;
	z-index: 9999;
	display: block;
}
#navbar .navlogo a{
}

/*#navbar a:hover{
	-webkit-filter: grayscale(1);
  filter: grayscale(1);
}*/



/*#sidebar input:checked .navlogo{
	display: none;
}

*/

.modal{
	--bs-modal-zindex:9000;
	--bs-modal-margin: 1rem;
}

.modal .btn-close{
	margin: 5px;
	padding: 0;
}
.modal .closebtn {
	max-width: 22px;
	min-width: 16px;
	max-height: 22px;
	min-height: 16px;
    position: absolute;
    top: 25px;
    right: 25px;
	z-index: 9999;
	background-image: url(../media/close-1.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.mtxt{
  font-size: 20px;
  font-weight: 300;
  color: #5b5b5b;
}



@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}


.social-i{
	position: absolute;
	bottom: 35px;
	left: 0;
	display: block;
	min-width: 280px;
	padding: 15px 35px;
}

.social-i a{
	display: inline-block;
	padding: 5px;
	margin: 0 5px;
	border-radius: 5px;
}

.social-i a img{
	width: 26px;
	height: 26px;
}

.social-i a:hover{
	background-color: #24b7ca;
}


#inicio .bg{
	width: 100%;
}

#inicio .bg img{
	width:100%;
	height:auto;
	text-align:center;
}
#inicio{
	margin-bottom: 20px;
}



/*#proyecto-1, #proyecto-2, #proyecto-3, #proyecto-4, #proyecto-5, #proyecto-6, #proyecto-7, #proyecto-8, #proyecto-9, #proyecto-10, #proyecto-11{
	padding: 10px 0;
}*/

.proyectosid{
	padding: 10px 0;
}


.proyecto-i{
	background-blend-mode:multiply;
	transition: background 1s;
	cursor: pointer;
	height: 35vh;
	display: flex;
	position: relative;
}

.proyecto-t{
	text-align: center;
	opacity: 0;
	/*position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right: 0;
	margin: auto;
	max-width: 800px;
	height: 100px;*/
	font-size: 3vw;
	color: #fff;
	transition: opacity 0.5s;
	display: flex;
}

@media screen and (max-width: 768px){
	.proyecto-t{
		position: absolute;
		bottom: -40px;
		left: 0;
		right: 0;
		font-size: 20px;
		color: #6b6b6b;
		opacity: 1;
		display: block;
		text-align: center;
		height: 35px;
	}

/*	#proyecto-1, #proyecto-2, #proyecto-3, #proyecto-4, #proyecto-5, #proyecto-6, #proyecto-7, #proyecto-8, #proyecto-9, #proyecto-10, #proyecto-11{
		padding: 30px 0;
	}*/	
	
	.proyectosid{
		padding: 30px 0;
	}
	
}

.proyecto-i a{
	/*visibility: hidden;*/
	width: 100%;
	/*height: 0;*/
	position: absolute;
	top: 0;
	left:0;
	right: 0;
	margin: auto;
	/*z-index: -1;*/

		height: 35vh;
		z-index: 10;
}

/*	.proyecto-i:hover a, .proyecto-i:active a{
		transition: 0.3s; 
		visibility: visible;
		height: 35vh;
		z-index: 10;
	}*/


@media screen and (min-width: 768px){
	.proyecto-i:hover, .proyecto-i:focus{
		transition: background 1s; 
	}

	.proyecto-i:hover .proyecto-t, .proyecto-i:focus .proyecto-t{
		transition: opacity 0.5s;
		opacity: 1;
	}
}



	
	
	
#proyecto-1 .proyecto-i{
	background: url(../media/renders/aurea-magic-hour.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-1 .proyecto-i:hover, #proyecto-1 .proyecto-i:focus{
		background: url(../media/renders/aurea-magic-hour.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-2 .proyecto-i{
	background: url(../media/renders/avento-panoramica.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-2 .proyecto-i:hover, #proyecto-2 .proyecto-i:focus{
		background: url(../media/renders/avento-panoramica.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-3 .proyecto-i{
	background: url(../media/renders/iqono-panoramica.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-3 .proyecto-i:hover, #proyecto-3 .proyecto-i:focus{
		background: url(../media/renders/iqono-panoramica.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-4 .proyecto-i{
	background: url(../media/renders/camelia-fachada.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-4 .proyecto-i:hover, #proyecto-4 .proyecto-i:focus{
		background: url(../media/renders/camelia-fachada.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-5 .proyecto-i{
	background: url(../media/renders/axial-panoramica.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-5 .proyecto-i:hover, #proyecto-5 .proyecto-i:focus{
		background: url(../media/renders/axial-panoramica.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-6 .proyecto-i{
	background: url(../media/renders/averanda-panoramica.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-6 .proyecto-i:hover, #proyecto-6 .proyecto-i:focus{
		background: url(../media/renders/averanda-panoramica.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-7 .proyecto-i{
	background: url(../media/renders/alzia-panoramica.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-7 .proyecto-i:hover, #proyecto-7 .proyecto-i:focus{
		background: url(../media/renders/alzia-panoramica.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-8 .proyecto-i{
	background: url(../media/renders/square-main.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-8 .proyecto-i:hover, #proyecto-8 .proyecto-i:focus{
		background: url(../media/renders/square-main.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-9 .proyecto-i{
	background: url(../media/renders/baia-main.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-9 .proyecto-i:hover, #proyecto-9 .proyecto-i:focus{
		background: url(../media/renders/baia-main.jpg) no-repeat center hsl(186,0%,20%);
		background-size: cover;
	}
}

#proyecto-10 .proyecto-i{
	background: url(../media/renders/nauma-main.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-10 .proyecto-i:hover, #proyecto-10 .proyecto-i:focus{
	background: url(../media/renders/nauma-main.jpg) no-repeat center hsl(186,0%,20%);
	background-size: cover;
	}
}

#proyecto-11 .proyecto-i{
	background: url(../media/renders/realeza-main.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-11 .proyecto-i:hover, #proyecto-11 .proyecto-i:focus{
	background: url(../media/renders/realeza-main.jpg) no-repeat center hsl(186,0%,20%);
	background-size: cover;
	}
}

#proyecto-12 .proyecto-i{
	background: url(../media/renders/corintio-main.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (min-width: 768px){
	#proyecto-12 .proyecto-i:hover, #proyecto-12 .proyecto-i:focus{
	background: url(../media/renders/corintio-main.jpg) no-repeat center hsl(186,0%,20%);
	background-size: cover;
	}
}







.video-wrap div{
	margin: 0 auto;
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.video-wrap iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.zero-esfera{
	margin-top: 20px;
}


.esfera-wrap div{
	margin: 0 auto;
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}
.esfera-wrap iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.esfera-box{
	max-width: 1280px;
	margin: 0 auto;
	position: absolute;
	z-index: 90;
}
/*.esfera-box iframe{
	margin: 0 auto;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}*/

.gonext span{
	color: #BFBFBF;
	padding-top: 5px;
	padding-left: 3px;
}

.gonext {
	z-index: 900;
    position: absolute;
    bottom: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
    background: black;
    background: rgba(0, 0, 0, 0.5);
	border: thin solid #BFBFBF ;
    width: 30px;
    height: 30px;
    /*display: block;*/
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	display: none;
}
.gomaqueta{
	left: 70px;
	margin: 0;
	z-index: 2000;
}

.gira-maq{
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 20px;
	background-color: rgba(255,255,255, 0.5);
	z-index: 2000;
	font-size: 0.8rem;
	color: #3b3b3b;
	justify-content: center;
	margin: 6px;
}
.gira_dark{
	background-color: rgba(0,0,0, 0.5);
	color: #ffffff;
}
.gira-maq span{
	display: block;
	text-align: center;
}
.gira-maq span img{
	width:60px;
	height: 30px;
}



h1 {
  font-size: 60px;
  font-weight: 600;
}

h2 {
  font-size: 30px;
  font-weight: 300;
  color: #5b5b5b;
}

h3 {
  font-size: 16px;
  font-weight: 300;
  color: #5b5b5b;

}

#proyectos .col-titulo{
	margin: 50px;
}
#proyectos .col-titulo .txt{
	text-align: left;
	font-weight: 500;
  color: #5b5b5b;}

#proyectos .row.titulo{
	padding: 35px auto;
	/*max-width: 1000px;*/
}


#servicios-land .col-titulo{
	padding: 100px 30px 0;
}


#servicios-land h1 {
  font-size: 40px;
  font-weight: 500;
}
#servicios-land .col-titulo .txt{
	text-align: center;
	font-weight: 500;
  	color: #5b5b5b;
}
#servicios-land .serv-img{
	cursor: pointer;
	align-content: center;
	position: relative;
	align-items: flex-end;
	border: solid 6px #fff;
	-webkit-transition: all .2s;
  	transition: all .2s;
}
#servicios-land .serv-img:hover{
	border: solid 3px #24b7ca;
}
#servicios-land .serv-img .bg-img{
	width: 100%;height: 100%; position: absolute;top: 0;left: 0; z-index: -1;
	background-size: cover;
	background-position: center;
}
#servicios-land .serv-img .caption{
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px;
	width: 100%;
	position: absolute;bottom: 0;left: 0;
	margin: 0;
	text-align: center;
	color: #fff;
}





#servicios .col-titulo{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 25px;
	position: relative;
}
#servicios .col-titulo .h1{
 align-self: flex-start;
}

#servicios .col-titulo .txt{
	text-align: left;
	font-weight: 500;
  color: #5b5b5b;}

#servicios .row.titulo{
	padding: 40px 25px;
}

#servicios .video-flex{
	flex-shrink: 0; 
	flex-grow: 1;
}


.about{
  text-align: left;
	padding: 20px 0;
	margin: 0 50px;
}
.about .main{
	text-align: left;
	font-weight: 500;
}
.about .txt{
  color: #5b5b5b;
}
.web{
	text-align: center;
	font-size: 35px;
	font-weight: 300px;
}



.hleft{
  text-align: left;
}

.hright{
  text-align: right;
}

.hcenter{
  text-align: center;
  color: #5b5b5b;
  margin: 20px auto;
}



.cc-w {
  position: relative;
  display: block;
  background-color: transparent;
	margin: 0 auto;
	max-width: 1280px;
}
#proyectos .container-fluid{
	margin-top: 60px;
	margin-bottom: 80px;
}
#proyectos .row{
	margin: 8vh auto;
	max-width: 1280px;
}




.modal-header{
	border: none;
	padding: 0;
	margin: 0;
}
.modal-body{
	padding-bottom: 30px;
}




.animate-in {
    -webkit-animation: fadeIn .2s ease-in;
    animation: fadeIn .2s ease-in;
}
.animate-out {
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
    opacity: 0;
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#inicio .animate-in {
    -webkit-animation: fadeIn .5s ease-in;
    animation: fadeIn .5s ease-in;
}


#inicio .carousel-inner{
	position: relative;
}
#inicio .carousel-inner video{
	width: 100%;
	height: auto;
	max-width: 1920px;
	margin: 0 auto;
}
#inicio .carousel-inner .s-txt{
	text-align: center;
	/*background: rgba(0, 0, 0, 0.3);*/
	color: #FFFFFF;
	z-index: 90;
	max-width: 500px;
	/*max-height: 400px;*/
	margin: auto;
	height: 300px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
#inicio .carousel-inner .s-txt h1{
	color: #FFFFFF;
  font-size: 50px;
  font-weight: 600;
}




#return-to-top span{
	color: #BFBFBF;
	padding-top: 5px;
}

#return-to-top {
	z-index: 99;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    background: rgba(255, 255, 255, 0.5);
	border: thin solid #BFBFBF ;
    width: 30px;
    height: 30px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: #BFBFBF;
}
#return-to-top:hover span {
    color: #fff;
}









table,tr,td {
	font-size: 10pt;
	border-color: #777777;
	background: #dddddd; 
	color: #FFFFFF; 
	border-style: solid;
	border-width: 2px;
	padding: 5px;
	border-collapse: collapse;
}
.warning { 
	font-weight: bold;
} 
#container{
	/*padding-bottom: 66.68%;
	height: 0;
	max-width: 1920px;
	overflow: hidden;
	margin: 0 auto;*/
}
/*#wrapper{
	width: 100%;
	height: 100%;
}
*/



#footer{
	width: 100%;
	height: 120px;
	margin: 30px 0;
}
#footer .f-logo{
	width: 180px;
	height: 63px;
	background-image: url(../media/logo-pixme-c.svg);
	margin: 0 auto;
}




.unsel { 
-moz-user-select: none; 
-khtml-user-select: none; 
-webkit-user-select: none; 
/* Introduced in IE 10. See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/ */ 
-ms-user-select: none; user-select: none; 
}


.border {
	border: 2px solid #e6e6e6;
}




@media screen and (max-width: 767px) {
	
	
#sidebar .acolor a, #sidebar .acolor a:visited, #sidebar .acolor a:active, #sidebar .acolor a:link{
    text-decoration: none;
    font-size: 28px;
	}
	
	#proyecto-1, #proyecto-2, #proyecto-3, #proyecto-4, #proyecto-5, #proyecto-6, #proyecto-7, #proyecto-8{
		max-width: 100%;
	}
	
/*	.proyecto-t{
		font-size: 10vw;
	}
		*/
	#proyectos .container-fluid{
	margin-top: 30px;
	margin-bottom: 60px;
	}
	
	#proyectos .row{
		margin: 6vh auto;
	}
	
	h1 {
	  font-size: 35px;
	}

	h2 {
	  font-size: 25px;
	}
	#inicio .carousel-inner .s-txt h1{
	  font-size: 25px;
	  font-weight: 500;
	}
	#inicio .carousel-inner .s-txt{
		max-height: 150px;
		max-width: 300px;
	}
	.esfera-wrap div, #container{
	height: 320px;
		padding: 0;	}
	
}




.appicono{
	display: inline-block;
	margin: 10px auto;
	text-align: center;
	width: 100%;
	height: auto;
}

.appicono img{
	width: 80px;
	height: 80px;
	display: inline-block;
}




@media screen and (min-width: 576px) and (max-width: 767px) {	
	.proyecto-i, .proyecto-i:hover a, .proyecto-i:active a{
		height: 40vh;
	}	
}

@media screen and (min-width: 768px) and (max-width: 1399px) {	
	.proyecto-i, .proyecto-i:hover a, .proyecto-i:active a{
		height: 25vh;
	}	
}

@media screen and (min-width: 1400px) and (max-width: 1620px) {	
	.proyecto-i, .proyecto-i:hover a, .proyecto-i:active a{
		height: 25vh;
	}	
}





