/* @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap'); */
*{
  padding: 0;
  margin: 0;
	list-style: none;
  text-decoration: none;
}

:root{
	--headline: 'Abril Fatface', cursive;
	--body-font: 'Roboto', sans-serif;
	--body-font-color: #484848;
  --dark: #547174;
  --orange: #f1ae2b;
  --button: #fce29b;
	--light:  #f4f3de;
}
body{
  font-family: 'Open Sans', sans-serif;
}
nav{
  position: relative;
  width: 100%;
  height: 80px;
  background: #2c3e50;
  position: fixed;
  margin-top: 0;
  z-index: 100;
  box-shadow: 0px 3px 5px 0px rgb(0, 0, 0);
  z-index: 1000;

}

.open-btn, .close-btn {
  display: none;
}
nav img{
	position: absolute;
	width: 150px;
	top: 17px;
	left: 12%;
}
nav ul{
  float: right;
  margin-right: 25px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 15px;
}
nav ul li a{
  position: relative;
  padding: 5px 0;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}
nav ul li a:before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
	background: #f1ae29;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s linear;
}
nav ul li a:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 1118px){
  nav img{
    left: 8%;
  }
}
@media (max-width: 944px){
  nav img{
    width: 130px;
		top: 20px;
		left: 6%;
  }
	nav ul li a{
		font-size: 17px;
	}
}
@media (max-width: 860px){
  label #btn{
    display: block;
  }
  ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #34495e;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    opacity: 95%;
  }

  .nav-list-open {
    left: 0;
  }

  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
  }

  .open-btn, .close-btn {
    position: absolute;
    display: block;
    right: 10px;
    top: 13px;
    padding: 1px 14px;
    font-size: 2rem;
    background: transparent;
    outline: transparent;
    color: var(--orange);
    cursor: pointer;
  }

  .close-btn {
    display: none;
  }
}
