*:before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-weight: 800;
}

body,
html {
  overflow-x: hidden;
}

html {
 /* background-image: linear-gradient(to top, #dae1e7 46%, #ffffff 100%);*/
  position: relative;
}

:root {
  --blanco: #ffffff;
  --azul: #00238a;

}

/*#region navegador*/

/*#region COLORES */

.bg-azul {
  background-color: #142850;
}

.bg-semiazul {
  background-color: #27496d;
}

.bg-verde {
  background-color: #00909e;
}

.bg-plomo {
  background-color: #dae1e7;
}

.text-azul {
  color: #142850;
}

.text-semiazul {
  color: #27496d;
}

.text-verde {
  color: #00909e;
}

.c {
  color: #dae1e7;
}

/*#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 TITULOS TEXTOS*/
h1,
.titulos {
  font-size: 1.4rem !important;
}

/*#endregion TEXTOS*/

/*#region BARRA DE NAVEGACION*/

.nav-bar {
  display: block;
  color: var(--azul); /*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%;
}

.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: 17px;
  font-weight: 700;
  color: var(--azul);
}

.menu__link:hover {
  text-decoration: none;
  color: var(--moztasa);
}

.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: space-between;
    align-items: center;
  }
  .menu1 {
    display: flex;
    flex-direction: row;
  }
  .menu .m {
    position: relative;
  }
  .menu li {
    padding: 0px 10px;
  }
  .menu .m::after {
    justify-content: center;
    content: "";
    background-color: var(--azulclaro);
    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: linear-gradient(to bottom, var(--blanco), var(--blanco));
  width: 100%;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  padding: 10px 0;
  position: relative;
}

header.down {
  background: var(--blanco);
  color: var(--azul);
  position: fixed;
  top: 0;
  left: 0;
  margin: 0px auto;
  padding: 5px 0;
}

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*/

.contenedor {
  width: 98%;
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/*#region BTN BOTONES*/
.btnjp {
  width: 70%;
  margin: auto;
  height: 40px;
  font-size: 1rem;
  text-align: center;
  line-height: 2rem;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  background: linear-gradient(-45deg, #142850, #27496d, #2d59b3, #27496d);
  background-size: 600%;
  animation: anime 16s linear infinite;
}

.btnjp:hover {
  color: var(--verde);
}

@keyframes anime {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*#endregion BTN BOTONES*/

/*#region CARD CARDEMPLEO */

.contenedorofertas {
  position: relative;
}

.logoentidad {
  max-width: 120px;
  max-height: 50px;
}
.empleoimgempresa {
  margin: auto;
}

.card_empleo {
  background-color: rgb(255 255 255 / 70%);
  margin: 1rem;
  padding: 1rem;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(199, 199, 199, 1);
  -moz-box-shadow: 10px 10px 5px 0px rgba(199, 199, 199, 1);
  box-shadow: 10px 10px 5px 0px rgba(199, 199, 199, 1);
  max-width: 320px;
  min-width: 320px;
  display: grid;
}

.empleoinfo {
  display: grid;
  grid-template-columns: 1fr;
}

.cardListempleos {
  display: grid;
  max-width: 100%;
  margin: auto;
  justify-items: center;
  grid-auto-flow: dense;
}

@media (min-width: 768px) {
  .cardListempleos {
    grid-template-columns: 1fr;
    column-gap: 1rem;
  }
}

@media (min-width: 900px) {
  .cardListempleos {
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }
}

@media (min-width: 1250px) {
  .cardListempleos {
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: min-content;
    column-gap: 1rem;
  }
}

@media (min-width: 1700px) {
  .cardListempleos {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: min-content;
    column-gap: 1rem;
  }
}
/*#endregion CARD CARDEMPLEO*/

/*#region XXXXX */

/*#endregion XXXXX*/

/*#region XXXXX */

/*#endregion XXXXX*/

/*#region XXXXX */

/*#endregion XXXXX*/

/*#region XXXXX */

/*#endregion XXXXX*/

/*#region XXXXX */

/*#endregion XXXXX*/
