body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
}

main {
  padding: 60px 15px;
  text-align: center;
  max-width: 100%;
}

h1 {
  font-size: 2.5em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 10px;
}

@media screen and (min-width: 600px) {
  h1 {
    font-size: 3em;
  }
}
h2 {
  margin: 0 0 20px;
  font-size: 50px;
  font-weight: 400;
  color: #fff;
}

aside {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(122,85,46,0.9);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  z-index: 9999;
}

.open {
  opacity: 1;
  visibility: visible;
}

nav {
  text-align: center;
  height: 95vh;
  display: flex;
  justify-content: normal;
  margin-top: 180px;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul li {
  align-items: center;
  flex: 1;
  line-height: 15px;
  float: left;
  margin-right: 15px;
  /* border: 1px solid #929292; */
  /* padding: 20px; */
  min-width: 73px;
  padding-left: 33px;
  padding-right: 33px;
}
nav ul li a {
  font-size: 1.5em;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none;
  color: #fff;
}
nav ul li a:hover {
  color: #ffffff;
}
nav ul li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
nav ul li a:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 25%;
  background: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 600px) {
  nav ul li a {
    font-size: 17px;
    font-weight: 300;
  }
}
button {
  padding: 15px 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  border-radius: 8px;
  transition: all .5s ease;
}
button:hover {
  border: 1px solid white;
}

.close {
  position: fixed;
  top: 155px;
  right: 289px;
  color: #6b6b6b;
  z-index: 3;
  cursor: pointer;
  font-family: sans-serif;
}
.close span,
.close span:before,
.close span:after {
  border-radius: 4px;
  height: 2px;
  width: 30px;
  background: #7a552e;
  position: absolute;
  display: block;
  content: '';
}
.close span {
  background: transparent;
}
.close span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.close span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.outer-close {
  position: absolute;
  right: 250px;
  top: 130px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #fff;
}
aside.open nav div ul {
    border: 1px solid #fff;
    height: 75px;
    /* padding-top: 25px; */
    padding-left: 10px;
}
a {}

ul.alt-acilir-menu li a:hover {
    color: #353535;
}


