/*
JQuery Simple MobileMenu
https://github.com/Position2/jQuery-Simple-MobileMenu
*/
/*Main style*/
body.mmactive {
  overflow: hidden;
}
.mobile_menu {
  display: none;
  position: relative;
}
.sm_menu_outer.active .mobile_menu {
  display: block;
  margin-top: 0px;
  padding: 10px 20px;
}
.sm_menu_outer {
  /*height: calc(100vh - 60px);*/
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  right: 0;
  top: 60px;
  bottom: -4px;
  height: auto;
  z-index: -9;
  width: 100%;
  opacity: 0;
  background-color: #eee;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.sm_menu_outer.active {
  opacity: 1;
  z-index: 9997;
}
.sm_menu_outer .mobile_menu li.back a {
  padding: 10px 5px 10px 55px;
  background: url("../img/menu-mobile/back.png") no-repeat scroll 15px center / 2% auto;
  background-color: transparent;
}
.sm_menu_outer .mobile_menu li.back a small {
  font-size: 90%;
  color: #51bdbc;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}
.sm_menu_outer .mobile_menu a {
  color: #707070;
  display: block;
  font: 400 16px/140% "Space Grotesk", sans-serif;
  padding: 10px 5px;
  text-transform: none;
  text-decoration: none;
}
.sm_menu_outer .mobile_menu a.login {
	color: #d11225 !important;
}
.sm_menu_outer .mobile_menu a.login .login-name {
	text-transform: none !important;
	font-style: normal;
	color: #fff;
	font-weight: 400 !important;
	font-family: 'Poppins', sans-serif !important;
}

/*Sub Menu anim */
.sm_menu_outer .mobile_menu .submenu {
  background-color: #eee;
  height: 100%;
  position: absolute;
  right: -101%;
  top: 0;
  transition: all 0.5s ease 0s;
  width: 100%;
  z-index: 9999;
  padding: 0 30px;
  min-height: 100vh;
}
.sm_menu_outer .mobile_menu li.active>.submenu {
  right: 0;
}
.sm_menu_outer .mobile_menu li.active>.submenu li a {
	font-family: 'Old Standard TT', serif;
}
.sm_menu_outer .mobile_menu li {
  list-style-type: none;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0);
  color: #ffffff;
}
.sm_menu_outer .mobile_menu li.hasChild>a {
  background: url("../img/menu-mobile/next.png") no-repeat scroll 98% center / 2% auto;
}
@media (max-width: 1215px) {
	.sm_menu_outer .mobile_menu li.hasChild>a {
	  background: url("../img/menu-mobile/next.png") no-repeat scroll 98% center / 2% auto;
	}
	.sm_menu_outer .mobile_menu li.back a {
	  background: url("../img/menu-mobile/back.png") no-repeat scroll 15px center / 3% auto;
	  background-color: transparent;
	}
}
@media (max-width: 500px) {
	.sm_menu_outer .mobile_menu li.hasChild>a {
	  background: url("../img/menu-mobile/next.png") no-repeat scroll 98% center / 4% auto;
	}
	.sm_menu_outer .mobile_menu li.back a {
	  background: url("../img/menu-mobile/back.png") no-repeat scroll 15px center / 7% auto;
	  background-color: transparent;
	}
}
.sm_menu_outer .mobile_menu .submenu hr {
	border-color: #fff;
}
.sm_menu_outer .mobile_menu .submenu img {
	max-width: 15%;
	display: inline-block;
}

/*Hamburger Animation */
#sm_menu_ham {
  cursor: pointer;
  float: right;
  height: 70px;
  position: fixed;
  right: 5px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  width: 70px;
  top: 0px;
  right: 0px;
  z-index: 1000;
  background-color: transparent;
}
#sm_menu_ham span {
  background-color: #707070;
  border-radius: 20%;
  display: block;
  height: 2px;
  left: 20px;
  opacity: 1;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  width: 28px;
}
#sm_menu_ham span:nth-child(1) {
  top: 22px;
}
#sm_menu_ham span:nth-child(2), #sm_menu_ham span:nth-child(3) {
  top: 30px;
}
#sm_menu_ham span:nth-child(4) {
  top: 38px;
}
#sm_menu_ham.open span:nth-child(1) {
  left: 50%;
  top: 18px;
  width: 0;
}
#sm_menu_ham.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
#sm_menu_ham.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #43736B;
}
#sm_menu_ham.open span:nth-child(4) {
  left: 50%;
  top: 18px;
  width: 0;
}
/*@media (min-width: 0px) and (max-width: 767px) {}
@media (min-width: 768px) and (max-width: 991px) {}
@media (min-width: 992px) and (max-width: 1024px) {}*/
@media (min-width: 1080px) {
  #sm_menu_ham, .sm_menu_outer {
    display: none;
  }
  header.nav-main {
    display: none;
  }
}





header.nav-main {
	display: none !important;
}
@media screen and (max-width: 1215px) {
	header.header-desktop {
		display: none;
	}
	nav.show-menu {
		display: none;
	}
	header.nav-main {
		display: grid !important;
		padding: 10px 30px 7px;
		background-color: transparent;
		position: fixed;
		z-index: 1000;
		width: 100%;
		min-height: 60px;
		display: block;
	}
	#sm_menu_ham, .sm_menu_outer {
		display: block;
	}
	.sm_menu_outer {
		overflow-y: hidden;
	}
	.logo-port img {
		max-width: 80%;
	}
	.user-icons-mobile {
		padding: 6px 0;
	}
	.user-icons-mobile .menu-icons {
		display: inline-block;
		float: none;
	}
	.user-icons-mobile .menu-icons a {
		color: #fff;
		font-weight: 400;
	}
}
@media only screen and (min-device-width: 480px) and (max-device-width: 640px) and (orientation: landscape) {
	header.nav-main {
		padding: 10px 20px 9px;
		min-height: 60px;
	}
} 
@media screen and (max-width: 500px) {
	header.nav-main {
		padding: 10px 10px 9px;
		min-height: 60px;
	}
	.user-icons-mobile {
		padding: 0;
	}
	#sm_menu_ham {
		width: 60px;
		height: 60px;
	}
	#sm_menu_ham span {
		left: 15px;
	}	
	#sm_menu_ham span:nth-child(1) {
		top: 20px;
	}
	#sm_menu_ham span:nth-child(2), #sm_menu_ham span:nth-child(3) {
		top: 28px;
	}
	#sm_menu_ham span:nth-child(4) {
		top: 36px;
	}
	.sm_menu_outer {
		top: 60px;
	}
}