/* MAIN */
.navbarMain {
  width: 100%;
  height: 180px;
  background: #ffffff;
  background-color: #ffffff;
  padding: 0 0 0 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.navbarHeader {
  width: 100%;
  height: 90px;
  background: #e6e6e6;
  background-color: #e6e6e6;
  position: relative;
  padding: 40px 15% 0 15%;
}

.navbarLogo {
  width: 220px;
  height: auto;
  padding: 0 0 0 0;
  position: absolute;
  top: 10px;
  left: 15%;
}

.navbarLogo img {
  position: relative;
  z-index: 2;
}

.navbarLogo::before {
  content: '';
  width: 133px;
  height: 133px;
  background: #e6e6e6;
  background-color: #e6e6e6;
  position: absolute;
  bottom: -7px;
  left: -13px;
  border-radius: 100%;
}

.callUs {
  font-family: 'Futura';
  font-weight: 300;
  font-style: normal;
  position: relative;
  font-size: 20px;
  color: #00912b;
  top: -5px;
  transition: all 0.3s ease;
}

.callUs::before {
  content: '';
  width: 35px;
  height: 35px;
  background-image: url('../../img/emyca_telefono.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: absolute;
  top: -5px;
  left: -50px;
}

.callUs:hover {
  color: #6fbcc5;
}

.btnContacto {
  font-family: 'Futura';
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  color: #ffffff;
  background: #6fbcc5;
  background-color: #6fbcc5;
  text-transform: uppercase;
  padding: 10px 33px 10px 33px;
  position: relative;
  transition: all 0.3s ease;
}

.btnContacto span {
  width: 40px;
  height: 40px;
  position: absolute;
  line-height: 40px;
  top: 1px;
  left: -40px;
  border: 1px solid #6fbcc5;
  border-bottom: 3px solid #6fbcc5;
  transition: all 0.3s ease;
}

.btnContacto:hover {
  background: #00912b;
  background-color: #00912b;
}

.btnContacto:hover span {
  border: 1px solid #00912b;
  border-bottom: 3px solid #00912b;
}

.navbarPages {
  width: 90%;
  height: 90px;
  padding: 15px 15% 15px 15%;
  text-align: center;
}

.navbarPages ul li {
  display: inline-block;
  padding: 5px 140px 5px 125px;
  position: relative;
}

.navbarPages ul li a {
  font-family: 'Bw Surco Book';
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  color: #00912b;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.navbarPages ul li a::after {
  content: '';
  width: 0;
  height: 2px;
  background: #00912b;
  background-color: #00912b;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease;
}

.navbarPages ul li:nth-child(2)::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #6fbcc5;
  background-color: #6fbcc5;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: -40px;
}

.navbarPages ul li:nth-child(3)::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #6fbcc5;
  background-color: #6fbcc5;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: -10px;
}

.navbarPages ul li a:hover {
  color: #6fbcc5;
}

.navbarPages ul li a:hover::after {
  width: 100%;
  background: #6fbcc5;
  background-color: #6fbcc5;
}
/*  */

/* FIXED MENU */
.navbarFixed {
  position: fixed;
  z-index: 999;
  height: 160px;
  -webkit-box-shadow: 0px 4px 16px -5px rgba(0, 0, 0, 0.72);
  -moz-box-shadow: 0px 4px 16px -5px rgba(0, 0, 0, 0.72);
  box-shadow: 0px 4px 16px -5px rgba(0, 0, 0, 0.72);
}
/*  */

/* RESPONSIVO */

#toggle {
  position: fixed;
  z-index: 100;
  width: 60px;
  height: 60px;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  background: #c9c9c9;
  padding: 10px;
}
#toggle span {
  display: block;
  position: absolute;
  width: 70%;
  height: 0.2em;
  margin: 1.25em 0 0 0;
  background: #ffffff;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#toggle span:before,
#toggle span:after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 0.2em;
  background: #ffffff;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#toggle span:before {
  margin: -1em 0 0 0;
}
#toggle span:after {
  margin: 1em 0 0 0;
}
#toggle.abrirMenu span {
  background-color: transparent;
}
#toggle.abrirMenu span:before,
#toggle.abrirMenu span:after {
  margin: 0;
  background: #ffffff;
}
#toggle.abrirMenu span:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
#toggle.abrirMenu span:after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: #c9c9c9;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#menu.menuAbierto {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#menu img {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 42%;
  height: auto;
}
#menu ul {
  list-style: none;
  margin: 0 auto;
}
#menu ul li {
  display: block;
  width: 90%;
  height: 65px;
  margin: 0 auto 0.5em auto;
}
#menu ul li:after {
  content: ' ';
  position: absolute;
  width: 0%;
  height: 65px;
  margin: -65px 0 0 5%;
  left: 0;
  border-radius: 0.25em;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}
#menu ul li:hover:after {
  width: 90%;
}
#menu ul li a {
  position: relative;
  z-index: 101;
  display: block;
  width: 100%;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  color: #ffffff;
  text-decoration: none;
  /*border: 1px solid #ddd;*/
  border-radius: 0.2em;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
  font-family: 'Futura';
  font-weight: 300;
}
#menu ul li a:hover {
  color: #ffffff;
  /*border-color: #ffffff;*/
  font-size: 25px;
}
#menu ul li a span {
  font-size: 1.6666666667em;
}
#menu ul li a i {
  position: absolute;
  padding: 0 1.25em 0 0;
  font-size: 2em;
}
#wrapper {
  width: 85%;
  margin: 0 auto;
}
