.shadow-1 {
  box-shadow: 2px 2px 2px #0a3a65;
}
.shadow-2 {
  box-shadow: 4px 4px 16px #434d56;
}
.shadow-3 {
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.shadow-4 {
  box-shadow: 0 24px 28px -12px black;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
.mega-menu-section {
  position: absolute;
  top: 68px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  font-family: "Inter";
  font-weight: normal;
  padding: 20px 10px;
  min-height: 160px;
  background-color: #fffdf8;
  box-shadow: 0 7px 7px -4px rgba(43, 43, 43, 0.4);
  width: 100vw;
  z-index: 999;
  border-top: 1px solid #f4f4f4;
}
.mega-menu-section:hover {
  color: #333333;
}
.mega-menu-column {
  display: flex;
  flex-direction: row;
}
.mega-menu-item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 50px;
}
.mega-menu-item-list a:hover {
  font-weight: bold;
  color: #004C3B;
}
.mega-menu-first-col {
  border-left: none;
  padding-left: 0;
}
.mega-menu-item {
  display: flex;
  flex-direction: row;
}
.mega-menu-item:hover {
  font-weight: bold;
  color: #004C3B;
}
.mega-menu-item-name-selected {
  font-weight: bold;
  color: #004C3B;
}
.mega-menu-item-name-unselected {
  font-weight: normal;
  color: #333333;
}
.fa-caret-down {
  margin-left: 5px;
  cursor: pointer;
}
.close-mega-menu {
  color: #333333;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 0.7em;
}
@media only screen and (max-width: 950px) {
  .mega-menu-column {
    flex-direction: column;
  }
  .mega-menu-section {
    background-color: #fcf3df;
    padding-left: 10px;
    top: 134px;
    opacity: 0.97;
    border-top: 1px solid #807060;
  }
  .mega-menu-item-list {
    padding-left: 20px;
  }
}
