*{
    padding:0;
    margin:0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a{
    text-decoration: none;
}
#loading {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width:100%;
    height:100%;
    background: #fefcf0;
    z-index: 90000;
}
header{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 60px;
}
header nav{
    position: absolute;
    right: 0;
    top:0;
    height: 56px;
    width: 50%;
}
header .logo{
    width: 90px;
    border: 5px solid #fefcf0;
    background: #fefcf0;
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
}
header .logo img{
    display: block;
    width: 100%;
}
header nav a{
    float: right;
    display:block;
    margin:15px 15px;
    padding: 14px 20px;
    border-radius: 35px;
    background-color:red;
    color:#fff;
    font-weight: bold;
    transition: 0.3s all ease;
    box-shadow: 2px 4px 8px rgba(0,0,0,0.4);
}
.hero{
    position: fixed;
    top:0;
    left:0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(villareal.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color:#fff;
    text-align: center;
}
.scroll-downs {
    position: absolute;
    right: 0;
    bottom: 50px;
    left: 0;
    margin: auto;
    width :34px;
    height: 55px;
  }
  .mousey {
    width: 10px;
    padding: 10px 10px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
  }
  .scroller {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color:#fff;
    animation-name: scroll;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
  }
  @keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; -webkit-transform: translateY(20px); -moz-transform: translateY(20px); -ms-transform: translateY(20px); -o-transform: translateY(20px); }
  }
.hero .sombra{
    display:flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    background:rgba(0,0,0,0.6);
    font-size: 1.8em;
}
.hero h3{
    font-weight: 400;
}
.hero .row{
    width: 70px;
    height: 2px;
    background-color: red;
    margin: 20px auto;
}
main{
    width: 100%;
    overflow: hidden;
    height:auto;
    margin-top: 100vh;
    background-color: #fefcf0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.pemex{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px;
    box-sizing:border-box;
}
.pemex .pemex-img{
    width: 50%;
    height: 500px;
    float: left;
    overflow: hidden;
    border-radius: 20px;
}
.pemex .pemex-img img{
    width: 100%;
    display:block;
}
.pemex .pemex-text{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 500px;
    float:left;
}
.pemex-text p{
    width: 50%;
    display: block;
    margin:auto;
}
.map{
    width: 100%;
    height: 500px;
}
.map iframe{
    width: 100%;
    height: 100%;
}
footer{
    background-color: black;
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
    color:#fff;
}
footer a{
    display:block;
    margin: 40px auto;
}

@media (max-width:800px) { 
    .pemex .pemex-img,.pemex .pemex-text{
        width: 100%;
    }
    .pemex .pemex-img{
        height: auto;
    }
    .pemex .pemex-text{
        height: 250px;
    }
    .pemex-text p{
        width: 80%;
    }
    .hero .sombra{
        font-size: 1.2em;
    }
    header .logo{
        width: 60px;
    }
    header nav a{
        font-size: .8em;
    }
 }