@charset "UTF-8";
.text-blog-index {
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.a-blog {
  color: #000000;
  text-decoration: none;
}

.gradient {
  font-size: 120px;
  background: linear-gradient(45deg, #0ba252, #a8ead4);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.featurette-heading a {
  color: black;
  text-decoration: none;
}

mark {
  background: linear-gradient(45deg, #ffff66, #ffff99);
  color: black;
  padding: 0.2em 0.6em;
  border-radius: 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.display-5 {
  font-size: 2rem;
}

@media (max-width: 1024px) {
  .gradient {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .gradient {
    font-size: 60px;
  }
}
@media (max-width: 668px) {
  .gradient {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1rem;
  }
  .text-blog-index {
    font-size: 1rem;
  }
}
@media (orientation: landscape) {
  h1.fw-bolder {
    font-size: 3.5rem; /* Ajusta el tamaño según tus preferencias */
    text-align: center; /* Centra el título */
  }
}
.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #fff;
  border-radius: 0.75rem;
}

.feature-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #fff;
  border-radius: 50%; /* Hace que la forma sea un círculo */
  background-color: #000; /* Hace que el fondo sea negro */
}

.icon-link {
  display: inline-flex;
  align-items: center;
}

.icon-link > .bi {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  transition: transform 0.25s ease-in-out;
  fill: currentColor;
}

.icon-link:hover > .bi {
  transform: translate(0.25rem);
}

.icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  background-color: #0000FF; /* Hace que el fondo sea azul */
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%; /* Hace que la forma sea un círculo */
  background-color: #000; /* Hace que el fondo sea negro */
}

.background-image {
  background-image: url("ruta-de-tu-imagen.jpg"); /* Cambia esto por la URL de tu imagen */
  background-size: cover; /* Esto hará que la imagen cubra todo el contenedor */
  background-repeat: no-repeat;
  background-position: center; /* Esto centrará la imagen en el contenedor */
}

img.kanban-responsiva {
  width: 100%;
}

img.scrum-responsiva {
  width: 100%;
  max-width: 200px;
}

img.first-blog-small-responsiva {
  width: 100%;
  max-width: 500px;
}

img.small-responsiva {
  width: 100%;
  max-width: 250px;
}

svg.small-responsiva {
  width: 100%;
  max-width: 500px; /* Tamaño máximo */
}

.img-logo-client {
  width: 80px; /* Anchura de la imagen */
  height: 80px; /* Altura de la imagen */
  object-fit: contain;
  filter: grayscale(100%); /* Filtro para la imagen en escala de grises */
}

img.kanban-niveles-resonsiva {
  width: 100%;
  max-width: 500px; /* Tamaño original */
}

@media (max-width: 1024px) {
  img.kanban-responsiva {
    max-width: 400px; /* Tamaño reducido en pantallas medianas */
  }
  img.kanban-niveles-responsiva {
    max-width: 400px; /* Tamaño reducido en pantallas medianas */
  }
  img.scrum-responsiva {
    max-width: 300px; /* Tamaño reducido en pantallas medianas */
  }
}
@media (max-width: 768px) {
  img.kanban-niveles-responsiva {
    max-width: 300px; /* Tamaño reducido en pantallas medianas */
  }
  img.kanban-responsiva {
    max-width: 300px; /* Tamaño aún más reducido en pantallas pequeñas */
  }
  img.scrum-responsiva {
    max-width: 100px; /* Tamaño reducido en pantallas medianas */
  }
}
.container-callToAction {
  background-color: #0BA252;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: 0.25rem; /* Bootstrap 'rounded' class */
}

.container-callToAction .form-control {
  display: block;
  width: 100%;
  /* Other styles for form controls in Bootstrap can be added here */
}

.container-callToAction h1.fw-bold {
  font-size: 65px;
}

.resaltado {
  position: relative;
  display: inline-block;
}

.resaltado::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 0, 0.5); /* Color de fondo amarillo con transparencia */
  width: calc(100% + 4px);
  height: 40%;
  left: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-2deg);
}

/* Clase para el subrayado azul */
.resaltado-azul {
  display: inline-block;
  position: relative;
}

.resaltado-azul::before {
  content: "";
  position: absolute;
  background-color: rgba(107, 129, 216, 0.7); /* Color de fondo gris para el subrayado */
  width: calc(100% + 4px);
  height: 32%;
  left: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-1.4deg);
}

/* Clase para el subrayado gris */
.resaltado-gris {
  display: inline-block;
  position: relative;
}

.resaltado-gris::before {
  content: "";
  position: absolute;
  background-color: gray; /* Color de fondo gris para el subrayado */
  width: calc(100% + 4px);
  height: 20%;
  left: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-2deg);
}

/* Clase para el subrayado rosa */
.resaltado-rosa {
  display: inline-block;
  position: relative;
}

.resaltado-rosa::before {
  content: "";
  position: absolute;
  background-color: rgba(178, 98, 175, 0.5); /* Color de fondo rosa para el subrayado */
  width: calc(100% + 4px);
  height: 30%;
  left: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-2deg);
}

.resaltado-gradient {
  display: inline-block;
  position: relative;
}

.resaltado-gradient::before {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, #45ac75, #a8ead4);
  width: calc(100% + 4px);
  height: 70%;
  left: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-2deg);
}

.card:hover {
  opacity: 0.7;
}

.card-blog {
  border: none !important; /* Elimina el borde */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Agrega sombra */
}

.card-max-height {
  max-height: 1200px;
}

@media (min-width: 1024px) {
  /* Estilo para tarjeta pequeña */
  .card-small {
    height: 150px;
    width: 350px;
    text-align: justify;
  }
  .card-small-secondary {
    height: 180px;
    width: 370px;
    text-align: justify;
  }
  /* Estilo para tarjeta mediana */
  .card-medium {
    height: 250px;
    width: 450px;
    text-align: justify;
  }
  /* Estilo para tarjeta grande */
  .card-large {
    height: 285px;
    width: 500px;
    text-align: justify;
  }
}
@media (max-width: 768px) {
  .border-right {
    border-right: none;
  }
}
/* Arrows for cards */
@media (min-width: 1200px) {
  .h-md-50 {
    height: 50vh;
  }
  div.improvement-path {
    position: relative;
    top: -10px;
    right: -380px;
    width: 50px;
    height: 50px;
  }
  div.improvement-path::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 150px;
    height: 150px;
    background-image: url("/assets/images/img/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-block;
  background-color: transparentgray; /* Color para círculo vacío */
  margin-right: 5px; /* Espacio entre círculos */
  border: 1px solid black;
}

.filled {
  background-color: green; /* Color para círculo lleno */
}

.level-group {
  display: flex;
}

.nav-pills-home .nav-link {
  color: white;
}

@media (max-width: 572px) {
  .equal-width-buttons .nav-item {
    font-size: 9px;
  }
}

/*# sourceMappingURL=styles.css.map */