@charset "utf-8";

/* header */
header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 86px;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #232323;
}
.header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  font-family: 'Lato';
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  border-bottom: 1px solid rgba(94, 94, 94, .3);
}
.header__logo {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px 0; 
}
.header__nav {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-grow: 10;
}
.header__nav > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  max-width: 445px;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.header__nav > ul li {
  position: relative;
}
.header__nav > ul li a {
  color: #ffffff;
  position: relative;
  padding-top: 7px;
  padding-bottom: 7px;
}
.header__nav > ul li a::after {
  content: '';
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 31px;
  height: 2px;
  background-color: #F1B72F;
  position: absolute;
  bottom: 0;
  opacity: 0;
  left: 20%;
  z-index: 1;
}
.header__nav > ul li a:hover::after,
.header__nav > ul li a.active::after {
  opacity: 1;
  left: 60%;
}
.header__presentation,
.header__phone {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.header__presentation img,
.header__phone img {
  margin-right: 20px;
}
.header__presentation a,
.header__phone a {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  color: #ffffff;
}
.header__presentation a:hover,
.header__phone a:hover {
  color: #F1B72F;
}
.header__presentation {
  margin-left: auto;
}
.header__presentation span {
  color: #ffffff;
  cursor: pointer;
  position: relative;
}
.header__presentation-sub,
.header__nav-sub {
  display: none;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #232323;
  padding-top: 34px;
}
.header__nav-sub {
  width: max-content;
  padding-left: 20px;
  padding-right: 20px;
}
.header__presentation span:hover .header__presentation-sub,
.header__nav ul li:hover .header__nav-sub {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.header__presentation-sub li,
.header__nav-sub li {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.header__nav-sub li.text-left {
  text-align: start;
}
.header__presentation-sub li.sub-line {
  width: 70%;
  height: 1px;
  background-color: #a8a8a8;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.header__presentation > span > img {
  display: none;
}
.header__phone {
  margin-left: 30px;
}
.header__mobile {
  display: none;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 27px;
}
.header__mobile-toggle {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  font-size: 0;
  line-height: 0;
  transform: translateZ(0);
  position: relative;
  width: 20px;
  height: 20px;
  float: left;
  margin-left: auto;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header__mobile-toggle span {
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  border-radius: 14px;
  background-color: #F1B72F;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  transition-timing-function: ease;
  transition-duration: .25s;
}
.header__mobile-toggle span:nth-child(2) {
  top: 8px;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.header__mobile-toggle span:nth-child(3) {
  top: 17px;
}
body.mobmenu .header__mobile-toggle span:nth-child(1) {
  -moz-transform: translate3d(0,9px,0) rotate(45deg);
  -ms-transform: translate3d(0,9px,0) rotate(45deg);
  -webkit-transform: translate3d(0,9px,0) rotate(45deg);
  -o-transform: translate3d(0,9px,0) rotate(45deg);
  transform: translate3d(0,9px,0) rotate(45deg);
}
body.mobmenu .header__mobile-toggle span:nth-child(2) {
  opacity: 0;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
body.mobmenu .header__mobile-toggle span:nth-child(3) {
  -moz-transform: translate3d(0,-8px,0) rotate(-45deg);
  -ms-transform: translate3d(0,-8px,0) rotate(-45deg);
  -webkit-transform: translate3d(0,-8px,0) rotate(-45deg);
  -o-transform: translate3d(0,-8px,0) rotate(-45deg);
  transform: translate3d(0,-8px,0) rotate(-45deg);
}
.header__mobile_nav {
  display: none;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #232323;
  padding-top: 40px;
  padding-bottom: 30px;
  position: fixed;
  z-index: 9999;
  top: 86px;
  bottom: 0;
  width: 100%;
  overflow: auto;
}
body.mobmenu {
  overflow: hidden;
}
body.mobmenu .header__mobile_nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.header__mobile_nav .header__nav,
.header__mobile_nav .footer__social,
.header__mobile_nav .header__presentation {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.header__mobile_nav .header__nav {
  padding-top: 200px; 
}
.header__mobile_nav .header__nav > ul {
  max-width: 100px;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__mobile_nav .header__nav > ul > li {
  margin-bottom: 30px;
}
.header__mobile_nav .header__nav > ul > li:last-of-type {
  margin-bottom: 0;
}
.header__mobile_nav .footer__social {
  position: relative;
  right: unset;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.header__mobile_nav .header__presentation {
  margin-top: 70px;
  margin-right: auto;
}
.header__mobile_nav .header__nav .d-none-mobile {
  margin-bottom: 0; 
}
.header__mobile_nav .header__nav .d-none-mobile .nav-furniture-mobile {
  display: none; 
}
.header__mobile_nav .header__nav .d-none-mobile ul {
  margin-top: 0; 
}
.header__mobile_nav .header__nav .d-none-mobile ul .text-left {
  margin-bottom: 30px; 
  text-align: center !important;
}
.header__mobile_nav .header__nav .hasSub {
  text-align: center;
}