p.normal-text {
  font-weight: 400 !important;
  font-style: normal !important;
  font-family: inherit !important;
}

ul.list {
  font-weight: 400 !important;
  font-style: normal !important;
  font-family: inherit !important;
  color: #e6e6e6 !important;
  padding-left: 1.2em;
  margin-bottom: 1.5em;
}

ul.list li {
  font-weight: 400 !important;
  font-style: normal !important;
  font-family: inherit !important;
  color: #e6e6e6 !important;
  margin-bottom: 0.5em;
  line-height: 1.6;
}



/**
* MOBILE MENU
*/


:root {
  --link-size: 16px;
  --link-height: 23px;
  --link-spacing: 3.8px;
  --link-color: white;
  --link-weight: 600;
}

.hamburger {
  display: none;
}

.body-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #363636;
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0.5;
  z-index: 99;
}

.side-bar-activated .link-list {
  display: none !important;
}

#side-bar {
  width: 320px;
  background: rgba(15, 11, 38, 0.9); /* #0F0B26 with 90% opacity */
  position: fixed;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 20px !important;
  z-index: 9999999999999;
  overflow-y: scroll;
}

#side-bar::-webkit-scrollbar {
  width: 0px;
}

#side-bar-container {
  transform: translateX(100%);
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.side-bar--open #side-bar-container {
  transform: translateX(0%) !important;
  transition-delay: 0.1s !important;
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#side-bar-start-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  margin-bottom: 50px;
}

#side-bar-start-div .logo {
  max-width: 100%;      /* use a % instead of a hard pixel limit */
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  padding-right: 12px;
}

#side-bar-start-div .logo img {
  height: 64px !important;
  width: auto !important;
  object-fit: contain;
  margin: 0 !important; /* reset spacing if affected */
}


#side-bar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 0;       /* remove unwanted pushing */
  flex-grow: 0;         /* prevent stretching */
  max-width: none;      /* avoid weird scaling */
}


#side-bar-close svg *,
#side-bar-menu svg * {
  width: 100%;
  height: 100%;
  fill: var(--link-color);
}

#side-bar-close svg,
#side-bar-menu svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#side-bar-menu {
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-left: auto !important;
}

#side-bar-container .logo {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

#side-bar-container .logo img {
  width: 100%;
  height: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

#side-bar-container .link-list {
  display: flex;
  flex-direction: column;
}

#side-bar-container .dropdown {
  border-bottom: 1.7px solid #dddddd;
  display: block;
}

#side-bar-container .dropdown__trigger {
  display: flex;
  justify-content: space-between;
  font-size: var(--link-size);
  letter-spacing: var(--link-spacing);
  line-height: var(--link-height);
  color: var(--link-color);
  font-weight: var(--link-weight);
  text-transform: uppercase;
  padding: 20px 0px;
}

#side-bar-container .cross-button-wrapper {
  width: 11px;
  height: 11px;
  position: relative;
  margin: 5px 0;
}

#side-bar-container .cross-button-wrapper div {
  width: 1px;
  height: 100%;
  background: var(--link-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transition-duration: 0.35s;
}

#side-bar-container .cross-button-second-line {
  transform: rotate(-90deg);
}

#side-bar-container .dropdown--open .cross-button-first-line {
  transform: rotate(90deg);
}

#side-bar-container .dropdown__menu {
  position: static;
  background: transparent;
  box-shadow: none;
  max-height: 0px;
  padding: 0px;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
}

#side-bar-container .dropdown--open .dropdown__menu {
  max-height: 400px;
  padding-bottom: 20px;
}

#side-bar-container .dropdown__item a {
  font-size: var(--link-size);
  letter-spacing: var(--link-spacing);
  line-height: var(--link-height);
  color: var(--link-color);
  font-weight: 400;
  padding: 13px 0px !important;
  margin-left: 16px;
  text-transform: uppercase;
}

#side-bar-container .link-list__link {
  font-size: var(--link-size);
  letter-spacing: var(--link-spacing);
  line-height: var(--link-height);
  color: var(--link-color);
  font-weight: var(--link-weight);
  text-transform: uppercase;
  padding: 20px 0px;
  border-bottom: 1.7px solid #dddddd;
  margin-bottom: 0px;
}

/* Center the CTA block in the sidebar */
#side-bar-container .header__block--cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#side-bar-container .header__block--cta .btn {
  text-align: center;
}


/* Actions */
.side-bar--close {
  right: -101% !important;
}

.side-bar--open {
  right: 0% !important;
}

@media (max-width: 480px) {
  #side-bar {
    width: 100% !important;
  }
}/*# sourceMappingURL=right-menu.css.map */



/**
* MOBILE MENU
*/