/* navbar */

.navbar {
  background: rgb(0 0 0 / 40%);
  height: auto;
 
	position: fixed;
	top: 57px;
		width: 100%;
	z-index: 9;
	transition: all .5s ease;
}
.navbar.navbar-inner {
    position: relative;
		width: 100%;
	z-index: 9;
	transition: all .5s ease;
}
.navbar.fixed {
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
 background: #fff;
	position: fixed;
	top: 0;
		width: 100%;
	z-index: 9;
}
.navbar .container-fluid, .header-top .container-fluid{
	padding: 10px 10% 10px;
}
.navbar .logo img {
 width: 280px;
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #132f48;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
	justify-content: flex-end;
	margin-bottom: 0
}
.navbar .inner__item .menu-item{
	line-height: normal;
    padding: 10px 20px;
}
.navbar .inner__item .menu-item:hover, .navbar .inner__item .menu-item:focus{
	color: #000;
}
.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
}
.navbar.navbar-inner ul li a{
	color: #000
}
.navbar.fixed .menu-items li a {
    color: #000;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}
.expand-btn:after {
  content: " \25BE";
  opacity: 0.7;
  margin-left: 5px;
}

.navbar .dropdown-menu {
  position: absolute;
  background: #e9ecef;
  width: 280px;
  line-height: 30px;
  border-radius: 0;
  top: auto;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
	padding: 10px;
}
.navbar .dropdown-menu a, .navbar .dropdown-menu a:hover,
.navbar .dropdown-menu a:focus{
	color: #171717;
	text-decoration: none;
	display: inline-block;
    line-height: 1.5;
}
.navbar .menu-item {
display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    font-size: 16px;
	line-height: 3
}
.menu-item.first-item {
  padding: 15px;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* mega menu  */

.navbar .mega-menu {
	position: absolute;
 left: 50%;
	transform: translate(-50%, 0px);
    width: 1000px;
    top: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
  background: #fff;
  padding: 1.5rem;  
  width: auto;
  justify-content: space-between;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.content .col-md-4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	border-right: 1px solid #ddd;
}
.content .col-md-4.last-child{
	border-right: 0
}

.content .menu-title {
  color: #000;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}


.content  .mega-links {
  padding-left: 0
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}



/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #132f48;
}
.navbar .mega-links li{
	padding: 0;
}
.navbar .mega-links li a i{
	font-size: 12px;
    position: relative;
    top: 6px;
    margin-right: 5px;
}
.navbar .mega-links li a {
    color: #000;
	padding: 0;
	display: block;
	transition: all .5s ease;
	line-height: 1.5;
    padding: 5px 0;
	display: flex;
	justify-content: flex-start
}
.navbar .mega-links li a:hover{
	text-indent: 5px
}

/* Responsive style */

@media screen and (max-width: 1200px) {
  .navbar {
    padding: 0px;
	  top: 0
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
   display: none;
  }
	.navbar .menu-btn__lines, .navbar .menu-btn__lines::before, .navbar .menu-btn__lines::after{
		background: #fff
	}
	.navbar.fixed .menu-btn__lines, .navbar.fixed .menu-btn__lines::before, .navbar.fixed .menu-btn__lines::after{
		background: #000
	}
  .navbar .menu-items {
   display: none
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top: 20px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 1rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }


  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col-md-4 {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col-md-4 .mega-links li,
  .col-md-4 .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col-md-4 .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }
  .col-md-4 .mega-links li {
    margin: 0;
  }
}

.mobile-header{
	display: none;
}
@media(max-width: 1200px){
	.mobile-header{
		display: block
	}
	
}


