::-webkit-scrollbar {
    width: 16px;;
    background-color: #ffebd9;
}
::-webkit-scrollbar-thumb {
  background-color: #ffbe84;
}
::-scrollbar {
    width: 1em;
}
::-scrollbar-thumb {
  background-color: #ffebd9;
}
.navbar_desktop {
    z-index: 500;
    width: 100%;
    height: 95px;
    position: fixed;
    background-color: #ffebd9;
    text-transform: uppercase;
}
.navbar {
    z-index: 500;
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: #ffebd9;
    text-transform: uppercase;
}
.bt-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	border-width: 0px;
	border-style: solid;
	border-color: #ffebd9;
	background-color: rgba(0,0,0,0);
	-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;
}

.bt-menu.bt-menu-open {
	height: 100%;
	border-width: 0px 170px 0px 0px;
	background-color: rgba(0,0,0,0.3);
	-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-trigger {
	position: fixed;
	top: 10px;
	right: 20px;
	z-index: 100;
	display: block;
	width: 50px;
	height: 50px;
	cursor: pointer;
    color: #999999;
}

.bt-menu-trigger span {
	position: absolute;
	top: 35%;
	left: 0;
	display: block;
	width: 90%;
	height: 8%;
	background-color: #999999;
	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-trigger span:before,
.bt-menu-trigger span:after {
	position: absolute;
	right: 0;
	width: 100%;
	height: 100%;
	background: #999999;
	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;
	right: 0;
}

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

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

.bt-menu ul:nth-of-type(2) li {
/*	float: right;*/
    display: inline-block;
	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 800ma, opacity 0.3s;
}

/* First menu */
.bt-menu ul:first-of-type li {
	width: 170px;
	height: 50px;
	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.2);
	color: #505050;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 20px;
	-webkit-transition: color 500ms;
	transition: color 500ms;
}

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

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

.bt-menu ul li a:before {
	color: #292929;
	font-size: 1.2rem;
	-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: #a3a3a3;
}

.namedesktop1 a {
    float: left;
    font-family: 'Quicksand', sans-serif;
    position: fixed;
    text-decoration: none;
    z-index: 1000;
    padding-top: 9px;
    padding-left: 12px;
    font-size: 30px;
}
.namedesktop1 a:hover {
    color: #9b9b9b;
    transition: 400ms;
}
.namedesktop1 img {
    height: 75px;
}
.namedesktop2 a {
    float: left;
    position: fixed;
    z-index: 1000;
    padding-top: 9px;
    padding-left: 12px;
}
.namedesktop2 img {
    height: 40px;
}

#desktop_menu {
    display: block;
    background-color: #ffebd9;
}
#desktop_menu ul li :hover {
    color: #afafaf;
    transition: 400ms;
}
#desktop_menu ul {
    list-style: none;
    margin-top: 35px;
    text-align: right;
    padding-right: 10%;
}
#desktop_menu ul a {
    color: #505050;
    text-decoration: none;
    font-size: 20px;
}
#desktop_menu ul li {
    color: #505050;
    display: inline;
    margin-left: 35px;
    padding-top: 18px;
    padding-bottom: 15px;
}
#desktop_menu ul li ul {
    display: none;
}
#desktop_menu ul li ul:hover li {
    height: 100%;
    top: 100%;
    display: block;
    position: absolute;
}
@media screen and (max-width: 1009px){
    #desktop_menu {
        display: none;
    }
    .namedesktop1 {
        display: none;
    }
    .navbar_desktop{
        display: none;
    }
    #foot {
        padding: 4%;
    }
}
@media screen and (min-width: 1010px){
    #bt-menu {
        display: none;
    }
    .navbar  {
        display: none;
    }
    .namedesktop2 {
        display: none;
    }
    .foot_mobile {
        display: none;
    }
}