*:before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-weight: 800;
}

body,
html {
  background-color: var(--azul_oscuro);
  overflow-x: hidden;
}

html {
  position: relative;
  width: 100%;
}

:root {
  --blanco: #ffffff;
  --azul_oscuro: rgb(36, 40, 52);
  --azul_negro: rgb(0, 6, 15);
  --azul_claro: rgb(36, 40, 52);
}

/*#region navegador*/

/*#region COLORES */
.texto_blanco {
  color: var(--blanco);
}

.bg-azul_oscuro {
  background-color: var(--azul_oscuro);
}

.bg-semiazul {
  background-color: #27496d;
}
/*#endregion COLORES*/

/*#region BURBUJAS CIRCULOS*/

.area {
  /* background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%); */
  min-width: 100%;
  min-height: 100vh;
  max-height: 100vh;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 80px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: animate 50s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 35%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 20%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 40%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-4000px) rotate(720deg);
    opacity: 0.8;
    border-radius: 50%;
  }
}

/*#endregion BURBUJAS CIRCULOS*/

/*#region jp*/
.mt50 {
  margin-top: 50px;
}
/*#endregion jp*/

/*#region BARRA DE NAVEGACION*/

.nav-bar {
  display: block;
  color: var(--blanco); /*tres lineas*/
  cursor: pointer;
  font-size: 100px;
  width: 100%;
  padding: 10px 13px;
  display: flex;
  justify-content: flex-end;
}

.menu,
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu {
  display: none;
  width: 100%;
  margin-left: -100%;
  background-color: red;
}

.mostrar {
  display: block;
  height: 100%;
  transition: all 0.3s;
  margin-left: 0;
  overflow: visible;
}

.menu__link {
  display: block;
  padding: 5px 0px;
  padding-left: 20px;
  font-size: 18px;
  color: var(--blanco);
}

.menu__link:hover {
  text-decoration: none;
  color: yellow;
}

.submenu .menu__link {
  color: var(--blanco);
}

.submenu {
  height: 0;
  padding: 0;
  overflow: hidden;
}

.submenu .menu__item a {
  padding-left: 15px;
  background-color: var(--blanco);
}

.submenu .menu__link:hover {
  padding-left: 10px;
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .nav-bar {
    display: none;
  }
  .menu {
    margin-left: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu .m {
    position: relative;
  }
  .menu li {
    padding: 0px 10px;
  }
  .menu .m::after {
    justify-content: center;
    content: "";
    background-color: red;
    position: absolute;
    left: 0;
    top: 100%;
  }
  .menu .m.select::after,
  .menu .m:hover::after {
    transition: all 0.3s;
    top: calc(100% + 20%);
    opacity: 1;
  }
  .container-submenu {
    position: relative;
  }
  .submenu {
    position: absolute;
    top: 30px;
    width: 250px;
    /*ancho de sub enlace*/
    overflow: visible;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
  }
  .container-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
  }
  .menu__link {
    padding-left: 0px;
  }
}

header {
  z-index: 999;
  background: red;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  padding: 20px;
  position: relative;
}

header.down {
  background: red;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0px;
  margin: 0px auto;
}

header .brand {
  color: rgb(82, 8, 201);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu .menu__link .enlacesDown {
  color: red;
}

/*#endregion BARRA DE NAVEGACION*/

.titulo {
  font-size: 25px !important;
  font-weight: 400;
}

@media (min-width: 768px) {
  .titulo {
    font-size: 35px !important;
    font-weight: 400;
  }
}

.contenedor {
  max-width: 1650px;
  height: auto;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 768px) {
  .contenedor {
    max-width: 1650px;
    height: auto;
    margin: auto;
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}

/*#region XXXXX */

/*#endregion XXXXX*/

/*#region XXXXX */

/*#endregion XXXXX*/

/*#region XXXXX */

/*#endregion XXXXX*/

/*#region XXXXX */


/*#endregion XXXXX*/
