  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

  :root {
      --azul: #00155C;
      --letra: #484848;
      --title: #454545;
      --enlaces: #026BCA;
      --marcado: #999999;
      --number: #10a3ca;
  }

  * {
      margin: 0px;
  }

  body {
      overflow-x: hidden;
  }
  .juju{
    height: 300px;
    overflow-y: scroll;
    }
  /*Inicio del header DESKTOP */
  header {
      background-color: white;
      display: flex;
      justify-content: space-between;
      font-family: 'Noto Sans', sans-serif;
      align-items: center;
      padding: 10px;
      margin: 0px;
      z-index: 10;

  }

  header.down {
      position: fixed;
      top: 0;
      transition: 0.7s;
      box-shadow: 0px 5px 10px rgb(128, 128, 128, 0.5);
      z-index: 10;
  }

  .logo {
      width: 200px;
      padding-left: 50px;
  }

  .logo img {
      width: 100%;
  }

  #menu {
      transition: all 0.1s ease-in;
  }

  #menu ul {
      display: flex;
      list-style: none;
      justify-content: space-between;
      align-items: center;
  }

  #menu ul li {
      margin-left: 20px;
      margin-right: 20px;
  }

  #menu ul li a {
      text-decoration: none;
      color: var(--letra);
      font-size: 14px;
      letter-spacing: 0.3px;
      display: block;
      text-align: left;
      padding: 8px !important;
  }
  #menu ul li a:hover{
    background-color: rgb(0, 119, 226,0.1);
  
    border-radius: 10px;
    transition: all ease-in 0.3s;
  }

  .bajar {
      padding: 12px;
      position: relative;
  }

  .sub {
      background-color: white;
      border-radius: 10px;
  }

  #menu li ul {
      display: none;
      position: absolute;
      text-align: center;
      list-style: none;
      margin-left: -50px;
      padding-top: 10px;
  }

  #menu li:hover>ul {
      display: block;
  }

  .open,
  .close,
  .contacte {
      display: none;
  }

  /*Fin del header  DESKTOP*/
  /*Inicio de la seccion slider*/



  #slider {
    width: 100%;
    overflow: hidden;
  }
  
  .slider-site {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease-in;
    scroll-behavior: smooth;
    overflow: hidden;
  }
  
  .img-slider-item {
    flex: 0 0 100%;
  }
  
  .fade-slide {
    animation: fadeSlide 1s ease-in-out;
  }
  
  @keyframes fadeSlide {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
  }
  

    .prev-btn,
    .next-btn {
    width: 40px;
    height: 40px;
    background-color: #00155c;
    color: white; 
    font-size: 20px; 
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, transform 0.3s;
    }

    .prev-btn:hover,
    .next-btn:hover {
    background-color: #00155c;
    }

    .prev-btn:active,
    .next-btn:active {
    transform: scale(0.9);
    }

    .prev-btn {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    }

    .next-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    }


    .slider-indicator {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        margin: 0 5px;
        cursor: pointer;
    }
    
    .active {
        background-color: rgba(0, 0, 0, 0.0);
    }
  
  


  /*Fin de la seccion  slider */
  /*INICIO de la seccion circulos*/
  #cont-ci {
      display: flex;
      width: 70%;
      flex-flow: row nowrap;
      margin: auto;
      justify-content: center;
      align-items: center;
      gap: 2vh;
      padding: 1vh 2vh;
      /*La del original deberia tener w:1160; h: 140; */
  }

  .cuadre {
      text-align: center;
  }

  .borde-pri {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 2vh;
      text-align: center;
      transition: all 0.15s ease-in;
  }

  .yellow {
      border-radius: 50%;
      border: 2px solid #ECD06F;
  }

  .yellow:hover {
      border: 5px solid #ECD06F;
  }

  .naranja {
      border-radius: 50%;
      border: 2px solid #DF6C4F;
  }

  .naranja:hover {
      border: 5px solid #DF6C4F;
  }

  .green {
      border-radius: 50%;
      border: 2px solid #77BF87;
  }

  .green:hover {
      border: 5px solid #77BF87;
  }

  .blie {
      border-radius: 50%;
      border: 2px solid #00A78E;
  }

  .blie:hover {
      border: 5px solid #00A78E;
  }

  .blue {
      border-radius: 50%;
      border: 2px solid #00BCE4;
  }

  .blue:hover {
      border: 5px solid #00BCE4;
  }

  .azul {
      border-radius: 50%;
      border: 2px solid #0077E2;
  }

  .azul:hover {
      border: 5px solid #0077E2;
  }

  .icones {
      width: 50px;
  }

  .iconess {
      width: 40px;
  }

  /*Fin de la seccion Circulos */
  /*INICIO de la seccion CALENDARIO_CURSOS*/
  .bordes {
      border: 2px solid var(--azul);
      width: 5%;
      margin: auto;
  }


  /*FIN de la seccion CALENDARIO_CURSOS*/
  /*INICIO de la seccion Propuesta de valor*/
  #contenedor {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      width: 90%;
      padding: 20px;
      margin: auto;
  }

  .aja,
  .aji,
  .caja,
  .caja-acceder {
      opacity: 0;
      transition: all 0.5s;
  }

  .mostrar {
      animation: mostrar 1s;
  }

  @keyframes mostrar {
      0% {
          transform: translatey(60px);
      }

      100% {
          transform: translatey(0);
      }
  }

  .aja {
      text-decoration: none;
      list-style: none;
      width: 12vw;
      margin: 10px;
  }

  .iman {
      width: 235px;
      margin: 15px;
  }

  /*FIN de la seccion Propuesta de valor*/
  /*INICIO de la seccion area de conocimiento*/
  #contenedore {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      width: 90%;
      padding: 20px;
      margin: auto;
  }

  .aji {
      text-decoration: none;
      list-style: none;
      width: 12vw;
      margin: 10px;
  }

  .imane {
      width: 235px;
      margin: 15px;
  }

  /*FIN de la seccion area de conocimiento*/
  /*INICIO de la seccion catalogo de area de conocimiento*/
  #CatalogoArea {
      background-image: url("../img/catalogoArea/bg-prueba-conoc.jpg");
      height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .principales {
      overflow: hidden;
  }

  #secundari {
      width: 200px;
      margin: 0 auto;
      position: relative;
  }

  .track {
      display: flex;
      animation: slide infinite 20s;
      text-align: center;
  }

  @keyframes slide {
      0% {
          transform: translateX(0);
      }

      8% {
          transform: translateX(-100%);
      }

      16% {
          transform: translateX(-200%);
      }

      24% {
          transform: translateX(-300%);
      }

      32% {
          transform: translateX(-400%);
      }

      40% {
          transform: translateX(-500%);
      }

      48% {
          transform: translateX(-600%);
      }

      56% {
          transform: translateX(-700%);
      }

      64% {
          transform: translateX(-800%);
      }

      72% {
          transform: translateX(-900%);
      }

      80% {
          transform: translateX(-1000%);
      }

      88% {
          transform: translateX(-1100%);
      }
  }

  .cuadres {
      flex: 0 0 200px;
      padding: 10px;
      box-sizing: border-box;
      text-align: center;
  }

  .cuadres a {
      display: block;
      text-align: center;
      text-decoration: none;
      color: #000;
  }

  .cuadres img {
      max-width: 100%;
      height: auto;
      margin: auto;
  }

  .letter-cArea {
      margin-top: 10px;
      color: white;
  }

  .enlaces2 {
      color: white;
      margin: 50px 0px 240px 0px;
      border: 1px solid white;
      background-color: var(--azul);
      padding: 6px 10px 6px 10px;
      text-decoration: none;
      font-family: 'Noto Sans', sans-serif;
      border-radius: 20px;
      transition: all 0.1s ease-in;
      cursor: pointer;
  }

  .enlaces2:hover {
      border: 1px solid var(--azul);
      padding: 8px 12px 8px 12px;
  }

  #slide {
      display: flex;
      justify-content: space-between;
  }

  .prev,
  .next {
      font-size: 50px;
      background-color: transparent;
      border: none;
      filter: invert();
  }

  .prev {
      position: relative;
      left: 20%;
      cursor: pointer;
  }

  .next {
      position: relative;
      right: 20%;
      cursor: pointer;
      width: 100px;
  }

  /*FIN de la seccion catalogo de area de conocimiento*/
  /*INICIO de la seccion accede*/
  #accede {
      background-image: url("../img/accede/sc-step-bg-2.png");
      background-repeat: no-repeat;
      background-size: cover;
  }

  #contenedorcs {
      width: 100%;
      text-align: center;
      font-family: 'Roboto', sans-serif;
      background-color: #F4F4F4;
  }

  #titles {
      color: #969696;
      width: 100%;
      padding: 80px;
      font-size: 40px;
      text-align: center;
      display: block;
      margin-top: 10px;
  }

  #iconos {
      display: flex;
      width: 80%;
      margin: auto;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-bottom: 100px;
  }

  .cabece {
      display: block;
  }

  .icone {
      width: 150px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      text-align: center;
  }

  .icone p {
      color: #00155C;
      font-weight: 500;
  }

  .back-circle {
      background-color: #00155C;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .back-circle:hover {
      background-color: white;
      filter: none;
  }

  .circle {
      filter: invert(100%);
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .circle:hover {
      background-color: white;
      filter: none;
  }

  #section {
      width: 90%;
      margin: auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
  }

  #device {
      width: 50%;
      margin: 0;
  }

  #device img {
      width: 100%;
  }

  #relleno {
      width: 50%;
  }

  #descripcion {
      margin-top: 50px;
      width: 100%;
      text-align: left;
      overflow: hidden;
      height: 200px;
      display: flex;
      flex-direction: column;

  }

  .textos {
      width: 100%;
      height: autos;
      margin-left: 50px;
      padding: 20px;
  }

  .enlace-area {
      margin-top: 50px;
  }

  .bien {
      color: #00155C;
      font-size: 19px;
      text-align: left;
      padding-left: 20px;
  }

  .bton {
      text-decoration: none;
      color: white;
      padding: 6px 15px 6px 15px;
      background-color: #00155C;
      border-radius: 20px;
      font-size: 14px;
      margin-left: 20px;
      margin-bottom: 50px;
      display: block;
  }

  .desp {
      text-align: left;
      margin: 20px;
      color: #888888;
      font-weight: 300;
      letter-spacing: 0.3px;
      padding-bottom: 50px;
      display: block;
  }

  /*FIN de la seccion accede*/
  /*INICIO de la seccion quienes somos*/
  #contadores {
      border: 1px solid black;
      background-color: var(--azul);
  }

  #box-conta {
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 50px;
  }

  .caja-conta {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .caja-conta img {
      width: 44px;
      filter: invert();
  }

  .number-conta {
      font-family: 'Roboto', sans-serif;
      font-size: 45px;
      color: var(--number);
      font-weight: 500;
      text-align: center;
      letter-spacing: 0.9px;
  }

  .letra-conta {
      font-family: 'Roboto', sans-serif;
      color: white;
      text-align: center;
      font-weight: 300;


  }

  /*FIN de la seccion quienes somos*/
  /*INICIO de la seccion quienes somos*/
  .marcado {
      margin: auto;
      display: flex;
      justify-content: center;
      margin: 20px;
      color: var(--marcado);
      text-align: center;
  }

  #movies {
      text-align: center;
      padding-left: 15px;
      padding-right: 15px;
      display: flex;
      justify-content: center;
      margin: 0px;
  }

  #movi {
      border-radius: 20px;
      box-shadow: 1px 5px 10px rgb(128, 128, 128, 0.5);
  }

  #enc,
  #acc,
  #recs,
  #eva {
      display: none;
  }

  /*Fin de la seccion NUESTRO SOCIOS*/
  /*INICIO de la seccion NUESTRO SOCIOS*/
  .title {
      color: var(--title);
      font-family: 'Noto Sans', sans-serif;
      text-align: center;
      font-size: 40px;
      margin: 20px;
      font-weight: 600;
  }

  .letras {
      color: var(--letra);
      font-family: 'Noto Sans', sans-serif;
      text-align: center;
      margin: 20px;
  }

  .enlaces {
      color: var(--enlaces);
      font-family: 'Noto Sans', sans-serif;
      text-decoration: none;
      display: flex;
      justify-content: center;
      margin: 20px;
      font-size: 16px;
  }

  #conten {
      width: 70%;
      margin: auto;
  }

  #cuisa {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .cuas {
      width: 200px;
      padding: 10px;
      filter: grayscale(1);
      align-self: center;
      transition: width 0.2s;
  }

  .cuas:hover {
      filter: none;
      width: 210px;
  }

  /*FIN de la seccion NUESTRO SOCIOS*/
  /*INICIO del footer  DESKTOP*/

  .footer-title {
      color: white;
      border-bottom: 2px solid #10A3CA;
      font-weight: 300;
      margin-top: 20px;
      padding-top: 1rem;
      margin-bottom: 1rem;
  }

  .clei::-webkit-scrollbar {
      width: 4px;
      height: 4px;
      display: block;
  }

  .clei::-webkit-scrollbar-thumb:active {
      background-color: #999999;
  }

  .clei::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 4px;
  }

  .clei::-webkit-scrollbar-thumb:hover {
      background: #b3b3b3;
      box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
      display: block;
  }

  .clei::-webkit-scrollbar-track {
      background: #e1e1e1;
      border-radius: 4px;
  }

  /* Cambiamos el fondo cuando esté en active o hover */
  .clei::-webkit-scrollbar-track:hover,
  .clei::-webkit-scrollbar-track:active {
      background: #d4d4d4;
  }
