
.our-branding li h2{
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 0px;
}

/** NEW MAIN NAV MENU
******************************************************************/
.fixed-top {
  top: -50px;
  transform: translateY(50px);
  transition: transform 1s;
}
@media only screen and (max-width: 760px) {
  #navbar_top {
    display: none;
  }
}

.main-nav-menu {
  height:50px;
  position:relative;
  font-family: 'Barlow Semi Condensed', sans-serif;
}
.main-nav-menu ul{
  list-style: none;
  text-align: left;
}
.main-nav-menu ul:after{
  content: '';
  display: inline-block;
  width: 100%;
}
.main-nav-menu a {
  text-decoration:none;
  font-size: 0.9rem;
}
.main-nav-menu>ul>li{
  position:relative;
  float:left;
  display: inline-block;
}
.main-nav-menu>ul>li:hover{
  color: #fff !important;
  background-color: #ddd;
}
.main-nav-menu>ul>li>a:hover{
  color: #fff !important;
  background-color: #ddd;
}
.main-nav-menu>ul>li>a {
  position:relative;
  line-height:50px;
  padding:0 35px;
  color:#555;
  display:block;
}
@media only screen and (max-width: 1024px) {
  .main-nav-menu>ul>li>a {
    padding:0 20px;
  }
}
.main-nav-menu>ul>li>a:hover{
  color:#fff;
}



.main-nav-menu>ul>li.contact-drop>a:after,
.main-nav-menu ul>li.mega-drop>a:after,
.main-nav-menu ul>li.blog-post>a:after,
.main-nav-menu ul>li.drop-down>a:after {
  font-family: "Font Awesome 5 Pro";
  content:'\f107';
  position:absolute;
  top:0;
  padding: 0 5px;
  transform-origin: center;
	transition: all .3s ease-out;
}
.main-nav-menu ul>li.mega-drop:hover>a:after,
.main-nav-menu ul>li.drop-down:hover>a:after {
  font-family: "Font Awesome 5 Pro";
  content:'\f107';
  position:absolute;
  top:0;
  top: -1px;
	transform: rotate(-180deg);
  padding: 0 5px;
  color:#fff;
}

