.accordion {
     
}

.accordion-item {

}

.accordion-item-heading {
    display: block;
    color: rgb(101, 96, 96);
    transition: font-weight 0.1s ease-out;
    padding: 10px 0px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    /* text-decoration: underline !important; */
    padding-right: 70px;
 
}

.accordion-item-content {
  display: none;
 
}
.bold-text {
    color: #000;
    
  }



  .custom-accordion {

  }
  

  .custom-accordion-item {
 
  }

  .custom-accordion-heading {
    display: block;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease-out;
    padding: 2px 0px;
    color: #1a1a1a;
    
    padding-right: 30px;
  }

  .custom-accordion-content {
    display: none;
  }

  .bold-textt {
    color: #ebe9e9 !important;
  }


  .list-with-circle::before{
    content: '\2022'; /* Unicode character for a bullet (•) */
    position: absolute;
    left: 85%;
    top: 50%;
    transform: translateY(-50%);
    color: #000; 

  }