/* ----------------------------------------------------------------
	Canvas: Videographer
-----------------------------------------------------------------*/

:root, .not-dark {
	--cnvs-themecolor: #e69c48;
	--cnvs-themecolor-rgb: 230, 156, 72;
	--cnvs-dark-color: #000;

	--cnvs-body-font: "area-normal", sans-serif;
	--cnvs-primary-font: 'arsenica-variable', sans-serif;
	--cnvs-secondary-font: "afronaut", sans-serif;

	--cnvs-slider-arrows-bg-color: transparent;
	--cnvs-slider-arrows-bg-hover-color: transparent;

	--cnvs-frame-offset: 20px;
	--cnvs-frame-bg: var(--cnvs-contrast-200);
	--cnvs-slider-gradient-bg: var(--cnvs-contrast-rgb);
	font-variation-settings: "opsz" 100, "wght" 400;

	--cnvs-header-bg: transparent;
}

body.dark,
.dark {
	--cnvs-body-bg: var(--cnvs-dark-color);
	/* --cnvs-header-bg: var(--cnvs-body-bg); */
	--cnvs-frame-bg: var(--cnvs-contrast-200);
	--cnvs-header-sticky-bg: transparent;
}

.dark .not-dark .menu-link {
	--cnvs-primary-menu-color: #fff;
}

.swiper-slide .button:not(:hover) {
	border-color: rgba(var(--cnvs-contrast-rgb),.25) !important;
}

/* Dark Mode Switch */
.body-scheme-toggle {
	position: fixed;
	top: auto;
	right: calc(var(--cnvs-frame-offset) + 15px);
	bottom: calc(var(--cnvs-frame-offset) + 15px);
	text-align: center;
	margin: 0 auto;
	z-index: 299;
}

.swiper-kenburn-effect .swiper-slide .swiper-slide-bg {
	transition: 10s ease-out;
	transform: scale(1);
}

.swiper-kenburn-effect .swiper-slide.swiper-slide-active .swiper-slide-bg {
	transform: scale(1.1);
}

#header {
	--cnvs-primary-menu-font-size: 1.25rem;
	--cnvs-primary-menu-font: var(--cnvs-primary-font);
	--cnvs-primary-menu-font-weight: 400;
	--cnvs-primary-menu-ls: 0px;
	--cnvs-primary-menu-tt: none;
}

.is-expanded-menu #header + .include-header {
	margin-top: -181px;
}

/* Image Hover */
.img-hover-block {
	z-index: 0;
}

.img-hover-block span {
	position: relative;
	color: var(--cnvs-contrast-1000);
}

.img-hover-block small {
	position: absolute;
	font-size: 26%;
	font-weight: normal;
	top: 5px;
	right: 5px;
	color: var(--cnvs-themecolor);
}

.img-hover-block:hover span {
	mix-blend-mode: difference;
	z-index: 2;
}

body:not(.dark) .img-hover-block:hover span {
	color: var(--cnvs-contrast-0);
}

.hover-reveal {
	position: fixed;
	width: 220px;
	height: 280px;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: 1;
}

.hover-reveal__inner,
.hover-reveal__img {
	width: 100%;
	height: 100%;
	position: relative;
}

.hover-reveal__inner {
	overflow: hidden;
}

.hover-reveal__img {
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 4px;
}

.portfolio-desc h3 {
	font-size: 1.5rem;
}

.grid-filter li a {
	font-family: monospace;
	font-weight: normal !important;
	--cnvs-grid-filter-item-font-size: 1rem;
}

.grid-filter li:not(.activeFilter):not(:hover) a {
	color: var(--cnvs-contrast-400);
}

.item-categories .cat-img {
	position: absolute;
	top: 50%;
	right: -35%;
	height: 70%;
	transform: translateY(-50%);
	z-index: 0;
}

.item-categories .cat-text {
	position: relative;
	z-index: 1;
	max-width: 75%;
}

.negetive-margin { margin-top: -230px; }

#cleaner-carousel .owl-item {
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s .1s ease-out;
}

#cleaner-carousel .owl-item.active {
	opacity: 1;
	transform: translateY(0);
}


/* book-wraps */
.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);
}