.teech-mega-menu-desktop > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.teech-mega-menu-desktop .teech-mega-menu > li  {
  padding: 25px;
}

.teech-mega-menu-desktop .teech-mega-menu {
  display: flex;
  align-items: center;
}

/**********************************************
Menu Item Underline Animation
**********************************************/
.teech-mega-menu-desktop .teech-mega-menu > .menu-item > a  {
  display: inline-block;
  position: relative;
}

.teech-mega-menu-desktop .teech-mega-menu > .menu-item > a::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: #DF9E3D;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.teech-mega-menu-desktop .teech-mega-menu > .menu-item > .teech-mega-menu-underline::after {
  width: 100%; 
  left: 0; 
} 

/**********************************************
Dropdown mega menu (sub-menu)
**********************************************/
.teech-mega-menu-desktop .teech-mega-sub-menu-container {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  display: none;
  background-color: white;
}

.teech-mega-menu-desktop .teech-mega-sub-menu-container > .container > .sub-menu {
  display: grid;
  grid-template: auto / repeat(4, 1fr);
  gap: 20px;  
  padding-top: 30px;
  padding-bottom: 30px;
}

/* hide sub-menu column (Level2) */
.teech-mega-menu-desktop .teech-mega-sub-menu-container > .container > .sub-menu > li > a {
  display: none;
}

/* sub-menu column (Level3) */
.teech-mega-menu-desktop .teech-mega-sub-menu-container > .container > .sub-menu > li > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.teech-mega-menu-desktop .teech-mega-menu .sub-menu a {
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
}

.teech-mega-menu-desktop .teech-mega-menu .sub-menu a:hover {
  background-color: #f1f1f1;
} 

.teech-mega-menu-desktop .teech-mega-sub-menu-title {
  font-weight: bold;
  color: #DF9E3D;
  font-size: 0.9rem;
  padding: 5px ;
  padding-left: 10px;
  padding-right: 10px;
}

.teech-mega-menu-desktop .teech-mega-sub-menu-block {
  visibility: hidden;
}

.teech-mega-menu-desktop .teech-mega-sub-menu-description {
  display: inline-block;
  font-size: 0.8rem;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 1200px) {
  .teech-mega-menu-desktop .teech-mega-sub-menu-description {
    font-size: 0.6rem;
  }
}
