
/*-----------  MENU  ------------------------------------------------------------*/
.mainNav {
  position: relative;
  display: block;
  text-align: left;
  margin-top: 0;
  z-index: 20;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.mainNav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #43403b;
}
.mainNav > ul:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #43403b;
  top: 0;
  left: -100%;
  pointer-events: none;
  content: "";
}
.mainNav > ul:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #43403b;
  top: 0;
  right: -100%;
  pointer-events: none;
  content: "";
}
.mainNav > ul > li {
  position: relative;
  display: inline-block;
  margin: 0 15px;
  z-index: 0;
  pointer-events: none;
}
.mainNav > ul > li a {
  position: relative;
  display: inline-block;
  -moz-perspective: 800;
  -webkit-perspective: 800;
  -ms-perspective: 800;
  perspective: 800;
  overflow: hidden;
  pointer-events: auto;
}
.mainNav > ul > li a > div {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transform-origin: left center;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.mainNav > ul > li a > div:first-child {
  position: absolute;
}
.mainNav > ul > li a > div:first-child + div {
  top: -100px;
}
.mainNav > ul > li a > div:first-child + div span {
  background: url('../img/arr_bg.png') 50% -5px no-repeat;
  opacity: 0;
  filter: alpha(opacity=0);
}
.mainNav > ul > li a > div span {
  position: relative;
  display: block;
  font: normal 14px/23px 'Segoe UI', Tahoma, Arial, Helvetica, Sans-Serif;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 27px 5px 21px;
  margin: 0;
  background: url('../img/false_button.png') 0 0 repeat;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.mainNav > ul > li.active,
.mainNav > ul > li.sfHover,
.mainNav > ul > li:hover {
  z-index: 10;
}
.mainNav > ul > li.active > a,
.mainNav > ul > li.sfHover > a,
.mainNav > ul > li:hover > a {
  text-decoration: none;
}
.mainNav > ul > li.active > a > div:first-child,
.mainNav > ul > li.sfHover > a > div:first-child,
.mainNav > ul > li:hover > a > div:first-child {
  top: 200px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.mainNav > ul > li.active > a > div:first-child + div,
.mainNav > ul > li.sfHover > a > div:first-child + div,
.mainNav > ul > li:hover > a > div:first-child + div {
  /*.rotateZ(0deg);*/
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  top: 0;
}
.mainNav > ul > li.active > a > div:first-child + div span,
.mainNav > ul > li.sfHover > a > div:first-child + div span,
.mainNav > ul > li:hover > a > div:first-child + div span {
  color: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100);
}
.mainNav > ul > li:after {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background: url(../img/devider_2.png) 0 0 no-repeat;
  top: 37px;
  right: -18px;
  pointer-events: none;
  content: "";
}
.mainNav > ul > li:last-child:after {
  display: none;
}
.mainNav > ul > li .subNav {
  position: absolute;
  width: 100%;
  right: 0;
  top: 77px;
}
.mainNav > ul > li .subNav ul {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  background: #ffffff;
  width: 111%;
  text-align: center;
}
.mainNav > ul > li .subNav ul:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/arr_1.png) no-repeat center 0;
  top: -5px;
  left: 0;
  pointer-events: none;
  content: "";
}
.mainNav > ul > li .subNav ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}
.mainNav > ul > li .subNav ul li:first-child {
  margin-top: 24px;
}
.mainNav > ul > li .subNav ul li:last-child {
  margin-bottom: 15px;
}
.mainNav > ul > li .subNav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  font: 500 12px/1em 'Segoe UI', Tahoma, Arial, Helvetica, Sans-Serif;
  color: #43403b;
  text-transform: uppercase;
  z-index: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mainNav > ul > li .subNav ul li.active > a,
.mainNav > ul > li .subNav ul li a:hover {
  color: #C6272D;
  text-decoration: none;
}
