/* ::-webkit-scrollbar{
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #dedede;
    
  }
  
  ::-webkit-scrollbar-thumb{ background: #9f9f9f; border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px;
  } */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 30px;
    margin-top: 30px;
}

nav ul li:not(:last-child) {
    margin-right: 50px;
}

nav ul li a {
    text-decoration: none;
    color: black;
}

section#slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

div#content-images-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

h1#slider-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    background: linear-gradient(0deg, rgb(136, 132, 132) 0%, rgba(255,255,255,1) 32%);
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 80%;
    text-align: center;
}


@media (max-width: 600px) {
  h1#slider-text {
   
    font-size: 2.6em !important;
    
}
}

@media screen and (max-width: 1280px)  { 
    
  h1#slider-text {
   
    font-size: 4em;
    
}
      


}


section#content {
    /* margin-top: 15px; */
    /* margin-bottom: 15px; */
    width: 100%;
    height: 100vh;
    background-color: #140F25;
}

div.text-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    
}

.competencias {
height: 70vh;


}

.row_competencias{
    height: 100%;
    padding: 10px 0;
}



 
@media screen and (max-width: 667px) {
    .competencias {
        height: 100vh !important;
        
        }
        .carousel-item h2{
           
            font-size: 24px !important;
            
        }

        .carousel-item p{
           
            font-size: 15px !important;
            
        }
  }

@media screen and (max-width: 640px) {
    .competencias {
        height: 100vh !important;
        
        }
  }

  @media only screen and (max-height: 390px) and (min-width:700px) and (orientation: landscape) {
   
    .competencias {
        height: auto !important;
        
        }
      


   
    }

 

  @media screen and (max-width: 992px)  { 
    
    .competencias{
        height: 50vh;
        
    }
        


}

@media screen and (min-width: 642px) and (max-width:991px) {
    .competencias{
        height: 100vh;
        
    }
    
}

@media screen and (min-width: 1280px)  { 
    
  .padding-carrusel {
    padding: 0 80px ;
  }
    


}









/*SLIDER*/

.carousel-item h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.125em;
    color:#fff;
}

.carousel-item p{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1em;
    color:#fff;
}

.carousel-item li{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1em;
    color:#fff;
}

/* #################### VENTANA EMERGENTE ACTIVIDAD ################################################*/

