/* Updated Mega Menu Styles (based on screenshot layout) */
.mega-menu {
  margin: 10px 0;
  position: absolute;
  top: 0;
  max-width: 1340px;
  width: 1340px;
  background: #fff;
  border-radius: 4px;
  padding: 24px 24px 0 24px;
  display: block;
  z-index: 999;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.08);
}

.tools__column[data-v-79a33521] {
  flex-grow: 1;
  max-width: 268px;
  flex-direction: column;
}

.tools__title[data-v-79a33521] {
  white-space: nowrap;
  padding: 10px 30px 10px 10px;
  font-size: 16px;
  border-right: 1px solid #e8ebf1;
  font-weight: 600;
}

.tools__list[data-v-79a33521] {
  border-right: 1px solid #e8ebf1;
  flex-grow: 1;
  padding: 0 !important;
}

.tools__list ul[data-v-79a33521] {
  list-style: none;
  padding: 0 !important;
}

li,
p {
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.tools__list ul li[data-v-79a33521] {
  margin-bottom: 0;
  padding: 0;
}

.tools__list ul li a[data-v-79a33521] {
  width: 100%;
  display: inline-block;
  color: #000;
  padding: 10px 20px;
  cursor: pointer;
  background-color: transparent;
  font-size: 16px;
}

.tools__list ul li a[data-v-79a33521]:hover {
  color: #fff;
  background-color: var(--primary);
}

.tools__title svg[data-v-79a33521] {
  position: relative;
  margin-right: 5px;
}

.mega-menu-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
}

.mega-column {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid #eee;
}

.mega-column:last-child {
  border-right: none;
}

.mega-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #282f3a;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;

}

.mega-column a {
  width: 100%;
  display: inline-block;
  color: #000;
  padding: 10px 20px;
  cursor: pointer;
  background-color: transparent;
  font-size: 16px;
}

.mega-column a:hover {
  background-color: #FF5757;
  color: #fff;
}

.logo {
  width: 200px;
  height: auto;
}

.logo img {
  width: 100%;
  height: auto;
}

.header-modal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.modal_content {
  padding: 0 0 20px 0;
}

.modalMenu1 {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modalMenu1.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.visible-in-web__navigation {
  box-shadow: 0 3px 24px rgba(0, 0, 0, .08);
}

.active {
  color: #FF5757 !important;
}


/* MobileMenu */
.nested-links__content.active[data-v-244e7091] {
  height: auto;
}

.nested-links__parent__icon.active[data-v-244e7091] {
  transform: scaleY(-1) scale(1, 0.5);
  transition: .3s ease-in-out all;
}

/* Mobile Header CSS */
.mobile-header {
  display: none;
}

@media screen and (max-width: 991px) {
  .mobile-header {
    display: block;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 999;
  }

  .mobile-header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .mobile-header__nav .Logo img {
    max-width: 100%;
    height: auto;
    width: 220px;
  }

  .Logo img {
    max-width: 50%;
    height: auto;
  }

  .button-burger-menu {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 10001;
  }

  .button-burger-menu.is-open {
    height: 24px;
  }

  .nested-links ul[data-v-244e7091] {
    padding: 0;
  }

  .button-burger-menu div {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000;
    left: 0;
    transition: all 0.3s ease;
  }

  .line-top {
    top: 0;
  }

  .line-middle {
    top: 50%;
    transform: translateY(-50%);
  }

  .line-bottom {
    bottom: 0;
  }

  .button-burger-menu.is-open .line-top {
    transform: rotate(45deg);
    top: 10px;
  }

  .button-burger-menu.is-open .line-middle {
    opacity: 0;
  }

  .button-burger-menu.is-open .line-bottom {
    transform: rotate(-45deg);
    bottom: 10px;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .mobile-drawer.open {
    left: 0;
  }

  .mobile-drawer__header {
    padding: 20px;
    text-align: center;
  }

  .mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 50px 0;
  }

  .menu-item {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
  }

  .menu-item a,
  .menu-item span {
    color: #282f3a;
    text-decoration: none;
    display: block;
    font-size: 30px;
  }

  .submenu {
    padding-left: 20px;
    display: none;
  }

  .menu-item.open .submenu {
    display: block;
  }

}