/*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;

}

.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-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 instituciones
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.7;
  transition: 0.3s;
  max-width: 100%;
}

.clients .swiper-slide:hover img {
  opacity: 1;
}
/* @media (min-width: 768px) {
  .clients .swiper-slide img {
    max-width: 130%;
  }
} */
@media (min-width: 992px) {
  .clients .swiper-slide img {
    max-width: 130%;
  }
}

.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 #0F5FA6;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0F5FA6;
}

/*--------------------------------------------------------------
#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;
}
.mmm{
  display: flex;
  flex-direction: column;

  transition: all ease-in-out 0.3s;
}
.mmm h2{
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0F5FA6;
  padding-top: 30px;
  margin-bottom: 0;
  transition: all ease-in-out 0.3s;
}

.modelo_soluciones{
  width: 100%;
  margin: 0 auto;
}

.alt-modelos-soluciones .icon-box {
  margin-top: 15px;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
  }

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

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

@media (min-width: 400px) {
  .modelo_soluciones{
    width: calc(100% - 10rem);
  }
}

@media (min-width: 769px) {
  .mmm h2{
    font-size: 1.4rem;
    padding-top: 0;
    padding-bottom: 30px;
  }
  .modelo_soluciones{
    width: 100%;

  }
  .modelos-soluciones-sections{

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

  }
  .line-modelo{
    display: none;
  }
  .alt-modelos-soluciones .icon-box:hover i{
    background-color: var(--accent-color);
    color: var(--contrast-color);
    }
}
@media (min-width: 992px) {
  .alt-modelos-soluciones .icon-box h3 {
    font-size: 1.2rem;
  }
  .mmm h2{
    font-size: 1.4rem;
  }
  .alt-modelos-soluciones .icon-box {
    margin-top: 20px;  
  }
  .alt-modelos-soluciones .icon-box .icon-box-i i{
    font-size: 22px;
    width: 36px;
    height: 36px;
  }
}

.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;

}


.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 {
  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;
  max-width: 100%;
  z-index: 3;
}
.timeline-slide img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
  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: 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;
}

/*NUEVA SECCION DE HERO  BANNER*/

/* Inner */
/* .inner {
  margin: 15rem auto 0 auto;
  width: 75rem;
  max-width: calc(100% - 6rem); }
  @media screen and (max-width: 480px) {
    .inner {
      max-width: calc(100% - 3rem); } } */



      /* Banner */
#banner {
  margin: 100px 0 0 0;
  padding: 1rem;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  background-color: #111111;
  color: rgba(255, 255, 255, 0.5);
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
/*   background-image: url("https://bunmina.es/img_n/banner.jpg"); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 0;
  display: -ms-flexbox;
  height: 35rem !important;
  min-height: 35rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%; }

  #banner h1, #banner h2, #banner h3, #banner h4, #banner h5, #banner h6 {
    color: #ffffff; }


  #banner > .inner {
    transform: scale(1.0);
    transition: opacity 1s ease, transform 1s ease;
    opacity: 1;
    position: relative;
    padding: 1rem;
    z-index: 3; }

    #banner > .inner > :last-child {
      margin-bottom: 0; }

  #banner h1 {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 1rem; }
  #banner p {
    font-size: 1.5rem; }
  #banner a {
    color: rgb(255, 255, 255);
    text-decoration: none; }
    #banner a:hover {
      color: #ffffff;
      font-weight: 600; 
    }
  #banner video {
    transform: translateX(50%) translateY(50%);
    bottom: 50%;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    position: absolute;
    right: 50%;
    width: auto; }

  #banner:before {
    transition: opacity 3s ease;
    transition-delay: 1.25s;
    background: #111111;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.45;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1; }
    
  #banner:after {
        background: linear-gradient(135deg, #2068A9 0%, #111111 74%);
    content: ' ';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    webkit-linear-gradientidth: 100%;
    width: 100%;
    z-index: 1; }

/*   @media screen and (max-width: 1280px) {
    #banner video {
      display: none; } } */
  @media screen and (max-width: 736px) {
    #banner {
      height: auto !important;
      min-height: 0;
      padding: 4rem 2rem 4rem 2rem; }
      #banner .inner {
        width: 100%; }
      #banner h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0; }
      #banner p {
        font-size: 1.25rem; }
      #banner br {
        display: none; }
      #banner .button {
        width: 100%; } }
  @media screen and (max-width: 480px) {
    #banner p {
      font-size: 1rem; } }
  body.is-preload #banner .inner {
    transform: scale(0.99);
    opacity: 0; }
  body.is-preload #banner:before {
    opacity: 1; }


