* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.multifamiliares-alfonso-lopez-p .upbar {
  position: relative;
  top: 0;
  left: 0;
  height: 52px;
  width: 100%;
  background-color: #EAA417;
  overflow: hidden;
}

.multifamiliares-alfonso-lopez-p .upbar a {
  width: 280px;
  height: 55px;
  background-color: #015D9C;
  float: right;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.multifamiliares-alfonso-lopez-p .upbar a:hover {
  background-color: #014069;
}

.multifamiliares-alfonso-lopez-p .upbar a .amigo {
  float: right;
}

.multifamiliares-alfonso-lopez-p .upbar a .amigo img {
  width: 130px;
  display: inline-block;
  margin-left: 10px;
}

.multifamiliares-alfonso-lopez-p .upbar a .amigo p {
  position: relative;
  top: 7px;
  font-size: 0.7em;
  display: inline-block;
  text-align: right;
  color: #fff;
}

.clearfix::after {
  content: "";
  clear: both;
}

/*==================================================================
=========================NAV=========================
==================================================================*/
.nav {
  height: 50px;
  background-color: #3CA029;
  overflow: hidden;
}

.nav .selected {
  background-color: green;
}

.nav ul {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.nav ul li {
  display: inline-block;
  width: 100px;
  list-style: none;
}

.nav ul li a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nav ul li a:hover {
  background-color: green;
}

.nav ul li a p {
  font-family: "Lato", sans-serif;
  font-size: 0.8em;
  text-transform: uppercase;
  color: #fff;
  line-height: 50px;
}

/*==================================================================
=========================MEDIA QUERIES NAV=========================
==================================================================*/
@media screen and (max-width: 770px) {
  .nav {
    height: 490px;
    background-image: url(../img/multifamiliares-back-nav.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .nav .selected {
    background-color: #EAA417;
  }
  .nav ul {
    width: 100%;
    text-align: center;
  }
  .nav ul li {
    display: block;
    height: 50px;
    width: 300px;
    list-style: none;
    margin: 15px auto;
  }
  .nav ul li a {
    display: block;
  }
  .nav ul li a:hover {
    background-color: #EAA417;
  }
}

/*
==========================================
==========================================
            multifamiliares-amigos-top
==========================================
==========================================
*/
.multifamiliares-contacto-top {
  height: 30vh;
  background-image: url(../img/panorama.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/*
==========================================
==========================================
            PRESENTACION
==========================================
==========================================
*/
.presentacion-full {
  position: relative;
  padding: 70px 40px;
  border-top: 5px solid #EAA417;
  background-color: #2C4C2A;
  z-index: 500;
}

.presentacion-full .tx-unidad h2, .presentacion-full .tx-unidad h3 {
  font-family: "Lato", sans-serif;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.presentacion-full .tx-unidad h2 {
  font-size: 4em;
}

.presentacion-full .tx-unidad h3 {
  font-size: 3em;
}

.presentacion-full .logo-nombre {
  position: absolute;
  height: 300px;
  width: 250px;
  top: -80px;
  right: 30px;
  text-align: center;
  overflow: hidden;
}

.presentacion-full .logo-nombre h1 {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 1.1em;
}

.presentacion-full .logo-nombre h2 {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 0.9em;
}

.presentacion-full .logo-nombre p {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 0.9em;
}

.presentacion-full .logo-nombre img {
  height: 190px;
  background-color: #fff;
  padding: 15px;
  margin-bottom: 20px;
}

/*==================================================================
=========================MEDIA QUERIES PRESENTACION=========================
==================================================================*/
@media screen and (max-width: 770px) {
  .presentacion-full {
    padding: 100px 70px;
  }
  .presentacion-full .logo-nombre {
    position: absolute;
    height: 300px;
    width: 250px;
    top: -50px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-align: center;
    overflow: hidden;
  }
  .presentacion-full .logo-nombre h1 {
    display: none;
  }
  .presentacion-full .logo-nombre h2 {
    display: none;
  }
  .presentacion-full .logo-nombre p {
    display: none;
  }
  .presentacion-full .logo-nombre img {
    height: 130px;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
  }
}

/*
==========================================
==========================================
            FORMULARIO
==========================================
==========================================
*/
.formulario {
  padding: 70px 0;
}

.formulario input {
  margin-bottom: 50px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #3DA029;
  font-family: "Lato", sans-serif;
  font-size: 1.3em;
}

.formulario textarea {
  height: 200px;
  border: 2px solid #3DA029;
}

.formulario .boton-enviar {
  margin-top: 50px;
  text-align: center;
}

.formulario .boton-enviar #enviar {
  width: 100%;
  background-color: #EAA417;
  border: none;
  -webkit-transition: all 0.6;
  transition: all 0.6;
}

.formulario .boton-enviar #enviar:hover {
  background-color: #2C4C2A;
}

/*==================================================================
=========================MEDIA QUERIES AMIGOS=========================
==================================================================*/
/*
==========================================
==========================================
            FOOTER
==========================================
==========================================
*/
.footer {
  padding: 70px 30px;
  background-color: #2C4C2A;
}

.footer .foot-1 {
  text-align: center;
  margin-bottom: 30px;
}

.footer .foot-1 img {
  height: 150px;
  padding: 10px;
  background-color: #fff;
}

.footer .foot-2 {
  text-align: left;
  padding-top: 30px;
}

.footer .foot-2 h4, .footer .foot-2 h6 {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.footer .foot-3 {
  text-align: left;
  padding-top: 30px;
}

.footer .foot-3 p {
  font-family: "Lato", sans-serif;
  color: #fff;
}
/*# sourceMappingURL=contacto-n.css.map */