body{
  top: 0 !important;
}
.headerWrap {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0 40px;

  .mainHeaderTop {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom:1px solid #ffffff29;
    .headerTopLeft {
      flex: 1;

      .headerMarquee span {
        color: #fff;
        -webkit-font-smoothing: antialiased; /* Clearer text on Mac */
      }
    }

    .headerTopRight {
      display: flex;
      flex: 1;
      justify-content: flex-end;

      ul {
        display: flex;
        align-items: center;

        li {
          padding-right: 20px;
          margin-right: 20px;
          position: relative;
          &::after{
            width: 1px;
            height: 25px;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            content: "";
            background-color: #ffffff78;
          }
          &:last-child{
            margin-right: 0px;
            padding-right: 0px;
            &::after{
              display: none;
            }
          }
          a {
            color: #fff;
            -webkit-font-smoothing: antialiased; /* Improve clarity */
          }

          .searchForm {
            width: 360px; /* Better for MacBook 13" */
            max-width: 100%;

            .ajax-search-text {
              width: 100%;
              height: 35px;
              border-radius: 10px;
              border: 1px solid rgba(255, 255, 255, 0.8);
              background-color: rgba(255, 255, 255, 0.05);
              color: #fff;
              padding: 0 15px;
              
              &::placeholder {
                color: rgba(255, 255, 255, 0.8);
                opacity: 1;
                font-size: 14px;
              }
            }
          }
          select{
            height: 35px;
            padding: 0 10px;
            background-color: transparent;
            border-radius: 10px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.8);
            font-size: 15px;
            cursor: pointer;
            option{
              color: #000;
            }
          }
        }
      }
    }
  }
  .headerBottom{
    display: flex;
    align-items: center;
    .logoWrap{
        width: 370px;
		img{
			width: 100%;
		}
    }
  }
  .mainHeaderRight {
    width: calc(100% - 180px);
    display: flex;
    justify-content: end;
    .mainHeaderBottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: auto;
        .menuWrap {
            > ul{
                display: flex;
                > li {
                    display: inline-block;
                    margin: 0 22px;
                    position: relative;
                    a{
                        font-size: 18px;
                        color: #fff;
                        line-height: 75px;
                        display: block;
                    }
                    .sub-arrow {
                        position: absolute;
                        right: -18px;
                        top: 0;
                        font-size: 12px;
                        color: #fff;
                        line-height: 75px;
                        display: block;
                        i{
                        transition: 0.5s;
                        }
                    }
                }
            } 
        }
    }
  }
}

.headerWrap{
  &.innerHeader{
    position: relative;
    background-color: #000;
  }
  &.is-sticky{
    position:fixed;
    top: 0;
    background-color: #000;
    width: 100%;
    z-index: 9;
    .mainHeaderTop{
      display: none;
    }
  }
}
.breadSec {
    padding: 10px 0;
    background-color: #f7f7f7;
    box-shadow: 0 0 6px 0 #cecece;
    .breadcrumbsWrap {
        display: flex;
        flex-wrap: wrap;
        li{
          position: relative;
          &:not(:last-child) {
              padding-right: 10px;
              margin-right: 10px;
          }
          a {
              color: #6f6f6f;
          }
          &::after {
              content: "";
              position: absolute;
              right: -2px;
              top: 50%;
              transform: translateY(-50%) rotate(45deg);
              width: 6px;
              height: 6px;
              border-top: 1.5px solid #6f6f6f;
              border-right: 1.5px solid #6f6f6f;
          }
          &.active {
              color: var(--orange);
          }
          &:last-child{
            &::after{
              display: none;
            }
          }
        }
    }
}

/*===responsive start==*/
.headerWrap{
  padding: 0 10px;
}

.mob_991{
  display: none;
}
.mobBottomMenu {
    position: fixed;
    bottom: 10px;
    left: 50%;
    width: 100%;
    max-width: 95%;
    transform: translate(-50%);
    z-index: 222;
    background: #fdbb05b0;
    padding: 15px;
    display: none;
    backdrop-filter: blur(15px);
    border-radius: 100px;
    border: 1px solid #0a0a0a52;
	ul {
		display: flex;
		justify-content: center;
		justify-content: space-between;
		align-items: center;
		li{
			width: 25%;
			flex: 0 0 25%;
			text-align: center;
			a {
				display: flex;
				flex-direction: column;
				justify-content: center;
				text-align: center;
				span{
					color: #000;
					&.mobIcon {
						font-size: 20px;
						margin-bottom: 5px;
					}
				}
				
			}
		}
	}
	
}


