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

body  {
	background: #1abc9c;
}

.container {
	padding: 80px 0;
	text-align: center;
}

.bt-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  border-width: 0px;
  border-style: solid;
  border-color: #333;
  background-color: rgba(255,255,255,1);
  -webkit-backface-visibility: hidden;
  -webkit-transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
  transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
  z-index: 5000;
}

.bt-menu.bt-menu-open {
  height: 100%;
  border-width: 0px 0px 0px 0px;
  background-color: rgba(0,0,0,0.7);
  -webkit-transition: border-width 0.3s, background-color 0.3s;
  transition: border-width 0.3s, background-color 0.3s;
}

.bt-overlay {
	position: absolute;
	width: 100%;
}

.bt-menu-open .bt-overlay {
	height: 100%;
}

.bt-menu .bt-menu-trigger, .bt-menu-close .bt-menu-trigger {
  position: fixed;
  top: 10px;
  left: 70px;
  z-index: 100;
  display: block;
  width: 70px;
  height: 70px;
  cursor: pointer;
  padding: 20px;
  /* background: rgb(168,183,0); */
  /* border-radius: 70px; */
  overflow: hidden;
  /* box-shadow: 1px 1px 1px rgba(0,0,0,0.35); */
}
.bt-menu-open .bt-menu-trigger {
  position: fixed;
  top: 75px;
  left: 50%;
  z-index: 100;
  display: block;
  width: 70px;
  height: 70px;
  cursor: pointer;
  padding: 20px;
  /* background: rgb(168,183,0); */
  /* border-radius: 70px; */
  overflow: hidden;
  /* box-shadow: 1px 1px 1px rgba(0,0,0,0.35); */
  margin-left: -35px;
}
.bt-menu  .bt-menu-trigger span:before, .bt-menu-close  .bt-menu-trigger span:before{
	-webkit-transition:  all 0.2s ease-in-out;
	-moz-transition:  all 0.2s ease-in-out;
	-o-transition:  all 0.2s ease-in-out;
	-ms-transition:  all 0.2s ease-in-out;
	transition:  all 0.2s ease-in-out;
}
.bt-menu .bt-menu-trigger span:after, .bt-menu-close .bt-menu-trigger span:after{
	-webkit-transition:  all 0.2s ease-in-out;
	-moz-transition:  all 0.2s ease-in-out;
	-o-transition:  all 0.2s ease-in-out;
	-ms-transition:  all 0.2s ease-in-out;
	transition:  all 0.2s ease-in-out;
}
.bt-menu-open  .bt-menu-trigger span:before{
-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.bt-menu-open .bt-menu-trigger span:after{
-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.bt-menu-trigger span {
  position: absolute;
  top: 45%;
  left: 25%;
  display: block;
  width: 50%;
  height: 6%;
  background-color: #000;
  font-size: 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.bt-menu-open .bt-menu-trigger span {
  height: 5%;
  width: 80%;
  left: 10%;
}

.bt-menu-trigger span:before,
.bt-menu-trigger span:after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.bt-menu-trigger span:before {
	-webkit-transform: translateY(-250%);
	transform: translateY(-250%);
}

.bt-menu-trigger span:after {
	-webkit-transform: translateY(250%);
	transform: translateY(250%);
}

/*.bt-menu-open .bt-menu-trigger span:before {
	-webkit-transform: translateY(-300%);
	transform: translateY(-300%);
}

.bt-menu-open .bt-menu-trigger span:after {
	-webkit-transform: translateY(300%);
	transform: translateY(300%);
}*/

.bt-menu ul {
	position: fixed;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bt-menu ul:first-of-type {
	top: 75px;
	left: 0;
}

.bt-menu ul:nth-of-type(2) {
	right: 0;
	bottom: 0;
}

.bt-menu ul li,
.bt-menu ul li a {
	display: block;
}

.bt-menu ul:nth-of-type(2) li {
	float: left;
	font-size: 0px;
}

.bt-menu ul li {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
	transition: transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
}

.bt-menu.bt-menu-open ul:first-of-type li,
.bt-menu.bt-menu-open ul:nth-of-type(2) li {
	visibility: visible;
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s 0.1s;
	transition: transform 0.3s, opacity 0.3s;
}

/* First menu */
.bt-menu ul:first-of-type li {
	width: 100%;
	height: 70px;
	line-height: 50px;
	-webkit-transform: translate3d(-100%,50%,0);
	transform: translate3d(-100%,50%,0);
}

.bt-menu.bt-menu-open ul:first-of-type li {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Second menu */
.bt-menu ul:nth-of-type(2) li {
	width: 60px;
	height: 50px;
	line-height: 50px;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:first-child { 
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:nth-child(2) { 
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:nth-child(3) { 
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:nth-child(4) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.bt-menu ul li a {
	display: block;
	outline: none;
	text-decoration: none;
}

.bt-menu ul:first-of-type li a {
  padding: 0 20px;
  box-shadow: inset 0 1px rgba(0,0,0,0); 
  color: #fff;
  letter-spacing: 1px;
  font-size: 30px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-family: lorar;
  line-height: 70px;
}

.bt-menu ul:first-of-type li:last-child a {
	box-shadow: inset 0 1px rgba(0,0,0,0.0), inset 0 -1px rgba(0,0,0,0.0);
}

.bt-menu ul:nth-of-type(2) li a {
	color: transparent;
	text-align: center;
	font-size: 0px;
}

.bt-menu ul li a:before {
	color: #fff;
	font-size: 24px;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.bt-menu ul:first-of-type li a:hover,
.bt-menu ul:first-of-type li a:focus,
.bt-menu ul li a:hover:before,
.bt-menu ul li a:focus:before {
	color: #9da1a4;
}

.bt-menu-open .bt-menu-trigger{
background: none;
}
.bt-menu-close ul, .bt-menu-close div{
display: none;
}
.bt-menu-open ul, .bt-menu-open div{
display: block;
}
.bt-menu ul:first-of-type, .bt-menu-close ul:first-of-type {
	top: 75px;
	left: -200px;
}
.bt-menu-open ul:first-of-type {
  top: 150px;
  left: 50%;
  width: 320px;
  margin-left: -160px;
  text-align: center;
  z-index: 1000;
}

.bt-menu-open .bt-menu-trigger span, .bt-menu-open .bt-menu-trigger span:after, .bt-menu-open .bt-menu-trigger span:before{
  background-color: #fff;
}

.bt-menu-open .bt-menu-trigger span{
  background-color: rgba(255,255,255,0);
  background-color: transparent;
}
@media screen and (max-width: 800px) {
.top-phone{
  z-index: 1100;
}
.bt-menu .bt-menu-trigger, .bt-menu-close .bt-menu-trigger {
  position: fixed;
  top: 10px;
  left: 0px;
  z-index: 100;
  display: block;
  width: 70px;
  height: 70px;
  cursor: pointer;
  padding: 20px;
  /* background: rgb(168,183,0); */
  /* border-radius: 70px; */
  overflow: hidden;
  /* box-shadow: 1px 1px 1px rgba(0,0,0,0.35); */
}
.bt-menu-open .bt-menu-trigger {
  position: fixed;
  top: 75px;
  left: 50%;
  z-index: 5200 !important;
  display: block;
  width: 70px;
  height: 70px;
  cursor: pointer;
  padding: 20px;
  /* background: rgb(168,183,0); */
  /* border-radius: 70px; */
  overflow: hidden;
  /* box-shadow: 1px 1px 1px rgba(0,0,0,0.35); */
  margin-left: -35px;
}
.bt-menu ul:first-of-type li{
height: 30px;
}
.bt-menu ul:first-of-type li a {
  padding: 0 20px;
  box-shadow: inset 0 1px rgba(0,0,0,0); 
  color: #fff;
  letter-spacing: 1px;
  font-size: 30px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-family: lorar;
  line-height: 30px;
}
}