section.hasQuotes {
	background-color: #000;
}

.module.Quotes {
	text-align: center;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: center;
	overflow: hidden;
	position: relative;
	height: 950px;
	max-height: 100vh;
}

.module.Quotes .items, .module.Quotes .item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.module.Quotes .item {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.module.Quotes .textPh {
	width: 100%;
	max-width: 1010px;
	padding: 20px;
	left: 50%;
	transform: translate(-50%,0);
	position: absolute;
	bottom: 168px;
}

.module.Quotes .item.active {
	opacity: 1;
}

.module.Quotes .underlayer {
	height: 100%;
	width: 100%;
}

.module.Quotes .quote {
	margin-top: 0;
	display: inline-block;
	text-align: center;
	color: #fff;
	text-shadow: 0px 2px 0px rgba(0, 0, 4, 0.4);
}

.module.Quotes .source {
	text-transform: uppercase;
	color: #fff;
}

.module.Quotes .navPh {
	position: absolute;
	bottom: 68px;
	left: 50%;
	transform: translate(-50%,0);
}

.module.Quotes .nav {
	margin: 0 auto;
	width: 80px;
	position: relative;
	height: 40px;
	font-size: 40px;
	font-weight: bold;
	line-height: 40px;
}

.module.Quotes .nav > i {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	color: #fff;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.Quotes .nav > i:hover {
	color: #fc1b1c;
}

.Quotes .nav > i.left {
	left: 0;
}

.Quotes .nav > i.right {
	right: 0;
}






@media screen and (max-width: 650px) {
}