/*CSS Document*/

*{
	margin: 0px;
	padding: 0;
}

html, body{
	width: 100%;
	height: 100%;
	background-color: #000000;
}

html {
     overflow-y: -moz-scrollbars-vertical;
     overflow-y: scroll;
}

/* NAV BAR SECTION */

#navigation{
	width: 100%;
	height: 100%;
	float: left;
}
#navBar{
	width: 50px;
	height: 165px;
	position: fixed;
	top: 50%;
	right: 0;
	margin-top: -82.5px;
	z-index:1;
	list-style: none;
}
#navBar li{
	width: 15px;
	height: 15px;
	background-color: ghostwhite;
	border: 5px solid ghostwhite;
	margin: 12.5px;
	cursor: pointer;
	border-radius: 20px;
	transition-duration: 0.7s;
	-webkit-transition-duration: 0.7s;
}
#navBar li:hover, #navBar .current{
	transition-duration: 0.7s;
	-webkit-transition-duration: 0.7s;
	background-color: transparent;
}

/* FOR ALL SLIDES */

.slide{
	background-attachment: fixed;
	width:100%;
	height:100%;
	position: relative;
}

.button{
    display:block;
    width:50px;
    height:50px;
    position:absolute;
    bottom:0px;
    left:50%;
    margin-left: -25px;
	background-color: rgba(0,0,0,.75);
    background-image:url(images/arrow.png);
    background-repeat:no-repeat;
    background-position: center center;
    transition-duration: 0.7s;
	-webkit-transition-duration: 0.7s; /* Safari */
}
.button:hover{
    background-color: rgba(255,255,255,0.6);
    cursor:pointer;
    transition-duration: 0.7s;
	-webkit-transition-duration: 0.7s; /* Safari */
}
.button.last{
	transform:rotate(180deg);
	-ms-transform:rotate(180deg); /* IE 9 */
	-webkit-transform:rotate(180deg); /* Safari and Chrome */
	bottom:74px;
}

/* SLIDES */

h1{
	font-family: Verdana, Geneva, sans-serif;
	color: rgba(255,255,255,1.);
	font-size: 2em;
	position: absolute;
	z-index: 1;
}
#ball1{
	width: 200px;
	height: 200px;
	border-radius: 200px;
	position: absolute;
	top: 300px;
	left: 50px;
	background-color: rgba(0,0,0,0.1);
}
#ball2{
	width: 40px;
	height: 40px;
	border-radius: 200px;
	position: absolute;
	top: 80px;
	right: 50px;
	background-color: rgba(0,0,0,0.1);
}
#ball3{
	width: 150px;
	height: 150px;
	border-radius: 200px;
	position: absolute;
	top: 30px;
	right: 200px;
	background-color: rgba(0,0,0,0.1);
}
#ball4{
	width: 40px;
	height: 40px;
	border-radius: 200px;
	position: absolute;
	top: 100px;
	right: 500px;
	background-color: rgba(0,0,0,0.1);
}

#slide4 #ball1{
	width: 200px;
	height: 200px;
	border-radius: 200px;
	position: absolute;
	top: 490px;
	left: 900px;
	background-color: rgba(0,0,0,0.1);
}
#slide4 #ball3{
	width: 200px;
	height: 200px;
	border-radius: 200px;
	position: absolute;
	top: 600px;
	left: 500px;
	background-color: rgba(0,0,0,0.1);
}
/* more */
.menu-category{
	position: relative;
	padding-bottom: 20px;
}
.menu-category .sub-menu-category{
    background: rgba(0, 0, 0, 0.5);
    display: none;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 21px;
    width: 150px;
	list-style:none;
}
.menu-category .sub-menu-category li a{
	text-decoration: none;
	display:block;
	text-align:right;
	padding:5px 10px;
}
.menu-category:hover .sub-menu-category{
	display: block;
}
.menu-category .sub-menu-category a:hover{
	color: #fff;
}
.slider-main-item img {
	margin:0 auto;
}  
.slider-custom {
	position:relative;
}
.slider-custom .bx-wrapper {
	top:140px;
}
.slider-custom .bx-pager {
bottom:15px;
}
.slider-custom .bx-wrapper .bx-pager.bx-default-pager a {
background:#fff;
border:1px solid #fff;
border-radius:50%;
width:8px;
height:8px;
}
.slider-custom .bx-wrapper .bx-pager.bx-default-pager a:hover,.slider-custom  .bx-wrapper .bx-pager.bx-default-pager a.active {
	background:none;
}