.overley{
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.overley.active{
    visibility: visible;
}

.popup{
    /* background-color: #dedede;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.877); */
    border-radius: 10px;
    width: 70%;
    height: 20vh;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1em;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: 1s ease all;
    -webkit-transition: 1s ease all;
    -moz-transition: 1s ease all;
    -ms-transition: 1s ease all;
    -o-transition: 1s ease all;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    
/* GLASSMORPHISM*/
background: rgba(0, 0, 0, 0.19);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(16.2px);
-webkit-backdrop-filter: blur(16.2px);
border: 1px solid rgba(0, 0, 0, 0.04);
color:#fff;
}


.icono_cerrar{
    height: 10%;
}
.texto_popup{
    height: 90%;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.popup .btn-cerrar-popup{ font-size: 16px; line-height: 16px; display: block; text-align: right; color:#fff; transition:.3s ease all ; -webkit-transition:.3s ease all ; -moz-transition:.3s ease all ; -ms-transition:.3s ease all ; -o-transition:.3s ease all ;
}

.popup .icono_cerrar .btn-cerrar-popup:hover{
color: #000;
}

.popup .texto_popup p {
   font-size: 25px;
   margin: 0;
   opacity:0 ;
   
}

#popup_actividad_tema1, #popup_actividad_tema2, #popup_actividad_tema3, #popup_actividad_tema4  p{
    cursor: pointer;
}



.popup.active{
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}


.popup.active p {
    animation: entrada .80s ease .5s forwards;
    -webkit-animation: entrada .80s ease .5s forwards;
}

@keyframes entrada {
    from {
        transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
        opacity: 0;
}
    to { transform: translateY(0) ; -webkit-transform: translateY(0) ; -moz-transform: translateY(0) ; -ms-transform: translateY(0) ; -o-transform: translateY(0) ;
    opacity: 1; }
}

/*celular*/
@media (max-width: 600px) {
    .popup .texto_popup p {
        font-size: 12px;
        
     }
  }

  /*CELULARES EN MODO HORIZONTAL*/
@media only screen and (max-height: 575.98px) and (orientation: landscape){
    .popup .texto_popup p {
        font-size: 10px;
        
     }

}

@media only screen and (max-height: 390px) and (min-width:700px) and (orientation: landscape){
    .popup .texto_popup p {
        font-size: 10px;
        
     }

}

/* #################### AQUI TERMINA VENTANA EMERGENTE ACTIVIDAD ################################################*/




/* #################### VENTANA EMERGENTE REPASO VIDEO ################################################*/

.overley_video{
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.overley_video.active{
    visibility: visible;
}

.popup_video{
    background-color: #dedede;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.877);
    border-radius: 10px;
    width: 90%;
    height: 90vh;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1em;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: 1s ease all;
    -webkit-transition: 1s ease all;
    -moz-transition: 1s ease all;
    -ms-transition: 1s ease all;
    -o-transition: 1s ease all;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    

    /* BACKGROUND*/
    background: rgba(0, 0, 0, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.2px);
    -webkit-backdrop-filter: blur(16.2px);
    border: 1px solid rgba(0, 0, 0, 0.04);
}


.icono_cerrar_video{
    height: 5%;
}
.texto_popup_video{
    height: 95%;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.popup_video .btn-cerrar-popup_video{ font-size: 16px; line-height: 16px; display: block; text-align: right; color:#FFF; transition:.3s ease all ; -webkit-transition:.3s ease all ; -moz-transition:.3s ease all ; -ms-transition:.3s ease all ; -o-transition:.3s ease all ;
}

.popup_video .icono_cerrar_video .btn-cerrar-popup_video:hover{
color: #000;
}

.popup_video .texto_popup_video p {
   font-size: 25px;
   margin: 0;
   opacity:0 ;
   
}

#popup_repaso_tema1, #popup_repaso_tema2, #popup_repaso_tema3, #popup_repaso_tema4 p {
    cursor: pointer;
}

.popup_video.active{
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}


.popup_video.active p {
    animation: entrada .80s ease .5s forwards;
    -webkit-animation: entrada .80s ease .5s forwards;
}

@keyframes entrada {
    from {
        transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
        opacity: 0;
}
    to { transform: translateY(0) ; -webkit-transform: translateY(0) ; -moz-transform: translateY(0) ; -ms-transform: translateY(0) ; -o-transform: translateY(0) ;
    opacity: 1; }
}

/*celular*/
@media (max-width: 600px) {
    .popup_video .texto_popup_video p {
        font-size: 12px;
        
     }

     .popup_video{
        height: 50vh;
        

     }
  }

  /*CELULARES EN MODO HORIZONTAL*/
@media only screen and (max-height: 575.98px) and (orientation: landscape){
    .popup_video .texto_popup_video p {
        font-size: 10px;
        
     }
     

}

@media only screen and (max-height: 390px) and (min-width:700px) and (orientation: landscape){
    .popup_video .texto_popup_video p {
        font-size: 10px;
        
     }

     

}



/*IPAD*/

@media screen and (max-width: 992px)  { 
    
    .popup_video{
        height: 50vh;
        

     }

        

}







/* #####################AQUI EMPIEZAN ESTILOS MENU DESPLEGABLE ############################ */

/*celular*/
@media (max-width: 600px) {
    .menu_desplegable {
        left: 90% !important;
        
     }

     
  }

.menu_desplegable {

    /* BACKGROUND*/
    background: rgba(148, 9, 241, 0.397);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.2px);
    -webkit-backdrop-filter: blur(16.2px);
    border: 1px solid rgba(219, 219, 219, 0.04);
	padding: 10px;
    position: fixed;
    top: 50%;
	left: 95%;
    opacity: .5;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 55px;
	border-radius: 40px;
    z-index: 1000;
}
.flecha_desplegable {
	background-color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3px 0px;
	transform: rotate(90deg);
	transition: .5s;
    text-decoration: none;
}

.flecha_desplegable .fa-chevron-circle-down {
    color: rgb(164, 6, 255);
    font-size: 25px;
}



/*LINEAMIENTOS ICONO*/
.lineamientos_desplegable {
	fill: transparent;
    background-color: rgb(157, 71, 255);
	border-radius: 50%;
	width: 0px;
	height: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3px 0px;
	transition: .5s;
}

.menu_desplegable:hover > .lineamientos_desplegable{
	width: 40px;
	height: 40px;
    fill:#fff;
    
}

.menu_desplegable:hover > .lineamientos_desplegable i, svg path{
    width: 30px;
    height: 30px;
    
}


/*LINEAMIENTOS ICONO*/





.menu_desplegable:hover{
    opacity: 1;
}







.menu_desplegable:hover > .flecha_desplegable {
	background-color: #fff;
	transform: rotate(0deg);
}
.menu_desplegable:hover > .inicio_desplegable {
	width: 40px;
	height: 40px;
	color: white;
}
.menu_desplegable:hover > .sobrenosotros_desplegable {
	width: 40px;
	height: 40px;
	color: white;
}
.menu_desplegable:hover > .contacto_desplegable {
	width: 40px;
	height: 40px;
	color: white;
}


/* TEXTO DE LOS ICONOS DEL MENU DESPLEGABLE */

.ico_1:before,
.ico_1:after{
  content: '';
  position: absolute;
  right: 50%;
  transform: translate(-20%, 5px);
  visibility: hidden;
  transition: transform  .5s;

}

.ico_1:before{
 left: 50px;
  
}

.ico_1:after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-tooltip);
  top: 50px;
  padding: 2px 5px;
  border-radius: 15px;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  width: auto;
  min-width: 120px;
  height: 50px;
  text-align: center;
  line-height: 13px;
    
  
}

