@charset "utf-8";

html {
	--azul: #009cbd;
	--gris: #e2e2e2;
	--negro: #000000;
	--blanco: #ffffff;
	--transparent: rgba(255,255,255,0.6);
}

body {
	margin: 0px;
	padding:0px;
	font-family: 'Mahatmo';
	color: var(--negro);
	background: var(--gris);
	line-height:1.2;
	overflow-x:hidden !important;
}

h1, h3 {
	font-weight: bolder;
}
h2 {
	font-weight: normal;
}
a {
  text-decoration:none;
}
button {
	font-family: 'Mahatmo';
	border-radius: 0 !important;
	cursor: pointer !important;
	border: none;
}
button:active {
    outline: none;
    border: none;
}
button:hover {
	cursor:pointer;
	outline:none;
}
button:focus,
input:focus,
textarea:focus {
	outline:none;
}
p {
	font-size:1em;
	line-height: 1.8;
}
p b {
	font-weight: bolder;
	color: var(--azul);
}

/* header */
header .top {
	width: 100vw;
	position: fixed;
	display: table;
	transition: all ease-in-out 0.6s;
	animation-delay: 0.9s;
	animation-duration: 0.9s;
	z-index: 999;
}
header .top:after {
	content: '';
	width: calc(100% - 60px);
	height: 1px;
	background: var(--azul);
	position: absolute;
	left: 30px;
	bottom: 0;
}
header .top div {
	width: 50vw;
	display: table-cell;
	vertical-align: middle;
	padding: 24px 30px;
}
header .top div img {
	width: auto;
	height: 30px;
}
header .top div:nth-child(2) {
	text-align: right;
}
header .top div a {
	color: var(--blanco);
	display: inline-block;
	transition: all ease-in-out 0.3s;
	margin: 0 6px;
}
header .top div a.telefono {
	margin: 0 12px;
}
header .top div a:hover {
	color: var(--azul);
}
/* blck */
header.blck .top {
	background: var(--negro) !important;
}
header.blck .top:after {
	display: none;
}

#btn-menu {
	width: 21px;
	height:21px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	background: none;
	margin: 0 0 0 6px;
}
#btn-menu span {
	width: 100%;
	height: 1px;
	background: var(--blanco);
	position: absolute;
	left:0;
	top: 50%;
	transition: all ease-in-out 0.6s;
}
#btn-menu span:before,
#btn-menu span:after {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	transition: all ease-in-out 0.6s;
	background: var(--blanco);
}
#btn-menu:hover span,
#btn-menu:hover span:before,
#btn-menu:hover span:after {
	background: var(--azul);
}
#btn-menu span:before {
	top: -9px;
}
#btn-menu span:after {
	bottom: -9px;
}
/* active */
#btn-menu.active span {
	background: none;
}
#btn-menu.active span:before {
	top: 0;
	transform: rotate(-45deg);
}
#btn-menu.active span:after {
	bottom: 0;
	transform: rotate(45deg);
}

/* menu */
#menu {
	width: 100vw;
	height:100vh;
	background: var(--negro);
	transition: all ease-in-out 0.6s;
	background-blend-mode: multiply;
	opacity: 0.8;
	position: fixed;
	top: 0;
	left:100%;
	z-index: 666;
}
#menu.active {
	left: 0;
}

#menu ul {
	width: 25vw;
    padding:150px 60px 0;
    margin: 0;
	list-style: none;
    position: relative;
}
#menu ul li {
	color: var(--blanco);
	font-size:2.4vw;
	letter-spacing: 0.9vw;
	text-align: left;
	line-height: 1.5;
	transition: all 0.3s ease-out;
	text-transform: uppercase;
    z-index: 30;
}
#menu ul li:hover,
#menu .active li {
	color: var(--azul) !important;
	z-index: 66 !important;
}
#menu ul li:before {
	display: none !important;
}
.dataImage {
    position: absolute;
    width: 33%;
    object-fit: contain;
    top: 50%;
    left:50%;
	transform: translate(50%,-50%);
	mix-blend-mode: none;
	pointer-events: none;
    z-index: 33;
}

/* slide */
#slider {
	background: var(--negro);
	overflow: hidden;
}

