body{
  min-height: 100vh;
}
.text-slate-dark{
    color: #46515A;
}

.text-slate-light{
    color: #97acbd;
}

.banner{
    background-color: #660B05;
    min-height: 50vh;
}

.color-primary{
    background-color: #660B05;
}

.breadcrumbs {
  border: 1px solid #cbd2d9;
  border-radius: 0.3rem;
  display: inline-flex;
  overflow: hidden;
  font-size: 0.91rem;
}

.breadcrumbs__item {
  background: #fff;
  color: #333;
  outline: none;
  padding: 0.75em 0.75em 0.75em 1.25em;
  position: relative;
  text-decoration: none;
  transition: background 0.2s linear;
}

.breadcrumbs__item:hover:after,
.breadcrumbs__item:hover {
  background: #edf1f5;
}

.breadcrumbs__item:focus:after,
.breadcrumbs__item:focus,
.breadcrumbs__item.is-active:focus {
  background: #198754;
  color: #fff;
}

.breadcrumbs__item:after,
.breadcrumbs__item:before {
  background: white;
  bottom: 0;
  clip-path: polygon(50% 50%, -50% -50%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  transition: background 0.2s linear;
  width: 1em;
  z-index: 1;
}

.breadcrumbs__item:before {
  background: #cbd2d9;
  margin-left: 1px;
}

.breadcrumbs__item:last-child {
  border-right: none;
}

.breadcrumbs__item.is-active {
  background: #edf1f5;
}

.bg-login-page{
  /* background-image: linear-gradient(rgba(154, 0, 0, 0.5), rgba(154, 0, 0, 0.5)), url('/assets/images/background.jpeg'); */
  background-image: linear-gradient(rgba(0, 87, 154, 0.5), rgba(0, 87, 154, 0.5)), url('/assets/images/background.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
}