.ico_1:hover::before,.ico_1:hover::after {
  transform: translate(-50%, 5px);
  visibility: visible;
}

/*  */

.ico_2:before,
.ico_2:after{
  content: '';
  position: absolute;
  right: 50%;
  transform: translate(-20%, 50px);
  visibility: hidden;
  transition: transform  .5s;

}

.ico_2:before{
 left: 50px;
  
}

.ico_2:after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-tooltip);
  top: 50px;
  padding: 2px 5px;
  border-radius: 15px;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  width: auto;
  min-width: 120px;
  height: 50px;
  text-align: center;
  line-height: 13px;
}

.ico_2:hover::before,.ico_2:hover::after {
  transform: translate(-50%, 50px);
  visibility: visible;
}


/*  */

.ico_3:before,
.ico_3:after{
  content: '';
  position: absolute;
  right: 50%;
  transform: translate(-20%, 100px);
  visibility: hidden;
  transition: transform  .5s;

}

.ico_3:before{
 left: 50px;
  
}

.ico_3:after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-tooltip);
  top: 50px;
  padding: 2px 5px;
  border-radius: 15px;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  width: auto;
  min-width: 120px;
  height: 50px;
  text-align: center;
  line-height: 13px;
}

.ico_3:hover::before,.ico_3:hover::after {
  transform: translate(-50%, 100px);
  visibility: visible;
}

 /*  */

 .ico_4:before,
.ico_4:after{
  content: '';
  position: absolute;
  right: 50%;
  transform: translate(-20%, 140px);
  visibility: hidden;
  transition: transform  .5s;

}

