/*
       =======================================
                   CSS FOR HAMBURGER
       ======================================
*/

* {
    -webkit-tap-highlight-color: transparent;
}

#idHM * {
  user-select: none;
  font-family: "Raleway", sans-serif !important;
}
/* .depth_0 {
  position: relative;
  z-index: 100;
}
.depth_1 {
  position: relative;
  z-index: 101;
}
.depth_2 {
  position: relative;
  z-index: 102;
}
.depth_3 {
  position: relative;
  z-index: 103;
}
.depth_4 {
  position: relative;
  z-index: 104;
}
.depth_5 {
  position: relative;
  z-index: 105;
}
.depth_6 {
  position: relative;
  z-index: 106;
}
.depth_7 {
  position: relative;
  z-index: 107;
}
.depth_8 {
  position: relative;
  z-index: 108;
}
.depth_9 {
  position: relative;
  z-index: 109;
} */

.hamburger_button {
  position: relative;
  padding: 0px;
}
.animated-icon1,
.animated-icon2,
.animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span,
.animated-icon2 span,
.animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: black;
}

.animated-icon2 span {
  background: black;
}

.animated-icon3 span {
  background: black;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Icon 3*/

.animated-icon2 span:nth-child(1) {
  top: 0px;
}

.animated-icon2 span:nth-child(2),
.animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

/* Icon 4 */

.animated-icon3 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 8px;
}

.animated-icon3.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 8px;
}
/*
         =======================================
                     CSS FOR HAMBURGER
         ======================================
  */

/*
       =======================================
                   CSS FOR MENU
       ======================================
*/

:root {
  --white: white;
  --black: #121212;
  --menuColor: #494c4f;
  --menuCH: #cccccc; /* menu color hovered */
  --lavander: #2c407b;
  --lightLavander: #5551b9;
  --menuHeight: 80px;
  --navGradient: linear-gradient(
    90deg,
    var(--lavander) 0%,
    var(--lightLavander) 100%
  );
  --transitionMenu: cubic-bezier(0.58, 0.3, 0.005, 1);
}

@media only screen and (max-width: 500px) {
  .site_ul a {
    margin-right: 25px !important;
  }
  .has_submenu {
    left: calc(100% - 50px) !important;
  }
}
.cssHB {
  display: none !important;
}
.cssMHC{
  display: none;
}

