.head-menu{
  padding: 0;
  margin: 0;
  display: flex;
  display: -webkit-flex;
}
.head-menu li{
  display: block;
}
/* Mega Menu CSS Start */
.mega-menu-has>a{
  position: relative;
}
.mega-menu-has>a>i{
  font-size: 18px;
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  margin-left: 4px;
}
.mega-menu-has>a::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  height: 40px;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
}
.mega-menu-has:hover>a::before{
  opacity: 1;
  visibility: visible;
}
.mega-menu{
  position: absolute;
  left: 0;
  top: 79px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 3px rgba(0, 0, 0, 0.05);
  padding: 30px 0;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(60px);
  -webkit-transform: translateY(60px);
  transition: all 300ms ease-in-out;
}
.mega-menu-open .mega-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.mega-menu::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	border-radius: 8px;
	background-color: #F5F5F5;
}
.mega-menu::-webkit-scrollbar{
	width: 10px;
	background-color: #F5F5F5;
}
.mega-menu::-webkit-scrollbar-thumb{
	border-radius: 8px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.1);
	background-color: #ededed;
}
.search-container{
  padding-bottom: 40px;
}
.search-area{
  display: inline-block;
  position: relative;
  box-shadow: 14px 0 20px #FFECE5;
}
.search-area input{
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #FDF5F2;
  padding: 11px;
  width: 410px;
  color: #F16232;
  padding-right: 60px;
}
.search-area input:focus{
  outline: none;
}
.search-area input::-moz-placeholder{
  opacity: 1;
  color: #F16232;
}
.search-area input::-webkit-input-placeholder{
  opacity: 1;
  color: #F16232;
}
.search-btn{
  position: absolute;
  right: 8px;
  top: 6px;
  background-color: #F16232;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border: none;
}
.mobile-back{
  width: 40px;
  height: 40px;
  background-color: rgba(241, 98, 50, 0.5);
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: none;
}
.mega-menu-columns{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  gap: 30px;
}
.mega-column{
  flex: 0 0 calc(25% - 23px);
  -webkit-flex: 0 0 calc(25% - 23px);
  max-width: calc(25% - 23px);
}
.mega-column h6{
  color: #F16232;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.mega-column h6>span{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #FDF5F2;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.mega-column ul{
  padding: 0;
  margin: 0;
}
.mega-column ul li:not(:last-child){
  margin-bottom: 12px;
  display: block;
}
.mega-column ul li>a{
  display: inline-block;
  color: #000;
  text-transform: capitalize;
}
.mega-column ul li>a:hover{
  color: #F16232;
}
/* Mega Menu CSS End */
@media screen and (min-width: 992px){
  .mega-menu-has:hover .mega-menu{
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    -webkit-transform: translate(0);
  }
}
@media screen and (max-width: 1024px) {
  .mega-column{
    flex: 0 0 calc(33.33% - 20px);
    -webkit-flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}
@media screen and (max-width: 991px){
  .mega-menu{
    top: 0;
    max-height: 100vh;
    z-index: 9;
    padding: 20px 0;
  }
  .search-container{
    padding-bottom: 20px;
  }
  .mega-column h6{
    margin-bottom: 18px;
  }
  .mega-menu-columns{
    gap: 20px;
  }
  .mobile-back{
    display: block;
  }
}
@media screen and (max-width: 767px){
  .mega-column{
    flex: 0 0 calc(50% - 15px);
    -webkit-flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media screen and (max-width: 575px){
  .mega-column{
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    max-width: 100%;
  }
  .search-area{
    width: 100%;
  }
  .search-area input{
    width: 100%;
  }
}
