

.navbar-brand.nav-logo{
    width: 125px;
    padding: 10px;
  }
  .desktop-only{
    display: block;
  }
  .mobile-only{
    display: none;
  }
  nav#navbar {
    display: flex;
    flex-basis: 100%;
    padding: 0px;
  }
  .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 10%;
}
li.nav-item {
    min-width: fit-content;
}
.burger {
    position: absolute;
    right: 15px;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px!important;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: #000;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}
.nav-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: start !important;
    gap: 12% !important;
    margin: 0 auto;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}
header.header {
    display: block;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    transition: all .6s ease;
    transition: top 0.5s ease-in-out;
    width: 100%;
    

}


header.header.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
header.header.fixed {
    position: fixed !important;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
}
.header.fixed {
    top: 0;
}

/* Slide the header up */
.header.up {
    top: 0;
}

/* Slide the header down */
.header.down {
    top: 0px;
}
header.header.absolute  .navbar-nav .nav-link {
    color: #fff;
}
header.header.absolute.fixed  .navbar-nav .nav-link {
    color: #000;
}
header.header.absolute img{
      filter: brightness(0) invert(1);
}
header.header.absolute.fixed img{
      filter: brightness(0) invert(0);
}
.header.header.absolute .burger-line{
    background: #ffffff;
}
header.header.absolute.fixed .burger-line{
    background: #000;
}
.nav-close-box {
    display: none;
}
.close-nav-btn {
    position: absolute;
    top: 2%;
    right: -15%;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999 !important;
    opacity: 1;
    visibility: visible;
    font-size: 16px;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link{
    font-family: 'amour-medium', serif;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}
.navbar-nav .nav-item{
    position: relative;
}

.navbar-nav .nav-item .nav-link::before{
    content: " ";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 1px;
    background-color: #8e0000;
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
.navbar-nav .nav-item.active .nav-link::before{
    transform: scaleX(1);
     width:100%;
}
.navbar-nav .nav-item:hover .nav-link::before{
    transform: scaleX(1);
     width:100%;
}
.navbar-nav .nav-item.desktop-only{
    padding-left: 220px;
    padding-right: 220px;
}
 .header.absolute .navbar.active img{
      filter: brightness(0) invert(0);
  }
  header.header.absolute .navbar.active .navbar-nav .nav-link {
    color: #000;
}
.navbar-nav .nav-item.active .nav-link, .navbar-nav .nav-item:hover .nav-link{
    color: #8e0000 !important;
}
  /*------------  header search css start -----------------*/
.search-wrap {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    background: rgba(0, 0, 0, 0.63);
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    display: table;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 99;
  }
  
  .search-middle {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
  }
  
  .search-t {
    background: transparent !important;
    padding: 40px !important;
    color: #fff !important;
    font-size: 40px !important;
  }
  
  .close-btn {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #f6f3e3;
    color: #272727;
    font-size: 20px;
    border-radius: 0px;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .st-default-search-input {
     font-family: 'amour', serif;
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    box-shadow: none;
    transition: border 0.3s, box-shadow 0.3s;
  }
  
  .st-default-search-input:focus {
    border-color: #ccc;
    box-shadow: 0 0 5px rgb(62 62 62 / 50%);
    outline: none;
  }
  
  .search-box .btn {
    font-family: 'amour-medium', serif;
    border-radius: 30px;
    padding: 10px 20px;
  }

  /*------------  header search css end -----------------*/
@media only screen and (max-width: 1800px) {
    
    .navbar-nav .nav-item.desktop-only{
        padding-left: 180px;
        padding-right: 180px;
    }
}
@media only screen and (max-width: 1600px) {
    .navbar-nav .nav-item.desktop-only{
        padding-left: 150px;
        padding-right: 150px;
    }
    .navbar-nav {
        gap: 8%;
    }
}
@media only screen and (max-width: 1400px) {
    .navbar-nav .nav-item.desktop-only{
        padding-left: 100px;
        padding-right: 100px;
    }
    .navbar-nav {
        gap: 6%;
    }
}
@media only screen and (max-width: 1200px) {
    .navbar-nav .nav-item.desktop-only{
        padding-left: 80px;
        padding-right: 80px;
    }
   
}
@media only screen and (max-width: 991px) {
    .navbar-nav .nav-item.desktop-only{
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media only screen and (max-width: 767px) {

    .desktop-only{
        display: none;
      }
      .mobile-only{
        display: block;
      }
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }
    .navbar-nav {
        flex-direction: column;
        align-items: start;
        padding-left: 10px;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 65%;
        height: 100vh;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background-color: #fff;
        transition: all 0.5s ease;
        flex-basis: unset !important;
        display: inline !important;
    }
    .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }
    .nav-close-box {
        display: block;
    }
    header.header {
        border-bottom: none;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        padding-bottom: 0px;
    }
   
}