html,
body {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

header {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header #burgerWrap {
  position: absolute;
  top: 4vw;
  left: 1.5vw;
  width: 8vw;
  height: 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  z-index: 3;
}

header #burgerWrap div {
  width: 8vw;
  height: 1.5vw;
  background-color: #204389;
}

header nav:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

header nav:nth-of-type(1) .logoWrap {
  width: 30vw;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

header nav:nth-of-type(1) .logoWrap a {
  width: 100%;
}

header nav:nth-of-type(1) .logoWrap a img {
  width: 100%;
}

header nav:nth-of-type(2) {
  display: none;
}

.mobileMenu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  display: none;
  z-index: 2;
}

.mobileMenu a {
  color: #204389;
  text-decoration: none;
  font-size: 8vw;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 4.5vw;
  margin-top: 2.5vw;
}

main {
  min-height: 100vh;
}

#languge-Banner {
  position: absolute;
  right: 2%;
  top: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

#languge-Banner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 2%;
  padding: 0.5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #204389;
  text-decoration: none;
}

#languge-Banner a span {
  font-size: 3vw;
  color: white;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 500;
}

#languge-Banner a img {
  width: 5vw;
  margin-right: 1vw;
}

@media only screen and (min-width: 1080px) {
  main {
    min-height: 100vh;
  }
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header nav:nth-of-type(1) .logoWrap {
    width: 12vw;
  }
  header nav:nth-of-type(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header nav:nth-of-type(2) a {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    text-transform: uppercase;
    font-size: 1.4vw;
    font-weight: 900;
    text-decoration: none;
    color: gray;
    margin-left: 1vw;
    margin-right: 1vw;
    -webkit-transition: color 1s;
    transition: color 1s;
  }
  header nav:nth-of-type(2) a:hover {
    color: #204389;
  }
  #languge-Banner {
    top: 0vw;
    left: 1%;
  }
  #languge-Banner a span {
    font-size: 1.2vw;
  }
  #languge-Banner a img {
    width: 1.2vw;
  }
  .mobileMenu,
  header #burgerWrap {
    display: none;
  }
}

/*@media only screen and(min-width:768px){
    header{
        border: 14px solid black;

    }
    main{
        min-height: 100vh;
       // border: 2px solid red;
    }
}
*/
/*# sourceMappingURL=nav.css.map */