:root {
  --color-black: hsl(0, 0%, 7%);
  --color-white: hsl(0, 0%, 100%);
  --color-gray: hsl(210, 14%, 75%);
  --color-main: #043883;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-extra: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --color-button_bg:
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.container_menu {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 10px;
}

.menu-section {
  padding-left: 0px;
}

.brand {
  /* font-family: inherit; */
  /* font-size: 1.75rem; */
  /* font-weight: 700; */
  /* line-height: inherit; */
  /* color: var(--color-main); */
  /* text-transform: uppercase; */
}

.header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 999;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-medium);
  box-shadow: var(--shadow-medium);
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo_top {
  display: block;
}

.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  /*flex: 0 0 20%;*/
}

.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}

.header-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  /*display: flex;*/
  display: none;
  flex: 0 0 0%;

  align-items: center;

  justify-content: flex-end;
}

.header-item-right .menu-icon {
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  align-items: center;

  justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
  color: var(--color-black);

  transition: all 0.3s ease;
}

.header .menu>ul>li {
  display: inline-block;
  line-height: 3.125rem;
  margin-left: 10px
}

.header .menu>ul>li>a {
  position: relative;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  outline: none;
  color: var(--color-black);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .5s !important;
  margin-right: 10px;
  width: fit-content;

  transition: color 0.3s ease;
}
.header .menu>ul>li>i {
    display: none;
   
  }
.header .menu>ul>li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 3px solid var(--color-main);
  background: var(--color-white);

  transition: all 0.5s ease;
}

.header .menu>ul>li .menu-subs>ul>li {
  line-height: 1;
}

.header .menu>ul>li .menu-subs>ul>li>a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: var(--color-black);


  transition: all 0.3s ease;
}

.header .menu>ul>li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem;
}

.menu-section ul {
  padding-left: 5px;
}

.header .menu>ul>li .menu-subs.menu-mega {
  left: 50%;

  transform: translateX(-50%);
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
  display: block;
  line-height: 1;
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
  display: inline-block;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 13px;
  padding: 5px 0;
  border: none;
  outline: none;
  color: var(--color-black);
  transition: color 0.3s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .5s !important;
  margin-right: 10px;
  width: fit-content;
}

.header .menu>ul>li .menu-subs.menu-column-4.id_menu_19 {
  justify-content: space-between;
}

.header .menu>ul>li .menu-subs.menu-column-4.id_menu_19>.list-item {
  flex: 0 0 33%;
}

.header .menu>ul>li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  flex-wrap: wrap;
  max-width: 1530px;
  width: 100%;
  padding: 1.25rem 1rem;
  height: auto;
  border-bottom: 3px solid var(--color-main);
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item {

  flex: 0 0 25%;
  padding: 0 5px;
  max-width: 25%;
}

.header .menu>ul>li>ul {
  padding-left: 5px;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  padding: 3px 0;
  color: var(--color-main);
  text-transform: uppercase;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .5s !important;
  margin-right: 10px;
  width: fit-content;
  margin-top: 15px;
  margin-bottom: 15px;
}

.btn_generic_menu {
  background: var(--color-button_bg);
  border: none;
}

.header .menu>ul>li .menu-subs.menu-column-4.id_menu_1533 {
  flex-direction: column;

  height: 600px;
}


.header .menu>ul>li .menu-subs.menu-column-4.id_menu_1532 {
  flex-direction: column;

  height: 600px;
}



.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title:hover {
  background-size: 100% 1px;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;

  object-fit: cover;
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
.header .menu>ul>li .menu-subs>ul>li>a:hover {
  color: var(--color-main);
  background-size: 100% 1px;
}


.header-item-right a:hover,
.header .menu>ul>li:hover>a {
  color: var(--color-main);
  background-size: 100% 1px;
}

.header .menu-mobile-header,
.header .menu-mobile-toggle {
  display: none;
}

@media screen and (max-width: 1800px) {}

@media screen and (min-width: 993px) {
  .header .menu>ul>li.menu-item-has-children:hover .menu-subs {
    margin-top: 1.2rem;
    opacity: 1;
    visibility: visible;
  }
}



@media screen and (max-width: 1300px) {
  body {
    /* margin-top: 50.7px; */
  }

  .header-item-center {
    flex: 1;
  }

  .header {
    height: 50px;
  }

  .btn_busqueda {
    margin-top: 10px;
    margin-left: 10px;
  }

  .header-item-left,
  .header-item-right {
    flex: 1;
  }

  .wrapper {
    justify-content: space-between;
  }

  .header .menu-mobile-toggle {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem;
    height: 1rem;
    border: none;
    outline: none;
    margin-left: 1.25rem;
    background: none;
    transform: rotate(0deg);
    transition: 0.35s ease-in-out;
  }

  .header .menu-mobile-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: var(--color-black);

    transform: rotate(0deg);

    transition: 0.25s ease-in-out;
  }

  .header .menu-mobile-toggle span:nth-child(1) {
    top: 0;
  }

  .header .menu-mobile-toggle span:nth-child(2),
  .header .menu-mobile-toggle span:nth-child(3) {
    top: 0.5rem;
  }

  .header .menu-mobile-toggle span:nth-child(4) {
    top: 1rem;
  }

  .header-item-right {
    display: flex;
    align-items: center;
  }

  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 20rem;
    height: 100%;
    z-index: 1099;
    overflow: hidden;
    background: var(--color-white);

    transform: translate(-100%);

    transition: all 0.5s ease-in-out;
  }

  .header .menu.active {

    transform: translate(0%);
  }

  .header .menu>ul>li {
    display: block;
    line-height: 1;
    margin: 0;
  }

  .header .menu>ul>li>a {
    display: inline-block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 0.5rem 0 1rem;
  }
  .header .menu>ul>li>i {
    display: inline-block;
   
  }
  .header .menu>ul>li:hover>a {
    background-size: 100% 1px;
  }

  .header .menu>ul>li>a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;

    transform: rotate(-90deg);
  }

  .header .menu .menu-mobile-header {
    position: relative;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    align-items: center;

    justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 501;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--color-white);
  }

  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
  }

  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }

  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: var(--color-black);

  }

  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
  }

  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .header .menu>ul>li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;

    transform: translateX(0%);

    box-shadow: none;
  }

  .header .menu>ul>li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;

    transform: translateX(0%);

    box-shadow: none;
  }

  .header .menu>ul>li .menu-subs.active {
    display: block;
  }

  .header .menu>ul>li .menu-subs.menu-column-4>.list-item {

    flex: 0 0 100%;
    padding: 0rem;
    max-width: 100%;
  }

  .header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
    margin-bottom: 1.25rem;
  }

  .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }

  .header .menu>ul>li .menu-subs>ul>li>a {
    display: block;
  }

  .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
    margin-bottom: 1rem;
  }

  .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
    display: block;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);

    transition: all 0.5s ease-in-out;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}