/* Drop Down */
.main-nav-menu>ul>li.drop-down:hover>ul{
  opacity:1;
  top:100%;
  left:-15px;
  visibility:visible;
  transition-delay: 350ms;
    -webkit-transition-delay: 350ms;
  height: auto;
  max-height: 500px;
  overflow-x: hidden;
  z-index: 999999;
}
.main-nav-menu>ul>li.drop-down>ul a{
  padding:10px;
  display:block;
  border-bottom:1px solid #ddd;
  color:#2c3e50;
    -webkit-transition:.6s ease;
    -moz-transition:.6s ease;
  transition:.6s ease;
  cursor: pointer;
}
.main-nav-menu>ul>li.drop-down>ul a:hover{
  padding-left:15px;
  background:#f6f6f6;
  cursor: pointer;
  color:#ffcc00;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.main-nav-menu>ul>li.drop-down>ul a:hover:after{
  position: relative;
  font-family: "Font Awesome 5 Pro";
  content:'\f105';
  color:#ffcc00;
  font-weight: lighter;
  padding-left: 10px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-nav-menu>ul>li.drop-down>ul>li.sub-drop:after{
  font-family: "Font Awesome 5 Pro";
  content:'\f105';
  color:#000;
  font-weight: lighter;
  position:Absolute;
  right:10px;
  top:50%;
  margin-top:-10px;
  height:20px;
  width:20px;
  line-height:20px;
  text-align:center;
  display:block;
}
.main-nav-menu>ul>li.drop-down>ul>li.sub-drop{
  position:relative;
}
.main-nav-menu>ul>li.drop-down>ul>li.sub-drop>ul{
  left:90%;
  width:210px;
  opacity:0;
  background:#f6f6f6;
  top:-99999px;
  visibility:hidden;
  border-left:4px solid #ffcc00;
  position:Absolute;
  transition:opacity 300ms ease-in-out;
    -webkit-transition:opacity 300ms ease-in-out;
    -moz-transition:opacity 300ms ease-in-out;
}
.main-nav-menu>ul>li.drop-down>ul>li.sub-drop:hover>ul{
  opacity:1;
  left:100%;
  top:0;
  visibility:visible;
}
.XXXarrow_box:after, .main-nav-menu>ul>li.drop-down>ul>li.sub-drop>ul:before {
	right: 100%;
	top: 15px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.main-nav-menu>ul>li.drop-down>ul>li.sub-drop>ul:after {
	border-color: rgba(236, 240, 241, 0);
	border-right-color: #ffcc00;
	border-width: 5px;
	margin-top: -5px;
}
.main-nav-menu>ul>li.drop-down>ul>li.sub-drop>ul:before {
	border-color: rgba(231, 76, 60, 0);
	border-right-color: #ffcc00;
	border-width: 9px;
	margin-top: -5px;
}

/* Mega Menu */
.main-nav-menu>ul>li.mega-drop{
  position:static;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner{
  position:absolute;
  opacity:0;
  width:100%;
  overflow:auto;
  top:-9999px;
  left:-9999px;
  background:#FFF;
  visibility:hidden;
  box-shadow: 0 7px 22px -5px rgba(47,56,68,0.2);
  -webkit-transition:opacity 300ms ease-in-out;
  -moz-transition:opacity 300ms ease-in-out;
  transition:opacity 300ms ease-in-out;
  transition-delay: 350ms;
    -webkit-transition-delay: 350ms;
  z-index: 999999;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner ul{
  width:23%;
  float:left;
  margin:20px 1%;
  transition:.6s ease;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner ul li{
  transition:.6s ease !important;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner ul li a{
  display:block;
  width:85%;
  padding:10px 0;
  text-transform:uppercase;
  border-bottom:1px solid #e6e6e6;
  color:#272f32;
  font-size: 0.9rem !important;
  cursor: pointer;
  transition:.6s ease;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner ul li a:hover{
  display:block;
  width:85%;
  padding:10px 0;
  text-transform:uppercase;
  border-bottom:1px solid #e6e6e6;
  color:#ffcc00;
  padding-left:5px;
  transition:.6s ease;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner ul li a:hover:after{
  position: relative;
  font-family: "Font Awesome 5 Pro";
  content:'\f105';
  color:#ffcc00;
  font-weight: bold;
  padding-left: 10px;
  transition:.6s ease;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner ul h3{
  font-size: 14px;
  color:#999;
  padding:0;
  margin:20px 10px;
}
.main-nav-menu>ul>li.mega-drop:hover .mega-drop-inner{
  opacity:1;
  left:0;
  top:100%;
  visibility:visible;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner2{
  position:absolute;
  opacity:0;
  width:100%;
  overflow:auto;
  top:-9999px;
  left:-9999px;
  background:#FFF;
  visibility:hidden;
  xborder-top:3px solid #ff3d2e;
  box-shadow: 0 7px 22px -5px rgba(47,56,68,0.2);
  -webkit-transition:opacity 300ms ease-in-out;
  -moz-transition:opacity 300ms ease-in-out;
  transition:opacity 300ms ease-in-out;
  transition-delay: 350ms;
    -webkit-transition-delay: 350ms;
  z-index: 999999;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner2 ul{
  width:31%;
  float:left;
  margin:20px 1%;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner2 ul li a{
  display:block;
  width:75%;
  padding:10px 0;
  text-transform:uppercase;
  border-bottom:1px solid #e6e6e6;
  color:#272f32;
  font-size: 0.9rem !important;
  cursor: pointer;
  transition:.6s ease;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner2 ul li a:hover{
  cursor: pointer;
  color:#ffcc00;
  padding-left:5px;
  transition:.6s ease;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner2 ul li a:hover:after{
  position: relative;
  font-family: "Font Awesome 5 Pro";
  content:'\f105';
  color:#ffcc00;
  font-weight: bold;
  padding-left: 10px;
  transition:.6s ease;
}
.main-nav-menu>ul>li.mega-drop .mega-drop-inner2 ul h3{
  font-size: 14px;
  color:#999;
  padding:0;
  margin:20px 10px;
}
.main-nav-menu>ul>li.mega-drop:hover .mega-drop-inner2{
  opacity:1;
  left:0;
  top:100%;
  visibility:visible;
}

/* Multi level dropdown */
.main-nav-menu>ul>li.drop-down>ul{
  position:absolute;
  xborder-top:3px solid #e74c3c;
  top:-9999px;
  visibility:hidden;
  opacity:0;
  left:-99999px;
  width:270px;
  background:#fff;
  box-shadow: 0 7px 22px -5px rgba(47,56,68,0.2);
  -webkit-transition:opacity 300ms ease-in-out;
  -moz-transition:opacity 300ms ease-in-out;
  transition:opacity 300ms ease-in-out;
}
.main-nav-menu>ul>li.drop-down>ul:after, .main-nav-menu>ul>li.drop-down>ul:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.main-nav-menu-catalog{
  position: relative !important;
}
.main-nav-menu-catalog img{
  width: 300px!important;
}
.main-nav-menu-catalog span {
  display: block;
  position: absolute;
  top: 30px;
  right: 25%;
  background-color: #ff0000;
  font-family: 'Titillium Web',sans-serif;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 0 15px;
  z-index: 1;
}
.main-nav-menu-catalog span::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  height: 5px;
  width: 5px;
  background-color: transparent;
  border-right: 2.5px solid transparent;
  border-left: 2.5px solid #ff0000;
  border-top: 2.5px solid #ff0000;
  border-bottom: 2.5px solid transparent;
}
.main-nav-menu-catalog a, .main-nav-menu-catalog img {
  border-bottom:0px solid #ddd!important;
  padding-left:0px!important;
  transition: all 0.5s ease 0s;
  z-index: 0;
}
.main-nav-menu-catalog img:hover{
  transition: all 0.5s ease 0s;
  transform: scale(1.05);
  overflow: hidden;
}

.virtual--room--new--icon {
    position: relative;
    top: -7px;
    left: 5px;
    font-size: 10px;
    background-color: #FF324D;
    border-radius: 2px;
    height: 14px;
    line-height: 1.2;
    color: #fff;
    min-width: 16px;
    text-align: center;
    padding: 0 8px;
    display: inline-block;
    vertical-align: top;
    xmargin-left: -5px;
    xmargin-right: -5px;
}
.virtual--room--new--icon::before {
    border-style: solid;
    border-width: 3px;
    bottom: -5px;
    content: "";
    left: 4px;
    position: absolute;
    border-color: #FF324D transparent transparent;
}
.showrom-360-menu-icon {
  position: relative;
}
.showrom-360-menu-icon:after{
  content: url(http://uat-spector1.nextmp.net/images/icons/360-view-icon.svg);
  position: absolute;
  top:3px;
  right:30px;
  display: inline-block;
  width: 25px !important;
  background-repeat: no-repeat;
  transition:.6s ease;
 }
.showrom-360-menu-icon:hover::after{
  content: url(http://uat-spector1.nextmp.net/images/icons/360-view-icon2.svg);
  transition:.6s ease;
}


/*
BURGER MENU - OVERRIDE AND Multi Level Drop Down Menu
*********************************************************************************/
.drawer-hr{
  position: relative;
  padding:50px 0;
}
.drawer-hr::after {
  background: #000;
  content: '';
  display: block;
  xleft: 6%;
  position: absolute;
  width: 100%;
  height: 2px;
}

.drawer-toggle i:hover{
  color: #666;
  cursor: pointer;
}
.drawer-toggle.closeX i{
  margin-top:25px;
  font-size: 20px;
  color: #000 !important;
  cursor: pointer;
}
.drawer-toggle.closeX i:hover{
  color: #ff0000;
}

.drawer-menu-item {
  font-size: .9rem;
  font-weight: 500;
  display: block;
  padding: .5rem;
  text-decoration: none;
  color: #222;
}


#accordian {
  position: relative;
  xbackground: #004050;
  background: #fff;
  width: 100%;
  xmargin: 10px auto 0 auto;
  padding: 20px;
  color: #000;
}
#accordian h3 {
  background: #fff;
  xbackground: linear-gradient(#003040, #002535);
  border-bottom:1px solid #ddd;
  padding: auto;
  margin: auto;
}
#accordian h3 a {
	padding: 10px 0px;
	font-size: 15px;
	line-height: 3;
	display: block;
	color: #000;
	text-decoration: none;
}
#accordian h3 a:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
  padding-left: 10px;
  background: #f6f6f6;
  border-left: 4px solid #ffcc00;
}
#accordian i {
	margin-right: 10px;
  width:16px;
}
#accordian .arrow-right {
	position: relative;
}
#accordian .arrow-right::after   {
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	position: absolute;
  top: 20px;
	right: 10px;
	font-size: 15px;
  display: inline-block;
}
#accordian .active>.arrow-right:not(:only-child):after {
	content: "\f107";
}
#accordian li {
	list-style-type: none;
}
#accordian ul ul li a,
#accordian h4 {
  color: #000;
	text-decoration: none;
	font-size: 15px;
	line-height: 2;
	display: block;
  padding: 7px 0px;
    padding-left: 20px;
	transition: all 0.15s;
	position: relative;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}
#accordian ul ul li a:hover {
		xbackground: #003545;
		xborder-left: 5px solid lightgreen;
	background: #f6f6f6;
	border-left: 4px solid #ffcc00;
    xtransition: all 0.5s ease-in-out;
}
#accordian ul ul {
		display: none;
}
#accordian li.active>ul {
		display: block;
}
#accordian ul ul ul {
		margin-left: 15px;
		xborder-left: 1px dotted rgba(0, 0, 0, 0.5);
}
#accordian a:not(:only-child):after {
		content: "\f105";
		font-family: "Font Awesome 5 Pro";
		position: absolute;
		right: 10px;
		top: 7px;
		font-size: 14px;
}
#accordian .active>a:not(:only-child):after {
		content: "\f107";
}