.mostraras{
  animation: mostraras 1s;
}
@keyframes mostraras {
  0% { transform: translatex(-500px);}
  100%{ transform: translatex(0);}
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
  @media screen and (max-width:1280px) {

      /*Inicio del header MOVILE */
      .open,
      .close {
          display: block;
          border: 0px;
          background-color: transparent;
          font-size: 1.25rem;
          cursor: pointer;
          color: var(--letra);
          width: 30px;
      }

      .contacte {
          display: block;
      }

      .redes {
          display: flex;
          margin-top: 20px;
          font-size: 20px;
      }

      .logo {
          margin-left: 10px;
      }

      #menu {
          margin-top: 0px;
          display: none;
          opacity: 0;
          visibility: hidden;
          margin-right: 0px;
          display: flex;
          flex-direction: column;
          align-items: end;
          gap: 1rem;
          position: absolute;
          top: 0;
          position: 0;
          right: 0;
          bottom: 0;
          text-align: center;
          background-color: white;
          padding-top: 1rem;
          box-shadow: 0 0 0 100vmax rgb(0, 0, 0, 0.5);
          z-index: 10;
      }

      #menu.visible {
          opacity: 1;
          visibility: visible;
          background-color: white;
          z-index: 100;
          height: 100vh;
          overflow: hidden;
          width: 30%;
          padding-right: 10px;
          border-top-left-radius: 10px;
          border-bottom-left-radius: 10px;
          transition: all ease-in 0.3s;
      }

      #menu ul {
          flex-direction: column;
      }

      #menu ul li {
          width: 100%;
      }

      #menu ul li a {
          padding: 4px;
          margin-left: 20px;
      }

      #menu ul li ul {
          display: block;
          position: relative;
          margin-left: 10px;
          margin: 0;
          padding: 0px;
      }

      #menu ul li ul div {
          padding: 0px;
      }

      .sub {
          margin: 0;
          padding: 0px;
      }

      /*FIN del header movile */
      /*INICIO de la seccion circulos */
      #cont-ci {
          height: auto;
          width: 80%;
          margin: auto;
      }

      .cuadre {
          width: 28%;
          margin: 6px;
      }

      .borde-pri {
          width: 100px;
          height: 100px;
      }

      .icones {
          width: 30px;
      }

      /*FIN de la seccion circulos */
      .iconos {
          margin-bottom: 20px;
      }

      .circle {
          width: 50px;
      }

      .principal {
          width: 70%;
      }

      /*INICIO de la seccion socio */
      * {
          margin: 0px;
      }

      .title {
          font-size: 25px;
          margin: 10px;
      }

      .letras {
          font-size: 14px;
      }

      #conten {
          width: 200px;
          margin: 0 auto;
          position: relative;
      }

      #cuisa {
          display: flex;
          animation: cambio infinite 20s;
          justify-content: normal;
      }

      .cuas {
          width: 100%;
          filter: none;
      }

      @keyframes cambio {
          0% {
              transform: translateX(0);
          }

          17% {
              transform: translateX(-100%);
          }

          33% {
              transform: translateX(-200%);
          }

          65% {
              transform: translateX(-300%);
          }

          81% {
              transform: translateX(-400%);
          }

          97% {
              transform: translateX(-500%);
          }

      }

      .cuas {
          flex: 0 0 200px;
          box-sizing: border-box;
      }

      .cuas img {
          max-width: 100%;
          height: auto;
      }

      /*FIN de la seccion socio */

  }

  @media screen and (max-width:768px) {
      #menu.visible {
          opacity: 1;
          visibility: visible;
          background-color: white;
          z-index: 100;
          height: 100vh;
          overflow: hidden;
          width: 45%;
          padding-right: 10px;
          border-top-left-radius: 10px;
          border-bottom-left-radius: 10px;
          transition: all ease-in 0.3s;
      }

      #cont-ci {
          padding: 1vh 1vh;
          flex-wrap: wrap;
          gap: 4vh;
      }

      .icones {
          width: 20px;
      }

      .circle {
          width: 50px;
      }

      .back-circle {
          width: 70px;
          height: 70px;
      }

      .icone {
          width: 100px;
      }

      .cabece {
          font-size: 10px;
      }

      #iconos {
          margin-bottom: 15px;
      }

      #section {
          display: flex;
          flex-wrap: wrap;
      }

      #wel {
          width: 100% !important;
      }

      #relleno {
          padding-top: 0px;
      }

      #descripcion {
          margin-top: 0px;
      }

      .desp {
          font-size: 12px;
      }

      .enlace-area {
          margin-top: 0px;
          font-size: 10px;
      }

      .textos {
          margin-left: 0px;
          width: 100% !important;
      }

      .bien {
          padding-left: 0px;
      }

      .caja-conta {
          width: 10rem;
      }

      #movi {
          height: 300px;
      }
  }

  @media screen and (max-width:480px) {

      /*INICIO de la seccion propuesta de valor*/
      header {
          padding: 10px 5px 10px 0px;
      }

      #menu.visible {
          opacity: 1;
          visibility: visible;
          background-color: white;
          z-index: 100;
          height: 100vh;
          overflow: hidden;
          width: 70%;
          padding-right: 0px;
          border-top-left-radius: 10px;
          border-bottom-left-radius: 10px;
          transition: all ease-in 0.3s;
      }

      #menu {
          padding-right: 0px;
      }

      #menu ul {
          padding: 0px 0px 0px 20px;
      }

      .redes {
          justify-content: center;
      }

      .redes a {
          margin: 0px 2px 0px 2px;
          font-size: 16px !important;
      }

      .cuadre {
          width: 80px;
      }

      .icones {
          width: 30px;
      }

      .borde-pri p {
          width: 80px;
          height: 80px;
          font-size: 9px;
      }

      .logo {
          padding-left: 0px
      }

      .aja {
          width: 100%;
          flex-direction: column;
      }

      .iman {
          width: 100%;
      }

      /*FIN de la seccion propuesta de valor */
      #buscar b {
          font-size: 12px;
      }

      #Calendario-cursos div h1 {
          font-size: 20px;
      }

      .bordes {
          width: 15%;
      }

      #Calendario-cursos div p {
          font-size: 12px;
      }

      .aja {
          width: 140px;
          display: flex;
          justify-content: center;
          margin: 10px;
      }

      .iman {
          margin: 0px;
      }

      #ares_cono div p {
          font-size: 12px;
      }

      #contenedore {
          display: flex;
          flex-wrap: wrap;
          padding: 0px;
      }

      .caja-conta img {
          width: 30px;
      }

      .aji {
          width: 43%
      }

      .imane {
          width: 130px;
          margin: 0px;
      }

      .title {
          font-size: 20px !important;
      }

      #iconos {
          width: 100%;
          margin: 0px;
      }

      .back-circle,
      .cabece {
          margin-bottom: 20px;
      }

      .circle {
          width: 50px;
      }

      .enlace-area,
      #descripcion,
      #device {
          display: none;
      }

      #movies,
      #movi {
          height: 160px;
          overflow: hidden;
      }

      .letras {
          font-size: 12px;
      }

      


  }