@import  url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap');

:root {
    --red-primary-color:#c91f37 ;
    --primary-color: #e4761c;
    --secondary-color: #ddab07;
  }


.description ul {
  list-style: disc !important;
  padding: 40px !important;

}

ol {
  list-style-type: decimal !important
}



body{
  scrollbar-gutter: stable;
  font-family: "QuickSand";
}

.underline-danex {
  position: relative;
  text-decoration: none;
}

.underline-danex:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Ajusta la posición del subrayado */
  width: 100%;
  height: 2px; /* Grosor del subrayado */
  background: linear-gradient(to right, #c91f37, #DB5C23, #ddab07); /* Gradiente entre los tres colores */
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}

/* .underline-danex:hover:after {
  transition-duration: 1s;
  background-size: 00% 2px; 
} */
