/* TOP-LEVEL MENU ITEM */
.header-link.active {
    color: #35A1CF;
    background: #35A1CF1A;
    padding: 20px !important;
}
a.header-link {
	padding:20px !important;
}
.header-link:hover{
    color: #35A1CF;
    background: #35A1CF1A;
    padding: 20px !important;
}
ul.solution-services {
    display: block !important;
    position: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
}
.solution-services a {
    background: transparent !important;
    width: 100% !important;
    border: none !important;
    color: #191815 !important;
    font-weight: 600;
}
.solution-services a:hover {
    background: #fff !important;
}
.mega-menu {
    display: none;
    position: absolute;
    top: 74%;
    right: 0px;
    left: 0px;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    /* z-index: 999; */
    /* display: flex; */
    box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.1);
    justify-content: center;
}
.mega-menu-wrapper {
  display: flex;
  gap: 30px;
}
.core-services {
    flex: 3;
    margin-left: 280px;
    padding: 30px;
}
.site-logo {
    z-index: 2;
}
.core-services h3 {
    color: #35A1CF;
    font-size: 16px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0 20px;
    text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}
.solution-services a:active {
    background: #fff !important;
}
.service-box2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
    padding: 20px;
}
.service-box2 img {
  width: 30px;
  height: auto;
}

.service-box2 h4 {
  font-size: 16px;
  margin: 6px 0 0;
  font-weight: 600;
}

.service-box2 p {
  font-size: 13px;
  color: #444;
}

/* Other Services */
.other-services {
  flex: 1;
  background: #e8f4fc;
  padding: 20px;
}

.other-services h3 {
    font-size: 16px;
    color: #35A1CF;
    margin-bottom: 16px;
    text-decoration: underline;
}

.other-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-services li {
  margin-bottom: 10px;
}

.other-services a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

li.has-mega-menu {
    position: inherit;
}
.mega-menu .dropdown-content {
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    gap: 30px;
    justify-content: center;
    margin: auto;
}

/* Show on hover */
.has-mega-menu:hover > .mega-menu,
.has-mega-menu.active > .mega-menu {
  display: block;
}


/* Show on click (via JS class toggle) */
.has-mega-menu.active > .mega-menu {
  display: block;
}
.dropdown-icon {
  margin-left: 6px;
  font-size: 10px;
  display: inline-block;
}
/* ROW and COLUMNS */
.mega-menu .header {
  width: 100%;
  margin-bottom: 20px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
  }

  .mega-menu .dropdown-content {
    flex-direction: column;
  }
}
