/* BASIC css start */
html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #ffffff;
}

nav ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  z-index:999;
}


.nav {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  color: #333;
  z-index: 9999;
}
.nav a {
  display: block;
  padding: 0 10px;
  font-size: 15px;
  line-height: inherit;
  cursor: pointer;
}
.nav__menu {
  line-height: 45px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  background-color: #F3EFE4;
}
.nav__menu-box {
  display: inline-block;
  position: relative;
  width: 220px;
}
.nav__menu-box:hover {
  background-color: #E8E1CE;
}
.nav__menu-box:hover .nav__submenu {
  display: block;
}
.nav__submenu {
  font-weight: 300;
  text-transform: none;
  display: none;
  position: absolute;
  width: 220px;
  background-color: #F6F2E8;
}
.nav__submenu-box:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* BASIC css end */

