/** Standard and Star list **/
.coh-wysiwyg ul {
  margin-bottom: var(--list-mb);
}
.coh-wysiwyg ul > li {
  padding-left: 1.6em;
  position: relative;
}
.coh-wysiwyg ul > li:before {
  content: "";
  height: 1em;
  left: 0;
  position: absolute;
  top: 0.2em;
  width: 1em;
}
.coh-wysiwyg ul > li:not(:last-child) {
  margin-bottom: var(--li-margin);
}
.coh-wysiwyg ul > li:first-child {
  margin-top: var(--li-margin);
}

.use-standard-bullet ul,
.coh-wysiwyg ul,
.use-list-starred ul {
  list-style: none;
  padding-left: 1em;
}
.use-standard-bullet ul li,
.coh-wysiwyg ul li,
.use-list-starred ul li {
  padding-left: 1em;
}
.use-standard-bullet ul li:before,
.coh-wysiwyg ul li:before,
.use-list-starred ul li:before {
  content: "-";
  background-image: none;
  top: unset;
}
/** End Standard and star list **/

/** Main Nav **/
.AppHeader__Brand {
  -webkit-transition: unset;
  transition: unset;
  max-width: 180px;
}
@media (min-width: 1024px) {
  .AppMenu__Nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
/** End Main Nav **/

/** horizontal scrollbar fix  **/
.HeroHome__ArrowContainer{
  left: 8.33333%;
}

@media (min-width: 1024px){
.HeroHome__ArrowContainer {
  left: 0;
}
}

.HeroHome__ArrowContainer:after{
  left: 8.33333%;
}
/** horizontal scrollbar fix  **/