div.container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

div.container a {
  color: #413c58;
  text-decoration: none;
  margin: 0px 6px;
  padding: 10px 10px;
  position: relative;
  z-index: 0;
  cursor: pointer;
  letter-spacing: 1px;

}
/*
div.pullUpDown a:before,
div.pullUpDown a:after {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0px;
  content: '';
  border-bottom:solid 2px #413c58;
  opacity: 0.2;
  transition: all 0.3s;
}

div.pullUpDown a:before {
 // top: 0px;
}

div.pullUpDown a:after {
  bottom: 0px;
}
*/
div.pullUpDown a:hover {
  height: 100%;
	border-bottom:solid 4px #e7efc5;
}

/* FOR NAVBAR ACTIVE LINK */
.active-nav,
a:before {
  border-bottom:solid 4px #413c58;
  position: relative;
  content: '';
  transition: all 0.3s;
  opacity: 0.7;
}

/* BURGER MENU SIDENAV */
.point-burger {
  color: #cdcdcd;
  text-decoration: none;
}

.active-burger,
.point-burger:hover {
  text-decoration: none;
  color: #413c58;

  transition: color 0.3s ease;
}

/* BURGER MENU ICON */
#menuToggle {
  /* 1 FROM relative TO absolute, IT AFFECTS THE MARGIN TOP LOGO */
  position: absolute;

  display: block;

  /* FIX TOP DUE TO LANGUAGE SWITCHER */
  top: 50px;
  left: 40px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/* Just a quick hamburger */
#menuToggle span {
  display: block;

  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* Transform all the slices of hamburger into a crossmark. */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/* But let's hide the middle one. */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/* last one should go the other direction */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/* Make this absolute positioned at the top left of the screen width - size of sidenav */
#menu {
  position: absolute;
  width: 220px;
  height: 120vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);

  background: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 17px;
}

#menu a {
  display: block;
}

/* And let's slide it in from the left */
#menuToggle input:checked ~ ul {
  transform: none;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 768px) {
  .hide-element {
    visibility: hidden;
  }
}
@media only screen and (min-device-width: 769px) and (max-device-width: 1920px) {
  .hide-burger-menu,
  .hide-language {
    visibility: hidden;
  }
}
