/*Nuestros estilos*/
/*--------------------------------------------------------------
# Hero INDEX-IMAGEN-VIDEO
--------------------------------------------------------------*/

section.hero_uno{
  width: 100%;
  padding: 100px 0 0 0;
  margin: 0 auto;

  background-color: transparent;
  transition: all ease-in-out 0.3s;

}
/* section.hero_uno::before{
  content: "";
  background-color: color-mix(in srgb, #000000, transparent 85%);
  position: absolute ;
  inset: 0;
  z-index: 2;
  transition: all ease-in-out 0.3s;
  }  */

.nnn{
  text-align: center;
}

section.hero_uno .hero_imagen_uno img{
max-width: 100%;
max-height: 100%;    
transition: all ease-in-out 0.3s; 
padding: 0;
margin: 0;
} 

section.hero_uno .hero_video_uno video{
max-width: 100%;
height: 100%;    
transition: all ease-in-out 0.3s; 
padding: 0;
margin: 0;
} 

section.hero_uno .hero_video_uno{
display: none;
}


@media (min-width: 769px){
 section.hero_uno{ 
    margin: 0 auto;   
  }
  section.hero_uno .hero_imagen_uno img{
    display: none;
  }
  section.hero_uno .hero_video_uno{
    display: block;
    }
}
@media (min-width: 900px){

}
@media (min-width: 1190px){
  section.hero_uno .hero_video_uno video{
    margin: 0 auto;
    max-width: 100%;
  }
  section.hero_uno{
    padding: 0 0 0 0; 
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 30px 0;
    transition: all ease-in 0.3s;
  }
  
  @media (min-width: 769px) {
    .about .inner-title {
      max-width: 65%;
      margin: 0 0 80px 0;
    }
  }
  
  .about .our-story {
    padding: 40px;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    transition: all ease-in 0.3s;
  }
  
  
  .about .our-story h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: all ease-in 0.3s;
  }
  
  .about .our-story h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: all ease-in 0.3s;
  }
  
  .about .our-story p:last-child {
    margin-bottom: 0;
    transition: all ease-in 0.3s;
  }
  
  .about .watch-video i {
    font-size: 2rem;
    transition: 0.3s;
    color: var(--accent-color);
    transition: all ease-in 0.3s;
  }
  
  .about .watch-video a {
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-left: 8px;
    transition: 0.3s;
    transition: all ease-in 0.3s;
  }
  
  .about .watch-video:hover a {
    color: var(--accent-color);
    transition: all ease-in 0.3s;
  }
  .about .about-img img{
    max-width: 100%;
  }
  .about .about-img {
    display: none;
    transition: all ease-in 0.3s;
  }
  
  @media (min-width: 768px) {
    .about .our-story {
        display: flex;
        width: 100%;
        height: 600px;
        flex-direction: column;
        justify-content: center;
        text-align: justify;

    }
}
  @media (min-width: 992px) {
    .about .about-img {
      display: flex;
      justify-content: center;
      align-items: center;
      max-height: 100%;
      max-width: 100%;
      margin: 0 auto;
    }
  }


@media (min-width: 1200px) {
  .about .our-story {
    padding-right: 35%;
  }
  .about .about-img {
    max-height: 80%;
    max-width: 100%;

  }
}
/*--------------------------------------------------------------
# Modelo dedutel service Perfil del Egresado
--------------------------------------------------------------*/

.services .inner-title {
  font-size: 2.50rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  transition: all ease-in 0.3s;
  text-align: center;
}

.services .our-services_practicas {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1rem;
  padding: 5px;
  transition: all ease-in-out 0.3s;
}
.option_practicas{
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 35px;

  transition: all ease-in-out 0.3s;
}

.services .option_practicas h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all ease-in 0.3s;
  text-align: center;
}
.services ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  transition: all ease-in 0.3s;
}

.services ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  transition: all ease-in 0.3s;
}

.services ul i {
  font-size: 1rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
  transition: all ease-in 0.3s;
}
@media (min-width: 769px) {
  .services .our-services_practicas {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
    width: 100%;

  }
  .option_practicas{
    padding: 15px;
  }
  .services .inner-title {
    text-align: left;
  }
  .services .option_practicas h3 {
    font-size: 1.3rem;
  }
  .services ul {
    font-size: 13px;
  }
}
@media (min-width: 1100px) {
  .services .our-services_practicas {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    width: 100%;

  }
  .services .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
  .services .option_practicas h3 {
    padding-bottom: 1.5rem;
  }
  .services ul {
    font-size: 15px;
  }
}