.xsub-level li a{
  font-size: 12px !important;
  color:#ff0000 !important;
}
/* END */


/***************************************************************************
-- NAV BAR MENU
****************************************************************************
****************************************************************************
****************************************************************************
****************************************************************************
****************************************************************************/
.dropdown,
.dropend,
.dropstart,
.dropup {
    position: relative
}
.dropdown-toggle {
    white-space: nowrap
}


.dropdown-toggle,
.dropright-toggle {
  overflow: hidden;
}
.dropdown-toggle::after,
.dropright-toggle::after {
  xfloat: right;
  margin-left: .255em;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  border: 0;
  position: relative;
  top: 1px;
}
.dropdown-toggle::after {
  content: "\f107";
  transition: .3s;
}
.dropright-toggle::after {
  content: "\f105";
}
.dropright-toggle[data-toggle=collapse]::after
.dropdown-toggle[data-toggle=collapse]::after {
  transition: all .1s ease-in-out;
  transform-origin: center center;
}
.dropright-toggle[aria-expanded=true]:after,
.dropdown-toggle[aria-expanded=true]:after {
    transform: rotate(-180deg)
}




.topbar .region {
  background-color: transparent;
}
.topbar .region:hover {
  text-decoration: none !important;
}
.topbar .region .dropdown-menu {
  min-width:150px;
  margin-top: 0.5rem !important;
  transition: transform .2s;
  transform: translateY(30px);
  color: #333;
  outline: none !important;
  font-size: 0.7rem !important;
  padding: 3px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid #efecf3;
  border-radius: 0.5rem;
}
.topbar .region .dropdown-toggle {
  font-size: 15px;
}
.topbar .region .dropdown-toggle::after {
  position: relative;
  top: 4px;
}
.topbar .region .dropdown-menu a{
  font-size: 14px;
}

