/*Version 1.0.0*/
/*Aportaciones CSS*/
/*Section css*/
.aportaciones-section {
  padding-top: 25px;
}

/* title text start CSS*/
.aportaciones-linea-titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aportaciones-linea-titulo h2 {
  margin: 0 20px;
  /* Esta es la distancia entre las líneas y el texto. Puedes ajustarla a tu gusto. */
  color: rgb(0 107 179);
  font-weight: bold;
}

.aportaciones-linea {
  flex-grow: 1;
  height: 2px;
  background: rgb(0 107 179);
}

/* title text css end*/
/*Aportaciones description CSS start*/
.aportaciones-descripcion-bg {
  background-color: #f5f5f5;
}

.aportaciones-descripcion {
  background-color: aliceblue;
  color: #80888C;
}

/*Aportaciones description CSS end*/
/*Aportaciones menu CSS start*/
.aportaciones-bg-image {
  background-image: linear-gradient(rgb(0 107 179), rgba(15, 96, 218, 0.5)), url('../images/2023/documentos_contractuales/doc_fondo.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.aportaciones-imgs img {
  max-width: 100%;
  height: auto;
}

.aportaciones-animacion {}

.aportaciones-animacion:hover .aportaciones-tracking-in-expand {
  animation: aportaciones-tracking-in-expand 1s linear both
}

@keyframes aportaciones-tracking-in-expand {
  0% {
    letter-spacing: -.2em;
    opacity: 0
  }

  40% {
    opacity: .6
  }

  100% {
    opacity: 1
  }
}

/*Aportaciones menu CSS end*/

/* Derechos CSS chek list*/

.derecho-check-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.derecho-check-icon {
  background-color: #004080;
  /* Azul marino */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.derecho-check-icon i {
  font-size: 1.5rem;
}

.derecho-check-text {
  padding: 1rem;
  flex: 1;
  color: #80888C
}