:root {
  --dg-header-blue-bg: #9ab9d6;
  --dg-header-blue-txt: #111111;
  --dg-header-red-bg: #946868;
  --dg-header-red-txt: #111111;
}

.hale-logo-full {
  --hale-logo-fill: currentColor;
	height: 100%;
	width: 100%;
}
.hale-logo-full-header, .hale-logo-full-footer {
  width: 15em;
}

@media (max-width: 786px) {
  .mobile-center {
    text-align: center;
    justify-content: center;
    justify-self: center;
    align-items: center;
    align-self: center;
    align-content: center;
  }
  .mobile-hide {
    display: none;
  }
  .mobile-row {
    flex-direction: row;
  }
  .mobile-stack {
    flex-direction: column;
  }
}

.dg-web-footer-form {
  z-index: 1;
  position: relative;
}
.dg-hover-event-hl {
  cursor: pointer;
}
.dg-hover-event-hl:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition: 0.4s; /* Smooths the transition */
  background-image: linear-gradient(rgba(150, 150, 150, 0.5), rgba(150, 150, 150, 0.5)), url('image.jpg');
}
.dg-hero-full-height {
  height: 100vh;
  max-height: 825px;
}
@media (max-width: 781px) {
  .dg-columns-reverse-mb {
    display: flex;
    flex-direction: column-reverse;
  }
}
.dg-accordion-toggle {
  position: relative;
}
.dg-accordion-label {
  display: block;
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1em;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
.dg-accordion-label-input {
  opacity: 0;
}
.dg-accordion-label-mark {
  position: absolute;
  display: inline-block;
  height: 50px;
  width: 50px;
  right: 1em;
  top: 1.5em;
}
.dg-accordion-label-mark::before,
.dg-accordion-label-mark::after {
  position: absolute;
  display: block;
  content: \"\";
  border: 25px solid transparent; /*adjust size*/
}
/* Replace all text `top` below with left/right/bottom to rotate the chevron */
.dg-accordion-label-mark::before {
  top: 0;
  border-top-color: #000000; /*Chevron Color*/
}
.dg-accordion-label-mark::after {
  top: -10px; /*adjust thickness*/
  border-top-color: #ffffff; /*Match background colour*/
}
.dg-accordion-label-mark.dg-accordion-show {
  top: 0;
  transform: rotate(180deg);
}
.dg-accordion-content {
  max-height: 0px;
  overflow: hidden;
}
.dg-accordion-content.dg-accordion-show {
  padding-top: 15px;
  padding-bottom: 15px;
  max-height: 500px;
}
.dg-sticky-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transition: 0.3s;
}
.dg-sticky-header-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.current-menu-item,
.current-menu-ancestor {
  border: 2px solid currentColor;
  padding: 5px !important;
}