.topbar .region .region-icon-wrap {
  width: 20px;
  border: 0px solid #aaa;
  border-radius: 0px;
  margin-right: 7px !important;
}
@media only screen and (max-width: 767px){
  .topbar .region .region-icon-wrap {
    width: 30px;
    border: 0px solid #aaa;
    border-radius: 0px;
    margin-right: 0px !important;
  }
}

.topbar .region .dropdown-menu::before {
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-right: 7px solid transparent;
    border-bottom: 8px solid #f1f1f1;
    border-left: 7px solid transparent;
    position: absolute;
    top: -8px;
    left: 30px;
}
.topbar .region .dropdown-menu::after {
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    border-left: 7px solid transparent;
    position: absolute;
    top: -5px;
    left: 30px;
}
.topbar .region .dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.7rem 1.5rem !important;
    clear: both;
    font-weight: 400;
    color: #111;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    line-height: 0;
    border-bottom: 1px solid #e5e5e5;
}
.topbar .region .dropdown-menu .dropdown-item:last-child{
    border-bottom: 0px solid #e5e5e5;
}
.topbar .region .dropdown-menu .dropdown-item img{
  margin-right:10px;

}
.topbar .region .dropdown-menu .dropdown-item:focus,
.topbar .region .dropdown-menu .dropdown-item:hover {
    color: #ffcc00;
    text-decoration: none;
    background-color: #f7f7f7;
    border-radius: 0.2rem;
}





