.squarebullet {list-style-type:square;}
.text-bsdblue {color: #3f85c3}
.bg-bsdblue {background-color: #3f85c3;}

.bg-intrado {
    background-color: rgba(19, 41, 75, 1.0) !important;
  }
  .bg-oracle-red {
    background-color: #C74634 !important; /* Oracle Red */
  }
.bg-orange {
  background-color: #ff9800 !important; /* Material Design Orange 500 */
}

/* You can also use other shades of orange if needed: */

.bg-orange-light {
  background-color: #ffcc80 !important; /* Material Design Orange 200 */
}

.bg-orange-dark {
  background-color: #f57c00 !important; /* Material Design Orange 700 */
}

/* Or a custom hex value */
.bg-custom-orange {
  background-color: #FFA500 !important; /* Standard web orange */
}
/*Add responsive variants, for example*/
@media (min-width: 576px) {
    .bg-sm-orange {
      background-color: #ff9800 !important;
    }
  }
  
  @media (min-width: 768px) {
    .bg-md-orange {
      background-color: #ff9800 !important;
    }
  }
  
  @media (min-width: 992px) {
    .bg-lg-orange {
      background-color: #ff9800 !important;
    }
  }
  
  @media (min-width: 1200px) {
    .bg-xl-orange {
      background-color: #ff9800 !important;
    }
  }
  
  @media (min-width: 1400px) {
    .bg-xxl-orange {
      background-color: #ff9800 !important;
    }
  }