/*
 * @Description:
 * @Author: Ahmed Mahmoud Hamdy
 * @Date: 2021-08-15 18:35:55
 * @LastEditTime: 2021-08-15 18:35:55
 * @LastEditors: Ahmed Mahmoud Hamdy
 */
html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

header {
  background-color: orange;
  width: 100%;
}

header .logo {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 22vh;
  background-color: white;
}

header .logo img {
  height: 100%;
}

header .logo button {
  display: none;
}

header nav {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #c13f32;
  position: relative;
  /*button{
            display: none;
        }*/
}

header nav a {
  text-decoration: none;
  margin-left: 1vw;
  margin-right: 1vw;
  padding: 0.5vw;
  font-weight: 600;
  color: white;
  font-family: "Cairo", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav a:hover {
  color: #f59436;
  background-color: white;
}

header nav a span {
  font-size: 1.2vw;
}

header nav a span:nth-of-type(1) {
  font-size: 1.5vw;
}

.menuMobile {
  display: none;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f59436;
}

footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  margin-top: 1vw;
  width: 100%;
}

footer .row a {
  font-size: 2.5vw;
  text-decoration: none;
  margin-left: 0.5vw;
  margin-right: 0.5vw;
  margin-top: 1.2vw;
}

footer .row a span {
  color: white;
}

footer .row:nth-of-type(2) {
  font-size: 1.8vw;
  text-transform: uppercase;
  font-family: "Cairo", sans-serif;
}

@media only screen and (max-width: 980px) {
  header .logo > button {
    position: absolute;
    right: 0;
    font-size: 5vw;
    margin-top: 5vw;
    background-color: transparent;
    margin-right: 2vw;
    border: 2px solid #f59436;
    color: #f59436;
    outline: unset;
    cursor: pointer;
    display: unset;
  }
  header nav a {
    display: none;
  }
  main .menuMobile {
    position: fixed;
    background-color: #f59436;
    top: 0;
    z-index: 10;
    height: 100vh;
    width: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
  }
  main .menuMobile .closeWraper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 1vw;
  }
  main .menuMobile .closeWraper button {
    margin-left: 1vw;
    font-size: 5vw;
    color: black;
    border: unset;
    background-color: transparent;
    cursor: pointer;
    opacity: 0;
  }
  main .menuMobile a {
    text-decoration: none;
    padding: 2vw;
    font-size: 5vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fafafa;
    opacity: 0;
  }
  main .menuMobile a span:nth-of-type(2) {
    margin-right: 2vw;
  }
}
/*# sourceMappingURL=navfooter.css.map */