.header {
  position: fixed;
  width: 100%;
  margin: 0;
  top: 0;
  z-index: 999;
}

.header-logo {
  width: 15%;
  margin: 1% 1% 0;
  display: block;
  float: left;
}

.header-right {
  width: 30%;
  float: right;
  display: flex;
  margin: 0.5%;
  align-items: center;
  justify-content:flex-end;
}
.header-contact {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  margin-right: 5%;
  flex-basis: 50%;
  align-items: center;
  justify-content: center;
}

.header-contact img {
  width: 1vw;
  margin-right: 10%;
  align-self: center;
}

.header-contact-email {
  height: 0.7vw;
}

.header-contact-phone {
  height: 1.5vw;
}

.header-meniu {
  width: 4vw;
}

@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;
}

.collapsedMenu a {
  width: 100%;
  margin: 3% auto;
}

@media only screen and (max-width: 768px) {
  .header-logo {
    width: 30%;
  }
  .header-right {
    width: 40%;
    margin-top: 3%;
  }

  .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;
  }
}
