*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
}

/*body {
	margin: 0;
	--color-text: #1c1b1b;
	--color-bg: #efe6e1;
	--color-link: #b07656;
	--color-link-hover: #000;
	--color-deco: #e4dbd6;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: paralucent, sans-serif;
	font-family: quiroh, sans-serif;
	font-family: mr-eaves-xl-sans, sans-serif;
}*/

/* Page Loader */

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

[data-scroll] {
	will-change: transform;
}

.frame {
	padding: 2.5rem 3rem;
	position: absolute;
	z-index: 10;
}

.frame__title {
	font-size: 1rem;
	margin: 0 0 2.5rem;
}

.frame__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.frame a {
	margin: 0.25rem 0;
	text-transform: lowercase;
}

.frame__github,
.frame__links a:not(:last-child),
.frame__demos a:not(:last-child) {
	margin-right: 1rem;
}

.frame__demos {
	margin: 1rem 0;
}

.frame__demo--current,
.frame__demo--current:hover {
	color: var(--color-text);
}

.content {
	
}

.item {
	
	max-width: 100%;
	position: relative;
	will-change: transform;
}



.item:nth-child(even)::before {
	right: 0;
}

.item__img-wrap {border-radius: .2rem;
	--aspect-ratio: 1/1.5;
	overflow: hidden;
	width: 5.6rem;
	padding-bottom: calc(100% / (var(--aspect-ratio)));
	
	will-change: transform;
}

.item:first-child .item__img-wrap {
	--aspect-ratio: 8/10;
	background: url(../images/a11.png);
}


.item:nth-child(2) .item__img-wrap {
	--aspect-ratio: 60/75;
	--image: url(../images/a3.png);
}

.item:nth-child(3) .item__img-wrap {
	
	--aspect-ratio: 60/75;
	--image: url(../images/a5.png);
}

.item:nth-child(4) .item__img-wrap {
	--aspect-ratio: 6/8;
	--image: url(../images/a7.png);
}

.item:nth-child(5) .item__img-wrap {
--aspect-ratio: 6/8;
	--image: url(../images/a9.png);
}

.item:nth-child(6) .item__img-wrap {
	
	--aspect-ratio: 6/8;
	--image: url(../images/a11.png);
}

.item:nth-child(7) .item__img-wrap {
	--aspect-ratio: 7/8;
	--image: url(../images/a13.png);
	
	}


.item__img {
	--overflow: 40px;
	height: calc(100% + (2 * var(--overflow)));
	top: calc( -1 * var(--overflow));
	width: 100%;
	position: absolute;
	background-image: var(--image);
	background-size: cover;
	background-position: 50% 0%;
	will-change: transform;
}

.item__img--t1 {
	--overflow: 200px;
}

.item__img--t2 {
	--overflow: 80px;
}

.item__img--t3 {
	--overflow: 120px;
}

.item__caption {
	padding: 2rem 1rem;
}

.item__caption-title {
	font-family: paralucent, sans-serif;
	font-weight: 400;
	font-size: 3rem;
	margin: 0;
}

.item__caption-copy {
	margin: 0;
}


@media(max-width:1000px){
.item__img-wrap{
	height: 4rem;
	width: 3rem;
	--aspect-ratio: 10 / 6 !important;
	}	

}