@charset "utf-8";
/* CSS Document */

.burger {
  width: 123px;
  float: left;
  background: #998c80;
  border-radius: 0 34px 34px 0;
  cursor: pointer;
  padding: 13px 0 13px 30px;
  margin: 0 0 0;
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 9999999999;
  transition: all .7s ease-in-out;
}

.fixed .burger {
    top: 14px;
}

.burger-toggle {
  width: 22px;
  float: left;
  transform: rotateY(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 0 10px 0 0;
}
.burger__text {
  float: left;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 3px 0 0;
}
.burger__patty {
  width: 100%;
  height: 3px;
  margin: 0 0 6px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger__patty:nth-child(2) {
  width: 16px;
}

.burger__patty:last-child {
  margin-bottom: 0;
}
.burger--close .burger-toggle {
  transform: rotate(180deg);
}
.burger--close .burger-toggle .burger__patty:nth-child(1) {
  transform: rotate(45deg) translate(7px, 8px);
}
.burger--close .burger-toggle .burger__patty:nth-child(2) {
  opacity: 0;
}
.burger--close .burger-toggle .burger__patty:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}
.menu {
  width: 100%;
  visibility: hidden;
  position: fixed;
  top: 0;
  z-index: 99999999;
}
.menu .logo {
  width: 301px;
}
.menu .logo img {
  width: 100%;
  display: block;
}
.menu--active {
  visibility: visible;
}
.menu__brand, .menu__list {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}
.menu__list {
  margin: 0;
  padding: 0;
  background: #ffffff;
  list-style-type: none;
  transform: translate3d(0, -100%, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__list--active {
  transform: translate3d(0, 0, 0);
}
.menu__brand {
  background: #998c80;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate3d(0, 100%, 0);
}
.menu__brand--active {
  transform: translate3d(0, 0, 0);
}
/* .menu__item {
  transform: translate3d(500px, 0, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__item--active {
  transform: translate3d(0, 0, 0);
} */
.menu__list > ul > li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #998c80;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__list > ul > li > a:hover:before {
  width: 100%;
}
/* .menu .menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.menu .menu__item:nth-child(2) {
  transition-delay: 0.2s;
}
.menu .menu__item:nth-child(3) {
  transition-delay: 0.3s;
}
.menu .menu__item:nth-child(4) {
  transition-delay: 0.4s;
}
.menu .menu__item:nth-child(5) {
  transition-delay: 0.5s;
}
.menu .menu__item:nth-child(6) {
  transition-delay: 0.6s;
}
.menu .menu__item:nth-child(7) {
  transition-delay: 0.7s;
}
.menu .menu__item:nth-child(8) {
  transition-delay: 0.8s;
}
.menu .menu__item:nth-child(9) {
  transition-delay: 0.9s;
}
.menu .menu__item:nth-child(10) {
  transition-delay: 1s;
}

.menu .menu__item:nth-child(11) {
  transition-delay: 1.1s;
}

.menu .menu__item:nth-child(12) {
  transition-delay: 1.2s;
}
.menu .menu__item:nth-child(13) {
  transition-delay: 1.3s;
}
.menu .menu__item:nth-child(14) {
  transition-delay: 1.4s;
} */

.menu__item{opacity: 0;}

.menu__list--active .menu__item {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}


.menu__list--active .menu__item:nth-child(2) {
  animation-delay: 0.4s;
}
.menu__list--active .menu__item:nth-child(3) {
  animation-delay: 0.45s;
}
.menu__list--active .menu__item:nth-child(4) {
  animation-delay: 0.5s;
}
.menu__list--active .menu__item:nth-child(5) {
  animation-delay: 0.55s;
}
.menu__list--active .menu__item:nth-child(6) {
  animation-delay: 0.6s;
}
.menu__list--active .menu__item:nth-child(7) {
  animation-delay: 0.65s;
}
.menu__list--active .menu__item:nth-child(8) {
  animation-delay: 0.7s;
}
.menu__list--active .menu__item:nth-child(9) {
  animation-delay: 0.75s;
}
.menu__list--active .menu__item:nth-child(10) {
  animation-delay: 0.8s;
}
.menu__list--active .menu__item:nth-child(11) {
  animation-delay: 0.85s;
}
.menu__list--active .menu__item:nth-child(12) {
  animation-delay: 0.9s;
}
.menu__list--active .menu__item:nth-child(13) {
  animation-delay: 0.95s;
}
.menu__list--active .menu__item:nth-child(14) {
  animation-delay: 1.0s;
}
.menu__list--active .menu__item:nth-child(15) {
  animation-delay: 1.5s;
}

@-webkit-keyframes fadeInRight {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(100%,0,0);
      transform: translate3d(100%,0,0)
  }

  to {
      opacity: 1;
      -webkit-transform: none;
      transform: none
  }
}

@keyframes fadeInRight {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(100%,0,0);
      transform: translate3d(100%,0,0)
  }

  to {
      opacity: 1;
      -webkit-transform: none;
      transform: none
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.burger {
	width:110px;
	padding: 16px 0 16px 5%;
	position: fixed;
	top: 8px;
}

.menu .logo {
  width: 141px;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}

.stikerdrive.extra-class .burger { top: 8px;}

}

@media screen and (min-width:481px) and (max-width:600px) {
.burger {
	width: 100px;
	padding: 16px 0 16px 20px;
	position: fixed;
	top: 8px;
	right: inherit;
	right: 0;
}
.burger__text {
	font-size: 13px;
	letter-spacing: 0.12px;
	line-height: 1.4;
}
.menu .logo {
  width: 141px;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.stikerdrive.extra-class .burger { top: 8px;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.burger {
	width: 100px;
	padding: 16px 0 16px 20px;
	position: fixed;
	top: 8px;
	right: inherit;
	right: 0;
}
.burger__text {
	font-size: 13px;
	letter-spacing: 0.12px;
	line-height: 1.4;
}
.menu .logo {
  width: 141px;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.stikerdrive.extra-class .burger { top: 8px;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.burger {
	width: 106px;
	padding: 14px 0 14px 20px;
	top: 24px;
}
.burger__text {
	font-size: 13px;
	line-height: 1.4;
}
.menu .logo {
	width: 31.4%;
}

.fixed .burger { top: 40px;}

}

@media screen and (min-width:901px) and (max-width:1024px) {
.burger {
	width: 106px;
	padding: 14px 0 14px 20px;
	top: 24px;
}
.burger__text {
	font-size: 13px;
	line-height: 1.4;
}
.menu .logo {
	width: 31.4%;
}

.fixed .burger { top: 25px;}

}

@media screen and (min-width:1025px) and (max-width:1240px) {
.burger {
	width: 106px;
	padding: 14px 0 14px 20px;
	top: 24px;
}
.burger__text {
	font-size: 13px;
	line-height: 1.4;
}
.menu .logo {
	width: 31.4%;
}

.fixed .burger { top: 12px;}

}

@media screen and (min-width:1241px) and (max-width:1340px) {
.burger__btn {
	left: 3%;
}
.menu .logo {
	width: 31.4%;
}
}

@media screen and (min-width:1341px) and (max-width:1440px) {
.burger__btn {
	left: 3%;
}
.menu .logo {
	width: 31.4%;
}
}