* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    font-family: montserrat;
  }
  
  nav {
    background-color: #9d6c2c;
    height: 90px;
    width: 100%;
    display: flex;
  }
  
  .logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
    margin-left: 15px;
    display: flex;
  
  }
  
  .logo-text {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
  }
  
  nav ul {
    float: right;
    margin-right: 20px;
    margin-left: auto;
  }
  
  nav ul li {
    display: inline-block;
    line-height: 90px;
    margin: 0 5px;
  }
  
  nav ul li a {
    color: white;
    font-size: 17px;
    padding: 8px 10px;
    border-radius: 25px;
    text-transform: uppercase;
  }
  
  li:hover {
    background: #b17b34;
    /* border-radius: 25px; */
    transition: .5s;
  }
  
  .checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }

  footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #b17b34;
    height: auto;
    width: 100vw;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}
.socials a:hover i{
    color: #ffffff;
}

.footer-bottom{
    background: #9d6c2c;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
  font-size: 14px;
}

.footer-bottom span {
  text-transform: uppercase;
  opacity: .4;
  font-weight: 200;
}


  @media (max-width: 858px) {
  
  
    label.logo {
      font-size: 25px;
      padding-left: 10px;
    }
  
    nav ul li a {
      font-size: 16px;
    }
  
  }
  
  @media (max-width: 997px) {

  
    .checkbtn {
      display: block;
    }
  
    ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      background:  #9d6c2c;
      top: 0px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
  
    nav ul li {
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
  
    nav ul li a {
      font-size: 20px;
    }
  
    a:hover,
    a.active {
      background: none;
      color: #eec38b;
    }
  
    #check:checked~ul {
      left: 0;
    }
  
  }