.header {
  position: fixed;
  width: 90%;
  margin: 2% 5%;
  top: 0;
  z-index: 999;
}

.header-logo {
  width: 8%;
  margin: 1% 5% 1% 1%;
  display: block;
  float: left;
}

.header-right {
  width: 30%;
  float: right;
  display: flex;
  margin: 2% 0.5%;
  justify-content: end;
}
.header-contact {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  margin-right: 5%;
  flex-basis: 50%;
  align-items: center;
  justify-content: center;
  color: #289548;
  fill: #289548;
}
.header-contact p {
  color: #289548;
  font-size: 1vw;
  margin-left: 2%;
}

.header-contact img {
  width: 1vw;
  margin-right: 10%;
  align-self: center;
}

.header-contact-phone {
  height: 1.5vw;
}

.header-meniu {
  width: 4vw;
}

.menu-item {
  text-align: center;

  margin: 2%;
}

svg {
  width: 2vw;
  height: 2vw;
}
.menu-item a {
  text-decoration: none;
  color: #333;
}

.menu-item a p {
  font-size: 1vw;
}
.menu-item-footer a {
  color: #fff;
  fill: #fff;
}

.emphasized {
  background-color: #289548;
  margin: 0;
  padding: 2%;
}

.emphasized a {
  color: #fff;
  fill: #fff;
}

@keyframes slidein {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

#navMenu {
  position: fixed;
  z-index: 1001;
  padding: 5%;
  text-align: center;
  margin-top: 5%;
  width: 50%;
  margin-left: 50%;
  overflow: scroll;
  height: 90vh;
  animation-name: slidein;
  animation-duration: 1s;
}

.menu-container {
  width: 55%;
  justify-content: space-between;
}
.collapsedMenu a {
  width: 100%;
  margin: 3% auto;
}

@media only screen and (max-width: 768px) {
  .header-logo {
    height:70%;
    width:auto;
  }
  .header {
    height: 12%;
  }
  .header-right {
    width: 40%;
    height: 100%;
    margin-left: 20%;
    padding: 0;
    margin-top: 0;
  }

  svg {
    width: 2rem;
    height: 2rem;
  }

  .emphasizedm {
    background-color: #289548;
    margin: 0;
    padding: 2%;
    color: #fff !important;
    fill: #fff !important;
  }

  .header-contact img {
    width: 5vw;
  }
  .header-contact-email {
    height: 3.5vw;
  }
  .header-contact-phone {
    height: 8vw;
  }
  .header-meniu {
    width: 15vw;
  }
  .header-contact-text {
    display: none;
  }

  #navMenu {
    width: 100%;
    margin-left: 0;
  }
}
