/* Hide standart UL */
li.sf-depth-1.mega-enabled > ul.mega-hidden-ul {
  display: none !important;
  visibility: hidden !important;
}

/*  DropDown */
.mega-dropdown {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: #37155C;
  padding: 60px 0px !important;
  z-index: 9999;
  box-sizing: border-box !important;
}

.mega-dropdown__inner {
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-sizing: border-box !important;
}


/* Card */
.mega-item {
  display: block;
  max-width: 260px;

  text-decoration: none !important;
  border-radius: 6px;
}

/* Hover */
.mega-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* TITLE WRAP */
.mega-item__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* TITLE */
.mega-item__title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px !important; /* padding between title and line*/
}

/* LINE */
.mega-item__line {
  width: 128px;
  height: 6px;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  background-image: url('../../images/title_underline.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* DESCRIPTION */
.mega-item__desc {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .mega-dropdown__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
  }

  .mega-item {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .mega-dropdown {
    position: static;
    padding: 20px;
  }

  .mega-dropdown__inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .mega-item__desc {
    display: none;
  }
}