/* Reveal on Scroll */
/* Initial State (Frontend) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Active State */
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Override for Divi Visual Builder */
body.et-fb .reveal-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/*Breadcrumbs*/
.chm-breadcrumbs {
    font-size: 19px;
    margin-bottom: 15px;
    color: #fff;
	font-weight: 700;

}
.chm-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}
.chm-breadcrumbs a:hover {
    text-decoration: underline;
}


