html,
.breadcrumbs-title-typedtext{
    width: 100%;
    font-size: 45px;
    font-weight: 600;
    float: left;
    line-height: 50px;
    color: #ffffff;
  }
  
  
  .typed_text{
    width: 100%;
    font-size: 50px;
    color: #ffffff;
    font-weight: 600;
    float: left;
    line-height: 50px;
  }
  
  
  .cursor{
    display: inline-block;
    width: 3px;
    background-color: #ccc;
    margin-left: 0.1rem;
    animation: blink 1s infinite;
  }
  
  .cursor.typing{
    animation: none;
  }
  @keyframes blink{
    0% {background-color: #ccc;}
    49% {background-color: #ccc;}
    50% {background-color: transparent;}
    99% {background-color: transparent;}
    100% {background-color: #ccc;}
  }
  
  .featuresbreadcrumbstext{
    text-align: left;
  }


  @media only screen and (max-width: 402px){
    .breadcrumbs-title-typedtext{
      font-size: 23px;
    } 
  }
  