/*
*
*
* Navigation
*
* * * * * * * * * * * */


header {
    width: 100%;
    position: fixed;
    z-index: 999;
}

header .nav-container {
    width: calc(100% - 60px);
    padding: 30px 30px;
    margin: auto;
    max-width: 1260px;
    text-align: center;
}

nav {
  margin-top: 0;
  transition: all 0.2s ease 0s;
  float: left;
}

.hide {
  margin-top: -53px;
  transition: all 0.5s ease 0s;
}


#logo {
    float: right;
    margin-top: -5px;
}

#logo img {
    width: 40px;
    height: auto;
}

nav #menu_wrapper {
    display: inline-block;
    height: 53px;
    margin: 38px auto 0 auto;
}

nav ul {
  margin-left: 1px;
}

nav ul li {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-right: 35px;
}

nav ul li a {
  font-family: FoundersGrotesk-Medium;
  font-size: 20px;
  position: relative;
  color: #000000;
  text-decoration: none;
}

#icon_menu {
  display: none;
  width: 35px;
  margin-top: 2px;
  height: auto;
  cursor: pointer;
  float: left;
}

#icon_menu_close {
    display: none;
    width: 30px;
    height: auto;
    margin: 30px 0 50px 35px;
    cursor: pointer;
}

.body_fixed {
  overflow: hidden;
  position: fixed;
}


/* Animated underline */

  ul#main-menu-list li a {
    position: relative;
    text-decoration: none;
    line-height: 1;
    text-shadow: 0px 0px 8px rgba(255,255,255,0.5);
  }

  ul#main-menu-list li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -1px;
    left: 0;
    background-color: #333;
    
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
        transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

  ul#main-menu-list li a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
        transform: scaleX(1);
  }




footer .container {
  padding: 80px 30px 40px 30px;
  width: calc(100% - 60px);
  max-width: 1300px;
}

footer p {
  font-size: 15px;
}

footer .container > div {
  font-family: FoundersGrotesk-Light;
  width: 20%;
  text-align: left;
}

footer .container .description {
  font-family: FoundersGrotesk-Regular;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

footer a {
    color: inherit;
    text-decoration: none;
  }







/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* * * * * * * * * * * MEDIA QUERIES * * * * * * * * * * * 
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * */





/*Check if smaller than 1024 OR if its a touch device*/

@media only screen and (max-width: 1024px), (hover: none) {



  

#icon_menu, #icon_menu_close {
  display: block;
  cursor: pointer;
}



/* Sliding Side Nav */

nav {
  height: 100%;
  width: calc(100% - 80px);
  position: fixed; 
  z-index: 99999; 
  top: 0;
  left: -100%;
  background-color: #000; 
  overflow-x: hidden;  
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

  body {
    -webkit-transition: margin-left .5s;
    -o-transition: margin-left .5s;
    transition: margin-left .5s;
  }

  main {
    -webkit-transition: margin-left .5s;
    -o-transition: margin-left .5s;
    transition: margin-left .5s;
  }


  /* Main Menu */

  nav #menu_wrapper {
      display: block;
      height: 100%;
      margin: 100px 5% 0 5%!important
  }

  nav #menu_wrapper.open {
    right: 0;
  }

  ul#main-menu-list{
    background-color: black;
    width: 100%;
    margin-top: 80px;
    padding: 0 0 80px 30px;
  }

  ul#main-menu-list > li{
    display: block;
    margin-bottom: 0;
    padding: 0;
    text-align: left;
  }

  ul#main-menu-list > li a {
    display: inline-block;
    color: #fff;
    font-size: 40px;
    margin: 0;
    padding: 10px 10px 10px 0;
    text-shadow: none;
  }



ul#main-menu-list li a:before {
  display: none;
}

  footer .container {
    flex-direction: column;
  }

  footer .container > div,
  footer .container .description {
    width: 100%;
    margin: 0 0 20px 0;
  }


}



/* Lap top */
@media screen and (max-width: 1400px), screen and (max-height: 900px) {


  header .nav-container {
    max-width: 1060px;
  }

  


}



/* iphone 12 */
/*  @media (max-width: 390px){ */
  @media (max-width: 500px){ 


    ul#main-menu-list li a:hover:before {
    display: none;
  }


  #logo {
    float: right;
    margin-top: -6px;
    margin-right: -7px;
}

  footer p {
      font-size: 13px;
  }

}




