
body {
	opacity: 0;
	transition: all ease 0.3s;
}

body.is-loaded {
	opacity: 1;
}

#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	color: #fff;
}


#visual {
	background-color: #000;
	width: 100%;
	position: relative;
	z-index: 1;
}

#visual .bx-wrapper,
#visual .bx-viewport,
#visual ul.bg,
#visual ul.bg li {
	width: 100%;
	height: 100% !important;
}



#visual ul.bg {
	transition: all ease 3s;
	opacity: 0;
	position: relative;
}

.is-loaded #visual ul.bg {
	opacity: 1;
}

#visual ul.bg li {
	background-size: cover;
	background-position: 50% 50%;
}

#visual ul.bg li img {
	display: none;
}


#visual ul.bg li div {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
	transition: transform 8s ease;
}


#visual ul.bg li.zoom-in div {
	transform: scale(1);
}
#visual ul.bg li.zoom-out div {
	transform: scale(1.2);
}

#visual ul.bg li.zoom-in.zoom div {
	transform: scale(1.2);
}
#visual ul.bg li.zoom-out.zoom div { 
	transform: scale(1);
}


#visual .bx-controls {
	display: none;
}

#newarrivals h2 {
	font-size: 18px;
	line-height: 1;
	padding: 100px 0 92px;
	letter-spacing: .2em;
	text-align: center;
}

#newarrivals ul {
	overflow: hidden;
}

#newarrivals ul li {
	width: 20%;
	float: left;
}

#newarrivals ul li a {
	opacity: 1 !important;
}

#newarrivals ul li img {
	width: 100%;
}

#newarrivals ul li figure {
	position: relative;
}

#newarrivals ul li figure figcaption {
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	text-align: center;
	transform: translateY(-50%);
	color: #fff;
	font-size: 14px;
	line-height: 2;
	opacity: 0;
	transition: all ease 0.3s;
}

#newarrivals ul li:hover figure figcaption {
	opacity: 1;
}

#newarrivals ul li figure:before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	display: block;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: all ease 0.3s;
}

#newarrivals ul li:hover figure:before {
	opacity: 1;
}

