/* UL DESPLEGABLE 1 */
.ul-desplegable {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  background-color: #0c162c;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: opacity 300ms ease-in-out;
}
.ul-desplegable li {
  height: 50px;
  display: flex;
  align-items: center;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.17),
    inset 0 0 0.5px rgba(255, 255, 255, 0.489);
}
/* ELEMENTOS LI DENTRO DE UL DEPLEGABLE */
.ul-desplegable p {
  height: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  cursor: pointer;
}
.nav-li-cursos-p {
  height: 60px;
  font-size: 0.9rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
/* ARROWS */
.fa-chevron-up,
.fa-chevron-left {
  margin-left: 5px;
  transition: transform 300ms ease;
  font-size: 0.7rem;
}
.girar-flecha {
  transform: rotate(-180deg);
}
/* UL DESPLEGABLES*/
.ul-desplegable-2,
.ul-desplegable-3,
.ul-desplegable-4 {
  position: absolute;
  width: max-content;
  top: 0;
  left: 100%;
  overflow: hidden;

  pointer-events: none;
  opacity: 0;

  border-bottom-right-radius: 5px;
  background-color: #111e3b;
  transition: opacity 300ms ease-in-out;
}
.ul-desplegable-2 li a,
.ul-desplegable-3 li a,
.ul-desplegable-4 li a {
  padding-left: 1rem;
}
.ul-desplegable-3 {
  border-top-right-radius: 5px;
  top: 50px;
}
.ul-desplegable-4 {
  border-top-right-radius: 5px;
  top: 100px;
}
/* VISIBLE */
.visible-desplegable,
.visible-desplegable-2,
.visible-desplegable-3,
.visible-desplegable-4 {
  opacity: 1;
  pointer-events: auto;
}
/* RESPONSIVE */
@media only screen and (max-width: 1100px){
  .ul-desplegable-2,
  .ul-desplegable-3,
  .ul-desplegable-4{
    top: 50px;
    width: 100%;
    left: 0%;
    background-color: rgb(18, 18, 73);
    border-bottom: 500px solid #070d1a;
  }
  .ul-desplegable-3{
    top:100px;
  }
  .ul-desplegable-4{
    top: 150px;
  }
}