/* CSS Document */
html, body {
	background-position:center;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	/*text-align: center;*/ /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: white;
	max-width: 100vw;
	/*position:relative;
	overflow: hidden;*/
	font-family: "FenomenSansThin", Futura, sans-serif;
	-ms-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-o-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	font-size: 1em;
	line-height: 1.6em;
}

h1, h2, h3, h4{
	font-family: "FenomenSansRegular";
	font-weight: 400;
	text-transform: lowercase;
	font-variant: small-caps;
	letter-spacing: 0.2rem;
	margin: 0 0 1rem 0;
}

.category{
	margin-bottom: 4rem;
}

p{
	font-size: 1.2rem;
	line-height: 1.8rem;
	letter-spacing: 0.02rem;
}

.small_caps_spaced{
	font-variant: small-caps;
	letter-spacing: 0.2rem;
	line-height: 1.5rem;
}
.italic_spaced{
	font-family: "FenomenSansThinItalic";
	letter-spacing: 0.2rem;
	line-height: 1.5rem;
}

.signature{
	font-family: "FenomenSansRegular";
	font-size: 1.5rem;
	line-height: 1.8rem;
	letter-spacing: 0.2rem;
	text-transform: lowercase;
	font-variant: small-caps;
}

.menu_link{
	font-family: "FenomenSansThin";
	font-size: 1.4rem;
	line-height: 1.8rem;
	letter-spacing: 0.1rem;
	text-transform: lowercase;
	font-variant: small-caps;
}
.menu_link_bold{
	font-family: "FenomenSansRegular";
	font-size: 1.4rem;
	line-height: 1.8rem;
	letter-spacing: 0.1rem;
	text-transform: lowercase;
	font-variant: small-caps;
}
.menu_link_small{
	font-family: "FenomenSansThin";
	font-size: 1rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	text-transform: lowercase;
	font-variant: small-caps;
}
.menu_link_small_bold{
	font-family: "FenomenSansRegular";
	font-size: 1rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	text-transform: lowercase;
	font-variant: small-caps;
}

#header{
	height: 5rem;	
}

#logo_img{
	margin: 0.75rem 0rem 0.75rem 0rem;
	height: 3.5rem;
	width: auto;
}
@media only screen and (min-width : 350px){
	#logo_img{
		margin: 0.5rem 0rem 0.5rem 0rem;
		height: 4rem;
		width: auto;
	}
}
@media only screen and (min-width : 430px){
	#logo_img{
		margin: 0;
		height: 5rem;
		width: auto;
	}
}

#quick_menu{
	position: absolute;
	height: 5rem;
	line-height: 4.8rem;
	right: 5rem;
	top: 0rem;
	font-size: 1rem;
	display: none;
}
@media only screen and (min-width : 900px){
	#quick_menu{
		display:block;
	}
}

#hamburger{
	position: fixed;
	right: 1.5rem;
	top: 1.1rem;
	z-index: 2000;
}
#hamburger_lines {
    display: inline-block;
    cursor: pointer;
}
.bar1, .bar2, .bar3 {
    width: 35px;
    height: 1px;
    background-color: #333;
    margin: 10px 0;
	-webkit-transform: rotate(-0.01deg);
    transform: rotate(-0.01deg);
    transition: 0.4s;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-8.5px, 6px);
    transform: rotate(-45deg) translate(-8.5px, 6px);
}
.change .bar2 {
	opacity: 0;
}
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8.5px, -6.5px);
    transform: rotate(45deg) translate(-8.5px, -6.5px);
}

#menu{
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: calc(100% - 2rem);
	min-height: calc(100% - 10rem);
	background-color: rgba(255,255,255,0.9);
	padding: 5rem 1rem 5rem 1rem;
	text-align: center;
	z-index: 1000;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}
@media only screen and (min-width : 768px){
	#menu{
		padding: 5rem 5rem 5rem 5rem;
		width: calc(100% - 10rem);
	}
}
#main{
	position: relative;
	min-height: 100%;
	width: 100%;
}

.left{
	text-align: left;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}

.section{
	display: block;
	position: relative;
	/*overflow: hidden;*/
	width: 100%;
	float: left;
}
.section:after {
  content: "";
  clear: both;
  display: table;
}

.section-100 .center{
	padding-left: 0;
	padding-right: 0;
}
@media only screen and (min-width : 900px){
	.section-100 .center{
		padding-left: 20%;
		padding-right: 20%;
	}
}

.insta-section-33{
	width: 33.333%;
	float: left;
}

