header{
  position: absolute;
  z-index: 111;
  background: rgba(255, 255, 255, .95) !important;
  border-bottom: 1px solid #b2b2b2;
}
.heading-container{
  padding: 0 100px;
}
.heading-logo-container{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-blue);
}
.contact-details{
  color: var(--dark-blue);
  font-size: 13px;
  font-family: Inter;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-details:hover{
  color: #FFCC00;
}
.contact-info-divider{
  color: white;
}
.contact-info-icon{
  height: 16px;
  margin-right: 6px;
}
.heading-logo{
  height: 50px;
}
.heading-navbar{
  padding: 16px auto 12px auto;
  /* border-bottom: 1px solid var(--dark-blue); */
}
.search-input{
  height: 40px;
  border-radius: 4px;
  width: 100%;
  padding: 4px 40px 4px 10px;
  border: 1px solid #b2b2b2;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--dark-blue);
  transition: all 0.2s;
}
.search-input::placeholder{
  font-family: Inter;
  font-weight: 400;
}
.search-input:focus{
  outline: none;
  border-color: var(--dark-blue);
}
.search-input-container{
  width: 240px;
  width: 100%;
  position: relative;
  margin-left: 30px;
}
.search-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  cursor: pointer;
}
.header-links-container{
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
  color: var(--dark-blue);
}
.header-links-container > a{
  text-decoration: none;
  transition: all 0.2s;
  color: var(--dark-blue);
  font-weight: 600;
}
.header-links-container a:hover{
  color: #f07b00;
}
.heading-menu{
  width: 100%;
  background: #f7f7f7;
  height: 40px;
  display: flex;
}
.heding-menu-container{
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heding-tab-container{
  height: 100%;
  background: transparent;
}
.heding-tab-container:hover, .heding-tab-container:focus{
  background: var(--light-black);
}
.heding-tab-container a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 100%;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.heding-tab-container a:hover{
  color: white;
}

@media(max-width: 1400px){
  .heading-logo{
    height: 40px;
  }
  .header-links-container{
    gap: 16px;
    font-size: 14px;
  }
  .contact-details{
    font-size: 12px;
  }
}

@media(max-width: 1344px){
  .heding-menu-container{
    padding: 0;
  }
  .heding-tab-container a{
    padding: 0 10px;
    font-size: 13px;
  }
}
/* .nav-link-container{
  margin-left: 16px;
  background: #fff;
}
.heading-nav-link{
  position: relative;
  font-size: 16px;
  font-family: Inter;
  font-weight: 500;
  color: var(--light-black);
  text-decoration: none;
  transition: all 0.1s;
  height: 40px;
  display: flex;
  align-items: center;
}
.heading-nav-link:hover{
  color: var(--light-black);
}
.nav-down-arrow{
  height: 12px;
  margin-left: 6px;
  transition: all 0.3s;
}
.nav-link-container:hover .nav-down-arrow{
  transform: rotate(180deg);
  transition: all 0.3s;
} */
/* .heading-nav-link::before{
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background: var(--light-black);
  bottom: -1px;
  left: 0;
  right: 50%;
  transition: all 0.3s;
}
.heading-nav-link:hover::before{
  left: 0;
  right: 0;
  width: 100%;
} */

/* .heading-option-container{
  position: absolute;
  width: 180px;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 3px 8px rgba(95, 86, 86, 0.3);
}
.nav-link-container:hover .heading-option-container {
  display: block;
  visibility: visible;
  opacity: 1;
}
.nav-option{
  height: 42px;
  width: 100%;
  width: 100%;
  padding: 4px 8px;
  color: var(--dark-blue);
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  background: #f1f1f1;
  cursor: pointer;
  transition: all 0.1s;
  border-bottom: 1px solid var(--dark-blue);
}
.nav-option:first-child{
  border-radius: 2px 2px 0 0;
}
.nav-option:last-child{
  border-radius: 0 0 2px 2px;
  border-bottom: 0;
}
.nav-option:hover{
  background: var(--dark-blue);
  color: white;
} */

@media(max-width: 992px){
  .m-menu-container{
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    padding: 80px 24px 40px 24px;
    background: #f7f7f7;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 90;
  }
  .m-menu-link{
    font-size: 18px;
    font-family: Inter;
    font-weight: 500;
    color: var(--light-black);
    text-decoration: none;
    display: block;
    margin: 6px 0;
  }
  .m-menu-link:hover{
    color: var(--main-color);
  }
  .m-menu-container-active{
    height: 385px;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    z-index: 1;
  }
  .menu-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    height: 28px;
    width: 28px;
    z-index: 99;
  }
  
  .menu-icon:hover {
    cursor: pointer;
  }
  .menu-icon span {
    background: var(--dark-blue);
    transform: translateY(-50%) rotate(0deg);
    position: absolute;
    width: 100%;
    height: 8%;
    transition: top 0.1s ease 0.3s, transform 0.3s ease, background 0.1s ease 0.3s;
  }
  
  .menu-icon.clicked span {
    transition: top 0.1s ease, transform 0.3s ease 0.1s, background 0.1s ease;
  }
  
  .menu-icon span:nth-child(1) {top: 10%;}
  
  .menu-icon span:nth-child(2) {top: 50%;}
  
  .menu-icon span:nth-child(3) {top: 90%;}
  
  .menu-icon.clicked span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
  }
  
  .menu-icon.clicked span:nth-child(2) {
    transform: translateY(-50%) rotate(405deg);
  }
  .menu-icon.clicked span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(405deg);
  }
}

@media(max-width: 768px){
  .heading-logo-container{
    gap: 8px;
  }
  .heading-logo{
    height: 30px;
    position:relative;
    z-index: 99;
  }
  .heading-container > a{
    font-size: 12px;
  }
  .heading-container{
    padding: 0 24px;
  }
  .contact-info-icon{
    height: 12px;
  }
  .search-icon{
    right: 40px;
  }
}