
@import url('../assets/fonts/fonts.css');

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,h1,h2,h3,h4,h5,h6,li, ul,a, button{
  font-family: FractulLight;
}

button{
  font-family: FractulAltMedium;
}

a:hover{
  cursor: pointer;
}

/*********************/
/** section nosotros**/
/*********************/



.container-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px 10px 10px 10px;
  padding: 10px 0;

}


.container-social-icons a {
  margin: 0;
}

.icon {
  width: 50%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: 0.35s ease;
}

.icon:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  cursor: pointer;
 
}

/**/
.section-about {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 150px 40px;
  background-color: rgb(255, 255, 255);
}

.section-about span {
  font-size: 30px;
  /* margin-bottom: 1rem; */
  /* padding: 0.5rem; */
  border: 5px solid #08FFDE;
  display: inline-block;
}

.sky-title {
  background-color: #08FFDE;
}

.section-about p {
  font-size: 16px;
  margin-bottom: 2rem;
  max-width: 800px;
  margin: 80px auto;

}

@media only screen and (max-width: 767px) {
  .section-about {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
    background-color: rgb(255, 255, 255);
  }
}




/*********************/
/*** section courses**/
/*********************/
.section-courses {
  display: block;
  padding: 50px 0;
  text-align: center;
  width: 100%;
  margin: auto;
  background-color: black;
  color: white;

}

.title_primary_white {
  color: black;
  background-color: white;
  padding: 10px 0;
  margin: 0 200px;
}



/*** botons**/

.btn_outline_sky {
  border-width: 3px !important;
  padding: 10px 40px;
  background-color: none;
  border-color: #08FFDE;
  color: #08FFDE;
}

.button-ver-temario{
  padding: 10px 10px;
  border: #ffffff 2px solid;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  width: 80%;
  display: block;



}


.button-ver-temario:hover{
  background-color: #2ba58b;
    color: #ffffff;
    border: #2ba58b 2px solid;
}


/*********************/
/*** section students**/
/*********************/


.section-students {
  width: 100%;
  text-align: center;
  padding: 100px 0 20px 0;
  color: white;
  background-color: #000000;
}

.section-students span {
  font-size: 30px;
  /* margin-bottom: 1rem; */
  /* padding: 0.5rem; */
  border: 5px solid white;
  display: inline-block;
}

.black-title {
  background-color: #ffffff;
  color: black;
}



/*********container vanilla alumnos************/
.slider-container {

  margin: 40px 0 150px 0;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  justify-content: center;
  margin: 2rem auto;
  flex-wrap: wrap;
  width: 60%;

}

.slider img {
  border-radius: 50%;
  cursor: pointer;
  margin: 20px 20px;
  width: 90px;
  /* Tamaño de las imágenes de perfil */
  height: 90px;
  filter: grayscale(100%);
  /* Imágenes en escala de grises */
  transition: all 0.3s ease;
}

.slider img:hover {
  cursor: pointer;
  filter: grayscale(0%);
  /* Imágenes en escala de grises */
  transition: all 0.3s ease;
}

.slider img.active {
  border: 4px solid #08FFDE;
  /* Borde celeste alrededor de la imagen activa */
  filter: grayscale(0%);
  /* Imagen en color */
}

.person-info {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  text-align: center;
  justify-content: center;
  margin-top: 100px;
}
.person-info-text{
  text-align: start !important;
  width: 30%;
}

.person-info-text p{
  font-size: 14px !important;
  margin: 40px auto;
  text-align: justify;
}

.person-info-text h2{
  text-align: start !important;
  width: 100%;
  color: #ffffff;

}

.country-name{
  color: #08FFDE;
  /* margin-bottom: 10px; */
}


.person-info img {
  max-width: 300px;
  margin: 10px 100px;
}

.container-country div {
  display: inline-block;
  width: 10%;
  text-align: start !important;
  vertical-align: middle;
  /* vertical-align: middle; Para alinear verticalmente los elementos */
}

.flag {
  width: 30px; /* ajusta el ancho de la imagen según sea necesario */
  height: auto; /* permite que la altura se ajuste automáticamente manteniendo la proporción */
  margin: 10px 0px !important;
}

.country-name {
  padding-top: 5px;
  font-size: 25px; /* ajusta el tamaño de la fuente según sea necesario */
}


@media only screen and (max-width: 600px) {
  .slider {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: center;
    margin: 2rem auto;
    flex-wrap: wrap;
    width: 90%;
  
  }

  .slider img {
    border-radius: 50%;
    cursor: pointer;
    margin: 15px 15px;
    width: 70px;
    /* Tamaño de las imágenes de perfil */
    height: 70px;
    filter: grayscale(100%);
    /* Imágenes en escala de grises */
    transition: all 0.3s ease;
  }
  


  .person-info {
    flex-direction: column;
    /* Cambiar a columna en pantallas pequeñas */
    align-items: center;  
    justify-content: center;
    text-align: start !important;
    flex-direction: column-reverse;

  }
  .person-info-text{
    text-align: justify !important;
    justify-content: justify !important;
    width: 60%;
  

  }

  .person-info-text p{
    margin: 50px auto;
    text-align: justify;
  }

  .person-info-text h2{
    text-align: center;
    margin: 50px auto;

  }
  .person-info img {
    max-width: 300px;
    margin: 10px 80px;
  }
  
  .flag {
    width: 30px; /* ajusta el ancho de la imagen según sea necesario */
    height: auto; /* permite que la altura se ajuste automáticamente manteniendo la proporción */
    margin: 10px 10px !important;
  }

  .country-name{
   
    margin-left: 20px; 
  }
  

}

/*********************/
/*** section community*/
/*********************/

.section-community {
  width: 100%;
  margin: 0px auto;
  text-align: center;
  padding: 90px;
}

.section-community span {
  font-size: 30px;
  /* margin-bottom: 1rem; */
  /* padding: 0.5rem; */
  border: 5px solid #08FFDE;
  display: inline-block;
  font-family: 'FractulAltMedium' !important;
  letter-spacing: 0.2em; /* Espacio entre letras */
  padding: 0 20px 0 20px;
}

.sky-title {
  background-color: #08FFDE;
  letter-spacing: 0.2em; /* Espacio entre letras */
}

.section-community p {
  font-size: 16px;
  margin-bottom: 2rem;
  max-width: 800px;
  margin: 40px auto;

}

@media only screen and (max-width: 600px) {
.container-social-icons{

}

.section-community span {
  font-size: 20px;
  /* margin-bottom: 1rem; */
  /* padding: 0.5rem; */
  border: 5px solid #08FFDE;
  display: inline-block;
  font-family: 'FractulAltMedium' !important;
  letter-spacing: 0.2em; /* Espacio entre letras */
  padding: 0 20px 0 20px;
}
}

/**slider brands**/

.slider-workdone{
  margin-top: 60px;
}
.slider-brands {
  width: 100%;
  height: 400px;
  /* Set the height of the slider */
  overflow: hidden;
  
}

.slide-brand {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;

}

.slide-brand:first-child {
  opacity: 1;
}

@media (max-width: 600px) {
  .slider-brands {
    height: 200px;
  }

  .slide-brand {
    height: 200px;
  }

  .section-community {
    padding: 40px;
  }
  
}

.bg-black {
  background-color: black;
}

.d-inline-block {
  display: inline-block;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-05{
  padding: 0.5rem;
}