* {
  margin: 0;
  border: 0;
}

.menu_bar1 {
  display: none;
  /* Ocultar nenu para idpsoitivos respon */
}

header {
  width: 100%;
  background: #2D9CDB;
  position: fixed;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

.logo img {
  position: absolute;
  margin-top: 5px;
  width: 120%;
  height: 120%;
  margin-left: -500px;
}

.logo_movil {
  display: flex;
  flex-direction: row;
  align-content: center;
  margin-left: 84px;
}

.logo_1 {
  margin-top: 0px;
}

.logo_1 img {
  width: 65px;
}

.logo_2 {
  margin-top: 0px;
}

.logo_2 img {
  width: 100%;
  height: 100%;
  margin-top: 3px;
}

.c_digital {
  display: block;
  position: absolute;
  color: rgba(178, 186, 187, 0.4);
  margin-top: -4px;
  margin-left: -43px;
}

.c_digital2 {
  display: block;
  position: absolute;
  color: rgba(178, 186, 187, 0.4);
  margin-top: -33px;
  margin-left: 36px;
}

header li:after {
  /*animacion para linea  en header */
  display: block;
  content: "";
  border-bottom: 2px inset transparent;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  -webkit-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
  -ms-transition: transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out;
}

header li:before {
  position: absolute;
  bottom: 1.2em;
  left: 0;
  width: 100%;
}

header li:hover:after, header li:hover:before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
}

/*Fin de animacion para linea  en header */
header nav {
  top: 47px;
  background: #2D9CDB;
  z-index: 1000;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
}
header nav ul li {
  display: inline-block;
  position: relative;
}
header nav ul li :hover {
  background: transparent;
  color: #EB5757;
  transition: color 1s linear;
}
header nav ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 20px;
}
header nav ul li a :hover, header nav ul li a :visited, header nav ul li a :link {
  text-decoration: none;
  color: #fff;
}
header nav ul li a span {
  margin-right: 10px;
}
header nav ul li :hover, header nav ul li .children {
  display: block;
}
header nav ul li .children {
  display: none;
  background: #91c2f7;
  position: absolute;
  width: 190%;
  z-index: 1000;
}
header nav ul li .children li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header nav ul li .children li a {
  display: block;
}
header nav ul li .children li a span {
  float: left;
  position: relative;
  top: 3px;
  margin-left: 0px;
  margin-left: 0px;
}
header nav ul li .carett {
  position: relative;
  top: 3px;
  margin-left: 10px;
  margin-right: 0px;
  color: White;
}

/* Celulares*/
@media screen and (max-width: 600px) {
  .submenu {
    overflow: hidden;
  }

  header {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 4em;
    position: fixed;
    top: -8px;
    background: #2D9CDB;
    z-index: 1000;
  }
  header nav {
    background: #2D9CDB;
  }
  header nav ul {
    list-style: none;
    display: block;
  }

  .menu_bar1 {
    margin-top: -20px;
    margin-left: 10px;
    display: block;
    position: absolute;
  }

  .menu_bar1 .bt-menu {
    display: block;
    /*padding: 16px;*/
    color: #fff;
    overflow: hidden;
    font-size: 25px;
    font-weight: bold;
    /*;*/
    text-decoration: none;
  }

  .menu_bar1 span {
    float: right;
    font-size: 40px;
  }

  header nav {
    width: 80%;
    height: calc(100% - 80px);
    position: fixed;
    right: 100%;
    margin: 0;
    overflow: scroll;
    opacity: 0.9;
  }

  header nav ul li {
    display: block;
    border-bottom: 1px solid rgba(244, 208, 63, 0.1);
  }

  header nav ul li a {
    display: block;
  }

  header nav ul li a span, .children li a span {
    color: #fff;
  }

  header nav ul li:hover .children {
    display: none;
  }

  header nav ul li .children {
    width: 100%;
    position: relative;
  }

  header nav ul li .children li a {
    margin-left: 20px;
  }

  header nav ul li .carett {
    float: right;
  }
}
/* Tablet*/
@media screen and (max-width: 1024px) {
  .logo_movil {
    position: relative;
  }
}
/* pc escritorio*/
@media (min-width: 1199.98px) {
  .logo_movil {
    position: absolute;
    margin-top: -5px;
  }
}