/*  

	Author : Moskva Yigit
	Author URI : http://www.moskvayigit.com/

	Table of Contents
	- Draggable Showcase
	- Splitting
	 
*/

.ki-description{width:100%;}

/*----------------------------
	.-- Draggable Showcase
-----------------------------*/

*,
*::after,
*::before {
	box-sizing: border-box;
}

.hide-element{
	visibility:hidden;
	opacity:0;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

.draggable-showcase-container {
	width: 100%;
	overflow: hidden;
}

.draggable-showcase-wrap {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	pointer-events: none;
}

.draggable-showcase-page--preview ~ .draggable-showcase-wrap {
	pointer-events: auto;
}

.draggable-showcase-draggable {
	top: 0;
	left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
	cursor: grab;
}

.draggable-showcase-draggable:active {
	cursor: grabbing;
}

.draggable-showcase {
	display: flex;
	width: 100vw;
	height: 100vh;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	width: -moz-fit-content;
	width: fit-content;
	counter-reset: menu-number;
	pointer-events: none;
	will-change: transform;
}

.draggable-showcase__item {
	position: relative;
	text-align: center;
	margin: 0 10vw 0 0;
	--counter-opacity: 0;
	color: var(--color-menu-item);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.draggable-showcase-page--preview ~ .draggable-showcase-wrap .draggable-showcase__item {
	--counter-opacity: 1;
}

.draggable-showcase__item::before {
	counter-increment: menu-number;
	content: counter(menu-number, decimal-leading-zero);
	position: absolute;
	top: 0;
	right: 100%;
	opacity: var(--counter-opacity);
	transition: opacity 0.3s;
}

.draggable-showcase__item--current {
	color: var(--color-menu-item);
}

.draggable-showcase__item-link {
	color: currentColor;
	font-weight: bold;
	font-size: 12vw;
	display: flex;
	line-height: 1.2;
}

.draggable-showcase__item-explore,
.draggable-showcase__item-explore-direct {
	cursor: pointer;
	margin: 0.5rem 0 0 0;
	display: inline-block;
	color: var(--color-explore);
	text-decoration: underline;
	opacity: 0;
	padding: 0.5rem 0.5rem 0;
	will-change: transform;
}

.draggable-showcase__item-explore-direct {
	pointer-events: auto;
	opacity: 1;
}

.draggable-showcase__item-explore:hover,
.draggable-showcase__item-explore-direct:hover,
.draggable-showcase__item-explore:focus,
.draggable-showcase__item-explore-direct:focus {
	text-decoration: none;
}

.draggable-showcase-page--preview ~ .draggable-showcase-wrap .draggable-showcase__item--current .draggable-showcase__item-explore,
.draggable-showcase-page--preview ~ .draggable-showcase-wrap .draggable-showcase__item--current .draggable-showcase__item-explore-direct {
	pointer-events: auto;
}

.letter {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.letter__inner {
	display: block;
	will-change: transform;
}

.letter__inner--stroke {
	position: absolute;
	left: 100%;
	top: 0;
	-webkit-text-stroke: 1px var(--color-menu-stroke);
	text-stroke: 1px var(--color-menu-stroke);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
}

.draggable-showcase__item--current .letter__inner {
	transform: translate3d(-100%,0,0);
}

.draggable-showcase-grid-wrap {
	display: grid;
	margin: 0 auto;
	grid-template-columns: 100%;
	grid-template-rows: 3rem 1fr;
	position: relative;
	padding: 13rem 5vw 2rem;
	pointer-events: none;
}

.draggable-showcase-gridback {
	align-self: start;
	grid-area: 1 / 1 / 2 / 2;
	justify-self: center;
	background: none;
	border: 0;
	margin: 0;
	padding: 0;
	color: #fff;
	opacity: 0;
	pointer-events: auto;
}

.draggable-showcase-page--preview .draggable-showcase-gridback {
	pointer-events: none;
}

.draggable-showcase-gridback:hover {
	color: var(--color-link-hover);
}

.draggable-showcase-gridback:focus {
	outline: none;
}

.draggable-showcase-grid {
	grid-area: 2 / 1 / 3 / 2;
	--gridgap: 1vw;
	--gridwidth: 100%;
	--gridheight: 80vw;
	display: grid;
	width: var(--gridwidth);
	height: var(--gridheight);
	grid-template-rows: repeat(10,calc(var(--gridheight) / 10 - var(--gridgap)));
	grid-template-columns: repeat(10,calc(var(--gridwidth) / 10 - var(--gridgap)));
	grid-gap: var(--gridgap);
	align-content: center;
    	justify-content: center;
}

.draggable-showcase-grid__item-wrap {
	position: relative;
	will-change: transform;
}

.draggable-showcase-grid__item {
	opacity: 0;
	position: relative;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	will-change: transform;
	-webkit-filter: grayscale(0) contrast(1) brightness(1);
	filter: grayscale(0) contrast(1) brightness(1);
}

.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:first-child {grid-area: 3 / 1 / 8 / 4;}
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 1 / 2 / 3 / 4;}
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 5 / 4 / 8 / 8; }
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 2 / 7 / 5 / 11;}
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 1 / 4 / 5 / 7;}
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 8 / 5 / 11 / 2;}
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 10 / 9 / 8 / 11;}
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 5 / 8 / 8 / 10;}
.draggable-showcase-grid--layout-1 .draggable-showcase-grid__item-wrap:nth-child(9) {grid-area: 8 / 5 / 11 / 9;}