.megamenu {
  overflow: hidden;
  margin-top: -4px !important;
  border-top: 5px solid #ffcc00 !important;
  border: 1px solid #ccc;
  border-radius: 0.5rem;

  border-top-left-radius: 0;
  border-top-right-radius: 0;

  box-shadow: 0 8px 20px rgb(0 0 0 / 15%);
  background-color: #fff;
  color: #fff!important;
}
.megamenu h6 {
  color:#333;
  font-weight: 600;
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 16px;
}
.megamenu h6:after {
  content: "";
  display: block;
  border-bottom: 1px solid #d7d7d7;
  width: 75%;
  margin-top:10px;
}

.megamenu .megamenu-list {
  font-size: 0.9rem;
  margin-left: 4px;
  margin-bottom: 0rem;
  padding: 0px;
}

.megamenu .megamenu-list li {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  padding: 4px;
	position: relative;
  border-left: 5px solid transparent;
  background-color:  transparent;
}
.megamenu .megamenu-list li a{
  font-size: 16px;
  font-weight: 500;
	color: #333;
  text-transform: uppercase;
  justify-content: left;
}
.megamenu .megamenu-list li a:hover {
	color: #333;
  padding-left: 3px;
}
.megamenu .megamenu-list li:hover {
  Xcolor:#fff !important;
  background-color: rgb(3,3,3, 0.05);
  overflow: auto;
	position: relative;
  transition: all .3s;
  cursor: pointer;
  padding-left: 3px;
}
.megamenu .megamenu-list li:hover {
  border-left: 5px solid #ffcc00;
}


.megamenu .megamenu-services {
  padding: 1rem 1rem;
  background: #f8f9fa;
}
.megamenu .megamenu-services .megamenu-services-item {
  display: flex;
  margin: 1rem auto;
  align-items: center;
}
.megamenu .megamenu-services .megamenu-services-icon {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  flex-shrink: 0;
}
.megamenu .megamenu-services i{
  padding-right:10px;
}




.branding-menu-right-border::after {
  content: '';
  position: absolute;
  xtop: 0;
  right: 37px;
  bottom: 0;
  display: inline-block;
  height:110%;
  width: 2px;
  background-color: #ddd;
}

.our-branding-nav li {
  display: block;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}

.our-branding-nav li img {
  display: block;
  width:130px;
  text-align: left;
}