#slider svg {
	height: 100vh;
	position: absolute;
	top: 0;
	right:0;
	fill: var(--azul);
	pointer-events: none;
	mix-blend-mode: overlay;
	z-index: 9;
}

.owl-carousel {
	width: 100%;
	max-width: 100vw;
	height:auto;
	margin: 0;
	overflow: hidden;
	position:relative;
	display:block;
}
.owl-carousel div {
	float:left;
}
.owl-carousel .item {
	width: 100vw;
	height:100vh;
	position: relative;
	overflow: hidden;
}
.owl-carousel div img {
	width: 120vw;
	height:auto;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	position: absolute;
	opacity: 0.8;
	filter: grayscale(100%);
}

.owl-carousel div h1 {
	width: calc(50% - 30px);
	font-size:2.4vw;
	letter-spacing: 0.9vw;
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	color: var(--blanco);
	text-transform: uppercase;
}

.prev,
.next {	
	width: 18px !important;
	height:18px !important;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 9;
}
.prev {
	left: 30px;
}
.next {
	right: 30px;
}
.prev:before,
.prev:after,
.next:before,
.next:after {
	content: '';
	width: 15px;
	height:1px;
	background: var(--blanco);
	position: absolute;
}
.prev:before,
.prev:after {
	left: 0;
}
.prev:before {
	top: 3px;
	-webkit-transform:rotate(-45deg);
            transform:rotate(-45deg);
}
.prev:after {
	bottom: 3px;
	-webkit-transform:rotate(45deg);
            transform:rotate(45deg);
}
.next:before,
.next:after {
	right: 0;
}
.next:before {
	bottom: 3px;
	-webkit-transform:rotate(-45deg);
            transform:rotate(-45deg);
}
.next:after {
	top: 3px;
	-webkit-transform:rotate(45deg);
            transform:rotate(45deg);
}
.prev:hover:before,
.prev:hover:after,
.next:hover:before,
.next:hover:after {
	background: var(--azul);
}

/* */
.custom-control {
	text-align:center;
	position:absolute;
	left:  50%;
	bottom:0;
	padding:  0 0 30px;
	transform: translateX(-50%);
	z-index:9;
}
.custom-control button {
	width: 12px !important;
	height:12px !important;
	margin: 0 15px;
	padding:0;
	background: rgba(255,255,255,0.8);
	border-radius: 50% !important;
	transition: all ease-in-out 0.3s;
	position: relative;
}
.custom-control button.active:after {
	content: '';
	width: 24px !important;
	height:24px !important;
	background: none;
	border: solid 1px var(--azul);
	border-radius: 50% !important;
	position: absolute;
	top: -7px;
	left:-7px;
}
.custom-control button:hover,
.custom-control button.active {
	background: var(--blanco);
}


/* --------------------------- FULLPAGE --------------------------- */
#superContainer {
    height: 100%;
    position: relative;
	
	/* Touch detection for Windows 8 */
	-ms-touch-action: none; 
}
.section {
    position: relative;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}

.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.slidesContainer {
    float: left;
    position: relative;
}
#fullpage {
	overflow:hidden;
}
.intro {
	width: calc(100% - 60px);
	margin: 90px 30px;
	position: relative;
	z-index: 0;
}

/* */
#somosadamarq {
	background: var(--negro ) url(../imgs/somosadamarq.jpg) center bottom no-repeat fixed;
	background-size: cover;
	color: var(--blanco);
}
#somosadamarq svg {
	height: calc(100vh - 90px);
	position: absolute;
	left:  0;
	bottom:0;
	fill: none;
	stroke: var(--azul);
}
.mitad {
	padding: 0 0 0 50%;
}

/* oculto */
.oculto button {
	font-size: 1em;
	color: var(--azul);
	padding: 0;
	background: none;
}
.oculto button span {
	width: 15px;
	height:1px;
	background: var(--azul);
	display: inline-block;
	margin: 0.3em;
	position: relative;
	transition: all ease-in-out 0.3s;
}
.oculto button span:after {
	content: '';
	width: 1px;
	height:16px;
	background: var(--azul);
	position: absolute;
	top: 0;
	left:7px;
	transform: translateY(-50%);
}
.oculto button:hover span {
	transform: rotate(90deg);
}

