/*** Mixins & Default Styles ***/
* {
     box-sizing: border-box;
  margin: 0;
  padding: 0;

}

::-webkit-scrollbar {
  display: none;
}


/*** Header Styles ***/
header {
  width: 100vw;
  display: flex;
  z-index: 500;
  background: white;
  position: fixed;
  top: 0;
}

/*** Navigation Styles ***/
nav {
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 501;
  transition: all 0.3s;
  border-bottom: 1px solid #fec221;
}
nav.navShadow {
     box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.08);

}

#menu  {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

#menu a {
     padding: 1.5em 0.5em;
}

#menu h3 {
     margin: 0;
}

#menu a:hover {
     text-decoration: none;

}


/*** Section Styles ***/
section {

  width: 100vw;
  display: flex;
  justify-content: center;
}

section div {
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     width: 45%;
}


/*** Responsive Menu For Smaller Device ***/

@media screen and (max-width: 767px) {
     #menu h3 {
          font-size: 18px;
     }

     section div {
          width: 70%;
     }
}

@media screen and (max-width: 600px) {
     #menu  {
       margin: 1em 3em;
     }
     #menu a {
          padding: 0.1em 0.5em;
     }
}

@media screen and (max-width: 500px) {
     #menu  {
       margin: 1em 2em;
     }
     section div {
         width: 90%;
     }
}

@media screen and (max-width: 400px) {
    #menu  {
        margin: 0.7em 0.5em;
    }
}
