.menu-bar {
  background-color: white;
  padding: 1em;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0px;
  text-align: left;
  flex-direction: row !important;
  width: 100%;
  display: flex;
}

.logo-menu {
  margin: auto auto auto 0;
}

.logo-menu-link {
  height: 100%;
  max-height: 45px;
  width: 223px;
  margin-right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  content: '';
  background: url("../src/mtp_impact.png");
  margin-left: 2%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.menu-bar.clearfix::after {
  display: none;
}

#menu-items-wrapper {
  display: flex;
  justify-content: space-around;
  width: 66%;
}

/* todo: add for until 1200px : make width of navbar : 90% */
#CollapsingNavbar ul {
  gap : 0rem;
}

.menu-link {
  padding-left: 0.5em!important;
  padding-right: 0.5em!important;
}

.dropdown-item.menu-link {
  padding-left: 2em!important;
  padding-right: 2em!important;
}

.nav-link.menu-item-label {
  color: var(--pes-blue-menu);
}

.menu-link:hover {
  color: var(--pes-light-blue);
}

.nav-link:hover {
  color: var(--pes-light-blue) !important;
}

.nav-link:after {
  display: none
}

.nav-link.dropdown-toggle::after {
  display: none;
}

.menu-chevron {
  color: var(--pes-light-blue);
  font-size: small;
}

.show + .menu-chevron {
  rotate: 180deg;
}

.menu-btn-link {
  background-color: var(--pes-green);
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 156px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0px;
  color: var(--pes-blue-dark);
  transition: background-color 0.3s, color 0.3s;
}

.menu-btn-link:hover {
  color: white !important;
  background-color: #B30073;
  text-decoration: white underline;
}

.menu-sidebar-link {
  color: var(--pes-blue-dark);
  border: transparent 0;
}

.menu-burger-container {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-top: 25%;
}
.menu-burger-icon {
  font-size: 30px;
}

/* Manage Main-menu responsive between 993 and 1750 : make the menu doesnt jump on next line */
@media screen and (min-width: 992px) and (max-width: 1750px) {
  #CollapsingNavbar ul {
    gap : 0rem;
  }

  /* making the image smaller */
  .menu-bar::before {
    width: 20%;
    margin-right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: center;
  }

  .menu-link {
    padding-left: 0.3em!important;
    padding-right: 0.3em!important;
  }
}

@media screen and (max-width: 1300px) {
  .logo-menu-link {
    max-height: 40px;
    width: 200px;
  }
  #menu-items-wrapper {
    width: 68%;
  }
}

@media screen and (max-width: 1075px) {
  #menu-items-wrapper {
    width: 75%;
  }
  .logo-menu-link {
    width: 165px;
    height: 35px;
  }
}

@media screen and (max-width: 992px) {

  #CollapsingNavbar ul {
    gap: 0rem;
  }
}

@media screen and (max-width: 600px) {
  .header-burger-menu {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .header-burger-menu {
    width: 90%;
  }

  .menu-bar {
    width: 80%;
  }
}

/* overwrite the drop down icon */
.dropdown-toggle::after {
  margin-top : 0.7rem;
}