.section-100{
 	width: auto;
	float: none;
}
.section-75{
 	width: auto;
	float: none;
}
.section-66{
 	width: auto;
	float: none;
}
.section-50{
 	width: auto;
	float: none;
}
.section-33{
 	width: auto;
	float: none;
}
.section-25{
 	width: auto;
	float: none;
}
.section-20{
 	width: auto;
	float: none;
}
.section-16{
 	width: auto;
	float: none;
}
.section-14{
 	width: auto;
	float: none;
}
@media only screen and (min-width : 768px){
	.section-100{
		width: 100%;
		float: left;
	}
	.section-75{
		width: 75%;
		float: left;
	}
	.section-66{
		width: 66.666%;
		float: left;
	}
	.section-50{
		width: 50%;
		float: left;
	}
	.section-33{
		width: 33.333%;
		float: left;
	}
	.section-25{
		width: 25%;
		float: left;
	}
	.section-20{
		width: 20%;
		float: left;
	}
	.section-16{
		width: 16.666%;
		float: left;
	}
	.section-14{
		width: 14.28%;
		float: left;
	}
}

.text_padding{
	position: relative;
	width: calc(100% - 2rem);
	padding: 0rem 1rem 0rem 1rem;
}
.top_space{
	position: relative;
	padding: 6rem 0rem 0rem 0rem;
}
.bottom_space{
	position: relative;
	padding: 0rem 0rem 6rem 0rem;
}

#presentation{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 2rem);
	max-width: 70rem;
	padding: 0rem 1rem 0rem 1rem;
	overflow: hidden;
}
@media only screen and (min-width : 1000px){
	#presentation{
		width: calc(100% - 8rem);
		padding: 1rem 4rem 1rem 4rem;
	}
}



.project_image_container{
	position: relative;
	padding-top: 66.666%;
	/*height:calc(10vw + 10rem);*/
	width: calc(100% - 2rem);
	margin: 0rem 1rem 0rem 1rem;
}

.project_image_container img, .project_image_container video{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.project_image_container iframe{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}


.project_image_container_no_label{
	position: relative;
	padding-top: 66.666%;
	/*height:calc(10vw + 10rem);*/
	width: calc(100% - 2rem);
	margin: 0rem 1rem 0rem 1rem;
}

.project_image_container_no_label img, .project_image_container_no_label video{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.project_image_container_no_label iframe{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}




.project_insta_image_container_no_label{
	position: relative;
	/*height:calc(10vw + 10rem);*/
	padding-top: 100%; 
	width: calc(100% - 0.2rem);
	margin: 0rem 0.1rem 0rem 0.1rem;
}
.project_insta_image_container_no_label img, .project_insta_image_container_no_label video{
	position: absolute;
	top: 0;
	height: calc(100% - 0.2rem);
	width: 100%;
	object-fit: cover;
}
.project_insta_image_container_no_label iframe{
	position: absolute;
	top: 0;
	height: calc(100% - 0.2rem);
	width: 100%;
}

@media only screen and (min-width : 1000px){
	.project_insta_image_container_no_label{
		position: relative;
		padding-top: 100%;
		/*height:calc(10vw + 10rem);*/
		width: calc(100% - 2rem);
		margin: 0rem 1rem 0rem 1rem;
	}
	.project_insta_image_container_no_label img, .project_insta_image_container_no_label video{
		position: absolute;
		top: 0;
		height: calc(100% - 2rem);
		width: 100%;
		object-fit: cover;
	}
	.project_insta_image_container_no_label iframe{
		position: absolute;
		top: 0;
		height: calc(100% - 2rem);
		width: 100%;
	}
}

.project_image{
	width: 100%;
	object-fit: cover;
}
.project_image_label{
	position: relative;
	padding: 1rem 1rem 3rem 1rem;
	text-transform: lowercase;
	font-variant: small-caps;
	letter-spacing: 0.15rem;
	font-family: FenomenSansRegular;
}


.pr_image_container{
	position: relative;
	padding-top: calc(60% - 2rem);
	/*height:calc(10vw + 10rem);*/
	width: calc(100% - 2rem);
	margin: 0rem 1rem 0rem 1rem;
}
@media only screen and (max-width : 400px){
	.pr_image_container{
		padding-top: calc(60% - 0.2rem);
		width: calc(100% - 0.2rem);
		margin: 0rem 0.1rem 0rem 0.1rem;
	}
}

.pr_image_container img, .pr_image_container video{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.pr_image_container iframe{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}
.pr_image_label{
	position: relative;
	text-transform: lowercase;
	font-variant: small-caps;
	padding: 0.5rem 0rem 1rem 0rem;
	letter-spacing: 0.02rem;
	font-size: 1rem;
	line-height: 1rem;
	font-family: FenomenSansThin;
}
.pr{
	margin-bottom: 2rem;
}
@media only screen and (max-width : 767px){
	.pr{
		margin-bottom: 2rem;
		width: 33.333%;
		float: left;
	}
}
@media only screen and (max-width : 400px){
	.pr{
		margin-bottom: 0.2rem;
	}
}


.pr_insta_image_container_no_label{
	position: relative;
	/*height:calc(10vw + 10rem);*/
	padding-top: 125%; 
	width: calc(100% - 0.2rem);
	margin: 0rem 0.1rem 0rem 0.1rem;
}
.pr_insta_image_container_no_label img, .pr_insta_image_container_no_label video{
	position: absolute;
	top: 0;
	height: calc(100% - 0.2rem);
	width: 100%;
	object-fit: cover;
}
.pr_insta_image_container_no_label iframe{
	position: absolute;
	top: 0;
	height: calc(100% - 0.2rem);
	width: 100%;
}
@media only screen and (min-width : 1000px){
	.pr_insta_image_container_no_label{
		position: relative;
		padding-top: 125%;
		/*height:calc(10vw + 10rem);*/
		width: calc(100% - 2rem);
		margin: 0rem 1rem 0rem 1rem;
	}
	.pr_insta_image_container_no_label img, .pr_insta_image_container_no_label video{
		position: absolute;
		top: 0;
		height: calc(100% - 2rem);
		width: 100%;
		object-fit: cover;
	}
	.pr_insta_image_container_no_label iframe{
		position: absolute;
		top: 0;
		height: calc(100% - 2rem);
		width: 100%;
	}
}

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


#carousel, #vcarousel, #hcarousel{
	height: calc(100vh - 5rem);
	overflow: hidden;
}

#vcarousel, #hcarousel{
	display: none !important;
}



@media only screen and (min-aspect-ratio: 1/1){
	#hcarousel{
		display: block !important;
	}
}
@media only screen and (max-aspect-ratio: 1/1){
	#vcarousel{
		display: block !important;
	}
}

