/* VARIABLES */

:root {
	--spacer: 1vw;
	--large: 2.4vw;
	--medium: 1.4vw;
	--small: 1.1vw;
}

/* RESET */

* {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	vertical-align: baseline;
	box-sizing: border-box;
}

/* SCROLLBAR */

*::-webkit-scrollbar { 
	display: none; 
} 

/* BOOTSTRAP */

.row {
	margin-left: calc(var(--spacer) * -1);
	margin-right: calc(var(--spacer) * -1);
}

.col-12 {
	padding-left: var(--spacer);
	padding-right: var(--spacer);
}

/* GLOBAL */

body {
	overflow-x: hidden;
	font-family: "times new roman", times, serif;
	background-color: #141414;
	color: #FFF;
    -webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	font-size: var(--small);
	line-height: 1.2;
}

a {
	color: #FFF;
	text-decoration: none;
}

h1 {
	font-size: var(--large);
}

p {
	font-size: var(--small);
	margin-bottom: calc(var(--spacer) * 2);
}

img {
	width: 100%;
}

/* LAYOUT */

.scroll-box-container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.2s linear;
	display: flex;
	display: none;
	align-items: center;
	justify-content: center;
}

.scroll-box-container.hidden {
	opacity: 0;
	pointer-events: none;
}

.scroll-box {
	background-color: #141414;
	border: 1px solid #FFF;
	padding: calc(var(--spacer) * 4);
	width: 10vw;
	height: 10vw;
}

.site-container {
	display: flex;
}

.site-content {
	width: 100%;
	position: relative;
}

.site-content a {
	text-decoration: underline;
}

.site-content p {
	
}

.template-home {
	overflow-y: hidden;
}

.template-home .site-content-blocks {
	padding-top: 5.28vw;
	padding-bottom: calc(var(--spacer) * 6);
}

.site-content-blocks {
	padding-top: 5.28vw;
	padding-bottom: calc(var(--spacer) * 4);
}

.site-content-blocks .intro {
	padding-left: 16.666vw;
	margin-bottom: calc(var(--spacer) * 2);
}

.site-content-blocks .intro .category-header p {
	font-size: var(--medium);
}

.site-content-blocks .intro .category-header p.category-header-title {
	font-size: var(--small);
}

.site-content-blocks .about {
	padding-left: 16.666vw;
}

.site-content-blocks .about .about-header p {
	font-size: var(--medium);
}

.site-content-blocks .about .about-header {
	margin-bottom: calc(var(--spacer) * 2);
}

.site-content-blocks .about .about-text {
	margin-bottom: calc(var(--spacer) * 4);
}

.site-content-blocks .single-project {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	padding-left: calc(16.666vw + 8.333% - 15px);
	margin-bottom: calc(var(--spacer) * 4);
}

.site-content-blocks .single-project.height-small {
	height: 30vw;
}

.site-content-blocks .single-project.height-medium {
	height: 35vw;
}

.site-content-blocks .single-project.height-large {
	height: 40vw;
}

.site-content-blocks .single-project.height-extra {
	height: 50vw;
}

.site-content-blocks .single-project img {
	flex: 0 0 auto;
	margin-right: var(--spacer);
	width: auto;
	height: 100%;
}

.site-content-blocks .single-project video {
	flex: 0 0 auto;
	margin-right: var(--spacer);
	width: auto;
	height: 100%;
}

.site-content-blocks .single-project .project-info {
	min-width: 25vw;
    white-space: normal;
	margin-right: calc(100vw - (16.666vw + 8.333vw - 15px) - 25vw);
}

.site-content-blocks .single-project .project-info p {
	font-style: italic;
	margin-bottom: var(--spacer);
}

.site-footer {
	border-top: 1px solid #FFF;
	padding: calc(var(--spacer) * 4);
	margin-left: 16.666vw;
	padding-left: calc(8.333vw - 15px);
    width: calc(100vw - 16.666vw);
}

.site-footer a {
	display: block;
	margin-bottom: var(--spacer);
}

.site-footer p {
	margin-bottom: 0px;
}

/* NAVIGATION */

.site-sidebar {
	width: 16.666%;
    border-right: 1px solid #FFF;
    top: 0px;
    position: fixed;
	z-index: 1;
    height: 100vh;
    background-color: transparent;
}

.site-sidebar .site-title {
	padding: calc(var(--spacer) * 1.2) calc(var(--spacer) * 2);
	border-bottom: 1px solid #FFF;
}

.site-sidebar .site-title a {
	font-size: var(--large);
}

.site-sidebar .site-navigation {
	padding: var(--spacer) calc(var(--spacer) * 2);
}

.site-sidebar .site-navigation a {
	display: block;
	margin-top: var(--spacer);
	margin-bottom: calc(var(--spacer) * 2);
	font-size: var(--medium);
}

.site-sidebar .site-navigation a.active {
	text-decoration: underline;
}

.mobile-menu-toggle {
	display: none;
}

/* HOME */

.project-sections {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	padding-left: calc(16.666vw + 8.333% - 15px);
}

