.al-submenu {
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.14);
  width: max-content;
  margin: 0 auto;
  color: var(--mid-blue);
  max-width: 100%;
  min-width: 360px;
  position: relative;
  z-index: 5;
}

.al-submenu__top {
  background: var(--coldGradient);
  padding: 12px 32px;
  font-size: var(--fs-24);
  text-transform: uppercase;
  color: var(--mid-blue);
  font-weight: 800;
  line-height: 1.67;
  letter-spacing: 0.2em;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.al-submenu__main {
  padding: 4px 20px 20px;
  display: flex;
  justify-content: center;
}

.al-submenu__main > ul {
  padding: 0 0 4px 0 !important;
}

.al-submenu__main > ul > li {
  font-family: var(--ff-avenir);
  font-size: var(--fs-24);
  line-height: 1.67;
  color: var(--mid-blue);
  position: relative;
  padding: 9px 20px 11px 28px;
}

.al-submenu__bottom-border {
  height: 2px;
  background: #CDCDCD;
  width: 100%;
  position: absolute;
  top: calc(1.67em + 24px);
  left: 0;
}

.al-submenu__main > ul > li::marker {
  content: "";
}

.al-submenu__main > ul > li > a {
  position: relative;
  text-decoration: none !important;
}

.al-submenu__main > ul > li > a::before {
    content: "";
    width: 8px;
    height: 8px;
    background: currentColor;
    position: absolute;
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.al-submenu__main > ul > li a {
  color: inherit;
  text-decoration: none !important;
}

.al-submenu__main > ul > li a:hover {
  text-decoration: underline !important;
}

.al-submenu__main .submenu {
  font-size: 20px;
  padding: 4px 12px 0;
}

.al-submenu__main .submenu > li {
  line-height: 1.35 !important;
  margin: 12px 0;
  max-width: 288px;
}

.al-submenu__main .submenu li::marker {
  content: '';
}

.al-submenu .collapsible {
    display: none;
	margin-top: 14px;
}

.al-submenu .current-menu-item > a, .al-submenu .current-parent-menu-item > a {
  color: var(--orange);
}

.al-submenu .current-menu-item > a {
  pointer-events: none;
  touch-action: none;
}


.al-submenu .arrow {
    cursor: pointer;
    position: absolute;
    right: -14px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    top: 15px;
    background: none;
    border: none;
}

.al-submenu .arrow svg {
    transition: transform 0.25s ease, color 0.25s ease;
    transform: rotate(-90deg);
}

.al-submenu .active .arrow svg {
  transform: rotate(0deg);
}

button.al-submenu__top__arrow {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    transform: translateX(10px);
    padding: 10px;
	display: none;
}
button.al-submenu__top__arrow svg {
  width: 100%;
  height: auto;
  transition: transform 0.25s ease, color 0.25s ease;
  transform: rotate(-90deg);
}
button.al-submenu__top__arrow.active svg {
  transform: rotate(0deg);
} 
.al-submenu .current-menu-item .arrow, .al-submenu .current-parent-menu-item .arrow {
  color: var(--orange);
}

@media screen and (max-width: 980px) {
  .al-submenu__top {
	padding: 12px 10%;
  }
  button.al-submenu__top__arrow {
    display: block;
  }
  .al-submenu {
	width: 100%;
  }
  .al-submenu .arrow {
    top: 10px;
  }
  .al-submenu__main > ul {
	width: 100%;
  }
  .al-submenu__main {
	display: none;
	width: 80%;
    margin: 0px auto;
    padding: 4px 0px 20px;
  }
  .al-submenu__main .submenu > li {
	max-width: 500px;
  }
}
@media screen and (max-width: 520px) {
  .al-submenu__top {
	padding: 12px 6%;
  }
  .al-submenu__main {
	width: 88%;
  }
}
@media screen and (min-width: 981px) and (max-width: 1440px) {
  .et_pb_row.submenu-parent-row .et_pb_column_3_5 {flex: 50%;width: initial;}
  .et_pb_row.submenu-parent-row {
	  display: flex;
  }
  .et_pb_row.submenu-parent-row .et_pb_column_2_5 {
	  flex: 1;
	  width: initial;
  }
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .al-submenu__top {
	font-size: 22px;
  }
  .al-submenu__main > ul > li {
	font-size: 22px;
  }
  .al-submenu__main .submenu {
	font-size: 18px;
  }
}
@media screen and (min-width: 981px) {
  .al-submenu__top {
	pointer-events: none;
	touch-action: none;
	cursor: default;
  }
}