*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Source Sans Pro', sans-serif;
}

.contenedor{
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    
}

.titulo{
    color:#642a73;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
    
}

.links-header a 
{
  font-size: 18px;
  display: inline-block;
  color: #ffff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.links-header a:hover {
  color: #fff;
  text-decoration: none;
}
nav{
    text-align:right;
    padding: 30px 50px 0 0;
}
nav > p{
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 0.1px white;
    font-weight: 500;
    text-decoration: none;
    margin-right: 10px;
}
header .textos-header{
    display: flex;
    height: 150px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.cuadro {
    width: 70%;
    /*background-color: rgba(224, 227, 227, 0.57);*/
}

.textos-header h1{
    font-size: 50px;
    color: red;
}
.textos-header h2{
    font-size: 30px;
    font-weight: 300;
    color: red;
    
}

header
{
  width: 100%;
  height: 280px;
  background: rgba(0, 176, 155, 0.35);  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, rgba(219, 166, 61, 0.65), rgba(212, 132, 11, 0.75)), url(../imgs/mainImg.png);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, rgba(219, 166, 61, 0.65), rgba(212, 132, 11, 0.75)), url(../imgs/mainImg.png); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  
  background-size: 700px;
  background-attachment: fixed;
  position: relative;
}

h2{
    font-size: 30px;
    font-weight: 300;
    color: red;
    text-align: center;
}

.wave{
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* gakeria */

.portafolio{
   background: #f2f2f2;
    
}

.galeria-port{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.imagen-port{
    width:24%;
    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(12, 91%, 27%, 0.48);
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hover-galeria img{
    width: 50px;
    
}
.hover-galeria p{
    color: white;
       
}
.imagen-port:hover .hover-galeria {
    transform: scale(1);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0 0 30px 0;
    font-size: 18px;
  }
  
  #footer .footer-top {
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact h3 {
    color: darkgray;
    font-size: 24px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #footer .footer-top .footer-contact p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: whitesmoke;
  }
  
  #footer .footer-top h4 {
    font-size: 20px;
    font-weight: bold;
    color: darkgray;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f39e7a;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #f2f2f2;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #5c5c5c;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #eb5d1e;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #ef7f4d;
    color: #fff;
    text-decoration: none;
  }
  
  