.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:first-child { grid-area: 2 / 1 / 5 / 4; }
.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:nth-child(2) { grid-area: 1 / 4 / 4 / 7; }
.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 1 / 7 / 5 / 10;}
.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 5 / 1 / 7 / 4;}
.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 4 / 4 / 7 / 7;}
.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 7 / 7 / 11 / 4;}
.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 5 / 7 / 8 / 11;}
.draggable-showcase-grid--layout-2 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 7 / 2 / 9 / 4;}

.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:first-child {grid-area: 1 / 2 / 3 / 5;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 3 / 1 / 6 / 5;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 1 / 5 / 5 / 8;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 2 / 8 / 6 / 11;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 5 / 5 / 8 / 8;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 6 / 8 / 8 / 11;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 6 / 2 / 8 / 5;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 11 / 4 / 8 / 7;}
.draggable-showcase-grid--layout-3 .draggable-showcase-grid__item-wrap:nth-child(9) {grid-area: 8 / 9 / 11 / 7;}

.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:first-child {grid-area: 2 / 1 / 4 / 4;}
.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 1 / 4 / 3 / 7;}
.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 3 / 4 / 5 / 7;}
.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 1 / 7 / 4 / 11;}
.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 4 / 2 / 7 / 4;}
.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 5 / 7 / 8 / 4;}
.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 4 / 7 / 8 / 11;}
.draggable-showcase-grid--layout-4 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 8 / 9 / 11 / 4;}

.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:first-child {grid-area: 2 / 1 / 5 / 4;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 1 / 4 / 5 / 7;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 5 / 2 / 7 / 5;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 1 / 7 / 4 / 11;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 5 / 7 / 7 / 5;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 7 / 5 / 10 / 1;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 4 / 7 / 7 / 9;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 4 / 9 / 9 / 11;}
.draggable-showcase-grid--layout-5 .draggable-showcase-grid__item-wrap:nth-child(9) {grid-area: 7 / 5 / 11 / 9;}

.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:first-child {grid-area: 3 / 1 / 8 / 4;}
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 1 / 2 / 3 / 4;}
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 5 / 4 / 8 / 8; }
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 2 / 7 / 5 / 11;}
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 1 / 4 / 5 / 7;}
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 8 / 5 / 11 / 2;}
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 10 / 9 / 8 / 11;}
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 5 / 8 / 8 / 10;}
.draggable-showcase-grid--layout-6 .draggable-showcase-grid__item-wrap:nth-child(9) {grid-area: 8 / 5 / 11 / 9;}

.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:first-child { grid-area: 2 / 1 / 5 / 4; }
.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:nth-child(2) { grid-area: 1 / 4 / 4 / 7; }
.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 1 / 7 / 5 / 10;}
.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 5 / 1 / 7 / 4;}
.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 4 / 4 / 7 / 7;}
.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 7 / 7 / 11 / 4;}
.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 5 / 7 / 8 / 11;}
.draggable-showcase-grid--layout-7 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 7 / 2 / 9 / 4;}

.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:first-child {grid-area: 1 / 2 / 3 / 5;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 3 / 1 / 6 / 5;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 1 / 5 / 5 / 8;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 2 / 8 / 6 / 11;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 5 / 5 / 8 / 8;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 6 / 8 / 8 / 11;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 6 / 2 / 8 / 5;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 11 / 4 / 8 / 7;}
.draggable-showcase-grid--layout-8 .draggable-showcase-grid__item-wrap:nth-child(9) {grid-area: 8 / 9 / 11 / 7;}

.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:first-child {grid-area: 2 / 1 / 4 / 4;}
.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 1 / 4 / 3 / 7;}
.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 3 / 4 / 5 / 7;}
.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 1 / 7 / 4 / 11;}
.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 4 / 2 / 7 / 4;}
.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 5 / 7 / 8 / 4;}
.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 4 / 7 / 8 / 11;}
.draggable-showcase-grid--layout-9 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 8 / 9 / 11 / 4;}

.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:first-child {grid-area: 2 / 1 / 5 / 4;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(2) {grid-area: 1 / 4 / 5 / 7;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(3) {grid-area: 5 / 2 / 7 / 5;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(4) {grid-area: 1 / 7 / 4 / 11;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(5) {grid-area: 5 / 7 / 7 / 5;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(6) {grid-area: 7 / 5 / 10 / 1;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(7) {grid-area: 4 / 7 / 7 / 9;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(8) {grid-area: 4 / 9 / 9 / 11;}
.draggable-showcase-grid--layout-10 .draggable-showcase-grid__item-wrap:nth-child(9) {grid-area: 7 / 5 / 11 / 9;}

.draggable-showcase-page--preview {
	position: relative;
	overflow: hidden;
	height: 100vh;
	pointer-events: none;
}

@media screen and (min-width: 53em) {

	.draggable-showcase-grid-wrap {
		grid-template-rows: 1.25rem 1fr;
		grid-gap: 3rem;
		padding: 2.5rem 3rem;
	}
	
	.draggable-showcase-grid {
		padding: 0 10vw;
	}
	
	.draggable-showcase-gridback {
		justify-self: end;
		cursor: pointer;
	}

}
