/* Basic sample */

body {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.flipbook-viewport {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.flipbook-viewport .container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.flipbook-viewport .flipbook {
	width: 100%;
	height: 100%;
}

.flipbook-viewport .page {
	width: 461px;
	height: 600px;
	background-color: #000;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.front-page {
	background-image: url('../pages/homepage-desktop.jpg'), url('../pics/bg.jpg') !important;
	background-size: 100% auto, cover !important;
	background-position: top, center !important;
	background-repeat: no-repeat, no-repeat !important;
}

.front-page h2 {
	color: #7a0000 !important;
	text-shadow: none !important;
}



.black-page {
	background-color: #FFF8DC !important;
	color: #333;
	border-top: 30px solid #000;
	border-bottom: 30px solid #000;
	display: block;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1.1rem;
	line-height: 1.6;
	box-sizing: border-box;
}

.black-page h2 {
	color: #2f0000 !important;
	/*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;*/
	font-weight: 800;
}

.page-content {
	padding: 8% 8%;
	height: 100%;
	width: 100%;
	overflow-y: auto;
	box-sizing: border-box;
	text-align: left;
}

.page-content h2 {
	font-size: 2rem;
	margin-bottom: 30px;
	color: #000;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
	line-height: 1.2;
}

.page-content p {
	margin-bottom: 25px;
	color: #1B0B1F
}

/* Hide scrollbar for a cleaner look */
.page-content::-webkit-scrollbar {
	width: 0px;
}

.scroll-hint {
	position: fixed;
	bottom: 15%;
	left: 0;
	width: 100%;
	text-align: center;
	color: #fff;
	font-family: 'Cinzel', serif;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	z-index: 10;
	pointer-events: none;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	animation: bounce 2s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-15px);
	}

	60% {
		transform: translateY(-7px);
	}
}

.flipbook .page {
	border: none;
	box-shadow: none;
}

.flipbook-viewport .page img {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 0;
}

.flipbook-viewport .shadow {
	-webkit-transition: -webkit-box-shadow 0.5s;
	-moz-transition: -moz-box-shadow 0.5s;
	-o-transition: -webkit-box-shadow 0.5s;
	-ms-transition: -ms-box-shadow 0.5s;
	transition: box-shadow 0.5s;

	-webkit-box-shadow: 0 0 20px #000;
	-moz-box-shadow: 0 0 20px #000;
	-o-box-shadow: 0 0 20px #000;
	-ms-box-shadow: 0 0 20px #000;
	box-shadow: 0 0 20px #000;
}

@media (max-width: 767px) {
	.front-page {
		background-image: url('../pages/Homepage-mbl.jpg'), url('../pics/bg.jpg') !important;
	}

	.black-page {
		font-size: 16px;
		line-height: 26px;
	}

	.page-content p {
		margin-bottom: 16px;
	}

	.img-responsive {
		width: 100%;
		height: auto;
	}

	.page-content {
		padding: 8% 5%;
		padding-right: 3%;
	}

	.page-content h2 {
		font-size: 1.5rem !important;
		margin-bottom: 20px;
	}
}