.main-menu {
  background: rgba(255,255,255,1);
  box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
  height: 100%;
  left: 0;
  max-height: 100%;
  min-height: 100%;
  position: fixed;
  top: 100%;
  width: 100%;
  transition: top 0.25s ease;
  z-index: 9999;
}
.menu-active .main-menu {
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  top: 0;
  transition: top 0.5s ease;
}
.site-wrapper:before {
  background: rgba(0,0,0,0);
  content: "";
  display: block;
  left: 0;
  height: 0;
  max-height: 0%;
  min-height: 0;
  position: fixed;
  top: 0;
  transition: background 0.5s ease, min-height 0s ease 0.5s, max-height 0s ease 0.5s, z-index 0s ease 0.5s;
  width: 100%;
  z-index: -1;
}
.menu-active .site-wrapper:before {
  background: rgba(0,0,0,0.25);
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  transition: background 0.25s ease;
  width: 100%;
  z-index: 9998;
}
.main-menu-container .hs-menu-wrapper {
  display: block;
}
.main-menu-container .hs-menu-wrapper ul {
  padding: 0;
}
.main-menu-container .hs-menu-wrapper ul > .hs-menu-item {
  display: block;
  float: none;
  margin: 0;
}
.main-menu-container .hs-menu-wrapper ul > .hs-menu-item > a {
  color: #1e1e1e;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: normal;
  padding: 0;
  position: relative;
  text-transform: none;
}
.main-menu-container .hs-menu-wrapper ul > .hs-menu-item > a::after {
  background: transparent;
  bottom: 16px;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: -10px;
  transition: none;
  width: 10px;
}
.main-menu-container .hs-menu-wrapper ul > .hs-menu-item > a:hover {
  color: #e95a0c;
  text-decoration: none;
}
.main-menu-container .hs-menu-wrapper ul > .hs-menu-item > a:hover::after {
  background: #e95a0c;
  right: -16px;
  transition: all 0.5s ease;
}
.menu-text a {
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 700;
}
.menu-text a:hover {
  text-decoration: none;  
}