.separacion-menu {
  margin-bottom: 110px;
}

.seccion_cabecera {
  background-color: #2B2D42;
  padding: 5px;
  margin: 0 auto;
  max-width: 1280px;
  text-align: left;
  color: #FFFFFF;
}

.seccion_cabecera .tabla-menu {
  display: table;
  width: 100%;
  margin: 0 auto;
  border-spacing: 0px;
  overflow: hidden;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.seccion_cabecera label {
  font-size: 0.8rem;
  color: #FFFFFF;
}

.logo {
  display: block;
  float: left;
  padding: 0px;
  text-decoration: none;
  height: 50px;
}

/*********************************************** */
button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  padding: 0rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  margin: 0 auto;
  background: #FFFFFF;
  border-bottom: 1px solid #cccccc;
}

.header .wrapper {
  font-family: 'Silka';
  font-weight: bold;
  color: #2B2D42;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  
}

.header .menu>.menu-item {
  font-family: 'Silka Bold';
  position: relative;
  display: inline-block;
  margin: 0 0.75rem;
  letter-spacing: 2px;
}

.header .menu>.menu-item>a {
  height: 90px;
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 50px;
  padding: 1rem 0;
  border: none;
  outline: none;
  color: #2B2D42;
  text-transform: uppercase;
  text-decoration: none !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.header .menu>.menu-item>a .expand {
  position: relative;
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.35rem;
  pointer-events: none;
  border: none;
  outline: none;
}

.header .menu>.menu-item>a .expand:before, .header .menu>.menu-item>a .expand:after {
  position: absolute;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #2B2D42;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .menu>.menu-item:hover>a {
  color: #d6ad24;
  border-bottom: 5px solid #2B2D42;
}

.header .menu>.menu-item:hover>a .expand::before, .header .menu>.menu-item:hover>a .expand::after {
  background: #2B2D42;
}

.header .menu>.menu-item>a .expand::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover {
  color: #d6ad24;
}

.header .menu>.menu-item>.sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: 15rem;
  height: auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #2B2D42;
  background: #FFFFFF;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: inherit;
  padding: 0.5rem 1.25rem;
  color: #2B2D42;
  text-transform: uppercase;
  text-decoration: none !important;
}

.header .burger {
  position: relative;
  cursor: pointer;
  display: none;
  width: 1.75rem;
  height: 1rem;
  margin-top: -0.25rem;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .burger-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: #2B2D42;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header .burger-line:nth-child(1) {
  top: 0;
}

.header .burger-line:nth-child(2), .header .burger-line:nth-child(3) {
  top: 0.5rem;
}

.header .burger-line:nth-child(4) {
  top: 1rem;
}

.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 993px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header .menu>.menu-item-child:hover>.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header .menu>.menu-item-child:hover>a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media only screen and (max-width: 992px) {
  .header .menu>.menu-item>a {
    height: 40px;
  }

  .header .menu>.menu-item:hover>a {
    color: #d6ad24;
    border-bottom: 0px;
  }

  .separacion-menu {
    margin-bottom: 110px;
  }

  .seccion_cabecera .tabla-menu {
    display: table;
    width: 100%;
    border-spacing: 0px;
    overflow: hidden;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  .container {
    padding: 20px;
  }

  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .header .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: #FFFFFF;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }

  .header .menu {
    width: 100%;
    height: auto;
    margin: 0rem 0;
  }

  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }

  .header .menu>.menu-item-child>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: -10px;
  }

  .header .menu>.menu-item>a {
    padding: 0.625rem 1.25rem;
    color: #2B2D42;
  }

  .header .menu>.menu-item>.sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 0.625rem 2rem;
    color: #1F0B3F;
  }

  .header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (max-width: 780px) {
  .separacion-menu {
    margin-bottom: 70px;
  }

  .logo {
    display: block;
    float: left;
    padding: 0px;
    text-decoration: none;
    height: 30px;
  }

  .seccion_cabecera label {
    font-size: 0.6rem;
    color: #FFFFFF;
  }
}