/*card_intitucines*/
.card_instituciones{/*Padre*/
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
  transition: all ease-in-out 0.3s;
}
@media (min-width:500px) {
  .card_instituciones{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width:992px) {
  .card_instituciones{
    grid-template-columns: repeat(3, 1fr);
  }
}
.card_instituciones section{
  margin: 0;
  padding: 0;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 3px 9px -1px rgba(209,209,209,1);
  -moz-box-shadow: 0px 3px 9px -1px rgba(209,209,209,1);
  box-shadow: 0px 3px 9px -1px rgba(209,209,209,1);
}
.card_instituciones .content {
  border-radius: 1rem;
  height: auto;
  padding: 1rem;
  text-align: center; 
  background: #ffffff;

  -webkit-box-shadow: 0px 3px 9px -1px rgba(209,209,209,1);
  -moz-box-shadow: 0px 3px 9px -1px rgba(209,209,209,1);
  box-shadow: 0px 3px 9px -1px rgba(209,209,209,1);
  transition: all ease-in-out 0.3s;
}
.card_instituciones .content .img_card_instituciones{
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
}

.card_instituciones .content .img_card_instituciones > img{
  width: 100%;
  height: 100px;
  border-radius: 1rem;


  -webkit-box-shadow: 0px 3px 10px 1px rgba(201,201,201,1);
  -moz-box-shadow: 0px 3px 10px 1px rgba(201,201,201,1);
  box-shadow: 0px 3px 10px 1px rgba(201,201,201,1);
}
.card_instituciones .content .titulo_card{
  width: 100%;
}
.card_instituciones .content .titulo_card h3{
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
    margin-bottom: 0.5rem;
    color: #d1d1d1;
}
.card_instituciones .content .categoria_card{
  width: 100%;
}
.card_instituciones .content .categoria_card p{
  text-align: left;
  font-size: 0.55rem;
  text-transform: uppercase;
  color: rgba(15, 95, 166,.8);
  margin: 0;
}

.card_instituciones .content .desc_card{
  width: 100%;
  margin-bottom: 1rem;
}
.card_instituciones .content .desc_card p{
  text-align: left;
  font-size: 10px;
  margin: 0;
}



/*BOTON CON ONDA AZUL*/
.btn_card_onda{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
.btn_card_onda .efect_onda{
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  padding: 20px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;

  background: linear-gradient(135deg, #0F5FA6, #1f65a3);
  cursor: pointer;
  color: #ffffff;
  -webkit-box-shadow: 0px 5px 11px 1px rgba(123, 123, 123, 0.75);
  -moz-box-shadow: 0px 5px 11px 1px rgba(123, 123, 123, 0.75);
  box-shadow: 0px 5px 11px 1px rgba(123, 123, 123, 0.75);
  z-index: 1;
  transition: all 0.2s ease;
}

/* Efecto de onda pulsante */
.btn_card_onda .efect_onda::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F5FA6, #1f65a3);
  border-radius: 50px;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 0.7;
  }
  100% {
      transform: scale(1.4);
      opacity: 0;
  }
}
/* BOTONES DE LA LINEA DEL TIEMPO ABOUT.PHP */

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