.services .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
  transition: all ease-in 0.3s;
}

.services .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
  transition: all ease-in 0.3s;
}

.services .watch-video:hover a {
  color: var(--accent-color);
  transition: all ease-in 0.3s;
}

.services .about-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  
  width: 100%;
  height: 500px;
  
  transition: all ease-in 0.3s;
}

@media (min-width: 992px) {
  .services .about-video {
      height: 600px;
  }
}

/*--------------------------------------------------------------
# About Valores
--------------------------------------------------------------*/
.valores-sections{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  max-width: 100%;
  transition: all ease-in-out 0.3s;
}
.generals{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}
.valores-sections-uno img{
  max-width: 100%;
  transition: all ease-in-out 0.3s;
}
.valores-sections-dos{
  align-items:start;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 500px) {
  .valores-sections-dos{
    width: 80%;
    margin-left: 50px;
  }
}
@media (min-width: 768px) {
  .valores-sections-uno{

  }
  .valores-sections-dos{
    width: 100%;
    margin-left: 0px;

  }
}
@media (min-width: 992px) {
  .valores-sections{

    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;

  }
  .valores-sections-dos{
    width: 80%;
    margin-right: 50px;
  }
}
@media (min-width: 1200px) {
  .valores-sections-uno img{
    max-width: 80%;
    transition: all ease-in-out 0.3s;
  }
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.7;
  transition: 0.3s;
  max-width: 80%;
}

.clients .swiper-slide:hover img {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #00ADA1;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00ADA1;
}
@media (min-width: 768px) {
  .clients .swiper-slide img {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .clients .swiper-slide img {
    max-width: 130%;
  }
}
/*--------------------------------------------------------------
#Modelos y equipamientos y soluciones
--------------------------------------------------------------*/
.alt-modelos-soluciones{
  padding-bottom: 0;
  transition: all ease-in-out 0.3s;

}
.modelos-soluciones-sections{
  display: grid;
  grid-template-columns: repeat(1, 1fr);

/*   row-gap: 2rem; */
  max-width: 100%;
  transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.mmm{
  display: flex;
  flex-direction: column;

  transition: all ease-in-out 0.3s;
}
.mmm h3{
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #00447F;
  padding-top: 30px;
  margin-bottom: 0;
  transition: all ease-in-out 0.3s;
}
.mmm h3 span{
  color: #20A68D;
  transition: all ease-in-out 0.3s;
}


.alt-modelos-soluciones .icon-box {
  margin-top: 15px;
  transition: all ease-in-out 0.3s;
  }
  
.alt-modelos-soluciones .icon-box i {
color: var(--accent-color);
background-color: var(--surface-color);
display: flex;
align-items: center;
justify-content: center;
margin-right: 25px;
font-size: 22px;
width: 36px;
height: 36px;
border-radius: 0 50% 50% 0;
line-height: 0;
box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
transition: all ease-in-out 0.3s;
}
.alt-modelos-soluciones .icon-box h4 {
  font-size: 1rem;
  padding: 0;
  margin-bottom: 0;
  transition: all ease-in-out 0.3s;
}

.line-modelo{
  width: 80%;
  height: 3px;
  background-color: #20A68E;
  margin: 20px auto;
  transition: all ease-in-out 0.3s;
}

.alt-modelos-soluciones .icon-box:hover i {
background-color: var(--accent-color);
color: var(--contrast-color);
}


/* 
.alt-modelos-soluciones .icon-box p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
} */
@media (min-width: 400px) {
  .mmm h3{
    font-size: 1.4rem;
  }
  .alt-modelos-soluciones .icon-box {
    margin-top: 15px;  
    transition: all ease-in-out 0.3s;
  }
  .alt-modelos-soluciones .icon-box i {
    font-size: 25px;
    width: 46px;
    height: 46px;

  }
  .alt-modelos-soluciones .icon-box h4 {
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  .mmm h3{
    font-size: 1.4rem;
    padding-top: 0;
    padding-bottom: 30px;
  }
  .alt-modelos-soluciones .icon-box h4 {
    font-size: 1rem;
  }
  .modelos-soluciones-sections{

    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;

  }
  .line-modelo{
    display: none;
  }
}
@media (min-width: 992px) {
  .alt-modelos-soluciones .icon-box h4 {
    font-size: 1.2rem;
  }
  .mmm h3{
    font-size: 1.6rem;
  }
  .alt-modelos-soluciones .icon-box {
    margin-top: 20px;  
  }
}

.mt-10px{
  margin-top: 10px;
}
.img-post-instituciones{
  border-radius: 1rem;
  padding: 5px;
  max-width: 100%;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
  transition: all ease-in-out 0.3s;
}

/*--------------------------------------------------------------
#LINEA DEL TIEMPO
--------------------------------------------------------------*/
.container-linea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  background-color: #0084CE;
  padding: 0.5rem;
}
@media (min-width: 769px) {
  .container-linea {
    min-height: 600px;
  }
}

.title {
  font-size: 38px;
  color: #fff;
  font-weight: 300;
  text-align: center;
}

.timeline {
/*   display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
  width: 100%;
  height: 100%;
  position: relative;
  padding: 5px;
/*   background-color: rebeccapurple; */

/*   margin-top: 100px; */
}


/* .timeline-nav__item {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 0.8;
  background: transparent;
  color: #afc9f6;
  margin: 15px 25px !important;
  position: relative;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
}
.timeline-nav__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #afc9f6;
  transition: 0.2s;
}
.timeline-nav__item.slick-current {
  color: #ff9900;
  opacity: 1;
}
.timeline-nav__item.slick-current::before {
  background-color: #ff9900;
} */
.timeline-wrapper {
/*   position: relative; */
  width: 100%;
  height: 100%;
  margin: 0 auto 0 auto;
/*   padding: 2rem;
  background-color: #00447F; */
  /*   height: 580px; */
}
@media (max-width: 500px) {
/*   .timeline-wrapper {
    height: auto;
  } */
}
.timeline-slider{
/*   padding: 2rem;
  background-color: antiquewhite; */
}
.timeline-slider {
  height: 100%;
}
.timeline .slick-list {
  height: 100%;
}
@media (min-width: 1080px) {
  .timeline .slick-list {
    padding: 0 180px !important;
  }
}
.timeline .slick-track {
  height: 100%;
}
.timeline-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

/*   overflow: hidden;
  background-repeat: no-repeat;
  outline: none;
  background-size: auto 400px, cover;
  background-position: top; */
/*   margin: 0 24px; */
  max-width: 100%;
/*   padding: 0 24px; */
  z-index: 3;
}
.timeline-slide img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px;

/*   position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  outline: none;
  background-size: auto 400px, cover;
  background-position: top; */
/*   margin: 0 24px; */
  max-width: 80%;
  z-index: 1;
}
.timeline-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(0, 132, 206,0.8);
  z-index: 2;
}
.timeline-slide img.img-time-pc{
  display: none;
}
@media (min-width: 769px) {
  .timeline-slide img.img-time-pc{
    display: block;
  }
  .timeline-slide img.img-time-cel{
    display: none;
  }
  .timeline-slide img {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .timeline-slide img {
    max-width: 80%;
  }
}
.timeline-slide__content {
  z-index: 5;
  position: absolute;
  top: 220px;
/*   background-color: rgba(255, 255, 255,1); */
background-color: transparent;
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 40px;
  opacity: 0;
  transition: opacity 1s;
}
@media (max-width: 500px) {
  .timeline-slide__content {
    width: 100%;
  }
}
.timeline-year {
  z-index: 5;
  font-size: 15px;
  color: #ffffff;
  background: #068D7D;
  padding: 15px 26px;
  transition: opacity 1.2s;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
}
.timeline-title {
  color: #068D7D;
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
}
.timeline-text {
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
.timeline .slick-current:after {
  background-color: rgba(0, 52, 113, 0);
}
.timeline .slick-current .timeline-year {
  opacity: 1;
}
.timeline .slick-current .timeline-slide__content {
  opacity: 1;
}




/* BOTONES DE LA LINEA DEL TIEMPO ABOUT.PHP */

/* Estilos para los botones sin interferir con sus clases */



/* BOTONES DE LA LINEA DEL TIEMPO ABOUT.PHP */