/*
* custom coursel properities
*/
.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(49, 48, 48);
}
.carousel-indicators .active {
  width: 20px;
  height: 20px;
  background-color: #0055AA; 
}

.carousel-control-next {
  left: 100%;
}

.carousel-control-prev {
  right: 100%;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
 background-image: none
  }
  .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgb(29,12,101)' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
    right: 100% 
   }
   
   .carousel-control-next-icon {
     background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgb(29,12,101)' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
     left: 95%;
    }
