.typing-effect {
    overflow: hidden;
    border-right: .15em solid #fff; /* Blinking cursor */
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 10s steps(50) infinite, blinkCaret 3s step-end infinite;
    margin-bottom: 20px;
  }
  
  @keyframes typing {
    0% {
      width: 0;
    }
    50% {
      width: 100%;
    }
    100% {
      width: 0;
    }
  }
  
  @keyframes blinkCaret {
    50% {
      border-color: transparent;
    }
  }

.freelancer-post {
    border-radius: 10px; 
    border:1px solid #ddd; 
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.text-yk {
    color:#ad954f !important;
}

.category:hover {
    background-color: rgba(173, 149, 79, 0.3);
    padding:5px;
}

.text-black {
    color:#000 !important;
}

.text-active {
    color:#71ADA8 !important;
}

.text-gold {
    color:#ad954f !important;
}

.nav-box {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); 
    margin-top:-20px;
}