section {
	width: calc(100% - 60px);
	margin: 0 30px;
	padding:15px 0;
	display: table;
	border-bottom: solid 1px var(--azul);
}
section:last-of-type {
	border-bottom: none;
}
section div {
	width: 50%;
	display: table-cell;
	vertical-align: top;
}
section div h2 {
	width: 50%;
	font-size: 1.5vw;
	letter-spacing: 0.5vw;
}

section div.inmueble {
	width: calc(50% - 15px);
	display:inline-block;
	margin: 0;
}
section div.inmueble:first-child {
	margin: 0 24px 0 0;
}
section div.inmueble img {
	width: 100%;
}

section .oculto button {
	margin: 0 0 15px;
}
section ul {
	list-style: none;
	padding: 0 0 0 30px;
}
section ul li {
	text-transform: uppercase;
	position: relative;
	margin: 0 0 12px;
}
section ul li:before {
	content: '';
	width: 15px;
	height:1px;
	background: var(--azul);
	position: absolute;
	top: 50%;
	left:-30px;
	transform: translateY(-50%);
}

#porta-team {
	/*background: var(--negro) url(../imgs/equipo_adamarq.jpg) center top no-repeat fixed;
	background-size: cover;*/
	color: var(--blanco);
	background: var(--negro);
}
#porta-team h3 {
	font-size:2.4vw;
	letter-spacing: 0.9vw;
	margin: 0 0 6vw;
	color: var(--azul);
}
#team {
	width: 100%;
	margin: 0;
	display: table;
}
#team div {
	width: 50%;
	display: table-cell;
	padding: 0 0 0 25%;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
	animation-duration: 0.6s;
}
#team div img {
	display: none;
}
#team div h2 {
	font-size: 1.5vw;
	margin: 0 0 3vw;
}
#team div a {
	color: var(--azul);
}

a.btn-next button {
	width: 30px;
	height:30px;
	padding: 15px 0;
	position: relative;
	transition: all ease-in-out 0.6s;
	background: none;
}
a.btn-next:hover button {
	width: 45px;
}
a.btn-next button line {
	width: 100%;
	height:1px;
	background: var(--azul);
	display: block;
	position: relative;
}
a.btn-next button line:before,
a.btn-next button line:after {
	content: '';
	width: 15px;
	height: 1px;
	background: var(--azul);
	position: absolute;
	right: -1.5px;
}
a.btn-next button line:before {
	top: 6px;
	transform: rotate(-45deg);
}
a.btn-next button line:after {
	top: -6px;
	transform: rotate(45deg);
}
/* blco */
a.btn-next button line.blco {
	background: var(--blanco);
}
a.btn-next button line.blco:before,
a.btn-next button line.blco:after {
	background: var(--blanco);
}

/* porta-proyecto */
.porta-proyecto {
	width: 100vw;
	height:100vh;
	margin: 0;
	color: var(--blanco);
	background: var(--negro);
}
.porta-proyecto:before {
	content: '';
	width: 100%;
	height: 21%;
	position: absolute;
	left:  0;
	bottom:0;
	background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
	opacity: 0.6;
}

.porta-proyecto .tit {
	width: calc(50% - 30px);
	position: absolute;
	top: 99px;
	left:30px;
}
.porta-proyecto h2 {
	width: 50%;
	font-size:2.4vw;
	text-transform:uppercase;
	letter-spacing: 0.9vw;
}

.porta-proyecto .porta-info {
	width: calc(100% - 60px);
	position: absolute;
	left:  30px;
	bottom:15px;
	display: table;
}
.porta-proyecto .porta-info div {
	width: 25%;
	display: table-cell;
	vertical-align: top;
}
.porta-proyecto .porta-info div h3 {
	margin: 0 0 15px;
	opacity: 0.5;
}

/* siguiente */
.siguiente {
	width: 12%;
	height: 100vh;
	background: var(--azul);
	position: absolute;
	top: 0;
	left:100%;
	transition: all ease-in-out 0.6s;
}
.siguiente div {
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%) rotate(-90deg);
	text-align: center;
	position: absolute;
}
.siguiente div h2 {
	font-size: 1.2vw;
	color: var(--negro);
	text-align: center;
	text-transform: uppercase;
}