/*===mega menu==*/
.menuWrap > ul > li {
  display: inline-block;
  margin: 0 22px;
  position: relative;
}
.menuWrap > ul > li > a {
  font-size: 16px;
  color: #fff;
  line-height: 75px;
  display: block;
}
.menuWrap > ul > li:hover > a {
  color: var(--orange);
}
.headerBtn {
  padding: 0 40px;
  line-height: 45px;
  background-color: #05386b;
  color: #fff;
  font-size: 16px;
  display: block;
  border-radius: 30px;
  transition: 0.5s;
  margin-left: 20px;
}
.headerBtn:hover {
  background-color: var(--orange);
  color: #fff;
}
.has-menu-children {
  position: relative;
}
.sub-menu {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 280px;
  box-shadow: 0 8px 16px 0 rgb(0 0 0 / 0.2);
  z-index: 1;
  top: 100%;
  padding: 5px 0;
}
.mega-menu,
.productMega {
  /* animation: animatezoom 0.3s ease-in-out forwards; */
   -webkit-animation: .5s ease-in-out forwards growDown;
    animation: .5s ease-in-out forwards growDown;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
  position: absolute;
  background-color: #f9f9f9;
  min-width: auto;
  box-shadow: 0 8px 16px 0 rgb(0 0 0 / 0.2);
  z-index: 1;
  display: none;
  padding: 5px 0 0;
  left: 0;
  position: fixed;
  margin-top: 0;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  max-width: 95%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@-webkit-keyframes growDown {
    0% {
        -webkit-transform: scaleY(0) translateX(-50%);
        transform: scaleY(0) translateX(-50%);
    }

    100%,
    80% {
        -webkit-transform: scaleY(1.1) translateX(-50%);
        transform: scaleY(1.1) translateX(-50%);
    }
}

@keyframes growDown {
    0% {
        -webkit-transform: scaleY(0) translateX(-50%);
        transform: scaleY(0) translateX(-50%);
    }

    100%,
    80% {
        -webkit-transform: scaleY(1) translateX(-50%);
        transform: scaleY(1) translateX(-50%);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%) translateX(-50%);
    }

    100% {
        transform: translateY(0) translateX(-50%);
    }
}
.productMega {
  border-radius: 20px;
  overflow: hidden;
  max-width: 95%;
  padding-top: 0;
}
.productMegaInner {
  display: flex;
}
.productMegaInner .categoryList {
  width: 300px;
  border-right: 1px solid #ccc;
  padding: 20px;
}
.productMegaInner .categoryList .h4 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  display: block;
}
.productMegaInner .categoryList ul {
  width: 100%;
}
.productMegaInner .categoryList ul li a {
  color: #fff;
  width: 100%;
  padding: 20px 20px;
  border-radius: 10px;
  background-color: #000;
  display: block;
  margin-bottom: 15px;
  font-size: 17px;
  position: relative;
  line-height: normal !important;
}
.productMegaInner .categoryList ul li.active a {
  background-color: var(--orange);
  color: #000;
}
.productMegaInner .categoryList ul li a::after {
  position: absolute;
  right: 15px;
  content: "\f061";
  font-family: "FontAwesome";
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.productMegaInner .categoryList ul li a:hover {
  background-color: var(--orange);
  color: #000;
}
.productMegaInner .categoryList ul li:last-child a {
  margin-bottom: 0;
}
.productMenuContent {
  width: calc(100% - 300px);
}
.mega-menu > ul {
  display: flex;
}
.mega-menu > ul > li {
  width: 100%;
  padding: 0;
}
.mega-menu > ul > li:not(:last-child) {
  border-right: 1px solid #cecece;
}
@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: translateY(20px);
  }
  to {
    -webkit-transform: translateY(0);
  }
}
@keyframes animatezoom {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
.has-menu-children.active .sub-menu,
.has-menu-children.active .mega-menu,
.has-menu-children.active .productMega {
  display: block;
}
.has-menu-children.active > a {
  color: var(--orange);
}
.sub-menu li {
  width: 100%;
}
.sub-menu li a {
  display: block;
  line-height: 30px;
  padding: 5px 15px;
  position: relative;
}
.sub-menu li a::before {
  display: none;
}
.sub-menu li a:hover::before {
  height: 100%;
}
.sub-arrow {
  position: absolute;
  right: -18px;
  top: 0;
  font-size: 12px;
  color: #fff;
}
.has-menu-children .sub-arrow i {
  transition: 0.5s;
}
.has-menu-children.active .sub-arrow {
  color: var(--orange);
}
.has-menu-children.active .sub-arrow i {
  transform: rotate(-180deg);
}
.has-menu-children:hover .sub-arrow {
  color: var(--orange);
}
.mega-menu ul li ul{
  display: flex;
  flex-wrap: wrap;
}
.mega-menu ul li ul li {
  padding-right: 20px;
  a{
    line-height: normal !important;
  }
}
.mega-menu h4 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}
.mega-menu h4::before {
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: var(--orange);
  content: "";
}
.mega-menu ul li ul li a {
  line-height: 35px;
  position: relative;
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  transition: 0.5s;
  transition: 0.5s;
  padding-bottom: 6px;
  display: flex;
  text-align: center;
}
.mega-menu ul ul li .header-menu-logo{
  display: flex;
  justify-content: center;
}
.mega-menu ul li ul li a::before {
  width: 3px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: var(--orange);
  transition: 0.7s;
}
.mega-menu ul li ul li a:hover:before {
  height: 100%;
}
.tagContent {
  padding-top: 15px;
}
.productContentChild ul {
  display: flex;
  flex-wrap: wrap;
}
.productContentChild ul li {
  width: 14.28%;
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
  a{
    line-height: normal !important;
    color: #000 !important;
    span{
      font-size: 14px;
    }
  }
}
.productContentChild ul li .productIcon {
  width: 120px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.productContentChild ul li .productIcon img {
  width: 100%;
  height: auto;
}
.productContentChild ul li:hover {
  background-color: var(--orange);
}
.productContentChild ul li:hover span {
  color: #000;
}
.mega-menu ul li ul li {
  padding-right: 20px;
}
.mega-menu h4 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}
.mega-menu h4::before {
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: var(--orange);
  content: "";
}
.mega-menu ul li ul li a {
  line-height: 35px;
  position: relative;
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  transition: 0.5s;
  transition: 0.5s;
  padding-bottom: 6px;
}
.mega-menu ul li ul li a::before {
  width: 3px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: var(--orange);
  transition: 0.7s;
}
.mega-menu ul li ul li a:hover:before {
  height: 100%;
}
.resFixedHeader {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: #fdbb0599;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.5);
  display: none;
  backdrop-filter: blur(10px);
}
.mega-menu ul li ul li {
  width: 10% !important;
  padding-right: 0;
  border-bottom: none;
  position: relative;
}
.mega-menu ul li ul li a {
  display: flex !important;
  justify-content: center;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
  align-items: center;
  position: relative;
  width: 100%;
  flex-direction: column;
  justify-content: center !important;
  text-align: center !important;
  padding: 10px;
  background-color: #f9f9f9;
  transition: 0.5s;
}
.mega-menu ul li ul li a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 0 #ccc;
  z-index: 1;
}
.mega-menu ul li ul li a::before {
  width: 1px;
  height: 100%;
  background-color: #01010124;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
}
/* .mega-menu ul li ul li:nth-child(8n) a::before {
  display: none;
} */
.mega-menu ul li ul li a::after {
  width: 100%;
  height: 1px;
  background-color: #01010124;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
}
.mega-menu ul ul li .header-menu-logo {
  width: 125px;
  border-radius: 10px;
  padding: 0;
}
.mega-menu ul ul li .header-menu-logo img {
  width: 100%;
  height: auto;
}
.mega-menu ul li ul li a span {
  width: 100%;
  display: block;
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 13px !important;
  text-align: center;
  color: #000;
}
.mainHeaderBottomRight{
  display: none;
}
.mainSrchWrap{
  display: none;
}
.responsive_nav{
    position: fixed;
    bottom: -100%;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 333;
    display: flex;
    align-items: end;
    transition: 0.5s;
    backdrop-filter: blur(10px);
    .sideMenuLogo{
      padding: 40px 20px 20px;
      border-bottom: 1px solid #ffffff3b;
      .mobUserWrap{
        display: flex;
        align-items: center;
        gap: 10px;
        .userImg{
          width: 50px;
          height: 50px;
          border: 2px solid var(--orange);
          background-color: #fff;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        a{
          color: #fff;
        }
        .mobUserName{
          margin-bottom: 0px;
        }
      }
    }
    .responsive_navInner{
        background-color: rgb(0 0 0 / 72%);
        backdrop-filter: blur(10px);
        width: 100%;
        border-radius: 40px 40px 0 0;
        height: calc(100% - 80px);
        border-top: 2px solid #fdbb0580;
    }
    .closeMenu{
        position: absolute;
        left: 50%;
        top: 56px;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        z-index: 1;
        background-color: #000;
        border: 2px solid var(--orange);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }
    &.responsive{
      bottom: 0;
    }
    .menu-header-menu-responsive-container {
        height: calc(100% - 150px);
        padding: 5px 0px 10px;
        >ul{
          height: 100%;
          overflow: auto;
          li{
            width: 100%;
            border-bottom: 1px solid #686868;
            padding: 0 20px;
            &:last-child{
              border-bottom: none;
            }
            &.menu-item-has-children{
              position: relative;
              .toggleArrow{
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                &::after{
                  content: "\f107";
                  position: absolute;
                  font-family: "FontAwesome";
                  right: 20px;
                  font-size: 14px;
                  color: #fff;
                  top: 10px;
                  transition: 0.5s;
                }
                &.open{
                  &::after{                    
                    transform: rotate(180deg);
                  }
                }
              }
              .sub-menu{
                position: inherit;
                box-shadow: none;
                background-color: transparent;
                animation: none;
                padding-left: 15px;
                li{
                  padding: 0px;
                  a{
                    padding: 0px;
                  }
                }
                &.open{
                  display: block;
                }
              }
            }
            a{
              color: #fff;
              display: inline-block;
              line-height: 45px;
              position: relative;              
            }
            /* &.productName{
              a{
                position: relative;
                &:after{
                  content: "*";
                  position: absolute;
                  top: 0;
                  right: -12px;
                  font-size: 18px;
                  color: var(--orange);
                  text-decoration: blink;
                  -webkit-animation-name: blinker;
                  -webkit-animation-duration: 1s;
                  -webkit-animation-iteration-count: infinite;
                  -webkit-animation-timing-function: ease-in-out;
                  -webkit-animation-direction: alternate;
                }
              }
            } */
          }
        }
    }
    .socialLinks{
      height: 40px;
      display: flex;
      align-items: center;
      gap: 15px;
      background-color: #0000004a;
      padding: 10px 20px;
      border-top: 1px solid var(--orange);
      span{
        color: #fff;
      }
      a{
        color: #fff;
        font-size: 16px;
      }
    }
}
.mob_768{
  display: none;
}
.skiptranslate{
  height: 0px !important;
  visibility: hidden;
}
.mainSrchWrap{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  padding: 50px;
  background-color: #0000004d;
  top: -100%;
  transition: 0.5s;
  border-bottom: 1px solid #fdbb0547;
  backdrop-filter: blur(8px);
  &.active{
    top: 0;
    display: block !important;
  }
  .srchCloseBtn {
      position: absolute;
      top: 10px;
      right: 20px;
      color: var(--orange);
      font-size: 20px;
      cursor: pointer;
  }
  input {
    width: 100% !important;
    height: 60px !important;
    background-color: #fff !important;
    display: block !important;
    border-radius: 10px !important;
    padding: 0 20px !important;
}
}
.instant-ajax-result .search-result-item {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  gap: 20px;
  .title{
    color: #000 !important;
  }
}
.instant-ajax-result .search-result-item img {
  width: 80px;
}
.instant-ajax-result a {
  display: flex;
  width: 100%;
  display: block;
  .title{
    color: #000;
  }
}
.instant-ajax-result a:first-child {
  padding-top: 20px;
}
.instant-ajax-result a:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.instant-ajax-result {
    background-color: #fff;
    border-radius: 15px;
    margin-top: 20px;
    height: 342px;
    overflow: auto;
    position: absolute;
    width: 300px;
    z-index: 99;
}
.mainHeaderBottomRight > ul > li .instant-ajax-result {
    position: absolute;
    left: 0;
    width: 300px !important;
    z-index: 9;
}