.ico_4:before{
 left: 50px;
  
}

.ico_4:after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-tooltip);
  top: 50px;
  padding: 2px 5px;
  border-radius: 15px;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  width: auto;
  min-width: 120px;
  height: 50px;
  text-align: center;
  line-height: 13px;
}

.ico_4:hover::before,.ico_4:hover::after {
  transform: translate(-50%, 140px);
  visibility: visible;
}


/*  */

.ico_5:before,
.ico_5:after{
  content: '';
  position: absolute;
  right: 50%;
  transform: translate(-20%, 190px);
  visibility: hidden;
  transition: transform  .5s;

}

.ico_5:before{
 left: 50px;
  
}

.ico_5:after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-tooltip);
  top: 50px;
  padding: 2px 5px;
  border-radius: 15px;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  width: auto;
  min-width: 120px;
  height: 50px;
  text-align: center;
  line-height: 13px;
}

.ico_5:hover::before,.ico_5:hover::after {
  transform: translate(-50%, 190px);
  visibility: visible;
}

/*  */

.ico_6:before,
.ico_6:after{
  content: '';
  position: absolute;
  right: 50%;
  transform: translate(-20%, 235px);
  visibility: hidden;
  transition: transform  .5s;

}

.ico_6:before{
 left: 50px;
  
}

.ico_6:after{
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-tooltip);
  top: 50px;
  padding: 2px 5px;
  border-radius: 15px;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  width: auto;
  min-width: 120px;
  height: 50px;
  text-align: center;
  line-height: 13px;
}

.ico_6:hover::before,.ico_6:hover::after {
  transform: translate(-50%, 235px);
  visibility: visible;
}







/* ########################AQUI TERMINAN ESTILOS MENU DESPLEGABLE########################################### */



.carousel-item h2{ 
    margin-bottom: 20px;
}
.carousel-item ul  { 
    padding-left:  10px;
}
.carousel-item ul li { 
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .carousel-item { 
        padding: 0 10px !important;
    }

     
  }

  /**/

  @media only screen and (min-width:1669px) {
            
    .carousel-item { 
        padding: 0 100px;
    }
}


  




  /*VIDEO*/
  video{
    background-color: #fff !important;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
  }
  
  .fm-video{
      width: 100%;
  }
.vjs-tech {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .video-js:hover .vjs-big-play-button{
    background: rgba(0, 0, 0, 0.247);
  }
  .vjs-menu-button-popup .vjs-menu .vjs-menu-content
  {
    background-color: #dedede !important;
  }
  .fm-video .vjs-big-play-button {
    background: rgba(0, 0, 0, 0.226);
    width: 80px !important;
    height: 80px !important;
    line-height: 80px !important;
    border-radius: 100% !important;
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    -ms-border-radius: 100% !important;
    -o-border-radius: 100% !important;
    border:none;
    
  } 
  
  .fm-video .vjs-big-play-button:hover{
    background: rgba(0, 0, 0, 0.603);
  }
  
  .vjs-control-bar{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #fff !important;
    color: #4A3F62;
  }
  .video-js .vjs-load-progress{ 
    background: #4A3F62 !important; 
    
    
  }
  .video-js .vjs-play-progress{
    background-color: #16112A !important;
  }
  
  .fm-video {
    background-color: transparent;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    
  }


  @media only screen and (max-height: 575.98px) and (orientation: landscape) {
      .competencias {
          
      }
  }

  
  .modal-title {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #FFF;
  }


  .modal-content {
    background: rgba(0, 0, 0, 0.19) !important;
    border-radius: 16px!important;;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1)!important;;
    backdrop-filter: blur(16.2px)!important;;
    -webkit-backdrop-filter: blur(16.2px);
    border: 1px solid rgba(0, 0, 0, 0.04)!important;;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.close {
  background-color: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;

}

.modal-header{
  border: 0 !important;
}

.modal-footer{
  border: 0 !important;
}