.hidden {
  display: none !important;
}

aside#mega-menu--mobile .mega__container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: height 0.25s ease-in-out;
  min-height: 200px;
}
aside#mega-menu--mobile .mega__container[data-active-depth="1"] button {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.mega-menu {
  position: relative;
  z-index: 500;
  background-color: #ffffff;
  display: none;
}
@media (max-width: 1024px) {
  .mega-menu {
    display: block;
  }
}
.mega-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  position: relative;
  background-color: #ffffff;
  z-index: 500;
}
.mega-menu__logo svg,
.mega-menu__logo img {
  display: block;
  max-width: 150px;
}
.mega-menu__collapsible-content {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: fixed;
  top: 183px;
  background-color: #ffffff;
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.2s ease-in-out;
}
.mega-menu__collapsible-content.open {
  transform: translateY(0%);
}
.mega-menu__main {
  margin-bottom: 10px;
}
.mega-menu__burger {
  background-color: #F8F7FC;
  padding: 17px 15px;
  border-radius: 50px;
  cursor: pointer;
}
.mega-menu__info-boxes, .mega-menu__cta {
  z-index: 400;
  padding: 10px 0;
  background-color: #ffffff;
  width: 100%;
}
.mega-menu__info-boxes .elementor-button, .mega-menu__cta .elementor-button {
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  padding: 12px;
  background-color: #ffffff;
  border: solid 2px #01a69e;
}
.mega-menu__cta {
  padding: 16px 32px;
  border-top: solid #EDEDF8;
  border-width: 1px 0 0 0;
}
.mega-menu__footer {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.25s ease-in-out 0.2s;
  width: 100%;
}
.mega-menu__footer.open {
  transform: translateY(0%);
}
.mega-menu__info-boxes__info-box {
  padding: 16px 12px;
  background-color: #F8F7FC;
  border-radius: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.mega-menu__info-boxes__info-box .mega-menu__heading {
  margin: 0;
  font-size: 14px;
  color: #01a69e;
}
.mega-menu__info-boxes__info-box .mega-menu__content {
  font-size: 14px;
  margin: 0;
  color: #01a69e;
  font-weight: 400;
}
.mega-menu__info-boxes__info-box__image {
  margin-right: 12px;
}
.mega-menu__info-boxes__info-box__image img {
  width: 64px;
  height: 64px;
  max-width: 64px;
}
.mega-menu__heading {
  font-weight: 900;
  margin-bottom: 8px;
  font-size: 20px;
}

.mega__header {
  padding-inline: 20px;
  background-color: #F8F7FC;
  height: 0;
  transition: height 0.25s ease-in-out;
}
.mega__header.active {
  height: 48px;
}
.mega__header .mega__controls {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mega__header .mega__controls button {
  border: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 13px 14px;
  transition: all 0.3s ease-out 0.25s;
  color: #01a69e;
}
.mega__header .mega__controls button:focus, .mega__header .mega__controls button:hover {
  background-color: transparent;
}
.mega__header .mega__controls button .btn__icon,
.mega__header .mega__controls button .btn__label {
  display: flex;
  pointer-events: none;
}
.mega__header .mega__controls button .btn__label {
  margin-left: 15px;
}

.mega__body {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 10px;
}

.mega__screen {
  width: 100%;
  height: 100%;
  padding: 24px 32px;
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
  max-height: calc(100% - 120px);
  overflow-y: scroll;
  overflow-x: hidden;
}
.mega__screen[data-active-menu=false] {
  transform: translateX(100%);
}
.mega__screen[data-active-menu=false].stacked, .mega__screen[data-active-menu=true] {
  transform: translateX(0%);
}

nav.navigation {
  display: flex;
  flex-direction: column;
}
nav.navigation a.btn-link,
nav.navigation a.btn {
  display: flex;
  align-items: center;
  padding: 12px 0;
  background-color: transparent;
  border: 0;
  line-height: 24px;
  margin-bottom: 8px;
  color: #01a69e;
  cursor: pointer;
}
nav.navigation a.btn-link .btn__label,
nav.navigation a.btn .btn__label {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
nav.navigation a.btn-link .btn__icon:empty,
nav.navigation a.btn .btn__icon:empty {
  display: none;
  pointer-events: none;
}
nav.navigation a.btn-link .btn__icon,
nav.navigation a.btn .btn__icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: all;
}
nav.navigation a.btn-link .btn__icon svg,
nav.navigation a.btn .btn__icon svg {
  width: 12px;
  height: 12px;
  pointer-events: none;
}

#nav-icon {
  width: 18px;
  height: 14px;
  position: relative;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #01a69e;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: transform 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 6px;
}
#nav-icon span:nth-child(4) {
  top: 12px;
}
#nav-icon.open span:nth-child(1) {
  top: 6px;
  width: 0;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  transform: rotate(45.01deg);
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45.01deg);
}
#nav-icon.open span:nth-child(4) {
  top: 6px;
  width: 0;
  left: 50%;
}

/*# sourceMappingURL=main-navigation-mobile.css.map */
