
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
  color: #fff;
}


body{
    background-color: #dadada;
}

.container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    
}
/*navegador----------------------------*/
.container .header{
    grid-column: 1 / -1;
    
    
   

}
.header{
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    height: 95px;
    background-color: rgba(0, 0, 0, 0.788);
    
}


#btn-menu{
   display: none;
    

}
.header label{
grid-column: 1;
display: none;
width: 45px;
height: 45px;
padding: 5px;
/*
border-right: 1px solid #fff;
*/
}
.header label img{
    width: 45px;
    height: 45px;
}
.header label:hover{
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
}

.menu{
    grid-column: 2;
    align-self: center;
    justify-self: center;

}
.menu ul{
    list-style: none;
    padding: 0;
    display: flex;
}
.menu ul li{
    display: inline-block;
}
.menu  a:hover{
    font-weight: bold;
    transform:scale(1.2) ;
}
.menu li a{
    display: block;
    text-decoration: none;
    padding: 15px 20px;
    color: rgb(255, 255, 255);
    font: oblique bold 120% cursive;
}

/*banerr.......................................................*/

.container .banner{
    grid-column: 1 / -1; 
}
.banner{
    display: grid;
    position: relative;
    width: 100%;
    height: 550px;
    z-index: -1;
    background-image: url(../imagenes/banner/casa.jpg);
    background-size: cover;
    text-align: center;
}

.banner::before{
    content: "";
    height:550px;
    opacity: 0.5;
    background-color: #0e0e0e;
}

.texto{
    z-index: 2;
    position: absolute;
    top: 45%;
    margin-left:2%;
    /*
    left: 50%;
    transform: translate(-50%, -50%);
    */
    color: white;
    font-size: 50px;
}



/*barra-redes-sociales--------------------------------------*/
.redes{
    position: fixed;
    right: 0;
    top: 20%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
    

   
}
.redes ul li{
    list-style: none;
    text-decoration: none;
}
.icon{
    color: white;
    padding: .7rem;
    display: flex;
    transition: all .5s;
    opacity: 1;
    background: #141414ee;
} 
.icon .imagen-whats{
    opacity: 0.8;
    width: 40px;
    height: 40px;
    
}
.icon:first-child{
    border-radius: 1rem 0 0 0;
}
.icon:last-child{
    border-radius: 0 0 0 1rem;
}
.icon:hover{
    padding-right: 3rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.904);
}
.icon .imagen-whats:hover{
    opacity: 9;
}


/*cartas---------------------------------------*/

.container>.content {
    grid-column: 1 / -1; 
    

}
.content{
    display: grid;
    /*
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    */
    grid-template-columns: repeat(2, 50%);
    position: relative;
    justify-items: center;
    z-index: 1;
}


/*cards_info-content...................................................*/

.blog-card {
    width: 470px;
    height: 340px;
    position: relative;
    font-family: 'Droid Serif', serif;
    color:#fff;
    margin: 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition:all 0.4s;
    /*background: url(https://unsplash.it/600/800?image=1061) center no-repeat;
    background-size: 100%;*/
  }
  .blog-card img{
    width: 100%;
    height: 100%;

  }
  .blog-card a{ 
  color:#fff;
    text-decoration:none;
    transition:all 0.2s
  }
  .blog-card .color-overlay {
    background: rgba(64, 84, 94,0.5);
    width: 550px;
    height: 500px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  }
  .blog-card .gradient-overlay {  
    background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.6) 21%);
    width: 550px;
    height: 500px;
    position: absolute;
    top: 350px;
    left: 0;
    z-index: 15;
  }
  .blog-card:hover{
      box-shadow: 0px 18px 20px -9px rgba(0, 10, 30, 0.75);
  }
  .blog-card:hover .card-info {
    opacity: 1;
    bottom: 26px;
  }
  .blog-card:hover .color-overlay {
    background: rgba(64, 64, 70,0.8);
  }
  .blog-card:hover .title-content{
    margin-top:70px
  }
  .title-content {
    text-align: center;
    margin: 160px 0 0 0;
    position: absolute;
    z-index: 20;
    width: 100%;
    top: 0;
    left: 0;
    transition:all 0.6s
  }
  
  .blog-card:hover h3:after{
   
    animation: changeLetter 0.3s 1 linear;
    width:80%
  }
  
  .blog-card h3,h1 {
    font-size: 1.9em;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Abril Fatface', serif;
    margin-bottom: 0;
    display:inline-block;
  }
  .blog-card h3 a{  
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);  
    transition:all 0.2s
  }
  .blog-card h3 a:hover{
    text-shadow: 0px 8px 20px rgba(0, 0, 0, 0.95);
  }
  h3:after {
    content: " ";
    display: block; 
    width: 10%;
    height: 2px;
    margin: 20px auto;
    border: 0;
    background: #BDA26B;
    transition:all 0.2s
  }
  
  @keyframes changeLetter {
    0% {
      width: 10%;
    }
    100% {
      width: 80%;
    }
  }
  .card-info {
     box-sizing: border-box;
    padding: 0;
    width: 100%;
    position: absolute;
    bottom: -40px;
    left: 0;
    margin: 0 auto;
    padding: 0 50px;
    font-style: 16px;
    line-height: 24px;
    z-index: 20;
    opacity: 0;
    transition: bottom 0.64s, opacity 0.63s cubic-bezier(0.33, 0.66, 0.66, 1);
  }
  
  .card-info a{
    display:block;
    width:100px;
    margin:15px auto;
    background:#fff;
    color:#444;
    padding:3px 10px;
    border-radius:2px;
    font-size:0.8em
  }
  .card-info a:hover{
    background: #8e7c49;
    color:#fff;
  }
  .card-info a:hover span{
     filter: brightness(10);
     opacity:1
  }
  
  .icon-white{
     filter: brightness(10);
  }
  .icon-black{
     filter: brightness(0);
     opacity:0.6
  }
  .icon-like:before{
    background-position: -183px -6px;
  
  }
  .icon-com:before{
    background-position: -63px -4px;
  
  }
  .icon-dat:before{
    background-position: -94px -7px;
  }
  .icon-tag:before{
    background-position: -33px -6px;
  
  }
  
  @media (max-width:750px)
  {
    .utility-info {
      text-align:center;
    }
    .utility-info ul{
      width:100%;
      margin:0;
      box-sizing:border-box
    }
    .utility-info li{
      width:49%;
      display:inline-block;
      box-sizing:border-box;
      margin:0
    }
  }
  
  @media (max-width:500px){
    .utility-info li:last-of-type{
      width:100%
    }
    .card-info{
      display:none
    }
    .blog-card:hover .title-content,.title-content{
        margin-top: 110px;
  }
  .blog-card{
      width: auto;
    height:250px
  }
  .blog-card h3{
    font-size:1.3em
  }
  .intro{
    font-size:0.8em
  }
  }
  


  /*------------------*/
  .container > .dark{
    grid-column: 1/-1;
  }



  /* FOOTER
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
 
.container > .Footer_index{
  grid-column: 1/-1;
}
  
  
  