h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, ul, ol, li {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	font-weight:normal;
	vertical-align:top;
	background:transparent;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

@font-face {
    font-family: 'Gotham Bold', sans-serif;
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff'),
        url('../fonts/Gotham-Bold.ttf') format('truetype'),
        url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Book', sans-serif;
    src: url('../fonts/Gotham-Book.eot');
    src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff'),
        url('../fonts/Gotham-Book.ttf') format('truetype'),
        url('../fonts/Gotham-Book.svg#Gotham-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Medium', sans-serif;
    src: url('../fonts/Gotham-Medium.eot');
    src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff'),
        url('../fonts/Gotham-Medium.ttf') format('truetype'),
        url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html, body {
	/*height: 100%;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-family: 'Gotham Book', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.7;
	color: #fff;
	background-color: #0b0b0b;
	padding: 0;
	margin: 0;
	text-size-adjust: none ;
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
}
body, html { /*cursor: url("../images/cursor.ico"), default;*/ }
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.cf:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.cf {
	display: block;
}
img {
	display:block;
	max-width:100%;
}
a {
	color: #fff;
	text-decoration: none;
	padding: 0;
	outline: none;
	display: inline-block;
	vertical-align: top;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}


/**** TYPOGRAPHY START ****/

p {
	margin-bottom: 30px;
}
h2 {
	font-size: 30px;
}
h4 {
	font-size: 20px;
}
h6 {
	font-size: 16px;
}
.title:last-child,
h1:last-child,
h2:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
	margin-bottom: 0;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
/**** TYPOGRAPHY END ****/

/**** CONTAINER, SPACINGS PADDING MARGIN CLASS START ****/
.container {
	width: 100%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 70px;
	padding-right: 70px;
}
.container-small {
	max-width: 1320px;
}
.d-none {
	display: none !important;
}
.d-block {
	display: block !important;
}
.w-100 {
	width: 100%;
}
.section-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* PADDINGS */
.first-section {
	padding-top: 150px;
}
.s-pt,
.s-py {
    padding-top: 160px;
}
.s-pb,
.s-py {
    padding-bottom: 160px;
}
.s-pt-half,
.s-py-half {
    padding-top: 80px;
}
.s-pb-half,
.s-py-half {
    padding-bottom: 80px;
}
/* PADDINGS */
/* MARGINS */
.ml-auto,
.mx-auto {
	margin-left: auto;
}
.mr-auto,
.mx-auto {
	margin-right: auto;
}
.mb-0 { margin-bottom: 0 !important; }
/* MARGINS */
/**** CONTAINER, SPACINGS PADDING MARGIN CLASS END ****/
/**** GRID CSS START ****/
.d-flex {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.flex-wrap {
	-webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.align-center {
    align-items:center;
    -webkit-align-items:center;
    -ms-align-items:center;
}
.align-start {
    align-items:start;
    -webkit-align-items:start;
    -ms-align-items:start;
}
.align-end {
	align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
}
.space-between {
	justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
}
/**** GRID CSS END ****/
.wrapper {
	overflow: hidden;
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}
main {
	width: 100%;
}
.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 40px;
	background-color: transparent;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.logo {
	max-width: 142px;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
body.home .site-header .logo {
	display: none;
}
.site-header .link {
	font-family: 'Gotham Medium', sans-serif;
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	position: relative;
}
.site-header .link:after {
	content: "";
	pointer-events: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.site-header .link:hover:after {
	width: 100%;
}


.mouse { position:absolute; left:0; bottom: 0; margin:0 auto; width:100%; height:25%; z-index:1; }
.mouse { cursor:url(../images/down.png), auto; }

.hero-scroll {
	background-color: #0b0b0b;
	height: 100dvh;
	/*width: 100%;
	position: relative;*/
}
.hero-scroll .hero-logo {
	position: fixed;
	z-index: 11;
	top: 20px;
	width: 20%;
	left:50%;
	transform:translateX(-50%);
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
}
.hero-scroll .hero-logo img {
	width: 100%;
}

/*.project-list li {
	width: 50%;
	list-style: none;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.project-list li.full {
	width: 100%;
}
.project-list li .item {
	display: block;
	width: 100%;
}
.project-list li .item img,
.project-list li .item video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}*/

@media (min-width: 575px) {
	.project-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}
.project-grid {
	grid-auto-rows: 350px;
	grid-auto-flow: dense;
}
.listed-film,
.listed-film .film { height: 100%; }
.project-grid .item {
	position: relative;
	background-color: #000;
	overflow: hidden;
	text-align: center;
}
.project-grid .full {
	grid-column: span 2;
}
.project-grid .tall {
	grid-row: span 2;
}
.project-grid .item img,
.project-grid .item video {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.project-grid .item:hover img,
.project-grid .item:hover video {
	/*opacity: .6;
	transform: scale(1.1);*/
}
.project-grid .item .title,
.project-grid .item .credits {
	z-index: 1;
	opacity: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.project-grid .item:hover .title,
.project-grid .item:hover .credits {
	opacity: 1;
}
.project-grid .item .title {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
}
.project-grid .item .title h2 {
	font-family: 'Gotham Book', sans-serif;
	font-size: 14px;
	color: #fff;
	letter-spacing: 1px;
	font-weight: normal;
}
.project-grid .item .credits {
	font-family: 'Gotham Book', sans-serif;
	font-size: 14px;
	color: #fff;
	letter-spacing: 1px;
	line-height: 1.7;
	position: absolute;	
	width: 100%;
	bottom: 20px;
	left: 0;
}
.project-grid .item .credits .header {
	/*text-transform: uppercase;*/
	position: relative;
}
.project-grid .item:hover img/*,
.project-grid .item:hover .title,
.project-grid .item:hover .credits*/ { opacity: 0; }
.project-grid .item img.himg { display: none; opacity: 0; object-fit: cover;
    width: 100%;
    height: 100%; }
.project-grid .item:hover img.himg { display: block; opacity: 1 !important; transform:none !important; }
.project-grid .item:hover iframe { width: 100%; height: 100%; position: absolute; left: 0; top: 0; pointer-events: none; }
/*.project-grid .item .credits .header:after { content: "|"; display: inline-block; margin: 0 5px; }*/

.about-section .container {
	max-width: 1120px;
	border: 5px solid #cccccc;
	padding-top: 80px;
	padding-bottom: 80px;
}
.about-section .img-block {
	width: 50%;
	margin-right: -20%;
	margin-bottom: -15%;
	position: relative;
	z-index: -1;
}
.about-section .img-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-section .content-block {
	width: 70%;
	padding-right: 50px;
	color: #cccccc;
}
.about-info {
	font-size: 12px;
	line-height: 1.2;
	color: rgba(255, 255, 255, .7);
}
.about-info a {
	color: rgba(255, 255, 255, .7);
}
.about-info a:hover {
	color: rgba(255, 255, 255, 1);
}
.about-info h4 {
	margin-bottom: 4px;
}
.about-info h6 {
	font-size: 12px;
	margin-bottom: 20px;
}
.about-info .links a {
	position: relative;
	margin-right: 5px;
}
.about-info .links a:last-child {
	margin-right: 0;
}
.about-info .links a:after {
	content: "";
	pointer-events: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.about-info .left-block,
.about-info .right-block {
	width: 50%;
}
.contact-info {
	margin-bottom: 14px;
}
.contact-info a {
	display: inline-block;
	margin-right: 20px;
}
.contact-info a:last-child {
	margin-right: 0;
}

.contact-section .container {
	max-width: 1120px;
	border: 5px solid #cccccc;
	/*padding-top: 80px;
	padding-bottom: 80px;*/ padding: 0;
}
.contact-section .contact-block {
	width: 50%;
	padding: 50px;
	color: #cccccc;
}
.contact-block h6 {
	margin-bottom: 20px;
}
.contact-block a { color: #cccccc; }
.contact-block a:hover { color: #fff; }
.contact-block .social-media ul { list-style: none; margin-bottom: 20px; }
.contact-block .social-media li { display: inline-block; margin: 0 10px 10px 0; }
.contact-block .social-media li a { text-decoration: underline; color: #cccccc; }
.contact-block .social-media li a:hover { text-decoration: none; color: #fff; }
/*
.contact-section .map {
	width: 70%;
	padding-left: 50px;
}
.contact-section .map iframe {
	width: 100%;
}*/

.contact-form {
	max-width: 100%;
	width: 50%;
	background-color: #101010;
	padding: 30px 50px;
	text-align: center;
}
.form-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	margin: 0 -10px;
}
.form-list li {
	list-style: none;
	width: calc(50% - 20px);
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 20px;
}
.form-list li.w-full {
	width: 100%;
}
.text-field {
	font-family: 'Gotham Book', sans-serif;
	font-size: 14px;
	line-height: normal;
	color: #cccccc;
	font-weight: normal;
	width: 100%;
	background-color: #151515;
	border: 0;
	border: 2px solid #151515;
	padding: 10px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-text-shadow: none;
	-moz-text-shadow: none;
	text-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
textarea {
	resize: none;
	height: 100px;
}
.text-field:focus {
	background-color: #202020;
	border: 2px solid #202020;
	outline: none;
	color: #fff;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #cccccc;
	opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #cccccc;
	opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #cccccc;
	opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
	color: #cccccc;
	opacity: 1;
}
.form-btn {
	background-color: #000;
	font-family: 'Gotham Bold', sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	border: 0;
	cursor: pointer;
	padding: 12px 30px;
    position: relative;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	display: block;
}
.form-btn:hover {
	opacity: .9;
	background-color: #333;
}

/*** responsive css start ***/
@media (max-width: 1199px) {
	.about-section .img-block {
		width: 35%;
	}
	.about-section .content-block {
		width: 65%;
	}
	.container {
		padding-left: 50px;
		padding-right: 50px;
	}
}
@media (max-width: 1023px) {
	.first-section {
		padding-top: 100px;
	}
	.about-section .img-block {
		width: 100%;
	}
	.about-section .content-block {
		width: 100%;
		/*margin-top: 30px;*/
		padding: 0;
	}
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.contact-section .contact-form { width: 100%; }
}
@media (max-width: 767px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.site-header {
		padding: 20px;
	}
	.project-grid {
		grid-auto-rows: 300px;
	}
	.about-info .left-block,
	.about-info .right-block {
		width: 100%;
	}
	.about-info .left-block {
		margin-bottom: 30px;
	}
	.contact-section .contact-block {
		width: 100%;
		margin-bottom: 30px;
	}
	.contact-section .map {
		width: 100%;
		padding: 0;
	}
	.about-section .container { padding-top: 20px; padding-bottom: 20px; }
}
@media (max-width: 575px) {
	.logo {
		max-width: 120px;
	}
	.hero-scroll .hero-logo {
		width: 25%;
	}
	.project-grid .tall {
		grid-row: auto;
	}
	.project-grid .item {
		width: 100%;
		height: 280px;
	}
	.contact-form {
		/*margin-top: 30px;*/
		padding: 20px;
	}
}

.customCursor { height: 1.38888889VW; left: -0.69444444VW; position: fixed; top: -0.69444444VW; width: 1.38888889VW; z-index: 11; pointer-events: none; mix-blend-mode: exclusion; opacity: 0;
		-webkit-transition: height 0.3s,width 0.3s,top 0.3s,left 0.3s,opacity 0.3s;
    -moz-transition: height 0.3s,width 0.3s,top 0.3s,left 0.3s,opacity 0.3s;
    -ms-transition: height 0.3s,width 0.3s,top 0.3s,left 0.3s,opacity 0.3s;
    -o-transition: height 0.3s,width 0.3s,top 0.3s,left 0.3s,opacity 0.3s;
    transition: height 0.3s,width 0.3s,top 0.3s,left 0.3s,opacity 0.3s
}
.customCursor.hover { height: 3.472vw; left: -1.736vw; position: fixed; top: -1.736vw; width: 3.472vw; }
.customCursor.hover.play .icon.play { opacity: 1; }
.customCursor.hover.close .icon.close { opacity: 1; }
.customCursor.active { opacity: 1; }
.customCursor .background { height: 100%; left: 0; position: absolute; top: 0; width: 100%; background: #dedede; border-radius: 50%; }
.customCursor.close .icon { margin-left: 0; }
.customCursor .icon { height: auto; left: 50%; position: absolute; top: 50%; width: auto;
	-webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1; color: #000; opacity: 0; font-size: 0.69444444VW; margin-top: 1px; margin-left: 1px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}