/*
  *-- MAIN NAVBAR MENU ********************************************************* /
*/

.navbar-section-bg {
  background: rgb(247,247,247);
  background: linear-gradient(180deg, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 10%);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding: 10px 0;
}


.fixed-top {
  top: -50px;
  transform: translateY(50px);
  transition: transform 1s;
}

@media only screen and (max-width: 760px) {
  #navbar_top {
    display: none;
  }
}





.navbar-nav > li:first-child .nav-link{
  padding-left: 0 !important;
}
.navbar .nav-link2 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  letter-spacing: .05em;
  text-transform: capitalize;
  padding-right: 0 !important;
  padding-left: 1.5rem !important;
}
.navbar .nav-linkxxxxx:hover,
.navbar .nav-link2:hover {
  color:#ffcc00;
}
.navbar .dropdown-menu {
  min-width: 1200px;
  margin-top: 0.2rem;
  transition: transform .2s;
  left: 50%;
  transform: translateX(-50%);
}
.navbar .dropmenu--wrap {
  border-top: 0.1875rem solid #ffcc00;
  border-bottom: 0.1875rem solid #ffcc00;
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
  box-shadow: 0 8px 20px rgb(55 125 255 / 8%);
}
.navbar .dropmenu--wrap::before {
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-right: 7px solid transparent;
  border-bottom: 8px solid #ffcc00;
  border-left: 7px solid transparent;
  position: absolute;
  top: -8px;
  left:18px;
}
.navbar .animated {
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

.navbar .nav-link {
  font-size: calc(11px + (20 - 12) * ((100vw - 400px) / (2500 - 400)));
  font-weight: 600;
  color: #000;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding-left: 2rem !important;
}
.navbar .nav-link:focus {
  color:#ffcc00;
}
.navbar .nav-link:disabled {
  color: #666;
}

@media (max-width: 991px) {
  .navbar .nav-link {
    font-size: calc(13px + (20 - 13) * ((100vw - 400px) / (2500 - 400)));
    font-weight: 600;
    color: #000;
    padding-left: 1rem !important;
  }
}
/* MAIN MENU HIDDEN *************************************/
@media (max-width: 767px) {
  .navbar-expand-sm {
    display: none;
  }
}



.nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-item a:hover {
 color:#ffcc00;
}



/* ============ desktop view ============ */
@media all and (min-width: 992px) {
	.dropdown-menu li {
    position: relative;
    z-index: 99999999999999999 !important;
  }
	.nav-item .submenu {
		display: none;
		position: absolute;
		left:100%;
    top:-5px;
	}
	.nav-item .submenu-left {
		right:100%;
    left:auto;
	}
	.dropdown-menu > li:hover {
    background-color: #f1f1f1;
  }
	.dropdown-menu > li:hover > .submenu {
    display: block;
    z-index: 99999999999999999 !important;
  }
}
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu{
    margin-left:0.7rem;
    margin-right:0.7rem;
    margin-bottom: .5rem;
  }
}
/* ============ small devices .end// ============ */


.scrollable-menu {
  height: auto;
  max-height: 600px;
  xoverflow-x: hidden;
  overflow-x: visible!important;
  overflow-y: scroll;
  overflow: auto!important;
  z-index: 1;
}
.scrollable-menu2 {
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
}

ul.dropdown-menu {
  position: relative;
  max-height: 400px;
  overflow-y: scroll;
}







/*****
*
*
*
*
* EXTRA CLASSES FOR MAIN MENU
*
*
*
*
*******/

.spector-menu {
	position:relative;
}

.Home h4{
  padding: 12px 0;
}
.Home h5{
  font-size: 1rem;
  font-weight: normal;
}

.Home ul.stander li a {
	position: relative;
	padding: 10px 10px;
	color: #666;
	font-weight: 500;
	border-left: 5px solid transparent;
  background-color:  transparent;
	display: inline-block;
}
.Home ul.stander li a:hover {
	background-color: rgb(3,3,3, 0.05);
  overflow: auto;
	position: relative;
  transition: all .3s;
  cursor: pointer;
	border-left: 5px solid #ffcc00;
}


