header {
  padding: 15px 0;
  background: #0a221e;
  border-bottom: 5px solid #bc945b;
  position: fixed;
  z-index: 100;
  width: 100%;
}

header .contenedor-header {
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .contenedor-header .contenedor-logo img {
  width: auto;
  height: 25px;
}

header .contenedor-header .contenedor-menu {
  width: 100%;
}

header .contenedor-header .contenedor-menu ul {
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

header .contenedor-header .contenedor-menu ul li {
  padding: 0 12px;
  max-width: 135px;
  font-size: 11px;
  line-height: 12px;
  text-align: center;
  position: relative;
  height: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .contenedor-header .contenedor-menu ul li a {
  color: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header .contenedor-header .contenedor-menu ul li a:hover {
  color: #bc945b;
}

header .contenedor-header .contenedor-menu ul li a:focus {
  background: transparent !important;
  color: #bc945b !important;
  outline: none !important;
  text-decoration: none !important;
}

header .contenedor-header .contenedor-menu ul li.current-menu-item a {
  font-weight: 600;
  color: #bc945b;
}

header .contenedor-header .contenedor-menu ul li.current-menu-item::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 4px;
  background: #015c4d;
  border-radius: 20px;
}

header .contenedor-movil {
  display: none;
}

@media screen and (max-width: 1023px) {
  header .contenedor-header {
    width: 90%;
  }
  header .contenedor-header .contenedor-menu {
    display: none;
  }
  header .contenedor-header .cont-burguer .burguer {
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 1000;
    cursor: pointer;
  }
  header .contenedor-header .cont-burguer .burguer span {
    width: 90%;
    height: 2px;
    margin: 4px 2px;
    background-color: #fff;
    -webkit-transition: -webkit-transform 400ms ease;
    transition: -webkit-transform 400ms ease;
    transition: transform 400ms ease;
    transition: transform 400ms ease, -webkit-transform 400ms ease;
  }
  header .contenedor-header .cont-burguer .burguer.active span:nth-child(1) {
    -webkit-transform: rotateZ(45deg) translate(4px, 4px);
            transform: rotateZ(45deg) translate(4px, 4px);
  }
  header .contenedor-header .cont-burguer .burguer.active span:nth-child(2) {
    -webkit-transform: rotateZ(-45deg) translate(3px, -3px);
            transform: rotateZ(-45deg) translate(3px, -3px);
  }
  header .contenedor-movil {
    display: block;
    position: fixed;
    background: #0a221e;
    bottom: 0;
    right: -100%;
    width: 100%;
    min-height: calc(100vh - 70px);
    z-index: 9;
    padding-top: 50px;
    -webkit-transition: right 600ms ease;
    transition: right 600ms ease;
  }
  header .contenedor-movil .contenedor-menu ul {
    padding: 0 30px;
    list-style: none;
  }
  header .contenedor-movil .contenedor-menu ul li {
    padding: 0 12px;
    font-size: 14px;
    line-height: 20px;
  }
  header .contenedor-movil .contenedor-menu ul li a {
    color: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .contenedor-movil .contenedor-menu ul li a:hover {
    color: #bc945b;
  }
  header .contenedor-movil .contenedor-menu ul li a:focus {
    background: transparent !important;
    color: #bc945b !important;
    outline: none !important;
    text-decoration: none !important;
  }
  header .contenedor-movil .contenedor-menu ul li a br {
    display: none;
  }
  header .contenedor-movil .contenedor-menu ul li.active a {
    font-weight: 600;
    color: #bc945b;
  }
  header .contenedor-movil.active {
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  header .contenedor-movil {
    max-width: 300px;
  }
  header .contenedor-movil .contenedor-menu ul {
    padding: 0 30px;
    list-style: none;
  }
  header .contenedor-movil .contenedor-menu ul li {
    padding: 0 12px;
    font-size: 14px;
    line-height: 20px;
  }
  header .contenedor-movil .contenedor-menu ul li a {
    color: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .contenedor-movil .contenedor-menu ul li a:hover {
    color: #bc945b;
  }
  header .contenedor-movil .contenedor-menu ul li.active a {
    font-weight: 600;
    color: #bc945b;
  }
  header .contenedor-movil .contenedor-movil {
    -webkit-transition: right 2000ms linear;
    transition: right 2000ms linear;
  }
}
