.showResponsive {
  display: none;
}

header {
  display: block;
  text-align: center;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 2;
  /*position: -webkit-sticky;
  position: sticky;
  */
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;

  -webkit-box-shadow: 2px 0 10px 2px rgba(136, 134, 135, 0.5);
  box-shadow: 2px 0 10px 2px rgba(136, 134, 135, 0.5);
}

header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #E6EAEA;
  visibility: visible !important;
}

header.sticky.headerInternal {
  background-color: #fff !important;
  position: absolute !important;
  top: 0 !important;
  border: 0 !important;
}

header:after {
  content: "";
  display: block;
  clear: both;
}

header .container-fluid {
  position: relative;
}

header nav.menu-main {
  float: right;
}

/*Mobile*/
@media screen and (min-width:900px) {
  header nav.menu-main {
    padding-right: 0px;
    padding-top: 0;
  }
}

@media screen and (max-width:900px) {
  .headerInternal {
    display: none !important;
  }
}

header nav.menu-right {
  float: right;
}

header .logo {
  float: left;
  text-align: left;
}

header nav a {
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 50px;
  color: #666666;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

header nav a:first-child {
  padding-left: 0;
}

header nav a:last-child {
  padding-right: 0;
}

header nav a:hover,
header nav a.active {
  color: var(--c-primary);
}

header nav a.big-number {
  font-size: 1.3rem;
  color: #333333;
  border-left: 1px solid #CCC;
  font-weight: 700;
}

header .logo img {
  -webkit-transition: all 0.27s ease;
  -moz-transition: all 0.27s ease;
  -ms-transition: all 0.27s ease;
  -o-transition: all 0.27s ease;
  transition: all 0.27s ease;
  /* width: 135%; */
  max-width: 200px;
}

/*Mobile*/
@media screen and (max-width:800px) {
  header .logo img {
    /* max-width: 100%; */
    height: auto;
    width: 30vw;
    margin-top: 6px;
  }
}

/*Mobile*/
@media screen and (max-width:900px) {
  body:not(.comienzo) header.headerInternal .logo img {
    -webkit-filter: opacity(0.6) brightness(0);
    filter: opacity(0.6) brightness(0);
  }
}

header .logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.iniciar-sesion {
  color: var(--c-primary);
}


/*Mobile*/
@media screen and (max-width: 900px) {
  header {
    top: 76px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  header nav.menu-main {
    display: block;
    position: fixed;
    left: 0;
    background-color: #fff;
    z-index: 2;
    /*overflow-y: auto;*/
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    -webkit-box-shadow: 2px 0 10px 2px rgba(136, 134, 135, 0.5);
    box-shadow: 2px 0 10px 2px rgba(136, 134, 135, 0.5);

    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  header nav.menu-main.open {
    left: 0;
  }

  header nav.menu-main a,
  header nav.menu-main a.showResponsive {
    display: inline-block;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0px;
    padding-right: 0px;
    width: calc(33.1% + -3px);
    font-size: 0.65rem;
    text-align: center;
    line-height: 1;
  }

  header nav.menu-main a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  header nav.menu-right {
    display: none;
  }

  header .logo-center {
    position: inherit;
    left: auto;
    transform: none;
  }

  header.sticky {
    top: 78px;
    border-bottom: 0px solid #E6EAEA;
  }
}

/*Tablet*/
@media screen and (min-width:750px) and (max-width:1250px) and (orientation:landscape) {
  header nav.menu-main a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 0.7rem;
  }
}

.responsiveMenu {
  display: none;
}

/*Mobile*/
@media screen and (max-width:800px) {
  .responsiveMenu {
    display: block;
    position: absolute;
    right: 10px;
    background-color: transparent;
    border: 0;
    width: 35px;
    top: calc(50% + -8px);
    transform: translateY(-50%);

    -webkit-transition: all 0.0s ease;
    -moz-transition: all 0.0s ease;
    -ms-transition: all 0.0s ease;
    -o-transition: all 0.0s ease;
    transition: all 0.0s ease;
  }

  .responsiveMenu>div {
    height: 4px;
    background-color: black;
    margin: 3px 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }

  .responsiveMenu.open {
    width: calc(100vw + -10px);
    height: 100vh;
    position: fixed;
  }

  .responsiveMenu.open>div {
    background-color: transparent;
  }
}

#form-request .close {
  position: relative;
  z-index: 2;
}

/*Mobile*/
@media screen and (max-width:750px) {
  #form-request .close a {
    position: absolute;
    display: block;
    right: 0;
    top: -70px;
  }
}