.hmp img {
	width: 75%;
}
.Home h4.row.mega-title {
	color: #000;
	margin-top: 0px;
	font-size: 14px;
	padding-left: 15px;
	padding-bottom: 13px;
	text-transform: uppercase;
	border-bottom: 1px solid #cecece;
	padding-top: 0px;
	font-weight: 600;
	background-color: white;
}
.Home ul li a:hover {
	color:#d41212;
}
.Home ul li a.view-more {
	color: #fff;
	padding: 10px 16px;
}
.Home .view-more{
	color: white;
	padding: 10px 16px;
}


.Home .active {
	display: block;
}

.Home ul li a {
  line-height: 27px;
  display: block;
  color: #000;
}

.Home .mpik{
    margin-top: 0px;
	width:80%;
	margin-left:20px;
}

.home-drop-down:hover +.Home{
	display:block;
}

.Home:hover,
.Blog:hover,
.search:hover,
.Images:hover,
.contact:hover,
.Tabs:hover,
.mega-menu:hover,
.drop-down-ul:hover,
li.flyout-left>ul:hover,
li.flyout-right>ul:hover,
.flyout-mega-wrap:hover,
li.flyout-left a:hover +ul,
li.flyout-right a:hover +ul,
.blog-drop-down >a:hover+.Blog,
li.drop-down>a:hover +.drop-down-ul,
.Tabs-drop-down>a:hover +.Tabs,
.Home-drop-down>a:hover +.Home,
.images-drop-down>a:hover +.Images,
.contact-drop-down>a:hover +.contact,
.search-drop-down>a:hover +.search,
.mega-drop-down a:hover+.mega-menu,
li.flyout-mega>a:hover +.flyout-mega-wrap{
	display:block;
}


@media (min-width:767px){

	.spector-menu > li > a{
		display:block;
		padding: 20px 30px;
	}
	.mega-menu, .flyout-mega-wrap, .Images, .Tabs, .contact, .Blog,.flyout-right>ul,
		.flyout-left>ul, li.drop-down>ul{
		position:absolute;
	}
	.flyout-right>ul{
		left: 100%;
	}
	.flyout-left>ul{
		right: 100%;
	}
}


@media (max-width:767px){

	.spector-menu {
		min-height: 60px;
		background-color: #333;
		width: 100%;
	}

	.spector-menu > li > a{
		width:100% ;
	    display:none ;

	}
	.spector-menu > li{
		width:100%;
	}
	.display.spector-menu > li > a{
	  display:block ;
	  	padding: 20px 22px;
	}

	.Home, .mega-menu, .contact, .Images,  .Tabs, .search, .Blog,.flyout-right>ul,
	.flyout-left>ul, li.drop-down>ul{
			position:relative;
	}

}


.tab {
  border-right: 1px solid #d4d4d4;
}
.tablinks:before{
  content: "\f054";
  color: #9c9c9c;
	font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  display: inline;
  z-index: 1111;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 8px;
  font-size: 12px;
}
.tablinks-none-icon:before{
  content: "";
  color: #9c9c9c;
	font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  display: inline;
  z-index: 1111;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 12px;
}
.tab .rmm  {
  display: block;
  background-color: inherit;
	padding:4px;
  width: 100%;
  border: none;
	border-left: 5px solid transparent;
	font-size: 16px;
  font-weight: 500;
	color: #333;
  outline: none;
  text-align: left;
  position:relative;
	transition: all .3s;
}
.tab .rmm:hover {
  background-color: #f3f3f3;
	border-left: 5px solid #ffcc00;
}
.tab .rmm.active {
	background-color: #f3f3f3!important;
	border-left: 5px solid #ffcc00!important;
}
.tabcontent {
  padding: 0px 12px;
  border-left: none;
  display: none;
}
.tabcontent h3{
	line-height: 1.3;
	margin-bottom: 20px;
}
.tabcontent p{
  font-size: 16px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 20px;
}

