/* start flipbook css */
.book-section {
	padding: 40px 20px;
	text-align: center;
	position: relative;
	/* overflow: hidden; */
}

.book-section .containerr,
.containerr {
	height: 600px;
	width: 850px;
	position: relative;
	border-radius: 2%;
	margin: 0 auto 30px auto;
	perspective: 1200px;
	transform-origin: center center;
}

.containerr .right,
.right {
	position: absolute;
	height: 100%;
	width: 50%;
	transition: 0.7s ease-in-out;
	transform-style: preserve-3d;
	right: 0;
	transform-origin: left;
	border-radius: 10px 0 0 10px;
}

.right figure.front,
.right figure.back {
	margin: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-size: cover;
	background-repeat: no-repeat;
	backface-visibility: hidden;
	background-color: white;
	overflow: hidden;
}

.right figure.front {
	background-position: right;
	border-radius: 0 10px 10px 0;
	box-shadow: 2px 2px 15px -2px rgba(0, 0, 0, 0.2);
}

.right figure.back {
	background-position: left;
	border-radius: 10px 0 0 10px;
	box-shadow: -2px 2px 15px -2px rgba(0, 0, 0, 0.2);
	transform: rotateY(180deg);
}

.flip {
	transform: rotateY(-180deg);
}

.flip::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	border-radius: 0 10px 10px 0;
	background-color: rgba(0, 0, 0, 0.1);
}

.book-section button,
.navigationn button {
	border: 2px solid var(--c-navy,#1F2A44);
	background-color: white;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	margin: 5px;
	transition: 0.3s ease-in-out;
	white-space: nowrap;
}

.book-section button:focus,
.book-section button:active {
	outline: none;
}

.book-section button:hover,
.navigationn button:hover {
	background-color: black;
	color: #fff;
}

.book-section p {
	color: rgba(0, 0, 0, 0.7);
	font-family: Calibri, sans-serif;
	font-size: 24px;
}

.book-section p a {
	text-decoration: none;
	color: #ef9f00;
}

.book-section button img {
	height: 20px;
}

.front#cover,
.back#back-cover {
	background-color: var(--c-navy,#1F2A44);
	text-align: left;
	padding: 0 30px;
}

.front#cover h1 {
	color: #fff;
}

.front#cover p {
	color: white;
	font-size: 14px;
}

.navigationn {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0%);
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
	margin: 50px 0 0 0;
}

/* end flipbook css */

.main_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.main_container p {
	font-size: 18px;
	line-height: 30px;
	text-align: justify;
	color: white;
}

.main_container .btn_style {
	padding: 20px 28px;
	font-size: 16px;
	letter-spacing: 3.3px;
	line-height: 12px;
	background-color: black;
	border: none;
	border-radius: 8px;
	transition: 0.3s;
	margin: 60px 0 10px 0;
	color: white;
}

.main_container .btn_style:hover {
	background-color: white;
	color: black;
}

.box {
	background-color: white;
	width: 100%;
	padding: 40px;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	margin: 50px 0;
}

.box h3 {
	color: black;
}

.box p {
	color: black;
	width: 60%;
}

.box a,
.box2 a {
	font-size: 16px;
	padding: 14px 28px;
	line-height: 12px;
	background-color: black;
	color: white;
	border: none;
	border-radius: 8px;
	transition: 0.3s;
}

.box a:hover,
.box2 a:hover {
	background-color: var(--c-navy,#1F2A44);
}

.box2 {
	background-color: white;
	color: black;
	width: 100%;
	padding: 40px;
	text-align: center;
	margin: 50px 0 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.box2 span {
	letter-spacing: 3.3px;
}

.box2 h2 {
	color: black;
	width: 60%;
	margin: 40px 0;
}

.box2 a {
	letter-spacing: 3.3px;
	transition: 0.3s;
}

.content_box {
	display: flex;
	margin: 0 0 50px 0;
	color: white;
	align-items: center;
}

.content_box div {
	padding: 0 0 0 50px;
}

.content_box img {
	width: 30%;
}

main {
	background-color: var(--c-navy,#1F2A44);
}

.inner-banner-wrap {
	padding-bottom: 0;
}

@media (max-width: 1024px) {
	.box {
		flex-wrap: wrap;
	}

	.box2 a {
		letter-spacing: 0px;
	}

	.book-section .containerr {
		height: 400px;
		width: 650px;
	}
}

@media (max-width: 768px) {
	.book-section .containerr {
		height: 275px;
		width: 400px;
	}

	.box2 a {
		padding: 14px;
		font-size: 14px;
	}

	.box2 a i {
		display: none;
	}

	.content_box {
		flex-direction: column;
	}

	.content_box div {
		padding: 50px 0 0 0;
	}

	.content_box img {
		width: 100%;
	}

	.box2 h2 {
		width: 100%;
	}

	.box p {
		width: 100%;
	}
}

@media (max-width: 425px) {
	.book-section .containerr {
		height: 200px;
		width: 250px;
	}

	.book-section {
		padding: 40px 0px;
	}

	.main_container .btn_style {
		padding: 20px 15px;
	}

	.book-section button {
		padding: 7px;
		white-space: wrap;
	}
}

.main_book {
	width: 100%;
	overflow: hidden;
	background-color: #1d2144;
	position: relative;
}

#flipbook {
	display: none;
}

#flipbook-controls {
	z-index: 9999 !important;
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main_book button,
.main_book .flipbook-download-btn {
	border: 2px solid var(--c-navy,#1F2A44);
	background-color: white;
	color: var(--c-navy,#1F2A44);
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	margin: 5px;
	transition: 0.3s ease-in-out;
	white-space: nowrap;
	display: inline-block;
	line-height: 1;
	text-decoration: none;
}

.main_book button:hover,
.main_book .flipbook-download-btn:hover {
	border: 2px solid black;
	background-color: black;
	color: white;
}

.main_book button a {
	color: var(--c-navy,#1F2A44);
}

.main_book button:hover a {
	color: white;
}

@media (max-width: 425px) {
	.page-content {
		width: 80% !important;
		margin: 0 auto !important;
	}

	.main_book {
		height: 650px;
	}
}

@media (max-width: 400px) {
	.page-content {
		margin: 0 20px !important;
	}
}

@media (max-width: 377px) {
	.page-content {
		margin: 0 !important;
	}

	.main_book button {
		padding: 10px 15px;
	}
}

.loader {
	border: 5px solid #f3f3f3;
	border-top: 5px solid var(--c-navy,#1F2A44);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
}

#pdf-loader {
	width: 100% !important;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* #flipbook{
    width: unset !important;
} */