/* cortina */
#cortina {
	width: 100vw;
	height:100vh;
	position: absolute;
	top: 0;
	left:100%;
	background: var(--azul);
	z-index: 9;
	
	-webkit-animation:cortina2 linear 1;
	-moz-animation:   cortina2 linear 1;
	animation:        cortina2 linear 1;

	-webkit-animation-duration:0.9s;
	-moz-animation-duration:   0.9s;
	animation-duration:        0.9s;
}
#cortina.active {
	-webkit-animation:cortina linear 1;
	-moz-animation:   cortina linear 1;
	animation:        cortina linear 1;
	
	-webkit-animation-duration:0.9s;
	-moz-animation-duration:   0.9s;
	animation-duration:        0.9s;
}

/* contacto */
#porta-contacto {
	display: table;
	margin: 60px auto 0;
}
.porta-form,
.porta-mapa {
	width: 50%;
	display: table-cell;
	position: relative;
}
.porta-mapa p {
	margin: 0 !important;
	padding:0;
}
.porta-mapa p a {
	color: var(--negro);
}
#mini-map {
	width: 100%;
	height:0;
	padding: 0 0 75%;
}
/* porta-form */
.porta-form h3 {
	width: calc(100% - 30px);
	font-size:2.4vw;
	letter-spacing: 0.9vw;
	margin: 0 0 6vw;
	color: var(--azul);
}
.porta-form form {
	width: calc(100% - 30px);
	position: relative;
}
.porta-form form label,
.porta-form form input,
.porta-form form textarea {
	width: 100%;
	display: block;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
.porta-form form label {
	font-size: 0.9em;
	color: var(--negro);
	text-transform: uppercase;
}
.porta-form form input,
.porta-form form textarea {
	font-family: 'Mahatmo';
	font-size:1em;
	margin: 6px 0 15px;
	padding:6px 9px;
	border: solid 1px var(--blanco);
	border: none;
}
.porta-form form textarea {
	min-height: 60px;
	resize: none;
}
.porta-form form input:focus,
.porta-form form textarea:focus {
	border: solid 1px var(--azul);
}

.porta-form p.notificacion {
	font-size: 1.2em;
	text-transform: uppercase;
}

form div {
	width: 100%;
	text-align: right;
}
form div button {
	padding: 12px 0;
	margin: 0 0 30px;
	position: relative;
	background: none;
}
form div button span,
form div button line {
	display: inline-block;
	vertical-align: middle;
}
form div button span {
	font-size: 1.2em;
	margin: 0 12px 0 0;
}
form button line {
	width: 24px;
	height:1px;
	background: var(--negro);
	position: relative;
	transition: all ease-in-out 0.6s;
}
form button line:before,
form button line:after {
	content: '';
	width: 15px;
	height: 1px;
	background: var(--negro);
	position: absolute;
	right: -1.5px;
}
form button line:before {
	top: 6px;
	transform: rotate(-45deg);
}
form button line:after {
	top: -6px;
	transform: rotate(45deg);
}
form button:hover line {
	width: 45px;
}
/* map */
.content-map {
	font-family: 'Mahatmo';
}
.content-map h2 {
	color: var(--azul);
}

.respon {
	display: none;
}

/* footer */
footer {
	width: 100%;
	text-align: center;
	background: var(--azul);
	display: table;
	padding: 15px 0;
}
footer p {
	width: 50%;
	display: table-cell;
	font-size: 0.6em;
	letter-spacing: 2px;
	text-transform: uppercase;
}
footer p a {
	color: var(--blanco);
}

/* enviado */
#enviado {
	width: 60%;
	max-width: 900px;
	background: var(--azul);
	position: fixed;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	padding: 15px;
	z-index: 99;
}
#enviado h1 span {
	font-size: 1.2em;
	display: block;
	margin: 0 0 15px;
}
#enviado button {
	position: absolute;
	top:  15px;
	right:15px;
	background: var(--blanco);
}

.no-index {
	/*background: var(--azul);*/
}
.no-index header .top {
	background: var(--negro) !important;
}
.no-index h1 {
	width: 100%;
	text-align:center;
	padding: 90px 0 0;
	margin: 30px auto;
}

