/* Add your own custom css here */
.font-exo {
    font-family: 'Exo' !important;
}

.h1 {
    font-size: 2.625rem;
}

.text-decoration-none, .text-decoration-none:hover {
    text-decoration: none;
}

.hidden {
    opacity: 0;
    display: none !important;
    transition: opacity 0.5s ease;
    transition: display 0.5s ease;
}

.show {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.is-loading {
    display: inline-block;
    width: 40px;
    height: 40px;
  }
  .is-loading:after {
    content: " ";
    display: block;
    width: 32px;
    height: 32px;
    margin: 4px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: is-loading 1.2s linear infinite;
  }
  @keyframes is-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .text-justify{
    text-align: justify;
  }

  .shiny {
    text-shadow: 0 0 5px #ffffff;
    color: #fff;
  }

  .text-gradient-custom {
    background-color: var(--gradient-first);
    background-image: linear-gradient(var(--gradient-angle),#FF55F4BF,rgb(243, 212, 73));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }