@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body{
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	font-family: 'Inter', sans-serif;
	flex-direction: column;
	background-color: #000;
}

@keyframes shrink {
  0% {
    background-size: auto 140%;
  }
  100% {
    background-size: auto 145%;
  }
}

@keyframes shrinkm {
  0% {
    background-size: 115% auto;
  }
  100% {
    background-size: 110% auto;
  }
}

@keyframes fadeup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeupscale {
  0% {
    transform: translateY(50px);
    opacity: 0;
    scale: 25%;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
    scale: 100%;
  }
}

@keyframes slideright {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  15% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  30% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.wapp {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 15px;
	right: 15px;
	z-index: 10;
}

.wapp::before {
	position: absolute;
	top: 10px;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	content: "¡Escríbenos!";
	padding: 5px 20px 5px 10px;
	border-radius: 5px;
	background-color: #32BA46;
	transition: opacity 0.5s ease, transform 0.5s ease;
	opacity: 0;
	transform: translateX(-40px);
}

.wapp:hover::before {
	opacity: 1;
	transform: translateX(-80px);
}

.wapp a {
	width: 50px;
	height: 50px;
}

.wapp a img {
	width: 50px;
	height: 50px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.burgermenu {
	position: fixed;
	width: 50px;
	height: 50px;
	top: 15px;
	right: 15px;
	z-index: 20;
	display: none;
}

.burgermenu  img {
	width: 40px;
	height: 40px;
	filter: invert(1);
}


header {
	width: 100%;
	max-width: 1920px;
	position: fixed;
	top: 0;
	display: flex;
	justify-content: space-around;
	align-content: center;
	padding: 15px 0px;
	z-index: 10;
}

header.menutrans {
	background: rgb(0,66,92);
	background: linear-gradient(180deg, rgba(0,66,92,1) 0%, rgba(57,169,246,0) 100%);
}

header a img {
	width: 150px;
	height: auto;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.navmenu {
	width: 60%;
	text-align: right;
}

.navmenu a {
	display: inline;
	text-decoration: none;
	color: #FFF;
	font-size: 13px;
	font-weight: 300;
	margin-left: 35px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.navmenu a:hover {
	color: #A8EEFC;
}

main {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
}

main .slide {
	width: 100%;
	height: 900px;
	background-image: url("img/AREASOCIAL_CAM3.webp");
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: space-around;
	 animation: shrink 8s infinite alternate;
	 background-repeat: no-repeat;
}

main .slide .slideinfo {
	width: 40%;
	margin-top: 125px;
	height: 600px;
	display: flex;
	flex-direction: column;
	align-content: space-between;
	justify-content: space-between;
}

main .slide .slideinfo .lprivalto {
	max-width: 600px;
	animation: fadeup 2s 1;
}

main .slide .slideinfo .slogan {
	width: 60%;
	margin-top: 20px;
}

main .slide .slideinfo .producto {
	align-self: flex-start;
	margin-bottom: 50px;
	width: 70%;
	min-width: 300px;
	background-color: #E7343F;
	padding: 20px 30px 20px 50px;
	color: white;
	text-align: left;
	border-radius: 15px;
	animation: slideright .5s 1;
}

main .slide .slideinfo .producto h1 {
	font-size: 30px;
	font-weight: 500;
	line-height: 35px;
	margin: 10px 0px;
}

main .slide .slideinfo .producto h2 {
	font-size: 25px;
	font-weight: 500;
	line-height: 16px;
	margin: 10px 0px;
}

main .slide .slideinfo .producto h2 b {
	font-size: 50px;
	font-weight: 500;
}

main .slide .slideinfo .producto h2 b sup {
	margin-left: -4px;
	font-size: 28px;
}

main .slide .form {
	width: 25%;
	margin-top: 300px;
	margin-bottom: 50px;
	border-radius: 15px;
	background: #967338;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
	padding: 30px;
	display: flex;
	text-align: center;
	flex-direction: column;
	animation: fadeup 1s 1;
	align-self: flex-end;
}

main .slide .form img {
	width: 70%;
	margin-left: 15%;
	height: auto;
}

main .slide .form h3 {
	color: #FFF;
	font-size: 12px;
	font-weight: 400;
	padding: 10px 0px;
}

main .slide .form input[type=text], main .slide .form input[type=email], main .slide .form input[type=tel]  {
	width: 90%;
	height: 30px;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	margin-bottom: 15px;
	padding: 5px 10px;
	color: #fff;
	position: relative;
	font-family: 'Inter', sans-serif;
	
}

main .slide .form input[type=text]:focus, main .slide .form input[type=email]:focus, main .slide .form input[type=tel]:focus {
  	font-size: 13px;
	font-weight: 300;
  	font-family: 'Inter', sans-serif;
}


main .slide .form input[type=text]::placeholder, main .slide .form input[type=email]::placeholder, main .slide .form input[type=tel]::placeholder {
  	font-size: 13px;
	font-weight: 300;
  	color: #EDEDED;
  	font-family: 'Inter', sans-serif;
}

main .slide .form input[type=submit] {
	width: 60%;
	min-width: 100px;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	margin-bottom: 25px;
	padding: 10px;
	color: #fff;
	position: relative;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
}

main .slide .form input[type=submit]:hover {
	background: #876731;
	scale: 105%;
	transition: 0.3s;
}


.info {
	background-color: #00425C;
	width: 100%;
	padding: 60px 5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.info .infologo {
	width: 225px;
	height: auto;
	margin-bottom: 30px;
}

.info h4 {
	font-size: 15px;
	color: white;
	font-weight: 500;
	border: 2px solid #FFF;
	padding: 4px 10px;
}

.info h5 {
	text-align: center;
	font-size: 18px;
	color: white;
	font-weight: 300;
	width: 70%;
}

.info .infophone {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-content: center;
	background-color: #967338;
	filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
	view-timeline-name: --titlem;
	view-timeline-axis: block;
	animation-timeline: --titlem;
	/*animation-name: fadeup;*/
	animation: pulse 3s infinite;
	animation-range: entry 0% cover 60%;
	animation-fill-mode: both;
}

.info .infophone:hover {
	background-color: #E7343F;
	animation-play-state: paused;
	scale: 105%;
	transition: 0.3s;
}

.info .infophone a {
	width: 25px;
	height: auto;
	display: flex;
	justify-content: center;
	align-content: center;
}

.info .infophone a img{
	width: 25px;
	height: auto;
}

.info h6 {
	text-align: center;
	font-size: 12px;
	color: white;
	font-weight: 300;
	margin: 5px;
}

.mesetah {
	width: 100%;
	height: 500px;
	background: rgb(0,66,92);
	background-image: linear-gradient(180deg, rgba(0,66,92,1) 0%, rgba(0,66,92,.85) 10%, rgba(0,66,92,0) 30%, rgba(57,169,246,0) 100%), url("img/meseta_habitat.jpg");
	background-size: cover;
	background-position: center top;
	padding: 60px 5%;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: flex-start;
	justify-content: center;
}

.mesetah h3 {
	width: 35%;
	font-size: 25px;
	color: white;
	font-weight: 700;
	margin: 10px 0px;
	view-timeline-name: --titlem;
	view-timeline-axis: block;
	animation-timeline: --titlem;
	animation-name: fadeup;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 60%;
	animation-fill-mode: both;
}

.mesetah p {
	width: 35%;
	font-size: 16px;
	color: white;
	font-weight: 300;
	margin: 10px 0px;
	view-timeline-name: --textm;
	view-timeline-axis: block;
	animation-timeline: --textm;
	animation-name: fadeup;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 60%;
	animation-fill-mode: both;
}

.mesetah a {
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 10px 0px;
}

.mesetah a:hover {
	background-color: #E7343F;
	scale: 105%;
	transition: 0.3s;
}

.privalto {
	width: 100%;
	background: rgb(250,250,250);
	display: flex;
	align-content: center;
	justify-content: space-between;
}

.privalto .left {
	flex-grow: .5;
	padding: 25px 5%;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: flex-start;
	justify-content: center;
	font-size: 16px;
	color: #484848;
}

.privalto .left img {
	width: 50%;
	height: auto;
	margin-top: 25px;
}
.privalto .left p {
	margin: 10px 0px 0px 0px ;
}

.privalto .left a {
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 10px 0px;
}

.privalto .left a:hover {
	background-color: #E7343F;
	scale: 105%;
	transition: 0.3s;
}

.privalto .right {
	flex-grow: 4;
	background-image: url("img/caseta3.webp");
	background-size: cover;
	background-position: center center;
	min-height: 100px;
}

footer {
	width: 100%;
	height: 250px;
	background: #293A41;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-end;
	font-size: 12px;
	color: #D0D0D0;
	font-weight: 300;
}

footer .f1 {
	width: 25%;
	padding: 15px 15px 15px 25px;
	line-height: 14px;
	/* background: red; */
}

footer .f1  img{
	width: 60%;
	max-width: 200px;
	margin-bottom: 15px;
}

footer .f1 a {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	font-weight: 300;
}

footer .f1 a:hover {
	color: #E7343F;
	transition: 0.3s;
}

footer .f2 {
	width: 25%;
	padding: 15px;
}

footer .f2 > a {
	width: 35px;
	height: auto;
	margin: 0px;
}

footer .f2 > a img {
	width: 35px;
	height: auto;
	margin: 10px 20px 10px 0px;
}

footer .f2 > a img:hover {
	filter: drop-shadow(0px 2px 5px black);
	scale: 105%;
	transition: 0.3s;
}

footer .f2 p {
	font-size: 14px;
	margin: 5px 0px;
}

footer .f2 .map {
	width: 100%;
}

footer .f2 .map a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-content: center;
	align-items: center;
}
footer .f2 .map a:hover {
	filter: drop-shadow(0px 2px 5px black);
	scale: 105%;
	transition: 0.3s;
}

footer .f2 .map a img {
	margin-right: 20px;
}

footer .f3 {
	width: 25%;
	padding: 15px;
}

footer .f3 .promo {
	width: 100%;
	border-left: 1px solid #fff;
	padding-left: 25px;
}

footer .f3 .promo h1 {
	font-size: 80px;
	font-weight: 800;
	line-height: 80px;
	margin: 0px;
}

footer .f3 .promo h3 {
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	margin: 0px;
}

footer .f3 .promo h3 b {
	font-size: 24px;
	font-weight: 600;
}


footer .f4 {
	width: 25%;
	padding: 25px;
	align-self: flex-end;
	justify-self: flex-end;
}

footer .f4 img {
	width: 65%;
	max-width: 350px;
	margin-top: 15px;
}
footer .bottom {
	flex: 0 0 100%;
	text-align: center;
	background: #272727;
	padding: 10px;
	font-size: 12px;
	color: #D0D0D0;
}

footer .bottom a {
	font-size: 12px;
	color: #D0D0D0;
	font-weight: 500;
	text-decoration: none;
}


/* --- MESETA --- */


.slidemeseta {
	width: 100%;
	height: 600px;
	background-image: url('img/slidemeseta.webp');
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
	animation: shrinkm 8s infinite alternate;
	 background-repeat: no-repeat;
	
}

.slidemeseta .intromeseta {
	width: 30%;
	border-radius: 15px;
	background: #967338;
	box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.50);
	padding: 30px;
	color: #fff;
	margin-right: 5%;
	margin-bottom: -40px;
	z-index: 3;
	animation: fadeup 1s 1;
}

.slidemeseta .intromeseta h2 {
	font-size: 17px;
	font-weight: 400;
	text-align: left;
}

.slidemeseta .intromeseta h2 b {
	font-size: 24px;
	font-weight: 500;
}

.features {
	background: #00425C;
	padding: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.feature {
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	max-width: 150px;
	text-align: center;
	view-timeline-name: --feature;
	view-timeline-axis: block;
	animation-timeline: --feature;
	animation-name: fadeup;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 40%;
	animation-fill-mode: both;
}

.feature p {
	margin: 10px;
}

.feature img {
	width: 80px;
	height: auto;
	margin: 10px;
}



.oferta {
	width: 100%;
	display: flex;
	padding: 0px 5%;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
}

.oferta .infooferta {
	padding: 50px;
}

.oferta .infooferta h2 {
	color: #293A41;
	font-size: 30px;
	font-weight: 600;
}

.oferta .infooferta ul li {
	color: #293A41;
	font-size: 16px;
	font-weight: 500;
}

.oferta .infoimagen {
	background: url('img/PRIVALTO-estilo_vida.webp');
	background-size: cover;
	background-position: top center;
	width: 55%;
	align-self: stretch;
}

.etapas {
	width: 100%;
	background: #272727;
	padding: 50px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.etapas .etapa {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	view-timeline-name: --etapa;
	view-timeline-axis: block;
	animation-timeline: --etapa;
	animation-name: fadeupscale;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 40%;
	animation-fill-mode: both;
}

.etapas .etapa h6 {
	font-size: 12px;
	color: white;
	font-weight: 300;
	border: 1px solid #FFF;
	padding: 4px 12px 6px 12px;
	margin: 0px 0px 15px 0px;
}

.etapas .etapa img {
	height: 120px;
	width: auto;
}

.etapas .etapa p {
	font-size: 12px;
	color: white;
	font-weight: 300;
	padding: 4px 10px;
	margin-top: 15px;
}

.vendido {
	background: #FF4A4A;
}

.enventa {
	background: #4CE166;
}

.preventa {
	background: #E49E00;
}

.galeria {
	display: flex;
	width: 100%;
	height: 300px;
	background: #272727;
	padding: 0px 7%;
}

.galeria img {
	width: 0px;
	flex-grow: 1;
	object-fit: cover;
	opacity: .8;
	transition: .4s ease;

}

.galeria img:hover {
	cursor: crosshair;
	width: 500px;
	opacity: 1;
	filter: contrast(120%);
	border: 1px solid #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
}

.informacion {
	width: 100%;
	background: #272727;
	padding: 0px 75px 100px 75px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
	align-content: space-between;
}

.informacion img {
	width: 60%;
	height: auto;
	max-width: 750px;
}

.informacion .generales {
	width: 30%;
	color: #FFF;
	font-size: 16px;
	font-weight: 300;
	margin-top: 50px;
}

.informacion .avances {
	width: 30%;
	color: #FFF;
	font-size: 16px;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.informacion .avances a {
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 20px 0px;
}

.informacion .avances a:hover {
	background-color: #E7343F;
	scale: 105%;
	transition: 0.3s;
}

.informacion video {
	width: 60%;
	height: 315px;
	max-width: 750px;
}

.informacion iframe {
	width: 60%;
	height: 315px;
	max-width: 750px;
}

.vista {
	width: 100%;
	height: 350px;
	max-height: 350px;
	background-size: cover;
	background-position: center center;
	background-attachment: scroll;
	background-image: url('img/back_landscape2.webp');
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	align-content: flex-start;
	padding: 0px 75px;
}

.vista h1 {
	color: #FFF;
	font-size: 32px;
	margin-top: 75px;
	font-weight: 400;
	padding: 20px 200px 20px 50px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
}

.vista form {
	width: 28%;
	margin-top: -50px;
	border-radius: 15px;
	background: #967338;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
	padding: 40px 30px;
	display: flex;
	text-align: center;
	flex-direction: column;
	align-items: center;
	z-index: 3;
	view-timeline-name: --fmeseta;
	view-timeline-axis: block;
	animation-timeline: --fmeseta;
	animation-name: fadeupscale;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 40%;
	animation-fill-mode: both;
}

.vista form img {
	width: 70%;
	height: auto;
}

.vista form h3 {
	color: #FFF;
	font-size: 11px;
	font-weight: 400;
	padding: 10px 0px;
}

.vista form input[type=text] {
	width: 100%;
	height: 30px;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	margin-bottom: 15px;
	padding: 5px 10px;
	color: #fff;
	position: relative;
	font-family: 'Inter', sans-serif;
	
}

.vista form input[type=text]:focus {
  	font-size: 13px;
	font-weight: 300;
  	font-family: 'Inter', sans-serif;
}


.vista form input[type=text]::placeholder {
  	font-size: 13px;
	font-weight: 300;
  	color: #EDEDED;
  	font-family: 'Inter', sans-serif;
}

.vista form input[type=submit] {
	width: 70%;
	min-width: 100px;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px;
	color: #fff;
	position: relative;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
}

.vista form input[type=submit]:hover {
	background: #876731;
	scale: 105%;
	transition: 0.3s;
}

.contenedor-sam {
	margin-top: 80px;
}

.contenedor-sam iframe {
	height: 100vh;
  overflow: hidden;
}



/* --- PRIVALTO --- */



.slideprivalto {
	width: 100%;
	max-height: 850px;
	height: 850px;
	background: rgb(0,66,92);
	background-image: linear-gradient(0deg, rgba(0,66,92,1) 0%, rgba(0,66,92,.85) 10%, rgba(0,66,92,0) 20%, rgba(57,169,246,0) 100%), url("img/CASETA_CAM2.jpg");
	background-size: cover;
	background-position: center center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	padding: 100px 0px 150px;
	animation: shrinkm 8s infinite alternate;
	 background-repeat: no-repeat;
}

.slideprivalto > img {
	animation: fadeup 2s 1;
}

.slideprivalto .promo {
	align-self: flex-start;
	width: 30%;
	min-width: 300px;
	background-color: #E7343F;
	padding: 20px 30px 20px 50px;
	color: white;
	text-align: left;
	border-radius: 0px 15px 15px 0px;
	animation: slideright .5s 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.slideprivalto .promo h1 {
	font-size: 25px;
	font-weight: 500;
	line-height: 25px;
	margin: 0px;
}

.slideprivalto .promo h2 {
	font-size: 20px;
	font-weight: 500;
	line-height: 16px;
	margin: 10px 0px;
}

.slideprivalto .promo h2 b {
	font-size: 45px;
	font-weight: 500;
}

.slideprivalto .promo h2 b sup {
	margin-left: -4px;
	font-size: 28px;
}

.infoprivalto {
	width: 100%;
	background: #00425C;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

.infoprivalto img {
	width: 30%;
	height: auto;
}

.infoprivalto .textoprivalto {
	width: 40%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.infoprivalto .textoprivalto h3 {
	color: #FFF;
	font-size: 40px;
	font-weight: 700;
	padding: 0;
	margin: 0;
}

.infoprivalto .textoprivalto p {
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
}

.infoprivalto .textoprivalto p sup {
	margin-left: -5px;
}

.infoprivalto .textoprivalto h4 {
	color: #FFF;
	font-size: 35px;
	font-weight: 600;
	text-align: center;
}

.infoprivalto .textoprivalto h4 b{
	color: #FFF;
	font-size: 50px;
	font-weight: 600;
}

.infoprivalto .textoprivalto a {
	align-self: center;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 10px 0px;
}

.infoprivalto .textoprivalto i {
	font-weight: 700;
}

.infoprivalto .amenities {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 300px;
	margin-bottom: 80px;
	background-image: url('img/lineamenities.svg');
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.infoprivalto .amenities .amenity {
	border-radius: 50%;
	border: 2px solid #fff;
	background-position: center center;
	background-size: cover;
}

.infoprivalto .amenities .amenity::before {
	position: absolute;
	color: #FFF;
	font-size: 15px;
	font-weight: 400;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
}

.a1 {
	background-image: url('img/PRIVALTO-alberca.webp');
	align-self: flex-start;
	width: 175px;
	height: 175px;
	transition: transform 0.5s ease;
}
.a1:hover, .a2:hover, .a3:hover, .a4:hover {
	transform: scale(1.1);
	box-shadow: 3px 3px 8px rgba(0, 0, 0, 1);
}

.a1:hover::before {
	 content: "ALBERCA";
	 width: 175px;
	 height: 200px;
}

.a2 {
	background-image: url('img/PRIVALTO-casaclub.webp');
	width: 225px;
	height: 225px;
	transition: transform 0.5s ease;
}
.a2:hover::before {
	 content: "CASA CLUB CON ROOF TOP";
	 width: 225px;
	 height: 250px;
}

.a3 {
	background-image: url('img/PRIVALTO-cancha.webp');
	margin-top: -25px;
	width: 180px;
	height: 180px;
	transition: transform 0.5s ease;
}
.a3:hover::before {
	 content: "CANCHA DE USOS MULTIPLES";
	 width: 180px;
	 height: 225px;
}

.a4 {
	background-image: url('img/PRIVALTO-areasverdes.webp');
	align-self: flex-end;
	width: 200px;
	height: 200px;
	transition: transform 0.5s ease;
}
.a4:hover::before {
	 content: "5,100 M\00B2  DE ÁREAS VERDES";
	 width: 200px;
	 height: 245px;
}

.promo2 {
	width: 100%;
	background: #967439;
	padding: 40px;
	display: flex;
	justify-content: ;
	flex-direction: column;
	align-items: center;
}

.promo2 h2 {
	color: #FFF;
	font-size: 40px;
	font-weight: 500;
	vertical-align: text-top;
	view-timeline-name: --promo2;
	view-timeline-axis: block;
	animation-timeline: --promo2;
	animation-name: fadeupscale;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 40%;
	animation-fill-mode: both;
	margin: 0;
	text-align: center;
}

.promo2 p {
	font-size: 18px;
	vertical-align: text-top;
	color: white;
	width: 50%;
	text-align: center;
}

.promo2 p b {
	font-size: 35px;
	font-weight: 700;
}

.promo2 a {
	align-self: center;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 10px 0px;
}

.descripcion {
	width: 100%;
	display: flex;
	padding: 0px 5%;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
}

.descripcion2 {
	width: 100%;
	display: flex;
	padding: 0px 5%;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
}

.descripcion .infodescripcion {
	padding: 60px 50px;
	width: 40%;
}

.descripcion .infodescripcion h3 {
	color: #293A41;
	font-size: 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.descripcion .infodescripcion p {
	color: #293A41;
	font-size: 16px;
	font-weight: 500;
}

.descripcion .imagedescripcion {
	background: url('img/FOTO_OPCION1.jpg');
	background-size: cover;
	background-position: center center;
	width: 55%;
	align-self: stretch;
}

.descripcion2 .infodescripcion2 {
	padding: 60px 50px;
	width: 55%;
	min-height: 500px;
	height: auto;
	display: flex;
	flex-direction: column;
}

.descripcion2 .infodescripcion2 a {
	align-self: center;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 15px 0px 15px 0px;
}

.descripcion2 .imagedescripcion2 {
	background: url('img/avance1.webp');
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	width: 45%;
	align-self: stretch;
}

.terrenos {
	width: 100%;
	height: 380px;
	background-color: #547692;
	background-image: url('img/texture.png');
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.terrenos img {
	width: 50%;
	height: auto;
	max-width: 700px;
	z-index: 5;
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
	view-timeline-name: --lotes;
	view-timeline-axis: block;
	animation-timeline: --lotes;
	animation-name: fadeupscale;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 45%;
	animation-fill-mode: both;
}

.terrenos .infoterrenos {
	width: 35%;
	color: #fff;
	text-align: center;
	padding-bottom: 25px;
}

.terrenos .infoterrenos h2 {
	font-size: 35px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 40px;
	margin: 0 0 25px 0;
}

.terrenos .infoterrenos p {
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	margin: 0;
}

.terrenos .infoterrenos .buttons {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px;
}

.terrenos .infoterrenos .buttons a {
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 0px 20px;
	min-width: 175px;
}

.terrenos .infoterrenos .buttons a:hover {
	background-color: #E7343F;
	scale: 105%;
	transition: 0.3s;
}

.landscape {
	width: 100%;
	min-height: 450px;
	background-size: cover;
	background-position: center center;
	background-image: url('img/familia.webp');
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
	padding: 0px 0px;
}

.landscape .infowhy {
	justify-self: center;
	padding: 50px 50px;
	width: 90%;
	height: auto;
}

.landscape .infowhy h2 {
	color: #FF4A4A;
	font-size: 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.landscape .infowhy p {
	color: #293A41;
	font-size: 16px;
	font-weight: 500;
	width: 50%;
}

.landscape img {
	width: 300px;
	height: auto;
	margin: 50px 50px;
}
.landscape .infowhy2 {
	align-self: flex-end;
	padding: 50px 50px;
	width: 40%;
	height: auto;
	display: flex;
	align-items: flex-end;
}

.landscape .infowhy2 h1 {
	text-align: center;
	background: #FF4A4A;
	padding: 15px 75px 15px 75px;
	color: #FFF;
	font-size: 25px;
	margin-bottom: 50px;
	font-weight: 400;
	border-radius: 15px;
	align-self: flex-end;
	justify-self: flex-end;
	line-height: 50px;
}

.landscape .infowhy2 h1 b {
	font-size: 55px;
	font-weight: 600;
}

.landscape form {
	width: 25%;
	margin-bottom: -50px;
	border-radius: 15px;
	background: #967338;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
	padding: 40px 30px;
	display: flex;
	text-align: center;
	flex-direction: column;
	align-items: center;
	z-index: 3;
	view-timeline-name: --fprivalto;
	view-timeline-axis: block;
	animation-timeline: --fprivalto;
	animation-name: fadeupscale;
	/*animation: fadeup 1s 1;*/
	animation-range: entry 0% cover 45%;
	animation-fill-mode: both;
}

.landscape form img {
	width: 70%;
	height: auto;
}

.landscape form h3 {
	color: #FFF;
	font-size: 11px;
	font-weight: 400;
	padding: 10px 0px;
}

.landscape form input[type=text] {
	width: 100%;
	height: 30px;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	margin-bottom: 15px;
	padding: 5px 10px;
	color: #fff;
	position: relative;
	font-family: 'Inter', sans-serif;
	
}

.landscape form input[type=text]:focus {
  	font-size: 13px;
	font-weight: 300;
  	font-family: 'Inter', sans-serif;
}


.landscape form input[type=text]::placeholder {
  	font-size: 13px;
	font-weight: 300;
  	color: #EDEDED;
  	font-family: 'Inter', sans-serif;
}

.landscape form input[type=submit] {
	width: 70%;
	min-width: 100px;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px;
	color: #fff;
	position: relative;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
}

.landscape form input[type=submit]:hover {
	background: #876731;
	scale: 105%;
	transition: 0.3s;
}

.privacy {
	background: #00425C;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.privacy h1 {
	margin-top: 120px;
	width: 90%;
}

.privacy section {
	width: 90%;
}




/* --- INICIAN MEDIA QUERIES --- */



@media screen and (max-width: 1440px) {

main .slide {
	max-height: 800px;
}

.info h5 {
	text-align: center;
	font-size: 18px;
	color: white;
	font-weight: 300;
	width: 90%;
}

.slideprivalto {
	max-height: 800px;
	height: 800px;
}

.promo2 p {
	width: 65%;
}

.landscape .infowhy p {
	width: 75%;
}


.landscape .infowhy2 {
	width: 50%;
}

.landscape form {
	width: 32%;
}

}



@media screen and (max-width: 1000px) {

.slidemeseta {
	animation: shrink 8s infinite alternate;
	
}

.slideprivalto {
	max-height: 750px;
	height: 750px;
	animation: shrink 8s infinite alternate;
	
}


main .slide .form {
	width: 40%;
}

.etapas {
	padding: 50px;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: space-between;
}

.etapas .etapa {
	margin-right: 25px;
	margin-bottom: 25px;
}

.etapas .etapa img {
	width: 100%;
	max-width: 250px;
	height: auto;
}

.galeria {
	width: 100%;
	height: 250px;
	padding: 0px 7%;
}

.galeria img:hover {
	width: 400px;
}

.informacion {
	padding: 0px 50px 100px 50px;
	flex-wrap: no-wrap;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	align-content: space-between;
}

.informacion img {
	width: 100%;
	height: auto;
}

.informacion .generales {
	width: 100%;
	color: #FFF;
	font-size: 16px;
	font-weight: 300;
	margin-top: 50px;
}

.informacion .avances {
	width: 100%;
	order: 4;
}

.informacion .avances a {
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	padding: 10px 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
	margin: 20px 0px;
}

.informacion video {
	width: 100%;
	height: 300px;
	margin-top: 50px;
}

.informacion iframe {
	width: 100%;
	height: 300px;
	margin-top: 50px;
}

.vista {
	height: 400;
	max-height: 400px;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	/*align-content: flex-start;*/
	padding: 0px;
}

.vista h1 {
	font-size: 30px;
	padding: 20px 150px 20px 40px;
}

.vista form {
	width: 100%;
	margin-bottom: -400px;
	border-radius: 0px;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.00);
}

.vista form img {
	width: 70%;
	max-width: 250px;
}

.vista form input[type=text] {
	max-width: 400px;
}

.vista form input[type=submit] {
	max-width: 300px;
}

.footer_respons {
	margin-top: 400px;
}

.slidemeseta .intromeseta {
	width: 50%;
}

.slideprivalto .promo {
	width: 50%;
}

.infoprivalto img {
	width: 35%;
}

.infoprivalto .textoprivalto {
	width: 45%;
}

.infoprivalto .amenities {
	height: 250px;
}

.a1 {
	transform: scale(0.8);
}
.a1:hover, .a2:hover, .a3:hover, .a4:hover {
	transform: scale(1);
}
.a2 {
	transform: scale(0.8);
}

.a3 {
	transform: scale(0.8);
}

.a4 {
	transform: scale(0.8);
}

.promo2 p {
	width: 75%;
}

.descripcion {
	padding: 0px 0%;
}

.descripcion2 {
	padding: 0px 0%;
}

.descripcion .infodescripcion {
	padding: 60px 50px;
	width: 50%;
}

.descripcion .imagedescripcion {
	width: 45%;
}

.terrenos {
	height: 380px;
}

.terrenos img {
	width: 50%;
}

.terrenos .infoterrenos {
	width: 40%;
}

.terrenos .infoterrenos .buttons {
	flex-direction: column;
}

.terrenos .infoterrenos .buttons a {
	margin: 5px 0px;
}

.landscape .infowhy p {
	width: 100%;
}

.landscape .infowhy2 {
	padding: 50px 50px;
	width: 50%;
}

.landscape .infowhy2 h1 {
	padding: 15px 30px 15px 30px;
}

.landscape .infowhy2 h1 b{
	font-size: 45px;
}

.landscape form {
	width: 40%;
	margin-right: 50px;
}

.landscape form img {
	width: 70%;
	max-width: 250px;
}

.landscape form input[type=text] {
	max-width: 400px;
}

.landscape form input[type=submit] {
	max-width: 300px;
}


}

@media screen and (max-width: 700px) {

.burgermenu {
	display: inline;
}

header {
	justify-content: space-between;
	padding: 0px;
	z-index: 10;
	height: 100px;
}

header a img {
	width: 135px;
	height: auto;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
	padding: 20px 25px;
}

.navmenu {
	position: absolute;
	width: 200px;
	background: rgb(0,66,92);
	padding: 40px 20px 20px 20px;
	text-align: center;
	right: -200px;
	transition: transform 0.3s;
	transition-timing-function: ease-in;
}

.show {
	transition: transform 0.3s;
	transition-timing-function: ease-in;
	transform: translateX(-200px);
}

.navmenu a {
	display: block;
	padding: 20px 0px;
	margin: 10px 0px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.0));
	border-bottom: 1px dotted #fff;
}

.navmenu a:hover {
	color: #A8EEFC;
}

main .slide {
	max-height: 600px;
	background-position: center top;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

main .slide .slideinfo {
	width: 100%;
	margin-top: 0px;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding-top: 100px;
	padding-bottom: 20px;
}

main .slide .slideinfo .lprivalto {
	width: 80%;
}

main .slide .slideinfo .slogan {
	width: 60%;
	margin-top: 0px;
}

main .slide .slideinfo .producto {
	align-self: center;
	margin-top: 25px;
	padding: 15px;
	text-align: center;
}

main .slide .slideinfo .producto h1 {
	font-size: 20px;
	line-height: 25px;
	margin: 5px 0px;
}

main .slide .slideinfo .producto h2 {
	font-size: 16px;
	line-height: 16px;
	margin: 5px 0px;
}

main .slide .slideinfo .producto h2 b {
	font-size: 30px;
	font-weight: 500;
}

main .slide .slideinfo .producto h2 b sup {
	margin-left: -4px;
	font-size: 16px;
}


main .slide .form {
	width: 100%;
	margin-top: 0px;
	margin-bottom: -400px;
	border-radius: 0px;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.0);
	z-index: 5;
	min-height: 380px;
	max-height: 450px;
}

main .slide .form img {
	width: 60%;
	margin-left: 20%;
}

.info {
	margin-top: 400px;
	padding: 60px 40px;
}

.info .infologo {
	width: 200px;
}

.info h5 {
	font-size: 16px;
}

.mesetah {
	height: 700px;
	background: rgb(0,66,92);
	background-image: linear-gradient(180deg, rgba(0,66,92,1) 0%, rgba(0,66,92,.85) 10%, rgba(0,66,92,0) 30%, rgba(57,169,246,0) 100%), url("img/meseta_habitat.jpg");
	background-size: cover;
	background-position: center top;
	padding: 0px 40px 60px 40px;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: flex-start;
	justify-content: flex-start;
}

.mesetah h2 {
	width: 90%;
	font-size: 25px;
	margin: 10px 0px;
}

.mesetah p {
	width: 90%;
	font-size: 15px;
	margin: 10px 0px;
}

.privalto {
	display: flex;
	flex-direction: column;
}

.privalto .left {
	flex-grow: 0;
	padding: 25px 40px;
}

.privalto .left img {
	width: 65%;
	margin-top: 25px;
}

.privalto .right {
	flex-grow: 0;
	min-height: 200px;
}

footer {
	height: auto;
	display: flex;
	flex-direction: column;
}

footer .f1 {
	width: 100%;
	padding: 25px;
	margin-top: 25px;
	text-align: center;
	/* background: red; */
}

footer .f1  img{
	width: 60%;
	max-width: 200px;
}

footer .f2 {
	width: 100%;
	padding: 25px;
	text-align: center;
}

footer .f2 .map {
	width: 100%;
}

footer .f2 .map a {
	justify-content: center;
}

footer .f3 {
	width: 100%;
	padding: 25px;
	text-align: center;
}

footer .f3 .promo {
	border-left: 0px solid #fff;
	padding-left: 0px;
}

footer .f4 {
	width: 100%;
	padding: 25px;
	text-align: center;
}

footer .f4 img {
	width: 60%;
	max-width: 200px;
}
footer .bottom {
	flex: 0 0 100%;
	text-align: center;
	background: #272727;
	padding: 10px;
	font-size: 12px;
	color: #D0D0D0;
}

footer .bottom a {
	font-size: 12px;
	color: #D0D0D0;
	font-weight: 500;
	text-decoration: none;
}

.slidemeseta {
	height: 600px;
	display: flex;
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
	animation: shrink 8s infinite alternate;
	
}

.slidemeseta .intromeseta {
	width: 100%;
	border-radius: 0px;
	box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.00);
	padding: 40px;
	margin-right: 0px;
	margin-bottom: -150px;
}

.slidemeseta .intromeseta h2 {
	text-align: justify;
	margin: 0px;
	font-size: 15px;
}

.slidemeseta .intromeseta h2 b{
	font-size: 20px;
}


.features {
	margin-top: 150px;
	justify-content: center;
	padding: 40px;
}

.feature {
	font-size: 13px;
	max-width: 130px;
}

.feature img {
	width: 60px;
}

.oferta {
	padding: 0px 5%;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.oferta .infooferta {
	padding: 25px;
}

.oferta .infoimagen {
	width: 100%;
	height: 200px;
	background-position: center top;
}

.galeria {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 600px;
}

.galeria img {
	height: 0px;
	width: auto;
	opacity: .6;
	border-top: 2px solid #272727;

}

.galeria img:hover {
	width: 100%;
	height: 250px;
	opacity: 1;
}

.informacion {
	padding: 25px 0px 50px 0px;
}

.informacion .generales {
	padding: 0px 40px 0px 40px;
}

.informacion iframe {
	width: 100%;
	height: 200px;
	margin-top: 50px;
}

.informacion .avances {
	padding: 0px 40px 0px 40px;
}

.vista h1 {
	font-size: 25px;
	padding: 15px 20px 15px 20px;
	text-align: center;
}

.vista form {
	min-height: 400px;
}

.slideprivalto {
	width: 100%;
	max-height: 750px;
	height: 700px;
	padding: 100px 0px 50px;
}

.slideprivalto > img {
	width: 60%;
	min-width: 300px;
}

.slideprivalto .promo {
	width: 80%;
	padding: 10px 20px 10px 50px;
	/*align-self: flex-start;
	border-radius: 0px 15px 15px 0px;*/
}

.slideprivalto .promo h3 {
	font-size: 18px;
}

.slideprivalto .promo h4 {
	font-size: 15px;
}

.slideprivalto .promo h4 b {
	font-size: 45px;
}

.infoprivalto {
	flex-direction: column;
	align-items: center;
}

.infoprivalto img {
	margin-top: 50px;
	margin-bottom: 20px;
	width: 80%;
}

.infoprivalto .textoprivalto {
	width: 80%;
}

.infoprivalto .amenities {
	width: 70%;
	height: auto;
	flex-direction: column;
	background-image: none;
	justify-content: center;
	align-items: center;
}

.a1 {
	transform: scale(.9);
}
.a1:hover, .a2:hover, .a3:hover, .a4:hover {
	transform: scale(1);
}
.a2 {
	transform: scale(.9);
	align-self: flex-end;
}

.a3 {
	transform: scale(.9);
	align-self: flex-start;
	margin-top: 0px;
}

.a4 {
	transform: scale(.9);
	align-self: flex-end;
}

.promo2 {
	padding: 30px;
}

.promo2 p {
	width: 100%;
}

.promo2 h1 {
	font-size: 26px;
}

.promo2 h1 small {
	font-size: 12px;
}

.promo2 h1 b {
	font-size: 40px;
}

.descripcion{
	flex-direction: column;
}

.descripcion2 {
	flex-direction: column-reverse;
}

.descripcion .infodescripcion {
	padding: 60px 50px;
	width: 100%;
}

.descripcion .infodescripcion h2 {
	font-size: 28px;
}

.descripcion .imagedescripcion {
	width: 100%;
	height: 300px;
}

.descripcion2 .infodescripcion2 {
	padding: 60px 50px 0px 50px;
	width: 100%;
	min-height: 250px;
}

.descripcion2 .imagedescripcion2 {
	width: 100%;
	height: 300px;
}

.terrenos {
	height: auto;
	flex-direction: column;
	justify-content: center;
}

.terrenos img {
	width: 80%;
	margin-top: -25px;
}

.terrenos .infoterrenos {
	width: 80%;
}

.terrenos .infoterrenos h2 {
	font-size: 30px;
}

.landscape {
	background-position: top left;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0px 0px;
}

.landscape .infowhy {
	justify-self: center;
	padding: 50px 50px;
	margin-bottom: 100px;
	width: 100%;
}

.landscape .infowhy2 {
	justify-self: flex-end;
	padding: 50px 50px;
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-end;
}

.landscape .infowhy2 h1 {
	width: 100%;
	padding: 15px 30px 15px 30px;
	font-size: 20px;
	line-height: 40px;
}

.landscape .infowhy2 h1 b {
	font-size: 40px;
	font-weight: 600;
}

.landscape form {
	width: 100%;
	border-radius: 0px;
	margin-bottom: -390px;
}

.footer_respons {
	margin-top: 390px;
}

}