#slider {
	background-color: black;
	color: white;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: calc(100% - 60px);
}

#slider ul {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

#slider ul li {
	position: relative;
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

#slider_image {
	width: 100%;
	height: 100%;
}

#slider_text {
	margin: 0;
	position: absolute;
	top: 50%;
	margin-left:100px;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#slider_text h1 {
	font-weight: bold;
	font-size: 64px;
	color: white;
}

#slider_text p {
	font-size: 24px;
	max-width: 60%;
}