.project-sections .single-section {
	flex: 0 0 auto;
	margin-right: var(--spacer);
	width: auto;
	height: 100%;
}

.project-sections .single-section:last-child {
	margin-right: calc(100vw - (16.666vw + 8.333vw - 15px) - 25vw);
}

.project-sections .single-section a {
	display: inline-block;
	text-decoration: none;
}

.project-sections .single-section img, .project-sections .single-section video {
	width: auto;
	height: 55vw;
    max-height: 70vh;
	margin-bottom: var(--spacer);
}

.project-sections .single-section .caption p {
	font-style: italic;
	margin-bottom: 0px;
}

.project-sections .single-section .category p {
	font-style: normal;
	text-decoration: underline;
	margin-bottom: 0px;
}

@media screen and (max-width: 992px) {

	:root {
		--spacer: 2vw;
		--large: 8vw;
		--medium: 6vw;
		--small: 4vw;
	}

	body {
		font-size: var(--small);
	}
	
	.mobile-menu-toggle {
		display: block;
		position: fixed;
		top: calc(var(--spacer) * 2);
		right: calc(var(--spacer) * 2);
		width: calc(var(--spacer) * 3);
		height: calc(var(--spacer) * 3);
		background-color: #141414;
		border: 1px solid #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.mobile-menu-toggle.active {
		background-color: #FFF;
	}

	.mobile-menu-toggle.active .mobile-menu-toggle-inner .line.vertical-line {
		transform: rotate(0deg);
	}

	.mobile-menu-toggle .mobile-menu-toggle-inner {
		position: relative;
		width: 100%;
		height: 100%;
	}

	.mobile-menu-toggle .mobile-menu-toggle-inner .line {
		position: absolute;
		top: 2.7vw;
    	left: 1.4vw;
		height: 1px;
		width: calc(var(--spacer)* 1.5);
		background-color: #fff;
		cursor: pointer;
	}

	.mobile-menu-toggle.active .mobile-menu-toggle-inner .line {
		background-color: #141414;
	}

	.mobile-menu-toggle .mobile-menu-toggle-inner .line.vertical-line {
		transform: rotate(90deg);
	}

	.site-sidebar .site-navigation {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100vw;
		height: auto;
		background-color: #141414;
		border-bottom: 1px solid #FFF;
		z-index: -1;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s linear;
		padding-top: calc(var(--spacer) * 8);
	}

	.site-container {
		display: block;
	}

	.site-sidebar .site-navigation.visible {
		opacity: 1;
		pointer-events: all;
	}

	.site-sidebar {
		width: 100vw;
		height: auto;
		background-color: #141414;
		z-index: 2;
		border-right: 0px;
		position: sticky;
	}

	.site-content {
		width: 100%;
		padding: 0px;
	}

	.site-sidebar .site-title {
		padding-left: calc(var(--spacer) * 2);
	}

	.site-footer {
		margin-left: 0px;
		padding: calc(var(--spacer) * 2);
		width: 100%;
	}

	.site-content-blocks .single-project {
		padding-left: calc(var(--spacer) * 2);
	}

	.site-content-blocks .single-project.height-small {
		height: 60vw;
	}
	
	.site-content-blocks .single-project.height-medium {
		height: 65vw;
	}
	
	.site-content-blocks .single-project.height-large {
		height: 70vw;
	}
	
	.site-content-blocks .single-project.height-extra {
		height: 80vw;
	}

	.site-content-blocks .single-project .project-info {
		min-width: 80vw;
		white-space: normal;
		margin-right: calc(var(--spacer) * 2);
	}

	.project-sections {
		padding-left: calc(var(--spacer) * 2);
	}

	.project-sections .single-section {
		margin-right: calc(var(--spacer) * 2);
	}

	.project-sections .single-section img, .project-sections .single-section video {
		width: auto;
		height: 100vw;
		max-height: 50vh;
		margin-bottom: var(--spacer);
	}

	.template-home .site-content-blocks {
		padding-top: 28vw;
		display: flex;
		align-items: center;
	}

	.site-content-blocks .intro {
		padding: 0px calc(var(--spacer) * 2);
	}

	.site-content-blocks .about {
		padding: 0px;
	}

	.site-content-blocks .single-project video, .site-content-blocks .single-project img {
		margin-right: calc(var(--spacer) * 2);
	}

	.scrollable {
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		flex-wrap: nowrap;
		padding: 0px calc(var(--spacer) * 2);
	}
	
	.scrollable-element {
		flex: 0 0 auto;
		width: 80vw;
		white-space: normal;
		height: 100vw;
	}

	.scrollable-element-text {
		column-count: 3;
    	column-width: 80vw;
	}

	.hidden-element {
		display: none;
	}

	.about-top {
		margin-bottom: calc(var(--spacer) * 4);
		padding: 0px calc(var(--spacer) * 2);
	}

	.project-sections .single-section:last-child {
		margin-right: calc(100vw - (16.666vw + 16.666vw + 2vw) - 25vw);
	}

}