html {
    box-sizing: border-box;
    font-size: 62.5%; /** Reset para REMS - 62.5% = 10px de 16px **/
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    background-color: #0a0a0a;
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    line-height: 2;
}
/** Recuadro Colorima **/
.recuadro {
  position: relative;
  height: 270px;
  width: 1190px;
  margin: 30px 10px;
  float: center;
}
@media screen and (max-width: 600px) {
    .recuadro {
    display:none;
    }
   }

.recuadro img {
  position: absolute;
  left: 0;
  transition: opacity 1.5s ease-in-out;
}

.recuadro img.top:hover {
  opacity: 0;
}

/** Globales **/
img {
    max-width: 100%;
}
.contenedor {
    width: 80%;
    max-width: 1000px; /** = 1200px; **/
    margin: 0 auto;
}

h2 {
    font-size: 6.4rem;
    font-family: comic sans ms; 
}


/** Utilidades **/
.seccion {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.fw-300 {
	font-family: "Paytone One";
    font-weight: 300;
    color: #7DB64C;
}
.centrar-texto {
    text-align: center;
}
.d-block {
    display: block!important;
}
.contenido-centrado {
    max-width: 800px;
}

/** Botones **/
.boton {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.8rem;
    padding: 1rem 3rem;
    margin-top: 3rem;
    display: inline-block;
    text-align: center;
    border: none;
    display: block;
    flex: 0 0 100%;
}
@media (min-width: 768px) {
    .boton {
        display: inline-block;
        flex: 0 0 auto;
    }
}
.boton:hover {
    cursor: pointer;
}
.boton-fosforescente {
    background-color: #7DB64C;
}
.boton-verde {
    background-color: #71B100;
}

/* Header */
.site-header {
    background-color: #333333;
    padding: 1rem 0 3rem 0;
	width: 100%;	
}
.site-header.inicio {
    background-color: white;
    background-position: center center;
    background-size: cover;
    height: 100vh;
    min-height: 60rem;
}
.contenido-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;	
	
}
@media (min-width: 768px) {
    .contenido-header{
        text-align: left;
    }
}
.contenido-header h1 {
    color: #0a0606;
    padding-bottom: 2rem;
    max-width: 60rem;
    line-height: 2;
}
.barra {
    padding-top: 3rem;
	
}
@media (min-width: 768px) {
    .barra {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/** Navegacion **/
.navegacion a {
    width: 80%;
    max-width: 1000px; /** = 1200px; **/
    margin: 0 auto;
    color: #7DB64C;
    text-decoration: none;
    font-size: 2.2rem;
    display: block;
}


@media (min-width: 768px) {
    .navegacion a {
        display:inline-block;
        font-size: 1.8rem; /** = 18px **/
        margin-right: 2rem;
    }
    .navegacion a:last-of-type {
        margin: 0;
    }
}
.navegacion a:hover {
    color: #7DB64C;
}


/** Mobile Menu **/
.mobile-menu img {
    width: 5rem;
}
@media (min-width: 768px) {
    .mobile-menu {
        display: block;
    }
}
.navegacion:target {
    display: block;
}
.navegacion {
    display: block;
}
@media (min-width: 768px) {
    .navegacion {
        display: block;
    }
}

/** Iconos Nosotros **/
@media (min-width: 768px) {
    .iconos-nosotros {
        display: flex;
        justify-content: space-between;
    }
}
.icono {
    text-align: center;
}
@media (min-width: 768px) {
    .icono {
        flex-basis: calc(33.3% - 1rem);
    }
}
.icono h3 {
    text-transform: uppercase;
}
/** Anuncios **/

@media (min-width: 768px) {
    .contenedor-anuncios{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}
.anuncio {
    border: 1px solid #B5B5B5;
    background-color: #0a0a0a;
    margin-bottom: 2rem;
}
@media (min-width: 738px) {
    .anuncio {
        flex: 0 0 calc(33.3% - 1rem);
    }
}
.contenido-anuncio {
    padding: 2rem;
	color: #71B100;
	
}
.contenido-anuncio h3,
.contenido-anuncio p  {
	color: #71B100;
    margin: 0;
}
.precio {
    color: #71B100;
    font-weight: 700;
}
.iconos-caracteristicas {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    flex: 1;
    max-width: 500px;
}
.iconos-caracteristicas li {
    /* flex: 1; */
    display: flex;
}
.iconos-caracteristicas li img {
    margin-right: 2rem;
}
.ver-todas {
    display: flex;
    justify-content: flex-end;
}

/** Contacto Home **/
.imagen-contacto {
    background-image: url(../img/encuentra.jpg);
    background-position: center center;
    background-size: cover;
    height: 500px;
    width: 700px;
    display: flex;
    align-items: center;
   
}
.contenido-contacto {
    flex: 0 0 85%;
    color: #ffffff;
}
.contenido-contacto p {
    font-size: 1.6rem;
}

/** Sección Inferior **/
@media (min-width: 768px) {
    .seccion-inferior {
        display: flex;
        justify-content: space-between;
    }
    .seccion-inferior .blog {
        flex-basis: 60%;
    }
    .seccion-inferior .testimoniales {
        flex-basis: calc(40% - 2rem);
    }
}
.entrada-blog {
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .entrada-blog {
        display: flex;
        justify-content: space-between;
    }
}

.entrada-blog:last-of-type {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .entrada-blog .imagen {
        flex-basis: 40%;
    }
    .entrada-blog .texto-entrada {
        flex-basis: calc(60% - 3rem);
    }
}
.texto-entrada a {
    color: #0ced6d;
    text-decoration: none;
}
.texto-entrada h4 {
    margin: 0;
    line-height: 1.4;
}
.texto-entrada h4::after {
    content: '';
    display: block;
    width: 15rem;
    height: .5rem;
    background-color: #71B100;
    margin-top: 1rem;
}
.texto-entrada span {
    color: #E08709;
}
/*** Testimoniales **/
.testimonial {
    background-color: #71B100;
    font-size: 2.4rem;
    padding: 2rem;
    color: #ffffff;
    border-radius: 2rem;
}
.testimonial  p {
    text-align: right;
}
.testimonial blockquote::before {
    content: '';
    background-image: url(../img/comilla.svg);
    width: 4rem;
    height: 4rem;
    position: absolute;
    left: -2rem;
}

.testimonial blockquote {
    position: relative;
    padding-left: 5rem;
    font-weight: 300;
}
/** Footer **/
.site-footer {
    background-color: black;
    margin: 0;
}

.contenedor-footer {
    padding: 3rem 0;
    text-align: center;
}
@media (min-width: 768px) {
    .contenedor-footer {
        display: flex;
        justify-content: space-between;
    }
}
.site-footer nav {
    display: none;
}
@media (min-width: 768px) {
    .site-footer nav {
        display: block;
    }
}

.copyright {
    margin: 0;
    color: #7DB64C;
}

/** INTERNAS **/
/* Nosotros **/
@media (min-width: 768px) {
    .contenido-nosotros {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 2rem;
    }
}

.texto-nosotros blockquote {
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
    padding: 1rem 0 3rem 0;
}

/** Anuncio **/
.resumen-propiedad {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/** Contacto **/
.contacto p {
    font-size: 1.4rem;
    color: #4f4f4f;
    margin: 2rem 0 0 0;
}
legend {
    font-size: 2rem;
    color: #4f4f4f;
}
label {
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}
input:not([type="submit"]),
textarea,
select {
    padding: 1rem;
    display: block;
    width: 100%;
    background-color: #e1e1e1;
    margin-bottom: 2rem;
    border: none;
    border-radius: 1rem;
}
input[type="radio"]{
    width: auto;
    margin: 0;
}
select {
    -webkit-appearance: none;
    appearance: none;
}
textarea {
    height: 20rem;
}
.forma-contacto {
    max-width:30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.social {
	position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
	left: 0; /* Establecemos la barra en la izquierda */
	top: 200px; /* Bajamos la barra 200px de arriba a abajo */
	z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
}
 
.social-bar {
	position: fixed;
	left: 0;
	top: 45%;
	font-size: 3.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 2000;
}

.icon {
	text-decoration: none;
	padding: .7rem;
	display: flex;
	transition: all .5s;
}

.icon-facebook {
	padding-left: 1rem;
    background: #3b5998;
    color:white;
}

.icon-twitter {
	padding-left: 1rem;
    background: #1da1f2;
    color:white;
}


.icon-instagram{
padding-left: 1rem;
color: white;
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  box-shadow: 0px 3px 10px rgba(0,0,0,.25);
    
}

.icon-whatsapp{
padding-left: 1rem;
color: white;
background: #25D366;
}

.icon icon-search{
color: black;
background: white;
}


.icon:first-child {
	border-radius: 1rem 0 0 0;
}

.icon:last-child {
	border-radius: 0 0 0 1rem;
}

.icon:hover {
	padding-left: 3rem;
	border-radius: 1rem 0 0 1rem;
	box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
}

input {
	outline: none;
    position: absolute;
	right: 0;
	top: 18%;
    left: 70%;
     
}
input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;

}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
	display:none; 
}

.contact {
    width: 80%;
    max-width: 1000px; /** = 1200px; **/
    margin: 0 auto;
    color: #7DB64C;
    text-decoration: none;
    font-size: 2.2rem;
    display: block;
}


.noticia {
    
    color: #7DB64C;
    text-align: left;
    direction: ltr;
}

  
  div.noticia img.izquierda {
    float: left;
    margin-right: 15px;
    text-align: right;
  }
    
    div.noticia img.derecha {
        float: right;
        margin-left: 15px;
      }
    

  div.reset {
    clear: both;
  }



input[type=search] {
	background: white url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
	border: black 1.5px solid;
	padding: 9px 10px 9px 32px;
	width: 250px;

}
input[type=search]:focus{
    background-color: #fff;
	border-color: black;
	
	
}


input::-webkit-input-placeholder {
	color: darkgray;
}