/* nav css start */
.header {
   position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    margin: 0 auto;
    background: #fff;
    
 }
 .header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    height: auto;
    padding: 0.75rem 0;
 }
 .nav-btn {
    background: #f58020;
    color: #fff;
    padding: 11px 25px;
 }
 .header .burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 2rem;
    height: auto;
    border: none;
    opacity: 1;
    visibility: visible;
    background: none;
    outline: none;
 }
 .brand img{
   width: 100px;
 }
 .sticky {
   top: 0 ;
   background-color: #fff;
   -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
   animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
   position: fixed;
   box-shadow: 0px 5px 35px 0px rgb(211 221 241 / 75%);
   z-index: 999;
   width: 100%;
}
 @media only screen and (min-width: 991px) {
    .header .burger {
        display: none;
        opacity: 0;
        visibility: hidden;
   }
 }
 .header .burger-line {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 2px;
    margin: 6px auto;
    background: #3f786c;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
 }
 .header .menu {
    position: fixed;
    top: 0;
    left: -19rem;
    width: 19rem;
    height: 100%;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
 }
 @media only screen and (min-width: 991px) {
    .header .menu {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none;
   }
 }
 .header .menu.is-active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
 }
 .header .menu-block {
    width: 100%;
    height: auto;
    margin: 2rem 0;
 }
 @media only screen and (min-width: 991px) {
    .header .menu-block {
        margin: 0 auto;
   }
 }
 .header .menu-item {
    display: block;
    margin: 0;
 }
 @media only screen and (min-width: 991px) {
    .header .menu-item {
        position: relative;
        display: inline-block;
        /* margin: 0 0.625rem; */
        margin-left: 65px;
      }

   }
 
 .header .menu-link {
    display: block;
    font-family: inherit;
    font-size: 22px;
    font-weight: 600;
    line-height: inherit;
    padding-bottom: 5px;
    border: none;
    color: #000;
    border-bottom: 2px solid transparent;
    text-rendering: optimizeLegibility;
    transition: all 0.35s ease;
    font-family: 'Jost', sans-serif !important;
 }
 .header .menu-link:hover {
    color: #3f786c;
    border-bottom: 2px solid #3f786c;
 }
 @media only screen and (min-width: 991px) {
    .header .menu-link {
        padding: -0.5rem 19px;
    }
   
 }
 @media only screen and (max-width: 991px) {
    .header .menu-link {
        color: var(--color-black);
       
   }
   
 }
 .header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.35s ease-in-out;
 }
 .header .overlay.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
 }
 
 
 
 /* nav css link end */
 