

/*---Navbar---*/
.navbar
{
  position:fixed;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 20px 0;
  background: #FFFFFF;
    z-index: 99;
}
.navbar .nav-links ul
{
  display:flex;
  margin: 0;
  padding-right: 39px;
}
.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ph-icon {
    background: #371C02;
    height: 37px;
    width: 37px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -18px;
    bottom: 0;
}
.nav-btn {
    color: #371C02 !important;
    background: #FFDF8F !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none;
    padding:8px 15px 7px 27px !important;
    border-radius: 6px;
    position: relative;
}
.navbar .nav-links ul li.active a
{
  color:#371C02 !important;
  font-weight: 600;
}
.nav-links a 
{
    text-transform: uppercase;
    font-size: 13px;
    color: #393939CC;
    font-weight: 600;
    text-decoration: none;
    padding: 0 12px;
}
.navbar .menu-hamburger
{
  display:none;
  color: black;
  position: relative;
  top: 0;
  right: 0;
  font-size: 35px;
  cursor: pointer;
}
.nav-menu li{
    list-style: none;
}
.hide-contact{
    display: none;
}
.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width:991px)
{
    .mob-view .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .mob-view .line2 {
        transition: all 0.7s ease;
        width: 0;
    }
    .mob-view .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .nav-btn{
        display: none;
    }
    .hide-contact{
        display: block;
    }
    .nav-links a{
        color: #222222;
    }
    .logo{
        padding: 0!important;
    }
  .navbar
  {
    padding:10px 0;
  }
  /* .navbar .menu-hamburger
  {
    display:block;
  } */
  .navbar .menu-hamburger{
    display: block;
  }
  .navbar .menu-hamburger .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
}
.hamburger div {
    background: #000000;
    height: 1px;
    margin: 7px 0px;
}
  .nav-links
  {
    top:0;
    left:-100%;
    position:fixed;
    display:flex;
    justify-content:center;
    align-items:center;
   background: #FFDF8F;
    width:80%;
    height:100vh;
    transition: left 0.5s ease;
    z-index: 99;
    
  }
  .nav-links.mobile-menu
  {
  left:0;
  display: block;
    
  }

  .nav-links ul
  {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding-right: 0;
  }
  .navbar .nav-links ul li
  {
  margin:16px 0;
  font-size:1.2em;
  }

}