.tab a img {
  width: 150px;
	text-align: left;
}


.spector-menu .tabcontent .col-md-3 a {
  display:block !important;
}
.spector-menu .tabcontent .col-md-3 p {
  font-weight: 500;
  margin-bottom: 0;
}


/*
	------- OUR COMPANY TRADESHOW SCHEDULE
*/

.tradeshow_schedule_container {
  margin:20px;
}
.tradeshow_schedule_container h1 {
  font-size: 27px;
  font-weight:500;
  line-height: 1.5;
  color: #555;
  xpadding-top:10px;
  margin-bottom: 0rem;
}
.tradeshow_schedule_container p {
  font-size: 14px;
  font-weight:400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #555;
  margin-bottom: 0px !important;
}
.tradeshow_schedule_container .tradeshow_schedule_container_asi span {
  font-size: 12px;
  font-weight:400;
  line-height: 1.5;
  color: #fff;
  background: #ff0000;
  padding: 3px 10px;
  position: relative;
  top:-5px;
}
.tradeshow_schedule_container .tradeshow_schedule_container_pppc {
  margin-top:20px;
}
.tradeshow_schedule_container .tradeshow_schedule_container_ppai span {
  font-size: 12px;
  font-weight:400;
  line-height: 1.5;
  color: #fff;
  background: #333399;
  padding: 3px 10px;
  position: relative;
  top:-5px;
}
.tradeshow_schedule_container .tradeshow_schedule_container_saac span {
  font-size: 12px;
  font-weight:400;
  line-height: 1.5;
  color: #fff;
  background: #3399cc;
  padding: 3px 10px;
  position: relative;
  top:-5px;
}
.tradeshow_schedule_container .tradeshow_schedule_container_pppc span {
  font-size: 12px;
  font-weight:400;
  line-height: 1.5;
  color: #fff;
  background: #84cb47;
  padding: 3px 10px;
  position: relative;
  top:-5px;
  margin-top:20px;
}
.tradeshow_schedule_container i{
  margin-right:7px;
}

.mn-sidebar {
	display: table-cell;
	position: relative;
	vertical-align: top;
	padding-bottom: 49px;
	xwidth: 270px;
	z-index: 2;
}
.mn-vnavigation {
	margin: 0 0 0 0;
	padding: 0;
	transition: all .3s;
}
.mn-vnavigation li {
	min-width: 300px;
}
.mn-vnavigation li a {
	border-left: 5px solid transparent;
	display: block;
	padding: 14px 18px 13px 15px;
	font-size: 16px;
  font-weight: 500;
  color: #333 !important;
  text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background-color: #fff;
	transition: all .3s;
}
.mn-vnavigation li a:hover{
	background-color: rgb(3,3,3, 0.05);
	overflow: auto;
	position: relative;
	transition: all .3s;
	border-left: 5px solid #ffcc00;
	cursor: pointer;
}

.dropdown-submenu >
.dropdown-menuz {
	top: 0 !important;
	left: 100%;
	margin-top: -6px;
	margin-left: 0px;
	height: 101vh;
	background: transparent;
}
.dropdown-submenu:hover >
.dropdown-menuz {
	display: block;
	top: 0 !important;
}
.dropdown-submenu > a:after {
	content: "\f054";
  color: #9c9c9c;
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  display: inline;
  z-index: 1111;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 15px;
}
.dropdown-submenu:hover > a:after {
	color: #ffcc00;
}

.dropdown-menuz {
		position: absolute;
		top:0!important;
		z-index: 1000;
		display: none;
		min-width: 20rem;
		padding: 0.5rem 0;
		margin: 0;
		font-size: 1rem;
		color: #212529;
		text-align: left;
		list-style: none;
		background-color: #fff;
		background-clip: padding-box;
		border: 0px solid rgba(0,0,0,.15);
		border-radius: 0.25rem;
}

.dropdown-menuz img{
	padding:5%;
	border-radius:20px;
}
