/* resources/views/css/styles.blade.php */
@font-face {
	font-family: 'Plus Jakarta Sans';
	src: url('../../assets/fonts/static/PlusJakartaSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-optical-sizing: auto;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
}


/* ----------------------------------------------------------------
	On Hover Changes
-----------------------------------------------------------------*/
.showcase-target-images {
	position: relative;
}

.showcase-target {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 1);
	-moz-transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 1);
	-o-transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 1);
	transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 1);
}

.showcase-target.showcase-target-active {
	position: relative;
	display: block;
}

.showcase-section:hover .showcase-target {
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

.showcase-section ul li {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #000;
	cursor: pointer;
	border: 1px solid #EEE;
}

.showcase-section ul li.product-merah {
	background-color: #af1e2b;
}

.showcase-section ul li.product-hitam {
	background-color: #000;
}

.showcase-section ul li.product-biru {
	background-color: darkblue;
}

.showcase-section ul li.product-pink {
	background-color: pink;
}

.showcase-section ul li.product-putih {
	background-color: white;
}

.showcase-section ul li.product-hijau {
	background-color: green;
}

.showcase-section .badge {
	position: absolute;
	top: 0;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 3px;
	font-size: 11px;
	text-shadow: none;
	background-color: #222 !important;
	left: 50%;
	top: 20px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

/* ----------------------------------------------------------------
	Section Products
-----------------------------------------------------------------*/

.section-product {
	position: relative;
	width: 100%;
}

.section-product .section-product-image {
	width: 100%;
}

.section-product .section-product-content {
	max-width: 100%;
	position: relative;
	bottom: 0px;
	right: 0;
	background-color: #FFF;
	padding: 20px;
	z-index: 1;
}

.section-product .section-product-content h3 {
	font-weight: 800;
}

.section-product.alt .section-product-image,
.section-product.alt .section-product-content {
	float: none;
}

.section-product .section-product-price {
	font-size: 1.5rem;
	font-weight: 700;
}

/* ----------------------------------------------------------------
	Title Parallax
-----------------------------------------------------------------*/

.page-title {
	padding: 4rem !important;
}

#page-title,
.page-title {
	--cnvs-page-title-bg: var(--cnvs-contrast-900) !important;
}

.page-title-content h1 {
	color: #005594 !important;
	font-weight: 700v;
}

/* ----------------------------------------------------------------
	Box Berita
-----------------------------------------------------------------*/

.feature-box {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.fbox-media {
	position: relative;
	flex-shrink: 0;
}

.fbox-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.entry-content {
	flex-grow: 1;
}

.button-link {
	margin-top: auto;
}

/* ----------------------------------------------------------------
	Publikasi
-----------------------------------------------------------------*/

.book-image {
	display: block;
	position: relative;
}

.book-image img {
	width: 100%;
	max-width: 100%;
	display: block;
}

.book-image::after {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
	transition: opacity .3s ease;
	opacity: 0;
}

.book-card {
	position: relative;
	will-change: transform;
	transition: box-shadow .3s ease;
	box-shadow: 0 10px 40px transparent;
}

.book-card.hover-in {
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.book-card.hover-out {
	transition: -webkit-transform .2s ease-in;
	transition: transform .2s ease-in;
	transition: transform .2s ease-in, -webkit-transform .2s ease-in;
}

.book-wrap:hover .book-card {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.book-wrap:hover .book-image::after {
	opacity: 1;
}

.book-wrap:hover .book-title,
.book-wrap:hover .book-category,
/* .book-wrap:hover .book-border, */
.book-wrap:hover .button {
	-webkit-transform: translateY(0) scale(1);
	-ms-transform: translateY(0) scale(1);
	transform: translateY(0) scale(1);
	opacity: 1;
}

.book-wrap {
	-moz-transform-style: flat !important;
}

.book-detail {
	position: absolute;
	left: 40px;
	right: 40px;
	top: 40px;
	bottom: 40px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	pointer-events: none;
	-webkit-transform: translateZ(40px);
	transform: translateZ(40px);
}

.book-title {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 700;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
	transition: .4s ease;
	opacity: 0;
	-webkit-transform: translateY(40px) scale(0);
	-ms-transform: translateY(40px) scale(0);
	transform: translateY(40px) scale(0);
	will-change: transform;
}

.book-title a {
	color: white;
}

.book-category {
	opacity: 0;
	margin: 0 0 18px;
	font-family: var(--cnvs-body-font);
	transition: .4s ease;
	transition-delay: .1s;
	-webkit-transform: translateY(40px) scale(0);
	-ms-transform: translateY(40px) scale(0);
	transform: translateY(40px) scale(0);
	will-change: transform;
}

.book-category a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.3em;
}

.book-wrap .button {
	opacity: 0;
	margin: 0 auto;
	transition: .4s ease !important;
	transition-delay: .15s !important;
	-webkit-transform: translateY(40px) scale(0);
	-ms-transform: translateY(40px) scale(0);
	transform: translateY(40px) scale(0);
	will-change: transform;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ----------------------------------------------------------------
	Whatsapp Button
-----------------------------------------------------------------*/
.button-whatsapp {
	background-color: #25D366;
	border-color: #25D366;
	color: white;
}

.button-whatsapp:hover {
	background-color: #1EBE5E;
	border-color: #1EBE5E;
}

:root {
	--cnvs-body-bg: transparent;
	--cnvs-body-image: linear-gradient(to bottom, rgba(var(--cnvs-dark-themecolor-rgb), 0.9), rgba(var(--cnvs-dark-themecolor-rgb), 0.95)), url('images/body-bg.jpg');
}

/* ----------------------------------------------------------------
	Header Teast
-----------------------------------------------------------------*/

.title-bottom-border h1{
	border-bottom: 0px !important;
}