/* Aplicar la fuente Lato por defecto a todo el documento */
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /* Peso regular como valor por defecto */
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /* Lato Light */
  color: white;
  text-decoration: none;
}

a.lato-light:hover {
  color: #ec7022;
  /*font-weight: 700;*/
}
.lato-dark {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /* Lato Light */
  color: black;
  text-decoration: none;
}

a.lato-dark:hover {
  color: #ec7022;
  /*font-weight: 700;*/
}

/* Si quieres que ciertos elementos utilicen diferentes pesos, puedes hacerlo aquí */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  /* Bold para encabezados */
}

p {
  font-weight: 400;
  /* Regular para párrafos */
}

/* Puedes agregar más selectores según sea necesario */

#footer {
  width: 100%;
  background-color: #000000;
  /* Cambia este color según lo que necesites */
  text-align: center;
  /* Centra el texto (opcional) */
  padding: 10px;
  /* Espacio interno (opcional) */
  box-sizing: border-box;
  /* Incluye el padding en el ancho total */
  position: relative;
  /* Cambia a relative para evitar superposición */
}

.navbar {
  margin-top: -15px;
}

/* Estilos para pantallas grandes */
h1.text-index {
  background: radial-gradient(
    circle,
    rgba(248, 182, 32, 1) 0%,
    rgba(236, 112, 34, 1) 69%,
    rgba(2, 0, 36, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 5rem;
}

h2.text-index {
  /*color: black;*/
  font-size: 2.5rem;
  font-weight: bold;
}
.slogan:first-child {
  background: rgb(248, 182, 32);
  background: linear-gradient(
    90deg,
    rgba(236, 112, 34, 1) 0%,
    rgba(248, 182, 32, 1) 100%
  );
  /*background: radial-gradient(circle, rgba(248,182,32,1) 0%, rgba(236,112,34,1) 50%);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.slogan:last-child {
  background: rgb(248, 182, 32);
  background: linear-gradient(
    90deg,
    rgba(248, 182, 32, 1) 0%,
    rgba(236, 112, 34, 1) 100%
  );
  /*background: radial-gradient(circle, rgba(248,182,32,1) 0%, rgba(236,112,34,1) 50%);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.icon {
  width: 50px;
  height: 50px;
}

.container {
  margin-top: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 90vh;
  /* Ocupa toda la altura de la pantalla */
  overflow: hidden;
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.video-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 25%;
  left: 10%;
  z-index: 1;
  text-align: left;
  color: black;
  /* Asegura que el color del texto sea visible */
}

/* Estilos específicos para pantallas pequeñas */
@media (max-width: 768px) {
  h1.text-index {
    font-size: 2rem;
  }

  h2.text-index {
    color: black;
    font-size: 1rem;
  }

  /*h3,
    h5 {
        font-size: 13px;
    }*/

  .video-container {
    height: auto;
    /* Ajusta la altura automáticamente */
  }

  .video-fluid {
    height: auto;
    /* Ajusta la altura del video automáticamente */
  }

  /* Centrar el texto en pantallas móviles */
  .overlay-text {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}

.image-container {
  position: relative;
  /* Necesario para posicionar el texto sobre la imagen */
  display: inline-block;
  /* Hace que el contenedor tenga solo el tamaño de la imagen */
  margin-right: 20px;
  /* Controla el espacio entre imágenes */
}

.image-container img {
  width: 100%;
  /* Asegúrate de que la imagen se ajuste al contenedor */
  height: auto;
  /* Mantiene la proporción de la imagen */
  border-radius: 50%;
  /* Hace que la imagen sea circular */
}

.text-overlay {
  position: absolute;
  /* Permite superponer el texto sobre la imagen */
  top: 50%;
  /* Centra verticalmente el texto */
  left: 50%;
  /* Centra horizontalmente el texto */
  transform: translate(-50%, -50%);
  /* Ajusta la posición para que el centro del texto esté en el centro de la imagen */
  color: black;
  /* Asegúrate de que el color sea visible sobre la imagen */
  text-align: center;
  /* Centra el texto */
  z-index: 2;
  /* Asegura que el texto esté sobre la imagen */
  width: 100%;
}

.text-circle {
  font-size: 2rem;
  line-height: 1rem;
  width: 100%;
}
.text-circle:first-child {
  line-height: 3rem;
}
.text-orange {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1rem;
  color: #ec7022;
  /* Cambia esto según tu paleta de colores */
}
.text-orange.counter {
  font-size: 5rem;
}

@media (max-width: 768px) {
  .text-orange-container {
    line-height: 0.2rem;
  }
  .text-circle {
    font-size: 1rem;
    line-height: 0.2rem;
  }
  .text-circle:first-child {
    line-height: 1rem;
  }
  .text-orange.counter {
    font-size: 2rem;
  }
  .text-orange {
    font-size: 1rem;
    font-weight: bold;
    line-height: 0.2rem;
    color: #ec7022;
    /* Cambia esto según tu paleta de colores */
  }
}

.background-servicios {
  position: relative;
  top: 150px;
  /*background-image: url('../assets/image/background-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
  background: linear-gradient(to right, #f27127, #f2a922);
  width: 100%;
  min-height: 100vh;
  /* Cambia la altura mínima a 100vh para que cubra toda la pantalla */
  padding-bottom: 200px;
  /* Añade 50px de espacio en la parte inferior */
  padding-top: 120px;
}

.background-carusel {
  margin-top: -150px;
  position: relative;
  top: 150px;
  background-image: url(../assets/image/background-3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 150px;
  padding-top: 100px;
}

.background-diferenciadores {
  position: relative;
  top: 140px;
  background-image: url("../assets/image/at_web_diferenciadores-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  width: 100%;
  min-height: 100vh;
  /* Cambia la altura mínima a 100vh para que cubra toda la pantalla */
  padding-bottom: 150px;
  /* Añade 50px de espacio en la parte inferior */
  margin-bottom: -180px;
  margin-top: -150px;
  z-index: 1;
}

.backBolsa {
  margin-right: 1000px;
  background-image: url("../assets/image/trabajo/Bolsa\ de\ trabajo\ optimizada.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.background-1 {
  margin-right: 1000px;
  background-image: url("../assets/image/resiliencia/background.jpg");
  /* Cambia la ruta a tu imagen de fondo */
  background-size: cover;
  /* Ajusta la imagen para que cubra todo el contenedor */
  background-position: center;
  /* Centra la imagen en el contenedor */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */
  height: 600px;
  /* Establece la altura del contenedor al 100% de la ventana */
  width: 100%;
  /* Asegura que el contenedor ocupe todo el ancho */
  display: flex;
  /* Utiliza flexbox para centrar el contenido */
  align-items: center;
  /* Centra verticalmente el contenido */
  justify-content: center;
  /* Centra horizontalmente el contenido */
  position: relative;
  /* Asegura que los elementos hijos se posicionen correctamente */
}

.background-2 {
  /*position: relative;*/
  background-image: url("../assets/image/resiliencia/Banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  /*width: 100%;
    height: 300px;*/
}

.background-3 {
  margin-right: 1000px;
  background-image: url("../assets/image/optimizacion/banner.jpg");
  /* Cambia la ruta a tu imagen de fondo */
  background-size: cover;
  /* Ajusta la imagen para que cubra todo el contenedor */
  background-position: center;
  /* Centra la imagen en el contenedor */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */
  height: 600px;
  /* Establece la altura del contenedor al 100% de la ventana */
  width: 100%;
  /* Asegura que el contenedor ocupe todo el ancho */
  display: flex;
  /* Utiliza flexbox para centrar el contenido */
  align-items: center;
  /* Centra verticalmente el contenido */
  justify-content: center;
  /* Centra horizontalmente el contenido */
  position: relative;
  /* Asegura que los elementos hijos se posicionen correctamente */
}

.background-4 {
  position: relative;
  background-image: url("../assets/image/optimizacion/Frame\ 18.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  width: 100%;
  height: 300px;
}

.background-5 {
  margin-right: 1000px;
  background-image: url("../assets/image/transformacion/background.png");
  /* Cambia la ruta a tu imagen de fondo */
  background-size: cover;
  /* Ajusta la imagen para que cubra todo el contenedor */
  background-position: center;
  /* Centra la imagen en el contenedor */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */
  height: 600px;
  /* Establece la altura del contenedor al 100% de la ventana */
  width: 100%;
  /* Asegura que el contenedor ocupe todo el ancho */
  display: flex;
  /* Utiliza flexbox para centrar el contenido */
  align-items: center;
  /* Centra verticalmente el contenido */
  justify-content: center;
  /* Centra horizontalmente el contenido */
  position: relative;
  /* Asegura que los elementos hijos se posicionen correctamente */
}

.background-6 {
  position: relative;
  background-image: url("../assets/image/transformacion/Banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  width: 100%;
  height: 300px;
}

.service {
  margin-left: 100px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-left: 50px;
  margin-right: 50px;
}

.card {
  /*background: linear-gradient(to right, #F29422, #F29422);*/
  background-color: transparent;
  border-color: transparent;
  position: relative;
  width: 30%;
  height: 450px;
  margin-right: 3%;
  /* Ajusta según sea necesario */
  perspective: 1000px;
  /* Añade profundidad para el efecto 3D */
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
}

.card-front {
  z-index: 2;
  transform: rotateY(0deg);
  background-color: #ffffff;
  /* Fondo blanco */
}

.card-back {
  background-color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: left;
  align-items: start;
}

.card:hover .card-front {
  transform: rotateY(-180deg);
}

.card:hover .card-back {
  transform: rotateY(0deg);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-dark {
  display: flex;
  /* Usar flexbox para alinear los elementos */
  align-items: center;
  /* Alinear verticalmente al centro */
  justify-content: center;
  /* Centrar horizontalmente */
  margin-top: -75px;
  /* Ajuste de margen */
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
  /* Mantener el clip-path */
  padding: 20px;
  /* Añadir espacio interno si es necesario */
}

.card-icon {
  margin-right: 40px;
  /* Espacio entre el icono y el texto */
}

@media (max-width: 768px) {
  .card {
    height: 550px;
    flex: 1 1 100%;
    /* Hacer que las tarjetas ocupen todo el ancho en móviles */
    margin: 10px 0;
    /* Margen vertical para separación */
    margin-top: 45px;
  }

  .card-container {
    margin-left: 20px;
    /* Mantener los márgenes */
    margin-right: 20px;
    /* Mantener los márgenes */
  }

  .bg-dark {
    padding: 20px;
    /* Más padding en móviles para mayor comodidad */
  }

  .card-icon {
    width: 15px;
    /* Tamaño del icono un poco más pequeño en móviles */
  }

  .background-servicios {
    background-image: none;
    /* Elimina la imagen de fondo */
    background: linear-gradient(to right, #f27127, #f2a922);
  }

  p {
    font-size: 15px;
  }

  .text-banner {
    background-color: rgba(247, 238, 238, 0.5);
    /* Fondo negro semitransparente */
    border-radius: 5px;
    /* Bordes redondeados opcionales */
  }
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
  /* Efecto de transición suave */
}

.navbar-nav .nav-link:hover {
  color: #ec7022;
  /* Color al pasar el mouse (puedes cambiarlo) */
}

/* Cambiar el color del texto y el fondo cuando el enlace está activo */
.nav-link.active {
  font-weight: bold;
  /* Hacer el texto más grueso */
}

.dropdown-item {
  transition: color 0.3s ease;
  /* Efecto de transición suave */
}

.dropdown-item:hover {
  color: #ec7022;
  /* Color al pasar el mouse sobre los elementos del dropdown */
  background-color: transparent;
}

/* Para cambiar el estilo del elemento de menú desplegable activo */
.dropdown-item.active {
  background-color: white;
  color: #000000;
  font-weight: bold;
  /* Hacer el texto más grueso */
}

.custom-btn {
  background-color: #ec7022;
  border: none;
  color: white;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn:hover {
  transform: scale(1.05);
  /* Aumenta ligeramente el tamaño */
}

.active-button {
  background-color: #fff;

  /* Subraya el texto del botón activo */
}
.btn3.active-button {
  background-color: #fff !important;
  border-top: 1px solid #c3c3c3 !important;
  border-right: 1px solid #c3c3c3 !important;
  border-left: 1px solid #c3c3c3 !important;
  border-bottom: 0px !important;
  color: black;
  /* Subraya el texto del botón activo */
}
ul.list {
  font-size: 0.8rem;
}
.btn2 {
  /*font-size: 27px;*/
  color: #ec7022;
  cursor: pointer;
  /*background-color: #f6f6f6;
    Color por defecto */
  border: none;
  transition: background-color 0.3s;
  width: 100%;
  height: 150px;
}
.btn3 {
  height: 50px;
  background-color: transparent;
  width: 100%;
  color: #c3c3c3;
  border: 0px;
  text-transform: uppercase;
}
.btn3:hover {
  color: black;
}
.primary-tab.active-button {
  background-color: white;
  color: #ec7022;
  /*background-color: #f6f6f6;*/
  /* Subraya el texto del botón activo */
}
.primary-tab {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.btn2-primary {
  background-color: #f6f6f6;
  /*background-color:white;*/
  /*font-size: 27px;*/
  color: #c3c3c3;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
  height: 75px;
  width: 100%;
}
.btn2-primary:hover {
  color: #ec7022;
}
#business-buttons {
  background-color: transparent;
  /*background-color: #f6f6f6;*/
}
.text-atalait {
  color: #ec7022;
  font-weight: bold;
}

.icon {
  color: #ec7022;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  h4.heading.text-center {
    font-size: 0.8rem;
  }
  .primary-tab {
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2rem;
  }
  .btn2 {
    font-size: 15px;
    /* Tamaño de fuente más pequeño en pantallas pequeñas */
  }
}

.card-custom {
  border: none;
  text-align: center;
}

.card-custom .card-body {
  padding: 20px;
}

.card-custom .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.bg-light-gray {
  background-color: #f8f9fa;
}

.bg-yellow {
  background-color: #ffc107;
}

.bg-orange {
  background-color: #fd7e14;
}

.overlay-text2 {
  position: absolute;
  top: 20%;
  left: 10%;
  z-index: 2;
  width: 50%;
}

@media screen and (max-width: 700px) {
  .overlay-text2 {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .overlay-text2 p {
    margin-top: -20px;
    font-size: 14px;
    padding: 0 10px;
  }
}

.img-card2 {
  width: 100px;
  height: 100px;
  margin: auto;
}

.card2 {
  /*flex: 1 0 calc(33.33% - 15px);*/
  /* Ajusta el tamaño a 1/3 del contenedor menos el margen */
  /*margin-bottom: 20px;
    margin-right: 15px;
    height: 100%;*/
  transition: transform 0.3s ease;
}

.row {
  display: flex;
  flex-wrap: wrap;
  /* Permite que las tarjetas se envuelvan a la siguiente línea */
  margin-right: -15px;
  margin-left: -15px;
}

/* Al pasar el cursor por encima, se quita el filtro */
.card2:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  /* La imagen toma color */
}

.fondo-atalait {
  background-color: #f6f6f6;
  width: 100%;
  height: 100%;
}

.img-large {
  width: 600px;
  /* Ajusta el tamaño deseado */
  height: auto;
  /* Mantiene la proporción de la imagen */
}

@media (max-width: 768px) {
  .img-large {
    display: none;
  }
}

/* CSS que proporcionaste, sin cambios */
.timeline-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  margin-top: 20px;
  padding: 0 20px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ec7022;
  z-index: -1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin: 0 10px;
}

.circle {
  width: 30px;
  height: 30px;
  background-color: white;
  border: 2px solid #ec7022;
  border-radius: 50%;
  margin-top: 5px;
  transition: background-color 0.3s, border 0.3s;
}

.circle.active {
  background-color: #ec7022;
  border: none;
}

#timeline-content {
  /*margin-top: 30px;*/
  padding: 20px;
  border-radius: 5px;
  font-size: 18px;
}

.background-Atalait {
  position: relative;
  background-image: url("../assets/image/corporativo/Banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 800px) {
  .background-image {
    height: 900px;
  }
}

@media screen and (max-width: 600px) {
  .background-Atalait {
    height: 1000px;
  }

  .nav-button {
    display: none;
  }
}

.btn.active {
  background-color: #f8b620;
  /* Color activo */
}

.hidden {
  display: none;
}

.certification-container {
  position: relative;
  /* Para posicionar el texto detrás de la imagen */
  perspective: 1000px;
  /* Para dar un efecto 3D */
}

.certification-image {
  transition: transform 0.6s;
  cursor: pointer;
  height: 100px;
}

.certification-container:hover .certification-image {
  transform: rotateY(180deg);
  /* Rota la imagen al pasar el mouse */
  opacity: 0.5;
}

.certification-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  /* Fondo semi-transparente */
  color: #333;
  /* Color del texto */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  /* Inicialmente oculto */
  transition: opacity 0.6s;
  /* Efecto de transición suave */
  /* Quitar la rotación del texto */
}

.certification-container:hover .certification-text {
  opacity: 1;
  /* Muestra el texto al pasar el mouse */
}

.certification-container {
  position: relative;
  /* Para posicionar el texto detrás de la imagen */
  perspective: 1000px;
  /* Para dar un efecto 3D */
}

.certification-container:hover .certification-image {
  transform: rotateY(180deg);
  /* Rota la imagen al pasar el mouse */
}

.certification-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  /* Fondo semi-transparente */
  color: #333;
  /* Color del texto */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  /* Inicialmente oculto */
  transition: opacity 0.6s;
  /* Efecto de transición suave */
}

.certification-container:hover .certification-text {
  opacity: 1;
  /* Muestra el texto al pasar el mouse */
}

.nav-button {
  background-color: #ec7022;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: #f2a922;
  /* Color al pasar el mouse */
}

/*------------- CUSTOM -------------*/

/* index - general */

.title {
  font-weight: 700;
}

.card-body {
  padding: 40px 20px;
}

.card-text {
  text-align: left;
}

.form-control,
.btn {
  padding: 0.4rem 0.8rem;
  border: 0px;
  border-radius: 0px;
}

.btn.primary {
  padding: 0.4rem 0.8rem;
  border: 1px solid #fff;
  border-radius: 0px;
}

.btn.primary.dark {
  padding: 0.4rem 0.8rem;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 0px;
}

.btn.primary.dark:hover {
  color: #fff;
  border: 1px solid #fff;
  background-color: #000;
  border-radius: 0px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black;
}

.heading-dark {
  text-transform: uppercase;
  background: url(/assets/image/barra-n.png);
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.heading-dark.text-start {
  background-position: bottom left;
}

.heading-dark.text-center {
  background-position: bottom center;
}

.heading-dark.text-end {
  background-position: bottom right;
}

.heading {
  text-transform: uppercase;
  background: url(/assets/image/barra.jpg);
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.sub-heading {
  text-transform: uppercase;
}
.heading.text-start {
  background-position: bottom left;
}

.heading.text-center {
  background-position: bottom center;
}

.heading.text-end {
  background-position: bottom right;
}

/* Corporativo */

.group-contenedor {
  padding: 15px;
  border: 1px solid #f8b620;
}

.btn-group {
  border-radius: 0px;
  width: 100%;
}

button#btnMision,
button#btnVision {
  border-radius: 0px;
  height: 50px;
  color: #f8b620;
}

button#btnMision.active,
button#btnVision.active {
  color: #000;
}

.dos5,
.dos2,
.dos1,
.uno9,
.uno8,
.uno7,
.uno6,
.uno4,
.nueve7,
.siete8 {
  height: 300px;
}

.dos5 {
  background: url(/assets/image/corporativo/2025.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.dos2 {
  background: url(/assets/image/corporativo/2022.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.dos1 {
  background: url(/assets/image/corporativo/2021.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.uno9 {
  background: url(/assets/image/corporativo/2019.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.uno8 {
  background: url(/assets/image/corporativo/2018.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.uno7 {
  background: url(/assets/image/corporativo/2017.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.uno6 {
  background: url(/assets/image/corporativo/2016.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.uno4 {
  background: url(/assets/image/corporativo/2014.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.nueve7 {
  background: url(/assets/image/corporativo/1997.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.siete8 {
  background: url(/assets/image/corporativo/1978.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

ul.timeline {
  list-style: none;
}

h4.timeline {
  text-transform: uppercase;
}

/* Estilos para el navbar en modo fijo al hacer scroll */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
}
#navbar-placeholder {
  height: 80px;
}
.navbar.navbar-expand-lg.shadow {
  background-color: white;
  z-index: 3;
}
.hide {
  display: none;
}
.secondary {
  background-color: #ec7022;
  color: white;
  border: 1px solid #ec7022;
}
.secondary:hover {
  background-color: transparent;
  color: #ec7022;
  border: 1px solid #ec7022;
}

.secondary.yellow {
  background-color: #ffc107;
  color: white;
  border: 1px solid #ffc107;
}
.secondary.yellow:hover {
  background-color: transparent;
  color: white;
  border: 1px solid #ffc107;
}
@media (max-width: 768px) {
  .icono {
    width: 50%;
    margin: 0 auto 20px;
  }
}

/* Paginacion Blog */
.pagination {
  justify-content: center;
}

.page-link.disabled {
  border-color: #000;
}

.page-link {
  border-radius: 50%;
  background-color: white;
  color: #ec7022;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.page-link:hover {
  background-color: white;
  color: #f0a577;
}

.page-link.active {
  background-color: #ec7022;
  color: white;
  border-color: #ec7022;
  z-index: 1;
}

#prev-button,
#next-button {
  background-color: white;
  color: #ec7022;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#prev-button:hover,
#next-button:hover {
  background-color: #ec7022;
  color: white;
}
/* Paginacion Blog */

@media (max-width: 991px) {
  .translator-container {
    position: fixed !important;
    top: 15px !important;
    right: 70px !important;
    z-index: 999 !important;
  }

  .translator-container iframe,
  .translator-container div[class*="elfsight"] {
    transform: scale(0.75) !important;
    transform-origin: top right !important;
  }
}
