nav {
  float: left;
  margin: 0 0 0 336px;
  /*-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;*/
}

nav[lang="en"] {
  margin-left: 336px;
}

*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.menu_item_bg {
  display: inline-block;
}

nav .menu_item {
  position: relative;
  display: inline-block;
  height: 38px;
  margin: 0 0 0 38px;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  /*letter-spacing: 1px;*/
  /*font-weight: 400;*/
  /*text-shadow: 0 0 1px rgba(255,255,255,0.3);*/
  font-size: 13px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  color: #FFF;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  padding: 12px 0 0 0;
}

nav[lang="en"] .menu_item {
  margin: 0 0 0 32px;
}

.menu_item i {
  visibility: hidden;
}

.menu_line {
  display: inline-block;
}

/*nav .menu_item a
{
    position: relative;
    display: block;
    z-index: 199;
    color: #fff;
    height: 45px;
}*/
nav a:focus, nav a:hover, nav a.selected {
  outline: none;
  color: #fff;
}

.menu_item span {
  position: absolute;
  width: 10px;
  height: 6px;
  bottom: -4px;
  left: 0;
  right: 0;
  background: url(../Images/menu_item_span.png) center no-repeat;
  opacity: 0;
  -webkit-transition: all 160ms linear;
  -moz-transition: all 160ms linear;
  -o-transition: all 160ms linear;
  -ms-transition: all 160ms linear;
  transition: all 160ms linear;
}

.menu_item_bg.showSpan .menu_item span,
.menu_item_bg.active .menu_item span {
  bottom: -3px;
  opacity: 1;
}

/*-----------------------Sub Menu ------------------*/
.sub_menu_bg {
  position: absolute;
  /*height:232px;*/
  width: auto;
  padding: 10px 20px 10px 0;
  background: white;
  margin-top: 2px;
  display: none;
  z-index: 99999;
}

.sub_menu_box {
  float: left;
  width: 298px;
  margin: 0 0 2px 20px;
}

.sub_menu_box.double {
  width: 442px;
}

.sub-menu-col {
  float: left;
  width: 50%;
}

.sub_menu_item {
  float: left;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  color: #333;
  border-top: 1px solid rgba(189, 130, 50, 0.16);
}

.sub-menu-col:nth-child(odd) .sub_menu_item {
  margin-right: 8px;
  margin-left: 0;
}

.sub-menu-col:nth-child(even) .sub_menu_item {
  margin-right: 0;
  margin-left: 8px;
}

.sub_menu_item:first-child {
  /*border-bottom:1px solid rgba(189,130,50,0);*/
  border: none;
}

.sub_menu_item:hover {
  color: #BD8232;
  /*border-bottom:1px solid rgba(189,130,50,0.26);*/
}

.sub_menu_item.active {
  /*padding-left:3px;*/
  color: #BD8232;
}

.sub_menu_item i:before {
  float: right;
  font-size: 9px;
  margin-right: 5px;
  line-height: 30px;
  font-family: 'FontAwesome';
  content: '\f105';
}

.menu_thumb_bg {
  /*float:right;*/
  /*position:absolute;
	left:100%;
	top:0;
	width:310px;
	height:208px;*/
  position: relative;
  float: left;
  width: 100%;
  max-width: 298px;
  margin: 10px 0 8px 0;
  /* border:3px solid #B80000;		 */
}

.menu_thumb_bg img {
  width: 100%;
  height: auto;
  /* height: 192px;	 */
  background: #000;
  opacity: 0;
}

.hover_thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image:url(../thumbnail.jpg);*/
  background-size: cover;
  -webkit-transition: all 260ms linear;
  -moz-transition: all 260ms linear;
  -o-transition: all 260ms linear;
  -ms-transition: all 260ms linear;
  transition: all 260ms linear;
  -webkit-transition-delay: 110ms;
  /* Safari */
  -moz-transition-delay: 110ms;
  -o-transition-delay: 110ms;
  -ms-transition-delay: 110ms;
  transition-delay: 110ms;
  border: 3px solid #B80000;
  /*display:none;*/
}

/*-----------------------Mobile Menu ------------------*/
.btn10 {
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 16px 1px 0 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.btn10 .icon {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 26px;
  top: 0;
  background-color: #fff;
}

.btn10 .icon:before {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 26px;
  background-color: #fff;
  content: "";
  top: -8px;
}

.btn10 .icon:after {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 26px;
  background-color: #fff;
  content: "";
  top: 8px;
}

.show .btn10 .icon {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transform: rotateZ(-180deg);
  transform: rotateZ(-180deg);
}

.show .btn10 .icon:before {
  -webkit-transform: rotateZ(-45deg) scaleX(0.55) translate(-11px, -3.2px);
  transform: rotateZ(-45deg) scaleX(0.55) translate(-11px, -3.2px);
}

.show .btn10 .icon:after {
  -webkit-transform: rotateZ(45deg) scaleX(0.55) translate(-11px, 3.2px);
  transform: rotateZ(45deg) scaleX(0.55) translate(-11px, 3.2px);
}

.btn10:hover {
  cursor: pointer;
}
