@media (max-width: 781px) {
  .bsawf-menu {
    display: none;
  }
}

.bsawf-menu {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: calc(100vh - 115px);
  background-color: #fff;
  z-index: 9999999;
}

/* NAVBAR */
.bsawf-menu__nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 2vw;
  background: rgba(0, 84, 58, 0.1);
  margin: 0 !important;
  padding: 0 50px 0 50px;
  justify-content: space-around;
}

.bsawf-menu__nav-item {
  font-family: ballinger, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  color: #005335;
  width: auto;
  padding-left: 1vw;
  height: 50px;
  padding-top: 10px;
  padding-left: 1vw;
  padding-right: 1vw;
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  text-align: center;
}

.bsawf-menu__nav-item:hover {
  background-color: #005335;
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  color: white;
  cursor: pointer;
  font-weight: 600;
}

.bsawf-menu__nav-item:hover svg {
  fill: white;
}

.bsawf-menu__nav-item[data-item-active='true'] {
  background-color: #005335;
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  color: white;
  cursor: pointer;
  font-weight: 600;
}

.bsawf-menu__nav-item svg {
  fill: darkgreen;
  margin-left: 0;
  pointer-events: none;
}

/* DISPLAY */
.bsawf-menu__display {
  display: flex;
  flex-direction: row;
}

/* SECTION */
.bsawf-menu__section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  column-gap: 1.8vw;
  width: 100vw;
  height: calc(100vh - 17vw);
  flex-shrink: 0;
  padding: 1.5vw 50px;
  justify-content: center;
}

/* COLUMN */

.bsawf-menu__column {
  display: flex;
  flex-direction: column;
  width: 15%;
}

.bsawf-menu__column-header {
  position: relative;
  width: 100%;
  height: 7vw;
}

.bsawf-menu__column-image {
  height: 7vw;
  width: 100%;
  object-fit: cover;
}

.bsawf-menu_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 45%;
  transform: translate(-50%, -50%);
  background-color: rgb(3 42 30 / 80%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  mix-blend-mode: hard-light;
}

.bsawf-menu__column-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 0 10px;
  /*
  background-color: rgba(0, 84, 58, 0.6);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  mix-blend-mode: hard-light;
  height: 7vw;
  display: flex;
  */
  justify-content: center;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.2px;
}

/* LINK */

.bsawf-menu__column-list {
  list-style: none;
  margin: 0 !important;
  padding: 10px 0;
}

.bsawf-menu__column-item {
  border-bottom: 1px solid #e7e7e7;
  padding: 0.5vw 0;
}

.bsawf-menu__column-list
  .bsawf-menu__column-item:hover
  .bsawf-menu__column-item-link {
  color: #005335;
}

/* .bsawf-menu__column-item:hover {
  background-color: #005335;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  cursor: pointer;
} */

.bsawf-menu__column-item:hover .bsawf-menu__column-item-link {
  color: white;
}

.bsawf-menu__column-item-link {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #1d1d1b;
  text-decoration: none !important;
  line-height: normal;
}

.bsawf-menu__column-list .bsawf-menu__column-item-link:hover {
  font-weight: 600;
}

.bsawf-menu__column-item-icon {
  height: 18px;
  margin-right: 5px;
  margin-bottom: 3px;
}

.bsawf-menu__section-close-button {
  position: absolute;
  width: fit-content;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  color: black;
}

.bsawf-menu__section-close-button div {
  color: darkgreen;
}

/* 
.bsawf-menu__section-close-button:hover {
  background-color: darkgreen;
  color: white;
}

.bsawf-menu__section-close-button:hover div {
  color: white;
} */

/* Utils */

li[data-item-active='true'] {
  background-color: #005335;
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  color: white;
}

@media (max-height:700px) and (min-width:1200px){
  .bsawf-menu{
    top: 95px;
    height: calc(100vh - 95px);
  }

  .bsawf-menu__section-close-button{
    right: -95px;
  }
}

@media (min-width: 781px) and (max-width: 1200px) {
  .bsawf-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }

  .bsawf-menu__nav {
    padding: 0 30px;
  }

  .bsawf-menu__section {
    padding: 1.5vw 30px;
  }

  .bsawf-menu__column-header,
  .bsawf-menu__column-image {
    height: 100px;
  }

  .bsawf-menu__column {
    width: 100%;
  }

  .bsawf-menu__section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: calc(100vh - 200px);
    overflow-y: scroll;
  }
}
