/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	padding: 0;
	*zoom: 1;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.bxslider {
	margin: 0;
	padding: 0;
}

ul.bxslider {
	list-style: none;
}

.bx-viewport {
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
}

/** THEME
===================================*/

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* PAGER */
.bx-wrapper .bx-pager {
	display: none;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
	display: none;
}

.bx-wrapper .bx-next {
	display: none;
}

.bxslider li {
	width: 100%;
	height: 100vh;
}

.bxslider li img {
	display: block;
	min-width: 100%;
	min-height: 100vh;
}

.bx-wrapper > img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -288px;
	margin-top: -100px;
}



@media only screen and (max-width: 768px) {
	
.bxslider li {
	height: 480px;
}

.bxslider li img {
	height: inherit;
}
	
.bx-wrapper > img {
	width: 310px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -155px;
	margin-top: -50px;
}

}


