.body {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
}

.body {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: normal;
}

.body {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: italic;
}

.body {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: italic;
}


/* Main Navigation Item */
.mega-menu-item {
    position: relative;
}

.mega-menu-link {
    display: block;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mega-menu-link:hover {
    background: #083a5b;
    color: #fff;
}

/* Dropdown Menu */
.mega-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0e5580;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: none;
    width: 300px;
    padding: 10px;
    z-index: 999;
}

/* Show Dropdown on Hover */
.mega-menu-item:hover .mega-sub-menu {
    display: block;
}

.mega-sub-menu a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    margin-top: -35px ;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mega-sub-menu a:hover {
    background: #083a5b;
    color: #fff;
    border-radius: 3px;
}


