


body {
	font: 0.9rem sans-serif;
	font-weight: 300;
	background: #000;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
}
.wrap {
	width: 100vw;
	max-width: 1000px;
	height: 100vh;
	min-height: 480px;
	margin: 0 auto;
	position: relative;
	background-image: url(../Images/logo/BS-Logo-black.jpg);
	-webkit-background-size: 70%;
	background-size: 70%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.icon-menu {
	display: none;
}
.menu {
	width: 96%;
	margin-left: 2%;
	padding-top: 10px;
}
.menu li {
	background: #fff;
	padding: 15px 10px;
	transition: 0.5s all;
	border-radius: 5px;
}
.menu li:hover {
	background: #00ccff;
	padding-left: 13px;
	color: #fff;
	cursor: pointer;
}
.menu_list {
	position: relative;
	width: 16%;
	margin-right: 0.6%;
	float: left;
}
.menu_drop {
	position: absolute;
	width: 100%;
	top: -1000%;
	left: 0;
	opacity: 0;
	transition: 1s opacity;
	border-top: 10px solid transparent;
	z-index: 5;
}
.menu_drop li {
	border: 1px solid #999;/*
	border-bottom: 3px solid #999;*/
	border-right: 0;
}
/*.menu_list:hover .menu_drop {
	opacity: 1;
	top: 100%;
}*/
.menu li:last-child {
	border-bottom: 0;
	border-right: 0;
}
.menu_drop li:last-child {
	border: 1px solid #999;
}
.marker {
	position: relative;
}
.marker::after {
	content: " ";
	border: 5px solid;
	border-color: #000 transparent transparent transparent;
	position: absolute;
	right: 0.5rem;
	top: calc((100% - 5px)/2);
}

.footer {
	width: 96%;
	position: absolute;
	bottom: 10px;
	left: 2%;
}
.foot-menu-list {
	width: 16%;
	margin-right: 0.6%;
	margin-bottom: 3px;
	float: left;
	background: #fff;
	padding: 15px 10px;
	transition: 0.5s all;
	border-radius: 5px;
}
.foot-menu-list:hover {
	background: #00ccff;
	padding-left: 13px;
	color: #f3f3f3;
	cursor: pointer;
}

@media(max-width: 767px) {
	.menu_list {
		width: 32%;
		margin-right: 0;
		margin-bottom: 3px;
		float: none;
		display: none;
	}
	.icon-menu {
		display: inline;
	}
	.brand {
		display: none;
	}
	#menu {
		display: block;
	}
	.menu_drop {
		left: 100%;
		border-top: 0;
		border-left: 10px solid transparent;
	}
	.menu_drop li {
		border-right: 0;
	}
	.menu_list:hover .menu_drop {
		top: 0;
	}
	.marker::after {
		border-color: transparent transparent transparent #000;
	}
	.foot-menu-list {
		width: 32%;
		margin-right: 1.2%;
	}
}
@media(max-width: 479px) {
	.menu_list {
		width: 48%;
	}
	.foot-menu-list {
		width: 48%;
		margin-right: 2%;
		padding: 10px 10px;
	}
}


