/*CSS DE BARRA DE NAVEGACIÓN SUPERIOR*/
* {
  margin: 0;
  padding: 0;
  box-sizing: none;
  font-family: 'Open Sans', sans-serif;
}
@font-face {
  font-family: 'Proza libre';
  src: url('../fonts/ProzaLibre-Regular.ttf');
   
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Regular.ttf');
}
#main1 {
  color: rgb(146, 74, 146);
  font-size: x-large;
}

#main1:hover {
  font-size: xlarge;
  color: rgb(0, 0, 0);
  transition: all 500ms ease;
  text-decoration-line: underline;
  transition: all 2s linear;
}

.navegacion {
  width: 100%;
  margin: none;
  background-color: #61677c56;
  font-size: 20px;
  margin-top: 1%;
}

.menu {
  list-style: none;
  display: inline-flex;
  justify-content: space-between;
}

.menu>li>a {
  display: block;
  padding: 15px 120px;
  /* padding: 15px 160px; */
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-family: 'Proza libre';
  font-size: x-large;
}

.menu>li:hover {
  background-color: rgb(85, 173, 233);
  transition: all 1.3s linear;
}

.submenu1 {
  position: absolute;
  display: none;
  list-style: none;
  width: 200px;
}

.submenu1 li a {
  color: rgb(250, 250, 238);
  /* color: black; */
}

.submenu1 li a:hover {
  color: rgb(243, 239, 239);
  background-color: rgb(255, 0, 0);
  font-size: large;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 1.5s ease;
}

.menu li:hover .submenu1 {
  display: block;
  width: 31.4%;
  text-align: left;
  background-color: rgba(34, 35, 94, 250);
  /* background-color: rgba(109, 179, 69, 250); */
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /*border-style: double;*/
}

.menu li .submenu1 a {
  margin: 0.3cm;
  line-height: 190%;
}

.submenu2 {
  position: absolute;
  display: none;
  list-style: none;
  width: auto;
}

.submenu2 li a {
  color: rgb(250, 250, 238);
}

.submenu2 li a:hover {
  color: rgb(161, 247, 22);
  font-size: large;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 1.5s ease;
}

.menu li:hover .submenu2 {
  display: block;
  width: 28.3%;
  text-align: left;
  background-color: rgba(34, 35, 94, 250);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /*border-style: double;*/
}

.menu li .submenu2 a {
  margin: 0.3cm;
  line-height: 190%;
}

.submenu3 {
  position: absolute;
  display: none;
  list-style: none;
  width: 200px;
}

.submenu3 li a {
  color: black;
}

.submenu3 li a:hover {
  color: rgb(148, 193, 235);
  background-color: black;
  font-size: large;
  /* font-family: 'Times New Roman', Times, serif; */
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 1.5s ease;
}

.menu li:hover .submenu3 {
  display: block;
  width: 30.85%;
  text-align: left;
  background-color: rgb(224, 136, 21, 250);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /*border-style: double;*/
}

.menu li .submenu3 a {
  margin: 0.3cm;
  line-height: 190%;
}


/* Submenu de Tecnicatura en Desarrollo y Análisis*/
.submenuA {
  position: absolute;
  display: none;
  list-style: none;
  width: auto;
}

.submenuA li a:hover {
  color: rgb(14, 14, 13);
  font-size: large;
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  font-family: Georgia, 'Open Sans', sans-serif;
}

.submenuA li {
  width: 370px;
}

.submenuA li a {
  color: black;
}

.submenu2 li:hover .submenuA {
  margin-left: 110px;
  display: block;
  width: auto;
  text-align: left;
  background-color: rgb(134, 196, 238);
  border-radius: 10px;
  border-style: ridge;
}

.submenuB {
  position: absolute;
  display: none;
  list-style: none;
  width: auto;
}

.submenuB li a:hover {
  color: rgb(14, 14, 13);
  font-size: large;
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  font-family: Georgia, 'Open Sans', sans-serif;
}

.submenuB li {
  width: 370px;
}

.submenuB li a {
  color: black;
}

.submenu2 li:hover .submenuB {
  margin-left: 120px;
  display: block;
  width: auto;
  text-align: left;
  background-color: rgb(134, 196, 238);
  border-radius: 10px;
  border-style: ridge;
}

@media (max-width:1000px) {
  .menu {
    display: block;
    margin-right: 2rem;
    justify-content: left;
    width: 100%;
  }

  .navegacion a:last-of-type {
    margin: 0;
  }

}

@media screen and (max-width:610px) {
  .login {
    width: 450px
  }
}

@media (max-width:1400px) {
  .login #main1{
    font-size: 20px;
  }
}