.item{
	height: calc(100vh - 5rem);
	/*max-width: 68rem;*/
	width: 100vw;
	overflow: hidden;
}

.item img{
	height: calc(100vh - 5rem);
	/*width: 68rem !important;*/
	width: 100vw !important;
	max-width: 100vw;
	object-fit: cover;
}

.item video{
	height: calc(100vh - 5rem);
	/*width: 68rem !important;*/
	width: 100vw !important;
	max-width: 100vw;
	object-fit: cover;
}

.item iframe{
	height: calc(100vh - 5rem);
	/*width: 68rem !important;*/
	width: 100vw !important;
	max-width: 100vw;
}

.item .owl-video-wrapper{
	height: calc(100vh - 5rem);
	/*width: 68rem !important;*/
	width: 100vw !important;
	max-width: 100vw;
}
.item .owl-video-wrapper.owl-video-tn{
	background-size: cover !important;
}
.owl-carousel .owl-video-tn{
	background-size: cover !important;
}
.owl-theme .owl-dots{
	margin-top: -3.5rem !important;
    z-index: 1000;
    position: absolute;
    left: 50%;
	width: 100%;
    transform: translateX(-50%);
}

.owl-theme .owl-dots .owl-dot span {
	border-radius: 0px;
	height: 2px;
	width: 40px;
	background-color: #ddd;
	opacity: 0.7;
	margin: 5px 3px 5px 3px;
}

.contact_flex{
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}
.contact_details{
	flex-grow: 1;
	line-height: 1.5rem;
	min-height: 1.8rem;
}
.nowrap{
	white-space: nowrap;
}

.social{
	margin-top: 1rem;
}

.social_icon{
	margin-right: 1rem;
}

.social_icon img{
	height: 1.5rem;
	width: auto;
}

.move_fade{
	opacity: 0;
	transform: translate(0vh, 5vh);
	-webkit-transition:  2s; /* Safari */
    transition:  2s;
}

.show.move_fade{
	opacity: 1;
	transform: translate(0vh, 0vh);
}

@font-face { 
	font-family: FenomenSansThin;
	src: url('../fonts/FenomenSans-Thin.eot'); /* IE9 Compat Modes */
	src: url('../fonts/FenomenSans-Thin.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		/* url('../fonts/FenomenSans-Thin.woff2') format('woff2'),*/
    	 url('../fonts/FenomenSans-Thin.woff') format('woff'),
		 url('../fonts/FenomenSans-Thin.ttf')  format('truetype'), /* Safari, Android, iOS */
    	 url('../fonts/FenomenSans-Thin.svg') format('svg'); /* Legacy iOS */
}

@font-face { 
	font-family: FenomenSansThinItalic;
	src: url('../fonts/FenomenSans-ThinItalic.eot'); /* IE9 Compat Modes */
	src: url('../fonts/FenomenSans-ThinItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		/* url('../fonts/FenomenSans-ThinItalic.woff2') format('woff2'),*/
    	 url('../fonts/FenomenSans-ThinItalic.woff') format('woff'),
		 url('../fonts/FenomenSans-ThinItalic.ttf')  format('truetype'), /* Safari, Android, iOS */
    	 url('../fonts/FenomenSans-ThinItalic.svg') format('svg'); /* Legacy iOS */
}

@font-face { 
	font-family: FenomenSansRegular;
	src: url('../fonts/FenomenSans-Regular.eot'); /* IE9 Compat Modes */
	src: url('../fonts/FenomenSans-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		 /*url('../fonts/FenomenSans-Regular.woff2') format('woff2'),*/
    	 url('../fonts/FenomenSans-Regular.woff') format('woff'),
		 url('../fonts/FenomenSans-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
    	 url('../fonts/FenomenSans-Regular.svg') format('svg'); /* Legacy iOS */
}