*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body{
    font-family: 'Merriweather';
  }
  nav{
    background: white;
    height: 80px;
    width: 100%;
    z-index:5;
    top:0;
    position:fixed;
    -webkit-box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
            box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  }
  label.logo{
    color: black;
    font-size: 35px;
    line-height: 80px;
    padding: 0 70px;
    font-weight: bold;
  }
  #logo{
      cursor:pointer;
      -webkit-transition:all 500ms ease-out;
      -o-transition:all 500ms ease-out;
      transition:all 500ms ease-out;
      height:50px;
      margin-top:15px;
  }
  #logo:hover{
      -webkit-transform:scale(1.2);
          -ms-transform:scale(1.2);
              transform:scale(1.2);
  }
  nav ul{
    position:absolute;
    top:0;
    left:43%;
    text-align:end;
  }
  nav ul li{
    display:inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  nav ul li .header-text-link{
    color: black;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: Capitalize;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .header-text-link:hover{
    color:#ee6300 !important;
    text-shadow: 0px 0.5px, 0.5px 0px, 0.5px 0.5px;
    letter-spacing:1px;
    text-decoration: none !important;
  }
  .checkbtn{
    font-size: 30px;
    color: black;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  .find-adv{
      background-color: #ee6300;
      color:white !important;
      padding:11px;
      padding-left:19px;
      padding-right:19px;
      border-radius: 5px;
      cursor: pointer;
      width:160px;
      -webkit-transition: all 300ms ease-in;
      -o-transition: all 300ms ease-in;
      transition: all 300ms ease-in;
  }
  .find-adv:hover{
      background-color: #ff8d3c ;
      color:black !important;
      font-weight: 400;
      text-shadow: none;
  }
  #check{
    display: none;
  }
  .resp-account{
      display:none;
  }
  @media (max-width: 1300px){
      nav ul{
          left:36.5%;
      }
      nav ul li{
          margin:0px;
      }
      nav ul li .header-text-link{
          padding:7px 11px;
      }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    .header-menu{
      position: fixed;
      width: 100%;
      height: 90%;
      background: #ee6300;
      top: 80px;
      left: -100%;
      text-align: center;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      transition: all .5s;
      color:white;
      overflow-y:scroll;
    }
    nav ul li{
      display: block;
      margin: 12% 0;
      line-height: 30px;
    }
    nav ul li .header-text-link{
      font-size: 20px;
      color:white;
    }
    nav ul li .header-text-link:hover{
      color:white !important;
    }
    #check:checked ~ ul{
      left: 0;
    }
    label.logo{
        padding:0 15px;
    }
  section{
    background-size: cover;
    height: calc(100vh - 80px);
  }
  .profile-tab-1{
      margin-top:-50px;
      display:none !important;
  }
  .sample{
      height:90px;
      -webkit-box-shadow:none !important;
              box-shadow:none !important;
      margin-left:-70px !important;
      margin-top:15px;
      background-color:#ee6300 !important;
  }
  .resp-account{
      display:block;
  }
  }