#inm {
	width: calc(100% - 60px);
	margin: 0 30px 45px;
	padding:0 0 30px;
	position:relative;
	border-bottom: solid 2px var(--azul);
}
#inm img.grande {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	margin: 0;
}
#inm .texto {
	width: calc(50% - 30px);
	margin: 0 0 0 15px;
	display:inline-block;
	vertical-align:top;
}
#inm .texto h3 {
	text-transform: uppercase;
	margin: 0 0 15px;
	letter-spacing:0.2em;
}
#inm .texto p.precio {
	font-size:1.5em;
	color: var(--azul);
	margin: 0;
}
#inm .texto table {
	width: 100%;
	position:relative;
	padding: 15px 0;
}
#inm .texto table tr.tit {
	font-size: 0.9em;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--azul);
	letter-spacing: 0.2em;
}
#inm .porta-imgs {
	width: 100%;
	position: relative;
	margin: 30px 0 0;
}
#inm .porta-imgs img {
	width: calc(33% - 15px);
	display:inline-block;
	vertical-align: top;
	position:relative;
	margin: 0 18px 45px 0;
	animation-duration: 0.6s;
}
#inm .porta-imgs img:nth-child(3n) {
	margin: 0 0 45px 0;
}

#porta-inmuebles {
	width: calc(100% - 60px);
	margin: 0 30px;
	position:relative;
}
#porta-inmuebles .inmueble {
	width: calc(33% - 15px);
	display:inline-block;
	vertical-align: top;
	position:relative;
	margin: 0 18px 45px 0;
	animation-duration: 0.6s;
}
#porta-inmuebles .inmueble:nth-child(3n) {
	margin: 0 0 45px 0;
}
#porta-inmuebles .inmueble label {
	position: absolute;
	top:  15px;
	right:15px;
	padding: 12px 15px;
	letter-spacing: 0.2em;
	color: var(--blanco);
	background: var(--negro);
	z-index:3;
}
#porta-inmuebles .inmueble img {
	width: 100%;
}
#porta-inmuebles .inmueble h2 {
	margin: 15px 0 0;
}
#porta-inmuebles .inmueble p.precio {
	font-size: 1.2em;
	color: var(--azul);
	margin: 0 0 15px;
}
#porta-inmuebles .inmueble button {
	width: 100%;
	text-align:right;
	font-size: 1em;
	color: var(--negro);
	padding: 0;
	background: none;
}
#porta-inmuebles .inmueble button span {
	width: 15px;
	height:1px;
	background: var(--negro);
	display: inline-block;
	margin: 0.3em;
	position: relative;
	transition: all ease-in-out 0.3s;
}
#porta-inmuebles .inmueble button span:after {
	content: '';
	width: 1px;
	height:16px;
	background: var(--negro);
	position: absolute;
	top: 0;
	left:7px;
	transform: translateY(-50%);
}
#porta-inmuebles .inmueble button:hover span {
	transform: rotate(90deg);
}

.no-necessary {
    width: 100%;
    text-align: left;
	position: relative;
}
.no-necessary span,
.no-necessary input {
	display: inline-block;
	vertical-align: middle;
}
.no-necessary input {
	width: 20% !important;
}

