/* RESET ----------------------------------*/
#be-portal * {
  margin: 0;
  padding: 0;
}

/* Remove all text-decoration by default */
#be-portal * {
  text-decoration: none !important;
}

/* Restore underline for SEO link text */
#be-portal .linktext {
  text-decoration: underline !important;
}

/*HEADER ----------------------------------*/

#be-portal .header {
  /* CENTER THE HEADER LOGO */
  text-align: center;

  background-color: #ffffff;
  padding: 10px;
}

/*HERO ----------------------------------*/

#be-portal .hero {
}

/* INTRO ----------------------------------*/
#be-portal .intro {
  background-color: #f5f7fa;
}

/* Text */
#be-portal .intro {
  padding: 25px;
}

@media (min-width: 768px) {
  #be-portal .intro {
    padding: 50px;
  }
}

@media (min-width: 1200px) {
  #be-portal .intro {
    padding-left: 150px;
    padding-right: 150px;
  }
}

/* CARD ----------------------------------*/

#be-portal .left-card {
  background-color: #f5f7fa;
  padding: 20px;
}

@media (min-width: 1200px) {
  #be-portal .left-card {
    padding: 20px;
    padding-left: 50px;
  }
}

#be-portal .right-card {
  background-color: #f5f7fa;
  padding: 20px;
}

@media (min-width: 1200px) {
  #be-portal .right-card {
    padding: 20px;
    padding-right: 50px;
  }
}

#be-portal .middle-card {
  background-color: #f5f7fa;
  padding: 20px;
}

@media (min-width: 1200px) {
  #be-portal .middle-card {
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* Link text */
#be-portal .linktext {
  color: #0d77fe;
  font-weight: 500;
  text-decoration: underline !important;
}

/* CARD IMAGE ----------------------------------*/

#be-portal .card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}

/* CLICKABLE CARD ----------------------------------*/

#be-portal .clickable-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

#be-portal .clickable-card:hover {
  opacity: 0.8;
  transition: 0.25s ease;
}

/* GENERAL ----------------------------------*/

/* Buttons */
#be-portal .button-1 {
  text-decoration: none;
  display: inline-block;

  padding: 10px 20px;
  margin-top: 25px;

  background-color: #0d77fe;
  color: #ffffff;
}

#be-portal .button-1:hover {
  transition: 0.25s ease;
  transform: translateY(-2px);

  color: #ffffff;
  background-color: #084ea8;
}

#be-portal .button-2 {
  text-decoration: none;
  display: inline-block;

  padding: 10px 20px;
  margin-top: 25px;

  background-color: #282828;
  color: #ffffff;
}

#be-portal .button-2:hover {
  transition: 0.25s ease;
  transform: translateY(-2px);

  color: #ffffff;
  background-color: #3d3d3d;
}

/* Text */
#be-portal .text {
  padding: 50px;
  background-color: white;
  border: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
  #be-portal .text {
    padding: 50px;
  }
}

@media (min-width: 1200px) {
  #be-portal .text {
    padding: 75px;
  }
}

/* MENU SETTINGS */

#be-portal .navBar,
#be-portal .navBar .navItem,
#be-portal .navBar .navItem .navDropdownButton {
  background-color: #0d77fe;
  color: white;
  font-size: 16px;
}

#be-portal .navBar .navItem:hover,
#be-portal .navBar .navItem:hover .navDropdownButton,
#be-portal .navBar .navActive .navDropdownButton {
  background-color: #084ea8;
  color: white;
}

#be-portal .navBar .navDropdownContent a {
  background-color: white;
  color: #7d7d7d;
}

#be-portal .navBar .navDropdownContent a:hover {
  background-color: #0d77fe;
  color: white;
}

@media screen and (min-width: 767px) {
  #be-portal .navBar .navCurrentPage {
    background-color: #282828;
    pointer-events: none;
  }
}

@media screen and (min-width: 767px) and (max-width: 1300px) {
  #be-portal .navBar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 54px;
    grid-gap: 2px;
    background-color: #e9e9e9;
    border-top: 2px solid #e9e9e9;
    border-bottom: 2px solid #e9e9e9;
  }
}

@media screen and (min-width: 1300px) {
  #be-portal .navBar {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 54px;
    grid-gap: 2px;
    background-color: #e9e9e9;
    border-top: 2px solid #e9e9e9;
    border-bottom: 2px solid #e9e9e9;
  }

  #be-portal .navBar .navDropdownContent a {
    min-width: 184px;
  }
}

/* ALGEMENE MENU CSS */

#be-portal .navBar {
  overflow: hidden;
}

#be-portal .navBar .navItem {
  float: left;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

#be-portal .navBar .navItem:hover {
  transition: background-color 0.3s;
}

#be-portal .navBar .navDropdownButton {
  border: none;
  outline: none;
  color: #7d7d7d;
  background-color: inherit;
  font-family: inherit;
  width: 100%;
  transition: background-color 0.3s;
}

#be-portal .navBar .navDropdownContent {
  display: none;
  position: absolute;
  background-color: #f89828;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

#be-portal .navBar .navDropdownContent a {
  float: none;
  padding: 15px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: background-color 0.3s;
}

#be-portal .navBar .navIcon {
  display: none;
}

#be-portal .navBar .navDropdown.navActive .navDropdownContent {
  display: block;
}

@media screen and (max-width: 767px) {
  #be-portal .navBar .navItem:not(:first-child):not(:last-child),
  #be-portal .navBar .navDropdownButton {
    display: none;
  }

  #be-portal .navBar .navItem {
    padding: 15px;
  }

  #be-portal .navBar.navMenuOpen {
    position: relative;
  }

  #be-portal .navBar .navIcon {
    float: right;
    display: block;
  }

  #be-portal .navBar.navMenuOpen .navIcon {
    position: absolute;
    right: 0;
    top: 0;
  }

  #be-portal .navBar.navMenuOpen .navItem,
  #be-portal .navBar.navMenuOpen .navDropdownButton {
    float: none;
    display: block !important;
    text-align: left;
  }

  #be-portal .navBar.navMenuOpen .navDropdown {
    float: none;
  }

  #be-portal .navBar.navMenuOpen .navDropdownButton {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
  }

  #be-portal .navBar.navMenuOpen .navDropdownContent {
    position: relative;
    margin-top: 15px;
  }
}

@media screen and (min-width: 767px) {
  #be-portal .navBar a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #be-portal .navBar .navDropdown a {
    justify-content: start;
  }

  #be-portal .navBar .navDropdownButton {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  #be-portal .navBar .navIcon {
    display: none !important;
  }

  #be-portal .navBar .navDropdownContent a {
    padding: 15px !important;
  }
}
