*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  nav{
    background: #000;
    height: 70px;
    width: 100%;
    text-decoration: none;
    list-style: none;
    z-index: 999;
    position: fixed;
    font-family: 'Josefin Sans', sans-serif;
	  font-weight: 400;
    letter-spacing: unset;
    transition: 0.5s;
  }
  label.logo{
    color: white;
    font-size: 35px;
    line-height: 70px;
    padding: 0 40px;
    font-weight: bold;
    z-index: 999;
  }
  nav ul{
    float: right;
    margin-right: 20px;
    z-index: 999;
    padding-top: 3px;
  }

  #brt{
    height:60px;
    width: auto;
    padding-bottom: 5px;
    vertical-align: middle;
  }

  nav ul li{
    display: inline-block;
    line-height: 70px;
    margin: 0px;
    z-index: 999;
  }
  nav ul li a{
    color: white;
    font-size: 20px;
    padding: 7px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 999;
    text-decoration: none;
    padding-top: 12px;
  }
  nav a.activelink,nav a:hover{
    background: #731e4a;
    color: #fff200;
    transition: .5s;
  }

  nav .logo a:hover{
    background: unset;
    transition: unset;
  }
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 70px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
    z-index: 999;
  }
  #check{
    display: none;
    z-index: 999;
  }
  @media (max-width: 952px){

    .list-footer{
      padding-left: 0rem;
    }

    label.logo{
      font-size: 30px;
      padding-left: 10px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
      line-height: 50px;
      padding-top: 4px;
    }

    #brt{
      height:40px;
      width: auto;
      padding-bottom: 0;
      margin-bottom: 5px;
    }

    nav{
      background: #000;
      height: 50px;
      width: 100%;
      text-decoration: none;
      list-style: none;
      z-index: 999;
      position: fixed;
    }
    label.logo{
      color: white;
      font-size: 35px;
      line-height: 50px;
      padding: 0 40px;
      padding-left: 35px;
      font-weight: bold;
      z-index: 999;
    }

    nav ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 50px;
      left: -100%;
      text-align: center;
      transition: all .5s;
      padding-left: 0px;
    }

    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }

    #check:checked ~ ul{
      left: 0;
    }

    .list-footer{
      padding-left: 0rem;
    }
  }