/*  

	Author : Moskva Yigit
	Author URI : http://www.moskvayigit.com/

	Table of Contents
	- On-Scroll SVG Filter
	 
*/

.ki-description{width:100%;}

/*----------------------------
	.-- On-Scroll Filter
-----------------------------*/

*,
*::after,
*::before {
	box-sizing: border-box;
}

.filter-style-dark {
    color: #000;
}

.filter-style-light {
    color: #fff;
}

.content-wrap-svg {
	display: grid;
	place-items: center;
	grid-template-areas: 'main';
}

.content-svg {
	grid-area: main;
	display: grid;	
	place-items: center;
	line-height: 1.2;
	grid-template-areas: 'content';
}

.content-wrap-svg .content:first-child {
	height: 100vh;
}

.content--layout {
	grid-template-areas:  'title-up title-down' 
						  'img img'
						  'text text';
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.content__svgfilter__img {
	grid-area: img;
	max-width: 50%;
	height: auto;
}

.content__svgfilter__img--1 {
	aspect-ratio: 896/1344;
}

.content__svgfilter__img--2 {
	aspect-ratio: 1000/450;
}

.content__svgfilter__img--3 {
	aspect-ratio: 1000/560;
}

.content__svgfilter__img--4 {
	aspect-ratio: 1400/560;
}

.content__svgfilter__img--5 {
	aspect-ratio: 680/920;
}

.content__svgfilter__img--6 {
	aspect-ratio: 1;
}

.content__svgfilter__img--7 {
	aspect-ratio: 1400/560;
}

.title-wrap {
	display: flex;
	gap: 1em;
	align-items: center;
    justify-content: center;
}

.title-svg-filter {
	padding-top: 0.3em;
	line-height: 0.525;
	font-size: 2rem;
	font-family: "stinger-variable", sans-serif;
	font-variation-settings: "wdth" 140, "wght" 150;
	font-weight: 300;
	position: relative;
	z-index: 100;
	text-indent: -0.1em;
}

.title--up {
	grid-area: title-up;
	font-style: italic;
	
}

.title--down {
	grid-area: title-down;
	font-variation-settings: "wdth" 140, "wght" 350;
}

.content__svgfilter__text {
	grid-area: text;
	margin: 0;
	opacity: 0.5;
}

@media screen and (min-width: 53em) {
	.frame {
		grid-template-columns: auto auto 1fr;
		grid-template-areas: 'back prev sponsor';
		justify-items: start;
		grid-gap: 2rem;
	}

	.frame__prev {
		justify-self: end;
	}

	.title-svg-filter {
		font-size: clamp(2rem,15vw,9rem);
	}

	.content-wrap-svg:not(:last-child) {
		margin-bottom: 30vmax;
	}

	.content__svgfilter__img {
		max-width: none;
	}

	.content__svgfilter__img--1 {
		height: auto;
		width: 100%;
		max-width: 100%;
		max-height: 100vh;
	}

	.content__svgfilter__img--2 {
		width: 60vw;
	}

	.content__svgfilter__img--3 {
		width: 30vw;
		align-self: center;
	}

	.content__svgfilter__img--4 {
		width: 100%;
		align-self: center;
	}

	.content__svgfilter__img--5 {
		height: auto;
		width: 100%;
		max-width: 100%;
		max-height: 100vh;
	}

	.content__svgfilter__img--6 {
		max-width: 100%;
	}

	.content__svgfilter__img--7 {
		width: 100%;
		align-self: center;
	}

	.content--layout-1 {
		grid-template-areas:  'title-up img ...' 
							  'text img title-down';
		grid-template-columns: 30% auto 30%;
		grid-template-rows: 1fr 1fr;
		column-gap: 2vw;
	}

	.content--layout-2 {
		grid-template-areas:  'title-up ...' 
							  'img img'
							  'text title-down';
		grid-template-columns: auto auto;
		justify-content: center;
		row-gap: 3vh;
	}

	.content--layout-3 {
		grid-template-areas:  'title-up img title-down' 
							  'text text text';
		grid-template-columns: 20vw auto 20vw;
		grid-template-rows: auto auto;
		row-gap: 10vh;
		column-gap: 2vw;
		justify-content: center;
		align-content: center;
	}

	.content--layout-4 {
		width: 100%;
		grid-template-areas:  'title-up'
							   'img'
							   'title-down'
							  'text';
		grid-template-columns: 1fr;
		justify-content: center;
		row-gap: 4vh;
	}

	.content--layout-5 {
		grid-template-areas:  'title-up img ...' 
							  'text img title-down';
		grid-template-columns: 30% auto 30%;
		grid-template-rows: 1fr 1fr;
		column-gap: 3vw;
	}

	.content--layout-6 {
		grid-template-areas:  'title-up img' 
							  'title-down img'
							  'text img';
		grid-template-columns: 1fr 50%;
		grid-template-rows: auto auto 1fr;
		column-gap: 3vw;
		row-gap: 0;
	}

	.content--layout-7 {
		width: 100%;
		grid-template-areas:  'img img img img'
							   '... text title-up ...'
							   '... text title-down ...';
		grid-template-columns: 10vw 1fr 1fr 10vw;
		justify-content: center;
		row-gap: 4vh;
	}

	.title--up {
		justify-self: end;
		align-self: start;
	}

	.content--layout-2 .title--up {
		justify-self: start;
	}

	.content--layout-3 .title--up {
		justify-self: end;
		align-self: center;
	}

	.content--layout-4 .title--up {
		justify-self: center;
	}

	.content--layout-6 .title--up {
		justify-self: end;
		align-self: start;
	}

	.content--layout-7 .title--up {
		justify-self: start;
	}

	.title--down {
		justify-self: start;
		align-self: end;
	}

	.content--layout-2 .title--down {
		justify-self: end;
	    align-self: start;
		margin-top: -0.1em;
	}

	.content--layout-3 .title--down {
		align-self: center;
	}

	.content--layout-4 .title--down {
		justify-self: center;
	}

	.content--layout-6 .title--down {
		justify-self: end;
		align-self: start;
	}

	.content--layout-2 .content__svgfilter__text {
		align-self: start;
		justify-self: start;
		max-width: 400px;
	}

	.content--layout-1 .content__svgfilter__text {
		max-width: 250px;
		text-align: right;
		justify-self: end;
		align-self: end;
	}

	.content--layout-3 .content__svgfilter__text {
		column-count: 2;
		column-gap: 4vw;
		max-width: 590px;
		text-align: justify;
	}

	.content--layout-4 .content__svgfilter__text {
		text-align: center;
		max-width: 400px;
		margin-top: 3rem;
	}

	.content--layout-5 .content__svgfilter__text {
		max-width: 250px;
		text-align: right;
		justify-self: end;
		align-self: end;
	}

	.content--layout-6 .content__svgfilter__text {
		max-width: 250px;
		justify-self: end;
		align-self: end;
		text-align: right;
	}

	.content--layout-7 .content__svgfilter__text {
		max-width: 250px;
		justify-self: start;
		align-self: start;
		text-align: right;
	}

	.card-wrap {
		grid-template-columns: repeat(3,250px);
	}

}
