/* Transparencia */

/* Clase para el título con línea */
.title-h4-effect-line {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.title-h4-effect-line::after {
  content: '';
  position: absolute;
  bottom: 0; /* Línea debajo del texto */
  left: 0;
  width: 0;
  height: 2px; /* Ajusta el grosor de la línea */
  background-color: #18A77B; /* Color de la línea */
  transition: width 0.3s ease; /* Animación suave */
}

/* Contenedor hover que activa el efecto */
.container-link-678:hover .title-h4-effect-line::after {
  width: 100%; /* Línea crece al 100% del ancho */
}

.blurry-background-654 {
  backdrop-filter: blur(2px); /* Aplica el desenfoque */
  -webkit-backdrop-filter: blur(2px); /* Compatibilidad con Safari */
}

.margin-bottom-0-important {
  margin-bottom: 0 !important;
}

.margin-left-auto-424 {
  margin-left: auto !important;
}

.pattern-right-obras {
  background: repeating-linear-gradient(
    45deg, 
    #2D3748 0, 
    #2D3748 20px,
    transparent 20px, 
    transparent 40px
  );
  clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
}

.pattern-left-obras {
  background: repeating-linear-gradient(
    45deg, 
    #2D3748 0, 
    #2D3748 20px,
    transparent 20px, 
    transparent 40px
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
}

.container-effect-servicios-tramites .container-icon-color {
  transition: all 0.3 ease-in !important;
}

.container-effect-servicios-tramites:hover .container-icon-color {
  background-color: #2b6cb0 !important;
  position: relative;
}

.container-effect-servicios-tramites .container-icon-color::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background:  #155E95;
  filter: blur(50px);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: opacity 0.3s ease;
}

.container-effect-servicios-tramites:hover .container-icon-color::before {
  opacity: 1;
}

.container-effect-servicios-tramites:hover .title-color h3 {
  color: #1c4775 !important;
}

.container-effect-servicios-tramites:hover .container-icon-color .icon-color svg {
  fill: #2b6cb0 !important;
}