@font-face {
  font-family: 'Monserrat';
  src: url('../fonts/Montserrat-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Monserrat';
  src: url('../fonts/Montserrat-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Monserrat';
  src: url('../fonts/Montserrat-SemiBoldItalic.otf') format('opentype');
  font-weight: italic;
  font-style: normal;
}


:root {

    /**
     * colors
     */
  
     --iteblue: #2f4daa;
     --itenaranja: #F58600;
     --itetitles:#3dc2ec;
     --itetexto: #666666;
     --dark: #000;

  
    --fs-1: calc(2.7rem + 1.38vw);
    --fs-2: calc(2.6rem + .66vw);
    --fs-3: 2.2rem;
    --fs-4: 1.9rem;
    --fs-5: 1.8rem;
    --fs-6: 1.7rem;
    --fs-7: 1.5rem;
    --fs-8: 1.4rem;
    
    --fw-700: 700;
  
    /** 
     * spacing
     */
  
    --section-padding: 90px;
  
    /**
     * box shadow
     */
  
    --shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
    --shadow-2: 0 0 0 0.05rem hsla(214, 88%, 27%, 0.08), 0 0 1.25rem hsla(216, 14%, 14%, 0.06);
    --shadow-3: 0 0 1.25rem hsla(216, 14%, 14%, 0.04);
  
    /**
     * border radius
     */
  
    --radius-circle: 50%;
    --radius-pill: 100px;
    --radius-10: 10px;
    --radius-8: 8px;
    --radius-6: 6px;
  
    /**
     * transition
     */
  
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: 0.3s ease-in-out;
  
  }
  
  /*-----------------------------------*\
    #ETIQUETAS
  \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a,
  img,
  span,
  input,
  button,
  ion-icon { display: block; }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img { height: auto; }
  
  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }
  
  input { width: 100%; }
  
  button { cursor: pointer; }
  
  ion-icon { pointer-events: none; }
  
  address { font-style: normal; }
  
  html {
    font-family: 'Monserrat', sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  main{
    margin-top: 7em;
  }
  
  body {
    background-color: white;
    color: var(--black-coral);
    font-size: 1.6rem;
    line-height: 1.7;
    font-family: 'Monserrat', sans-serif;
  }
  

  body, html {
    overflow-x: hidden;
  }

/*-----------------------------------*\
  # SERVICIOS
\*-----------------------------------*/

  /*
  +++++++
  # BANNERS INICIAL
  ++++++++
  */

  .Carrusel {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
  }
  
  .Carrusel .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .Carrusel .container {
      max-width: 100%;
      margin-top: -10%;
    }

  }
  
  .slide-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .card {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }
  
  .card-image {
    width: 100%;
    height: auto;
  }
  
  .card-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .slide-container :is(.swiper-button-next, .swiper-button-prev){
    background-color: var(--itetitles);
    color: white;
    top: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: background-color .3s;
    box-shadow: var(--box-shadow);
    margin-top: 1em;

  }
  
  .slide-container .swiper-button-next::after,
  .slide-container .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 1000;
    color: #fff;
  }
  
  .slide-container .swiper-button-next:hover,
  .slide-container .swiper-button-prev:hover {
    background-color: var(--iteblue
);
  }
  
  .swiper-button-next {
    right: 10px;
    transform: translateY(-50%);
  }
  
  .swiper-button-prev {
    left: 10px;
    transform: translateY(-50%);
  }
  
  .slide-container .swiper-pagination {
    position: relative;
  }
  
  .slide-container .swiper-pagination span {
    transition: width 0.3s;
    opacity: 1;
  }
  
  .slide-container .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 4px;
  }
  
  @media screen and (max-width: 768px) {
    .slide-container .swiper-button-next,
    .slide-container .swiper-button-prev {
      top: 50%;
    }
  }

  .btns-start {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -20px;
  }

  .boton-style img {
    max-width: 300px;
    height: auto;
  }

  .boton-style {
    padding: 5px 15px;
    margin: 10px;
  }


  @media (max-width: 768px) {
    .btns-start {
        flex-direction: column;
        margin-top: -10px;
    }

    .boton-style img {
      max-width: 250px;
      height: auto;
    }

    .boton-style {
      margin: -5px 0;
    }
   
  }
   
  /*
  +++++++
  # MODELS INICIAL
  ++++++++
  */

  .models-presention .container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .imgs-presentions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .content-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .content-item {
    position: relative;
    text-align: center;
    flex: 1;
    margin: 0 0px;
  }
  
  .content-item img {
    width: 100%;
  }
  
  .content-item a {
    display: inline-block;
    background-color: #1b3c8d;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px; 
    transition: background-color 0.3s ease;
    width: auto; 
    text-align: center;
    position: relative; 
    top: -80px;
  }
  
  
  .content-item a:hover {
    background-color: #3c6fd8;
  }
  
  @media (max-width: 768px) {
    .imgs-presentions {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
  
    .content-block {
      width: 100%; 
      display: flex;
      justify-content: space-between;
      margin-bottom: -10px; 
    }
  
    .content-item {
      flex: 1;
      margin: 0 10px; 
      max-width: calc(50% - 20px);
    }

  .content-item a {
    font-size: 14px;
    padding: 10px 20px;
    top: -50px;
  }
  
  }
  
  /*
  +++++++
  # PROFESIONALES
  ++++++++
  */

  .title-simple{
    font-size: 45px;
    text-align: center;
    color: var(--iteblue
);
  }


  /*
  +++++++
  # PARTNERS
  ++++++++
  */

  .partners {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .partners .container {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .title-partner {
    font-size: 4rem;
    font-weight: normal;
    color: #747474; 
    margin-bottom: 40px;
  }
  
  .imgs-part {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .imgs-part img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease-in-out;
  }
  
  .imgs-part .img-ite {
    max-width: 130px;
  }

  .imgs-part img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 1024px) {
    .imgs-part {
      justify-content: space-between;
    }
  
    .imgs-part img {
      max-width: 130px;
    }
  }
  
  @media (max-width: 768px) {
    .imgs-part {
      flex-direction: column;
      gap: 50px; 
    }
  
    .imgs-part img {
      max-width: 150px;
    }
    .imgs-part .img-ite {
      max-width: 110px;
    }
  }
  
  @media (max-width: 480px) {
    .imgs-part img {
      max-width: 150px;
    }
  }
  
/*-----------------------------------*\
  # CAPACITACIÓN
\*-----------------------------------*/

  /*
  +++++++
  # CURSOS
  ++++++++
  */

  .imgs-cursos {
    width: 100%;
    padding: 20px 0;
  }
  
  .imgs-cursos .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .imgs-centrales {
    display: flex;
    justify-content: space-between;
  }
  
  .imgs-centrales img {
    width: 450px;
    height: auto;
  }
  
  .imgs-centrales img:first-child {
    object-fit: cover;
  }
  
  .imgs-centrales img:last-child {
    object-fit: cover;
  }
  
  @media (max-width: 768px) {
    .imgs-centrales {
      flex-direction: column;
    }
  
    .imgs-centrales img {
      width: 100%;
    }
  }

  /*
  +++++++
  # ELEGIRNOS
  ++++++++
  */
  
  .elections {
    background-color: #F0F6F7;
    padding: 50px 0;
  }
  
  .elections .container {
    max-width: 85%;
    margin: 0 auto;
  }
  
  .sections-elections {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
  }
  
  .sec-elect {
    width: 30%;
  }
  
  .sec-elect h2 {
    font-size: 3rem;
    color: var(--iteblue); 
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .sec-elect img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    margin: 0 auto;
  }
  
  .sec-elect p {
    font-size: 1.5rem;
    color: var(--itetexto);
    line-height: 1.6;
    text-align: justify;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .sections-elections {
      flex-direction: column;
      align-items: center;
    }
    
    .sec-elect {
      width: 80%;
      margin-bottom: 30px;
    }
  }
  

  /*
  +++++++++++++++++++++++
  #  EXPERIENCIA
  +++++++++++++++++++++++
  */

.experience {
  background-color: var(--itetitles); 
  padding: 20px 0;
}

.experience .container {
  max-width: 1200px;
  margin: 0 auto;
}

.components-experience {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.section-experience {
  text-align: center;
  flex: 1;
}

.section-experience h3 {
  font-size: 50px;
  color: white; 
  font-weight: bold;
}

.section-experience p {
  font-size: 21px;
  color: white;
  margin-top: 10px;
}

.separator {
  width: 5px;
  height: 250px;
  background-color: white; 
}

.section-experience h3 {
  font-size: 50px;
  color: white; 
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center; /* Esto alinea verticalmente el + y el número */
}

.section-experience h3 span {
  font-size: 30px; /* Tamaño del símbolo '+' */
  margin-right: 10px; /* Espacio entre el + y el número */
}


@media (max-width: 768px) {
  .components-experience {
      flex-direction: column; 
  }
  .separator {
      display: none;
  }
  .section-experience {
      margin-bottom: 20px;
  } 
}


/*
  +++++++++++++++++++++++
  # Terminos - Política
  +++++++++++++++++++++++
*/

.terminos-condiciones .container{
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .terminos-condiciones{
    margin-top: 8em;
  }
  }

  @media (max-width: 768px) {
    .terminos-condiciones{
      margin-top: 5em;
    }
    }
 @media (max-width: 768px) {
  .seccion-termino p {
    font-size: 15px;
    text-align: justify;
  }
  .seccion-termino h3{
    font-size: 20px;
  }
    }

.h1-terminos {
  color: #000;
  font-size: 30px;
}

.seccion-termino{
  margin-top: 1em;
  color: #444444;
}

.seccion-termino h3{
  font-size: 25px;
}

.seccion-termino p {
  text-align: justify;
}

/*
  +++++++++++++++++++++++
  # CURSOS
  +++++++++++++++++++++++
*/

.courses{
  max-width: 100%;
}

.courses .container{
  width: 85%;
  margin: 0 auto;
}

.title-courses {
  text-align: center;
  color: var(--iteblue);
  font-size: 45px;
  font-weight: bold;
  /* text-shadow: 2px 0px 4px var(--itetitles); */
}

/* Buscadores*/
.components-search {
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 20px; 
  border-bottom: 3px solid var(--iteblue);
}

.buscador {
  border: 2px solid var(--itetitles); 
  border-radius: 25px; 
  padding: 10px 20px;
  font-size: 16px;
  width: 400px; 
  outline: none;
}

.buscador::placeholder {
  font-style: italic;
}

.categoris {
  border: 2px solid var(--iteblue); 
  border-radius: 25px; 
  padding: 10px 20px; 
  font-size: 16px;
  width: auto; 
  outline: none;
  color: var(--iteblue);
  font-weight: bold;
  background-color: white;
}

.categoris option {
  color: var(--iteblue); 
}


/* TARJETAS */

.row-cursos {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  padding: 20px;
}

.curso {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  padding: 10px;
  height: 80vh;
  width: 50vh;
  margin: 0 auto;
}

.curso:hover {
  transform: translateY(-5px);
}

.imagen-curso img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin: 0 auto;
}

.div-padding {
  padding: 15px;
}

h3 {
  font-size: 1.6rem;
  color: var(--iteblue);
  text-align: center;
  margin-bottom: 10px;
}


.contenido ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contenido ul li {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #333;
}

.contenido ul li i {
  margin-right: 5px;
  color: var(--itetexto);
}

.footer-curso {
  text-align: center;
  padding: 5px 0px;
}

.btn-precio-info {
  background-color: var(--iteblue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  width: auto;
  margin: 0 auto;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-precio-info span {
  color: #000000;
  text-decoration: line-through;
}

.btn-precio-info:hover {
  background-color: var(--itetitles);
}

.no-results {
  text-align: center;
  font-size: 1.5rem; 
  color: var(--iteblue);
  padding: 20px 0; 
  font-weight: bold; 
}


@media (max-width: 1270px) {
  .row-cursos {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 768px) {
  .row-cursos {
    grid-template-columns: 1fr; 
    justify-content: center; 
  }

  .curso {
    width: 90%; 
    max-width: 400px; 
    margin: 0 auto; 
    height: auto;
  } 

  .courses .container {
    width: 90%; 
    padding: 0 20px;
  }

  .components-search {
    flex-direction: column; 
    gap: 10px;
    align-items: stretch;
  }

  .buscador,
  .categoris {
    width: 100%; 
  }
}


/****** Animaciones *********/

/*+++++ h2 y p +++++*/

.efect-left {
  opacity: 0;
  transform: translateX(-10%);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.efect-left-visible {
  opacity: 1;
  transform: translateX(0); 
}

/*+++++ boton-accion +++++*/

.efect-rigth-salto {
  opacity: 0;
  transform: translateX(20px); 
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.efect-rigth-salto-visible {
  opacity: 1;
  transform: translateX(0) scale(1.02);
  animation: bounce 0.8s ease forwards 1.5s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(0) scale(1.03);
  }
}

/*+++++ aparicion +++++*/

.efect-aparicion {
  opacity: 0;
  transform: scale(0.9); 
  transition: opacity 1.5s ease-out, transform 1.5s ease-out; 
}

.efect-aparicion-visible {
  opacity: 1;
  transform: scale(1);
}

/*+++++ arriba-abajo +++++*/

.efect-arriba {
  opacity: 0;
  transform: translateY(-20px); 
  transition: opacity 2.5s ease-out, transform 2.5s ease-out; 
}

.efect-arriba-visible {
  opacity: 1;
  transform: translateY(0);
}

/*+++++ derecha +++++*/

.efect-rigth {
  opacity: 0;
  transform: translateX(10%); /* Reducir el desplazamiento inicial */
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.efect-rigth-visible {
  opacity: 1;
  transform: translateX(0); 
}

/*+++++ pequeño-grande +++++*/

.efect-pequeño-grande {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.efect-pequeño-grande-visible {
  opacity: 1;
  transform: scale(1); 
}

@media (max-width: 768px) { 
  .efect-pequeño-grande {
    transition: opacity 3s ease-out, transform 2s ease-out; 
     
  }
}

/*+++++ abajo-arriba +++++*/

.efect-abajo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.efect-abajo-visible {
  opacity: 1;
  transform: translateY(0);
}

/*+++++ grande-pequeño +++++*/

.efect-grande-pequeño {
  opacity: 0;
  transform: scale(2); 
  transition: opacity 1.5s ease-out, transform 2s ease-out; 
  transition-delay: 1s; 
}

.efect-grande-pequeño-visible {
  opacity: 1;
  transform: scale(1); 
}

/*+++++ izquierda-rapido +++++*/

.efect-left-run {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1.5s ease-out, transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.efect-left-run-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) { 
  .efect-left-run {
  transform: translateX(-0%);
  }
}
