html{
    font-size: 62.5%;
}


body {
   font-family:'Lato', sans-serif;
   font-size: 1.6rem;
  
}

/**Globales**/
img{
    max-width: 100%; /*Selector para que la simagenes sean responsivas*/
   
}

.contenedor {
    max-width: 120rem; /*es == a 1200px */
    margin: 0 auto;
}
 /*Definiendo tamaños globales para los H */
h1{
   font-size: 3.8rem;
}
 h2{
     font-size: 3.4rem;
 }
h3{
    font-size: 3rem;
}
h4{
    font-size: 2.6rem;
}

/**utilidades*/

.seccion {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.fw-300{
    font-weight: 300;
}

.centrar-texto{
    text-align: center;
}

/**Botones**/

.boton{ /**clase generica */
   color: white;
   font-weight: 600;
   text-decoration: none;
   font-size: 1.8rem;
   padding: 1rem 3rem;
 
}

.botonnaranja{
    background-color: darkorange;
    border-radius: 1rem;
}

.botonverde{
    background-color: darkgreen;
}

/*header*/


.site-header.inicio{
   background-image: url(../img/header.jpg);
   background-position: center;
   background-size: cover;
   height: 100vh;
   min-height: 60rem;
   margin-top: 3rem;

}

.contenido-header{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contenido-header h1 {
    color: white;
    padding-bottom: 2rem;
    max-width: 50rem;
    line-height: 2;
    font-size: 3rem;


}

.barra {
    display: flex; /*habilito flex*/
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
}

/* Navegacion */

.navegacion a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem; /*es igual a 18px */
    margin-right: 2rem;

}

.navegacion a:hover{
    color: aqua;
}

.navegacion a:last-of-type {

    margin: 0;
}

/*iconos nosotros */


.iconos-nosotros{
    display: flex;
    justify-content:space-between;
    
}
.iconos{
    flex-basis: calc(33.3% -1rem);
    text-align: center;
    padding: 3rem;
    line-height: 2;
}

.iconos h3{
    text-transform: uppercase;
    text-align: center;
    
}

/*Seccion Anuncios */

.contenedor-anuncios{
    display: flex;
  
}

.anuncios{
   
    flex-basis: calc(33.3% - 1rem);
    padding: 0.5rem;
    margin: 1rem ;
    border-style: solid;
    border-radius: 10px;
    border-color: darkgrey;
    border-width: 1px;
    background: #f3f2f2; 
    
}

.anuncios img{
    border-radius: 1rem  1rem 0rem 0rem;
}
.contenido-anuncio{
    padding: 1rem;
}

.contenedor-anuncios h3 {
 font-weight: 200;
}

.contenedor-anuncios h3 , .contenedor-anuncios p {

    margin: 2;
}

.precio{
    color: rgb(75, 146, 5);
    font-weight: 700;

}

.paginacion__prop {
    display: flex;
    justify-content: center;
  
}

.paginacion {
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;

}

.paginacion li{
    padding: 5px;
    list-style: none;
    
    
}

.page-item{
    background-color: rgb(251, 251, 251);
    margin: 2px;
    cursor: pointer;
    
}

.page-item-P{
    background-color: rgb(251, 251, 251);
    margin: 2px;
    cursor: pointer;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;

} 

.page-item-F{
    background-color: rgb(251, 251, 251);
    margin: 2px;
    cursor: pointer;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;

}    




.page-link{
    
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 1px;
    color: gray ;
}

.video_prop{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}

.video_prop a {
   font-size: 16px;
   
}