@media (max-width: 1440px) {
  .productMegaInner .categoryList ul li a{
    padding: 10px 20px;
  }
  .productContentChild ul li .productIcon {
    width: 75px;
  }
  .mega-menu ul ul li .header-menu-logo{
    width: 85px;
  }
}
@media (max-width: 1280px) {
  .productContentChild ul li {
      width: 20%;
      border-top: none;
  }
}

@media (max-width: 1200px) {
	.headerWrap {
		.mainHeaderTop {
      .headerTopLeft{
        width: 40%;
        flex: none;
      }
			.headerTopRight {
        width: 60%;
        flex: none;
				ul {
					li {
						.searchForm {
							width: 240px;
						}
					}
				}
			}
		}
	}
}
@media (max-width: 1024px) {
  .headerWrap {
      .mainHeaderRight {
          .mainHeaderBottom {
              .menuWrap {
                  > ul {
                      > li {
                          margin: 0 15px;
                          a{
                            font-size: 16px;
                          }
                      }
                  }
              }
          }
      }
  }
  .mega-menu ul li ul li {
      width: 16.66% !important;
      padding-right: 0;
      border-bottom: none;
      position: relative;
  }
  .mega-menu.mega-menu-2{
    ul{
      height: 425px;
      overflow: auto;
    }
  }
}
@media (max-width: 991px) {
	.mob_991{
		display: block !important;
	}
	.desk_991{
		display: block !important;
	}
	.headerWrap {
        .mainHeaderTop {
			display: none;
        }
    }
	.headerWrap {
		border-bottom:1px solid #cecece5c;
	}
	.headerWrap {
		.headerBottom{
			display: flex;
			justify-content: space-between;
			padding: 10px 0;
			align-items: center;
			select{
				height: 40px;
				padding: 5px 10px;;
				color: #fff;
        option{
          color: #000;
          width: 100px;
          font-size: 13px;
        }
			}
			.logoWrap {
				width: 220px;
			}
		}
	}
  .headerWrap {
      .mainHeaderRight {
          .mainHeaderBottom {
            display: none;
          }
          .searchMobIcon{
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-right: 10px;
            &::after{
              width: 1px;
              height: 20px;
              position: absolute;
              right: 0;
              top: 50%;
              transform: translateY(-50%);
              background-color: #6f6f6f;
              content: "";
            }
            a{
              color: #fff;
            }
          }
      }
  }
  .mainHeaderBottomRight{
      display: flex;
      align-items: center;
      gap: 15px;
  }
  
  .responsive_nav {
    .menu-header-menu-responsive-container {
        > ul {
            li {
                &.menu-item-has-children {
                    .sub-menu {
                        li {
                            margin-bottom: 10px !important;
                            padding-bottom: 10px !important;
                            &:last-child{
                              margin-bottom: 0px !important;
                            }
                            a{
                              line-height: normal !important;
                            }
                        }
                    }
                }
            }
        }
    }
  }
	
}

@media (max-width:767px) {
    .mainSrchWrap {
        padding: 30px 20px 10px;
        position: fixed;
        height: 100%;
        background-color: #000000b3;
    }
    .srchCloseBtn {
        top: 15px;
        right: 15px;
    }
    .mainSrchWrap {
        &.active {
            top: 0;
            display: flex !important;
            align-items: center;
        }
    }
    
}
@media (max-width:580px) {
  .headerWrap {
      & .mainHeaderRight {
          .searchMobIcon {
              display: none;
          }
          .responsive_btn{
            display: none;
          }
      }
  }
  .mob_580{
    display: block;
  }  
	.mobBottomMenu{
		display: block;
	}

}
@media (max-width: 440px) {
  .headerWrap {
      .headerBottom {
            .logoWrap {
                width: 200px;
            }
            select {
                height: 35px;
                font-size: 14px;
                padding: 4px 10px;
                option{
                    color: #000;
                }
            }
      }
  }
}