*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body{
        font-family: 'open sans';
    }
    
    .contenedor {
       padding: 60px  0;
       width: 90%;
       max-width: 1000px;
       margin: auto;
       overflow: hidden;
    }
    
    .titulo{
        color: #fd500c;
        font-size: 30px;
        text-align: center;
    
    }
    
    .titulo h2{
        text-align: center;
    }

    /*header*/

header{
    width: 100%;
    height: 600px;
    background: hsla(28, 87%, 62%, 0.616);  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #F2C94C, hsla(28, 87%, 62%, 0.616)),url(images/Inicio.jpg);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, hsla(45, 58%, 50%, 0.616), hsla(28, 87%, 62%, 0.616)),url(images/Inicio.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    }
    
    nav{
        text-align: right;
        padding: 30px 50px 0 0;
    }
    
    nav > a {
     color: #fff;
     font-weight: 300;
     text-decoration: none;
     margin-right: 10px;
    }
    
    .textos-header{
        display: flex;
        height: 430px;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .textos-header{
        font-size: 50px;
        color: #fff;
    }

    nav > a:hover {
        text-decoration: underline;
       }
    
       .wave{
        position: absolute;
        bottom: 0;
        width: 100%;
       }
       /* About us */
    
      .contenedor-sobre-nosotros{
        display: flex;
        justify-content: space-evenly;
       }
    
       .imagen-abaut-us{
         height: auto;
         width: 200px;
         display: inline-block;
         width: 50%;
       }
    
       .sobre-nosotros .contenido-textos{
        width: 38%;
       }
    
       .contenido-textos h3{
        margin-bottom: 15px;
       }

       .contenido-textos h3 span{
       background: #7d8606;
       color: #fff;
       border-radius: 50%;
       display: inline-block;
       text-align: center;
       width: 30px;
       height: 30px;
       padding: 2px;
       box-shadow: 0 0 6px  0  rgba(0,0,0,.5);
       margin-right: 5px;
       }

       /*Galeria*/
   .portafolio{
    background: #f2f2f2;
   }

   .galeria-port{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
   }

   .imagen-port{
    width: 48%;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
   }

   .imagen-port > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
   }

   .hover-galeria{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
     transform: scale(0); 
    background: hsla(41, 95%, 38%, 0.589);
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   }

   .hover-galeria img{
      width: 50px;
   }

   .hover-galeria p{
    color: #fff;
   }

   .imagen-port:hover .hover-galeria{
    transform: scale(1);

   }

    /*Footer*/
    footer{
        background-color: #bc8f8f;
        padding: 30px 0;
       }
    
    .contenedor-foter{
        display: flex;
        justify-content: space-between;
       }
       .content-foo h4{
         color: #fff;
         font-size: 17px;
         margin-bottom: 15px;
       }
    
       .content-foo p{
        font-size: 15px;
        color: #fff;
        display: block;
        margin-bottom: 10px;
       }
    
       .content-foo p a:hover{
        color: #000;
       }
    
       .content-foo{
        flex-direction: column;
        text-align: center;
       }