@media screen and (max-width:666px) {
	
	p {
	    font-size:0.9em;
    }
	
    header .top:after {
	    width: calc(100% - 30px);
	    left: 15px;
    }
    header .top div {
	    padding: 15px;
    }
    header .top div img {
		margin-top: 12px;
    }
    header .top div:nth-child(2) a {
		display: none;
    }
	
	#menu ul {
	    width: 50vw;
        padding:150px 15px 0;
    }
    #menu ul li {
	    font-size:6vw;
	    letter-spacing: 1.2vw;
	    line-height: 1.8;
    }
	
	#slider svg {
	    height: 50vh;
	    top: 25vh;
	    right:-30%;
    }
    .owl-carousel div img {
		height:75vh;
	    width: auto;
	    top: 0;
	    transform: translate(-50%,0);
    }
    .owl-carousel div h1 {
	    width: calc(100% - 30px);
	    font-size:4.8vw;
	    position: absolute;
	    top: calc(100% - 90px);
	    left:15px;
	    transform: translateY(-150%);
    }
	
	.intro {
	    width: calc(100% - 42px);
	    margin: 66px 21px;
    }
	
	.mitad {
	    padding: 0;
    }
	
	section {
	    width: 100%;
	    margin: 0;
	    padding:15px 0;
	    display: block;
    }
    section div {
	    width: 100%;
	    display: block;
    }
    section div h2 {
	    font-size: 4.8vw;
    }
	
	#porta-team {
	    background: var(--azul);
	    color: var(--negro);
    }
    #porta-team h3 {
	    font-size:6vw;
	    margin: 30px 0;
    }
    #team {
	    display: block;
    }
    #team div {
		width: 100%;
	    display: block;
		margin: 15px 0 45px;
    }
	#team div img {
		width: 50%;
		display: block;
		margin: 0;
	}
    #team div h2 {
		width: 100%;
	    font-size: 4.8vw;
	    margin: 4.8vw 0;
		color: var(--blanco);
		letter-spacing: 0.9vw;
    }
    #team div:first-child {
	    padding-right: 0;
    }
    #team div:last-child {
	    padding-left: 0;
    }
	
	.porta-proyecto .tit {
	    width: calc(50% - 15px);
	    left:15px;
    }
    .porta-proyecto h2 {
	    font-size:4.8vw;
    }
	.porta-proyecto .tit p {
		opacity: 0.5;
	}

    .porta-proyecto .porta-info {
	    width: calc(100% - 30px);
	    left:  15px;
    }
    .porta-proyecto .porta-info div {
	    width: calc(50% - 15px);
	    display: inline-block;
    }
    .porta-proyecto .porta-info div h3 {
		font-size: 0.6em;
	    margin: 0;
    }
	
	.siguiente {
		display: none;
	}
	
	#porta-contacto {
	    margin: 30px auto 0;
    }
    .porta-form,
    .porta-mapa {
	    width: 100%;
	    display: block;
    }
    .porta-form h3 {
	   width: 100%;
	   font-size:4.8vw;
	   margin: 30px 0;
    }
    .porta-form form {
	    width: 100%;
    }
	
	.respon {
		display: block;
	}
	.respon a {
		color: var(--negro);
		margin: 30px 0;
	}
	.respon .redes {
		margin: 0 0 15px;
	}
	.respon .redes a {
		font-size: 4.8vw;
		margin: 0 4.8vw 0 0;
	}
	.respon .telefono {
		font-size: 6vw;
		color: var(--azul);
	}
	
	.porta-mapa {
		width: 100%;
		height:0;
		padding: 0 0 60vh;
		margin: 30px 0;
	}
	
	footer {
	    display: block;
    }
    footer p {
	    width: 100%;
	    display: block;
    }
	
	.no-index h1 {
	    padding: 75px 0 0;
    }
    #inm {
	    width: calc(100% - 30px);
	    margin: 0 15px 30px;
	    padding:0 0 15px;
    }
    #inm img.grande {
	    width: 100%;
    }
    #inm .texto {
	    width: 100%;
	    margin: 0;
    }
    #inm .texto h3 {
	    margin: 15px 0;
    }
    #inm .texto p.precio {
	    font-size:1.2em;
    }
    #inm .texto table tr.tit {
	    font-size: 0.6em;
    }
    #inm .porta-imgs {
	    margin: 0;
    }
    #inm .porta-imgs img,
	#inm .porta-imgs img:nth-child(3n) {
	    width: 100%;
	    margin: 15px 0 0;
    }
	
	#porta-inmuebles {
	    width: calc(100% - 30px);
	    margin: 0 15px;
    }
    #porta-inmuebles .inmueble,
	#porta-inmuebles .inmueble:nth-child(3n) {
		width: calc(49% - 15px);
	    margin: 0 15px 15px 0;
    }
	#porta-inmuebles .inmueble:nth-child(2n) {
		margin: 0 15px 0 0;
	}
    #porta-inmuebles .inmueble label {
		font-size:0.6em;
	    top:  0;
	    right:0;
	    padding: 6px 9px;
    }
	
}