.cssLMU {
  display: none;
  cursor:pointer;
}
.cssLM {
    cursor:pointer;
  margin: 0px 16px;
  object-fit: contain;
}
@media only screen and (max-width: 1300px) {
  .cssHSLAH {
    /* css holder second logo and hamburger */
    display: flex;
    justify-content: space-between;
    background: var(--lavander);
    background: var(--navGradient);
  }
  /* hamburger adjustments start */
  .cssHB .hamburger-box .hamburger-inner,
  .cssHB .hamburger-box .hamburger-inner::before,
  .cssHB .hamburger-box .hamburger-inner::after {
    background-color: var(--white) !important;
  }

  .cssLMU {
    display: block;
    padding: 10px 20px;
  }
  .cssLM {
    display: none;
  }
  .flyout,
  .flyout-alt {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .flyout .flyout-content,
  .flyout-content2 li,
  .flyout-alt li,
  .flyout-alt .flyout-content2 {
    grid-column: 1/3;
  }
  .rotate90 {
    transform: rotate(90deg);
  }
  .cssMHC {
    display: block !important;
    padding: 0px 1rem;
    cursor: pointer;
    position: relative;
    left: -10px;
    transition-duration: 250ms;
    transition-timing-function: var(--transitionMenu);
  }
  .hamburger_button {
    background: rgba(0, 0, 0, 0);
    border: none;
  }
  .site_ul a {
    overflow-wrap: break-word;
    display: block;
  }
  .cssHB {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
    margin-right: 20px;
  }
  .menu {
    padding: 0px;
  }
  .menu_nav {
    transform-origin: center top;
    -o-transform-origin: center top;
    -ms-transform-origin: center top;
    -moz-transform-origin: center top;
    -webkit-transform-origin: center top;

    transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -webkit-transition-duration: 0.25s;

    transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    height: 0px;
  }
  .has_submenu {
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    text-align: center;
    width: 50px;
    position: absolute;
    top: 0px;
    left: calc(100% - 100px);
    transition-duration: 0.25s;
  }
  .has_sub_menu_rotation {
    transform-origin: center center;
    transition-duration: 0.25s;
    transform: rotate(90deg);
  }
  .site_ul {
    position: relative;
  }
  .site_ul * {
    list-style: none;
  }
  .site_ul li {
    background-color: var(--white);
  }

  .flyout,
  .flyout-alt,
  .flyout-alt-right {
    position: relative;
  }
  .cssAL {
    padding: 0.3rem 0.6rem;
  }
  .flyout-content,
  .flyout-content2,
  .flyout-content2-right {
    border-top: 2px solid var(--black);
    padding-left: 0px;
    transform-origin: center top;
    transition-duration: 0.25s;
    transform: scaleY(0);
    height: 0px;
    overflow: hidden;
    transition-property: scaleY;
  }
  .show_element {
    transform-origin: center top;
    transition-duration: 0.25s;
    transform: scaleY(1);
    transition-property: scaleY;
    height: auto;
    overflow:unset;
  }
}
@media only screen and (min-width: 1300px) {
  .has_submenu {
    display: none;
  }
  .hamburger_button * {
    display: none;
  }

  .menu_nav * {
    text-decoration: none !important;
    z-index: 100 !important;
  }
  .cssAL.d0 {
    color: var(--white);
    display: block;
    position: relative;
  }

  .cssAL.d0::after {
    /* css a link */
    content: "";
    display: block;
    position: absolute;
    background-color: var(--white);
    height: 1px;
    width: 100%;
    transform-origin: center bottom;
    transform: scaleX(0);
    transition-duration: 250ms;
    transition-timing-function: var(--transitionMenu);
  }

  .fly0:hover .cssAL.d0::after {
    /* css a link */
    transform: scaleX(1);
  }
  .flyout-content,
  .flyout-content2,
  .flyout-content2-right {
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 25%);
  }
  .menu_nav {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    background: var(--lavander);
    background: var(--navGradient);
  }
  .flyout-content li,
  .flyout-content {
    padding-left: 0px;
    margin-left: 0px;
  }
  .site_ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  /***        FLYOUT               ***/
  .flyout {
    position: relative;
  }
  .flyout-content {
    position: absolute;
    top: 100%;
    left: 0px;
    transition-duration: 250ms;
    transition-timing-function: var(--transitionMenu);
    height: 0px;
    opacity: 0;
  }
  .flyout:hover > .flyout-content {
    top: 100%;
    left: 0px;
    transition-duration: 0.25s;
    height: auto;
    opacity: 1;
  }
  .flyout-content2 {
    position: absolute;
    top: 0%;
    left: 100%;
    padding-left: 0px;
    transform-origin: left top;
    transition-duration: 0.25s;
    transform: scaleY(0);
  }
  .flyout-content2-right {
    position: absolute;
    top: 0%;
    left: -100%;
    padding-left: 0px;
    transform-origin: left top;
    transition-duration: 0.25s;
    transform: scaleY(0);
  }
  /***        FLYOUT             ***/
  /***        FLYOUT ALT              ***/
  .flyout-alt {
    position: relative;
  }
  .flyout-content .menu-item {
    --changeColor: var(--black);
  }
  .flyout-content .menu-item .cssAL {
    display: block;
    position: relative;
    padding: 10px 20px;
  }
  .flyout-content .menu-item:hover {
    --changeColor: var(--menuCH);
  }
  .cssAL {
    color: var(--changeColor);
    transition-duration: 250ms;
    transition-timing-function: var(--transitionMenu);
  }
  .flyout-alt:hover > .flyout-content2 {
    top: -1px;
    left: 100%;
    transform-origin: left top;
    transition-duration: 0.25s;
    transform: scaleX(1);
  }
  .flyout-alt:hover {
  }
  /***        FLYOUT ALT              ***/
  /***        FLYOUT ALT    RIGHT          ***/
  .flyout-alt-right {
    position: relative;
  }
  .flyout-alt-right:hover > .flyout-content2-right {
    top: 0px;
    left: -100%;
    transform-origin: left top;
    transition-duration: 0.25s;
    transform: scaleX(1);
  }

  /***        FLYOUT ALT   RIGHT           ***/
  .flyout-content li:first-child,
  .flyout-content2 li:first-child {
    margin-top: 0px;
  }
  /*  Design  */
  .site_ul {
    margin: 0px;
  }
  .flyout li {
    font-size: 0.7rem !important;
  }
  .site_ul > li {
    list-style-type: none;
    padding: 30px 5px;
    font-size: 0.8rem !important;
    margin: 0px 4px 0px 4px;
    overflow-wrap: break-word;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol";
  }
  .flyout-content.depth_0 li:first-child {
    border-top: 1px solid black;
  }
  .flyout-content > li,
  .flyout-content2 > li,
  .flyout-content2-right > li {
    list-style-type: none;
    background-color: white;
    width: 200px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol";
  }
  .flyout li {
  }
}
/*
         =======================================
                     CSS FOR MENU
         ======================================
  */