/*header a.mail,
header a.wa{
  display: block;
  position: absolute;
  top: calc(125% + 50px);
  right: 0px;
  text-align: center;
  background-color: #3eb122;
  z-index: 222;

  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 1.5;
  padding: 5px 0;
  padding-right: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}
header a.mail img,
header a.wa img{
  height: 35px;
  filter: brightness(10);
  display: inline-block;
  vertical-align: middle;
  margin-top: 1px;
  margin-left: 7px;
}

header a.mail img{
  height: 28px;
}
header a.mail{
  background-color: var(--c-terciary);
  top: 125%;
  line-height: 2;
}
header a.mail:hover,
header a.wa:hover{
  opacity: 0.8;
}
@media screen and (max-width:750px){
	header a.mail{
    top: calc(300%);
  }
  header a.wa{
    top: auto;
    bottom: calc(-100vh + 120px);
  }
}
*/

.banco-comercio {
  display: flex;
  float: left;
  margin-left: 92px;
  border-left: 1px solid #222;
  padding-left: 15px;
  text-align: left;
  color: #000;
  font-size: 0.55rem;
  margin-top: 20px;
  font-weight: 400;
}

.banco-comercio img {
  height: 44px;
  margin-left: -12px;
  margin-top: -1px;
}

/*Mobile*/
@media screen and (max-width:750px) {
  .banco-comercio {
    margin-top: 6px;
    font-size: 0.45rem;
    margin-left: -55px;
    padding-left: 8px;
  }

  .banco-comercio img {
    height: 32px;
    margin-left: -10px;
    margin-top: -1px;
  }
}

header .menu-main .btn-tel {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  background-color: #000;
  color: #fff;
  padding: 8px 10px;
  padding-right: 15px;
  font-size: 0.6rem;
  vertical-align: middle;
}

header .menu-main .btn-tel.wa {
  padding: 0;
  /* height: 54px; */
  background-color: #4ac16a;
  margin-left: 23px;
  padding-right: 11px;
  margin-right: -25px;
  font-size: 0.7rem;
  font-weight: 400;
  padding-top: 0px;
  padding-bottom: 2px;
}

header .menu-main .btn-tel.wa b {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

header .menu-main .btn-tel.wa img {
  filter: brightness(1);
  margin-left: -25px;
  height: 56px;
  width: 55px;
  margin-right: 5px;
}

header .menu-main .btn-tel.tel {
  background-color: #00956C;
}

header .menu-main .btn-tel.tg {
  background-color: #2BA8DF;
}

header .menu-main .btn-tel:hover {
  opacity: 0.85;
}

header .menu-main .btn-tel img {
  margin-left: 5px;
  margin-right: -5px;
  height: 18px;
  width: 18px;
  filter: brightness(10);
  -webkit-filter: brightness(10);
  object-fit: cover;
}

/*Mobile*/
@media screen and (max-width:900px) {
  header .menu-main .btn-tel.wa{
    width: 100%;
    top: 46px;
    left: 0px;
    position: absolute;
    margin: 0;
    display: flex;
    text-indent: initial;
    background-color: #00946c;
    font-size: 3vw;
  }

  header .menu-main .btn-tel.wa b {
      display: inline-block;
  }

header .menu-main .btn-tel.wa b br {
    display: none;
}

  header .menu-main .btn-tel.wa img {
      margin: 0;
      position: initial;
      display: inline-block;
      transform: initial;
      left: initial;
      top: initial;
      margin-right: 5px;
      height: 22px;
      width: 22px;
  }
  header .menu-main .btn-tel {
    text-indent: -999px;
    position: absolute;
    width: 36px;
    height: 36px;
    padding: 5px 2px;
    padding-right: 5px;
    top: 58px;
    right: 45px;
    z-index: 43;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    /* position: relative; */
  }

  header .menu-main .btn-tel.tel {
    right: 47px;
    text-indent: 0;
    width: auto;
    padding-right: 25px;
    padding-left: 5px;
    top: 90px;
  }

  header .menu-main .btn-tel.tel img {
    right: 4px;
    left: auto;
    transform: translateY(-50%);
  }

  header .menu-main .btn-tel.tg {
    right: 6px;
    top: 90px;
  }

  header .menu-main .btn-tel img {
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}