#hamb-menu-icon {
  width: 60px;
  height: 70px;
  background-color: transparent;
  top: 0;
  right: 0;
  position: absolute;
  transform: rotate(0deg);
  cursor: pointer;
  z-index: 999;
}
#hamb-menu-icon.open {
  position: fixed;
  right: 20px;
}

#hamb-menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 36px;
  background: #FFFFFF;
  border-radius: 3px;
  opacity: 1;
  left: calc(calc(60px - 36px) / 2);
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}

.basic-page-wrapper #hamb-menu-icon span {
  background-color: #333D2B;
}

#hamb-menu-icon.open span {
  background: #fff;
}

#hamb-menu-icon span:nth-child(4) {
  width: calc(36px - 5px);
}

#hamb-menu-icon span:nth-child(1) {
  top: calc(calc(70px / 2 - 3px / 2) - 8px - 3px);
}

#hamb-menu-icon span:nth-child(2), #hamb-menu-icon span:nth-child(3) {
  top: calc(70px / 2 - 3px / 2);
}

#hamb-menu-icon span:nth-child(4) {
  top: calc(calc(70px / 2 - 3px / 2) + 8px + 3px);
}

#hamb-menu-icon.open span:nth-child(1) {
  top: calc(70px / 2 - 3px / 2);
  width: 0;
  left: 50%;
}

#hamb-menu-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

#hamb-menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#hamb-menu-icon.open span:nth-child(4) {
  top: calc(70px / 2 - 3px / 2);
  width: 0;
  left: 50%;
}

.frontpage-wrapper header #hamb-menu-icon span {
  background: #fff;
}

header.main-header {
  position: relative;
  width: 100%;
}
header.main-header .menu-container {
  width: calc(100% - 60px);
}
header.main-header .menu-container #block-evidente-site-branding,
header.main-header .menu-container #block-darklogo {
  height: 70px;
}
header.main-header .menu-container #block-evidente-site-branding a,
header.main-header .menu-container #block-darklogo a {
  height: 100%;
  display: grid;
}
header.main-header .menu-container #block-evidente-site-branding a img,
header.main-header .menu-container #block-darklogo a img {
  margin: 20px 0;
  height: 30px;
  width: auto;
  align-self: center;
}

.nav-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -110%;
  background: linear-gradient(rgba(51, 61, 43, 0.95) 50%, rgba(66, 66, 66, 0.6) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  height: 100vh;
  width: 85vw;
  transition: all 0.4s ease-in-out;
  z-index: 10;
}

.hamburger-overlay {
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: -2;
  position: fixed;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}

.hamburger-overlay.overlay-active {
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9;
  transition: all 0.4s ease-in-out;
  pointer-events: auto;
}

.show-hamb-menu {
  right: 0;
  transition: all 0.4s ease-in-out;
}
.show-hamb-menu:before {
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}

.h-menu {
  position: relative;
}

.h-menu nav .main-nav-list {
  padding: 0;
  margin: 100px 0 0;
  list-style: none;
  position: relative;
}
.h-menu nav .main-nav-list li {
  display: block;
}
.h-menu nav a,
.h-menu nav span {
  display: block;
  padding: 20px 40px 20px 32px;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all 0.1s ease;
  position: relative;
  cursor: pointer;
}
.h-menu nav a.is-active,
.h-menu nav span.is-active {
  color: #E18D29;
}
.h-menu nav a:hover,
.h-menu nav span:hover {
  background-color: #333D2B;
  color: #94A652;
  transition: all 0.1s ease;
}
.h-menu nav ul ul {
  display: none;
  padding-left: 0;
}
.h-menu nav ul ul a {
  padding: 12px 40px 12px 60px;
  font-size: 1rem;
  font-weight: 400;
}
.h-menu nav ul ul.opened {
  display: block;
}

.menu-expanded > span:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 45%;
  display: block;
  border-bottom: 2px solid #FFFFFF;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.2s ease;
}
.menu-expanded > span:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 45%;
  display: block;
  border-left: 2px solid #FFFFFF;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.2s ease;
}
.menu-expanded > span:hover:before,
.menu-expanded > span:hover:after {
  border-color: #94A652;
}
.menu-expanded > span.submenu-opened:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 55%;
  display: block;
  border-bottom: 2px solid;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-135deg);
  transition: all 0.2s ease;
}
.menu-expanded > span.submenu-opened:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 55%;
  display: block;
  border-left: 2px solid;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.2s ease;
}

.search-form .js-form-type-textfield label {
  display: none;
}
.search-form .js-form-type-textfield input {
  display: block;
  opacity: 0;
  position: fixed;
  z-index: 45;
  right: -100%;
  top: 16px;
  border: none;
  outline: none;
  border-bottom: 1px solid #FFFFFF;
  padding: 10px;
  width: 50vw;
  background-color: transparent;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
  transition: all 0.4s ease-in-out;
}
.search-form .js-form-type-textfield input.opened {
  opacity: 1;
  right: calc(35vw - 32px);
  transition: all 0.4s ease-in-out;
}
.search-form img {
  display: none;
}
.search-form .form-actions.js-form-wrapper.form-wrapper {
  display: none;
}/*# sourceMappingURL=h-menu-max991.css.map */