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

.burger {
  width: 60px;
  float: left;
  margin: 0 0 0;
}
.burger__btn {
  width: 60px;
  float: left;
  cursor: pointer;
  margin: 0 0 0;
  position: absolute;
  top: 27px;
  left: 17px;
  z-index: 9999999999;
}
.burger-toggle {
  width: 17px;
  float: left;
  transform: rotateY(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 0 0 0;
}
.burger__text {
  float: right;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin: 0 0 0;
}
.burger__patty {
  width: 17px;
  height: 2px;
  margin: 0 0 0;
  background: #364b54;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger__patty:nth-child(2n) {
  width: 11px;
  margin: 4px 3px 4px;
}
.burger__patty:last-child {
  margin-bottom: 0;
}
.burger--close .burger-toggle {
  transform: rotate(180deg);
}
.burger--close .burger__text { 
	color: #ffffff;
}
.burger--close .burger-toggle .burger__patty:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  background: #ffffff;
}
.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, -4.4px);
  background: #ffffff;
}
.menu {
  width: 100%;
  visibility: hidden;
  position: fixed;
  top: 0;
  z-index: 99999999;
}
.menu .logo {
  width: 20%;
}
.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 url(../images/menu-list-texture-grey-square-shape1.svg) no-repeat top left / 70%;
  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: #364b54 url(../images/menu-brand-texture-grey-square-shape1.svg) no-repeat top right / 60%;
  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__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 2px;
  background: white;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__link: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: 1.0s;
}
.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;
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.burger__btn {
	width: 100%;
	position: fixed;
	top: 0;
	right: inherit;
	left: 0;
}
.burger {
	width: 100%;
	background: #ffffff;
	margin: 0 0 0;
	padding: 16px 5% 16px;
}
.menu .logo {
	width: 56.2%;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.burger__text { 
	float: left;
	margin: 0 0 0 10px;
}
.burger--close {
	background: none;
}
.burger--close .burger__text {
	color: #000000;
}
.burger--close .burger-toggle .burger__patty:nth-child(1) {
	background: #364b54;
}
.burger--close .burger-toggle .burger__patty:nth-child(3) {
	background: #364b54;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.burger__btn {
	width: 100%;
	position: fixed;
	top: 0;
	right: inherit;
	left: 0;
}
.burger {
	width: 100%;
	background: #ffffff;
	margin: 0 0 0;
	padding: 16px 5% 16px;
}
.menu .logo {
	width: 56.2%;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.burger__text { 
	float: left;
	margin: 0 0 0 10px;
}
.burger--close {
	background: none;
}
.burger--close .burger__text {
	color: #000000;
}
.burger--close .burger-toggle .burger__patty:nth-child(1) {
	background: #364b54;
}
.burger--close .burger-toggle .burger__patty:nth-child(3) {
	background: #364b54;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.burger__btn {
	width: 100%;
	position: fixed;
	top: 0;
	right: inherit;
	left: 0;
}
.burger {
	width: 100%;
	background: #ffffff;
	margin: 0 0 0;
	padding: 16px 5% 16px;
}
.menu .logo {
	width: 56.2%;
}
.menu__brand {
	display: none;
}
.menu__list {
	width: 100%;
}
.burger__text { 
	float: left;
	margin: 0 0 0 10px;
}
.burger--close {
	background: none;
}
.burger--close .burger__text {
	color: #000000;
}
.burger--close .burger-toggle .burger__patty:nth-child(1) {
	background: #364b54;
}
.burger--close .burger-toggle .burger__patty:nth-child(3) {
	background: #364b54;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.burger {
	width: 17px;
}
.burger__btn {
	width: 17px;
	top: 26px;
	left: 3%;
}
.burger__text {
	display:none;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.burger {
	width: 17px;
}
.burger__btn {
	width: 17px;
	top: 27px;
	left: 3%;
}
.burger__text {
	display:none;
}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.burger {
	width: 17px;
}
.burger__btn {
	width: 17px;
	top: 28px;
	left: 3%;
}
.burger__text {
	display:none;
}
}

@media screen and (min-width:1241px) and (max-width:1340px) {
.burger {
	width: 17px;
}
.burger__btn {
	width: 17px;
	left: 3%;
}
.burger__text {
	display:none;
}
}

@media screen and (min-width:1341px) and (max-width:1900px) {
.burger {
	width: 17px;
}
.burger__btn {
	width: 17px;
}
.burger__text {
	display:none;
}
}