
body{
	font-family: 'poppinsmedium', Arial, Helvetica, sans-serif;
	color:  #333;
	font-weight: normal;
	background-color: #e5e5e5;
	text-align: center;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1{
 	font-family: "Baskervville", serif;
 	font-optical-sizing: auto;
 	font-weight: 400;
 	font-style: normal;
 	font-size: 54px;
 	line-height: 1em;
	padding-top: 3%;
	padding-bottom: 3%;
}

h2{
 	font-family: "Baskervville", serif;
 	font-optical-sizing: auto;
 	font-weight: 400;
 	font-style: normal;
 	font-size: 54px;
 	line-height: 1em;
	padding-top: 3%;
	padding-bottom: 4%;
}

h3{
	font-family: 'poppinsmedium';
	color: #333;
	font-size: 26px;
	line-height: 1em;
	font-weight: normal;
	padding-bottom: 4%;
}

h4{
	color: #fff;
 	font-family: "Baskervville", serif;
 	font-optical-sizing: auto;
 	font-weight: 400;
 	font-style: normal;
 	font-size: 32px;
	background-color: #00ff00;
	display: block;
	line-height: 1em;
	display: inline-block;
}

p{
	font-family: 'poppinsmedium';
	font-size: 16px;
	line-height: 1.5em;
	padding-bottom: 20px;
}

img{
	cursor: pointer;
	border-radius: 5px;
}

#consoleOutput{
	display: none;
	background-color: #00ff00;
	position: fixed;
	bottom: 0;
	left: 0;
	padding:20px;
	max-width: 50vw;
	opacity: .8;
	z-index: 9;
}

/* ------------------------------------------------------------------------------------ */
/* ANIMATIONS
/* ------------------------------------------------------------------------------------ */

@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInUp-animation {
	animation: 1s fadeInUp;
}

@keyframes fadeInUp_delay {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInUp-animation-delay {
	animation: 1.5s fadeInUp_delay;
}

/* ------------ 
.tnHolder{ 
	overflow: hidden;	
}
.tnHolder img{
	transition: transform .5s;
}
.tnHolder:hover img{
	transform: scale(1.2);
}
.tnHolder canvas{
	transition: transform .5s;
}
.tnHolder:hover canvas{
	transform: scale(1.2);
}
*/

/* ------------------------------------------------------------------------------------ */
/* DESKTOP / MOBILE																		*/
/* ------------------------------------------------------------------------------------ */

.desktop_only{
	display: inline-block;
}

.mobile_only{
	display: none;
}

/* ------------------------------------------------------------------------------------ */
/* CONTENT																				*/
/* ------------------------------------------------------------------------------------ */

#mainContent{
	min-height: 50vh;
}

.content{
	width: 90%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	line-height: 0;
	font-size: 0;
}

.col2{
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}

#contentAbout .col2A{
	width: 53%;
	margin: 2%;
}

#contentAbout .col2B{
	width: 39%;
	margin: 2%;
	padding-bottom: 40px;
}

#contentPromo .col2A{
	width: 40%;
	margin: 2%;
}

#contentPromo .col2B{
	width: 40%;
	margin: 2%;
	padding-bottom: 40px;
}

.work_title{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	margin-bottom: 30px;
	border-bottom: 3px dotted #ccc;
}

.work_title_white{
	border-color: #555;
}

.titleBar{
	position: relative;
	height: 32px;
	margin-bottom: 3%;
}
.titleBarLine{
	position: absolute;
	top: 15px;
	left: 2%;
	width: 96%;
	border-top: 3px dotted #555;
}
.titleBarTxt{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	color: #eee;
 	font-family: "Baskervville", serif;
 	font-optical-sizing: auto;
 	font-weight: 400;
 	font-style: normal;
 	font-size: 32px;
 	line-height: 1em;
}
.titleBarTxtBlock{
	display: inline-block;
	padding-left: 20px;
	padding-right: 20px;
	background-image: url('../images/bg.png');
}

.boarderTop{
	margin-left: auto;
	margin-right: auto;
	width: 96%;
	text-align: center;
	margin-top: 5%;
	border-top: 3px dotted #555;
}
.boarderBottom{
	margin-left: auto;
	margin-right: auto;
	width: 96%;
	text-align: center;
	margin-bottom: 5%;
	border-bottom: 3px dotted #555;
}


/* ------------------------------------------------------------------------------------ */
/* BUTTONS																				*/
/* ------------------------------------------------------------------------------------ */

.btnIcon{
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 5px;
	border-radius: 50px;
	background-color: #333;
	line-height: 0;
	font-size: 0;
	margin: 5px;
}
.btnIcon:hover{
	background-color: #2c2cff;

}

#header .btnIcon img{
	width: 32px;
	filter: brightness(200%);
}

#footer .btnIcon img{
	width: 58px;
	filter: brightness(200%);
}

/* -------------- */

.btn_rect{
	font-size: 16px;
	line-height: 1em;
	font-family: 'poppinsbold';
	text-transform: uppercase;	
	padding-top: 15px;
	padding-bottom: 11px;
	padding-left: 16px;
	padding-right: 16px;
	margin-top: 20px;	
	border: 3px solid #333;
	cursor: pointer;
	display: inline-block;
}
.btn_rect:hover{
	background-color: #2c2cff;
	border-color: #2c2cff;
	color: #fff;
}
.btn_rect:hover img{
	filter:  brightness(200%);
}
.btn_rect img{
	width: 26px;
	filter:  brightness(0);
}
.btn_rect span{
	display: inline-block;
	vertical-align: middle;
	padding-left: 3px;
	padding-right: 3px;
}

.btn_rect_white{
	color: white;
	border-color: #666;
}
.btn_rect_white img{
	filter:  brightness(200%);
}

/* -------------- */

.btnArrow{
	cursor: pointer;
	width: 48px;
	height: 48px;
	z-index: 9;
	border: 3px solid #ccc;
	background-color: #e5e5e5;
}
.btnArrow img{
	cursor: pointer;
}
.btnArrow2{
	cursor: pointer;
	width: 48px;
	height: 48px;
	z-index: 9;
}
.btnArrow2 img{
	cursor: pointer;
}

/* -------------- */

.btnMenu{
	font-family: 'poppinsbold', Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-block;
	padding: 20px;
	padding-left: 16;
	padding-right: 16;
	font-size: 13px;
	line-height: 1em;
}
.btnMenu:hover{

}
.btnMenuDivider{
	opacity: .2;
	padding-left: 0;
	padding-right: 0;
}
/* ------------------------------------------------------------------------------------ */
/* HEADER																				*/
/* ------------------------------------------------------------------------------------ */

#header{
	display: absolute;
	background-color:#FFF;
	padding-top:1%;
	padding-bottom:1%;
	text-align: center;
	opacity: 1;
}

#logo{
	font-family: 'poppinsbold', Arial, Helvetica, sans-serif;
	xtext-transform: uppercase;
	width: fit-content;
	position: absolute;
	cursor: pointer;
	margin-top: 18px;
	top:0;
	left:0;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 4px;
}

#menu{
	width: 100%;
	vertical-align: middle;
}

#icons{
	width: fit-content;
	position: absolute;
	top:0;
	right:0;
}

/* ------------------------------------------------------------------------------------ */
/* HOME - Gallery																				*/
/* ------------------------------------------------------------------------------------ */

#contentGallery{
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;
	background-image: url('../images/bg.png');
}
#galleryScroll{
	position: absolute;
	top: 50px;
	left: 0;
	height: 600px;
	width: 600px;
	xbackground-color: #00ff00;
}
#galleryScroll img{
	padding-top: 0px;
	padding-right: 0px;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
}
#btn_leftGallery{
	position: absolute;
	top: 318px;
	left: 0;
	width: 64px;
	height: 64px;
	background-color: #222;
	filter: drop-shadow(0px 0px 30px black);
	opacity: .2;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}
#btn_rightGallery{
	position: absolute;
	top: 318px;
	right: 0;
	width: 64px;
	height: 64px;
	background-color: #222;
	filter: drop-shadow(0px 0px 30px black);
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}


/* ------------------------------------------------------------------------------------ */
/* HOME - Featured																				*/
/* ------------------------------------------------------------------------------------ */

#contentFeatured{
	background-color: #fff;
	padding-bottom: 6%;
	font-size: 0;
	line-height: 0;
}
#contentFeatured img{
}

#contentFeatured .work_title{
	text-align: center;
	width: 96%;
	padding-top: 40px;
	padding-bottom: 40px;
}
#contentFeatured .content{
	max-width: 940px;
}
.tnFeatured{
	border-radius: 5px;
	display: inline-block;
	background-color: #e5e5e5;
	min-height: 100px;
	width: 46%;
	margin-left: 2%;
	margin-right: 2%;
	margin-top: 0;
	margin-bottom: 4%;
}
/* ------------------------------------------------------------------------------------ */
/* WORK																			 		*/
/* ------------------------------------------------------------------------------------ */

#contentWork{
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	padding-top: 5%;
	padding-bottom: 10%;
	text-align: left;
	min-height: 100vh;
}
#contentWork .work_title{
	margin-left: 1.66%;
	margin-right: auto;
	width: 96.6%;
}
#contentWork .workTnImgHolder{
	width: 30%;
	margin: 1.66%;
	margin-top: 0;
	margin-bottom: 3%;
	min-height: 50px;
	background-color: #f0f0f0;
	display: inline-block;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
}

/* ------------------------------------------------------------------------------------ */
/* PROJECTS																				*/
/* ------------------------------------------------------------------------------------ */

#contentProject{
	background-color: #e5e5e5;
	padding-bottom: 2%;
	min-height: 100vh;
}

#contentProject img{
	border-radius: 0px;
}

#btn_left{
	position: absolute;
	top: 30px;
	left: 0;
}

#btn_right{
	position: absolute;
	top: 30px;
	right: 0;
}

#proj_load{
	min-height: 100px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 3%;
	padding-bottom: 6%;
}
#proj_load img{
	cursor: default;
	padding-bottom: 8%;
}
.proj_title{
}
.proj_info{
	border-top: 3px dotted #aaa;
	padding-top: 40px;
}
#proj_load h3{
}
#proj_load .btn_rect{
	display: none;
}

/* ------------------------------------------------------------------------------------ */
/* PROJECT THREE																		*/
/* ------------------------------------------------------------------------------------ */

#contentProjThree{
	padding-top: 6%;
	padding-bottom: 6%;
	background-image: url('../images/bg.png');
}

#contentProjThree img{
	width: 30%;
	margin: 1.5%;
}

#contentProjThree .boarderTop{
	margin-top: 3%;
}

#contentProjThree .btn_rect{
	margin-top: 6%;
}

#contentProjThree canvas{
	width: 30%;
	margin: 1.5%;
	border-radius: 5px;
	overflow: hidden;
	background-color: #222;
	cursor: pointer;
}

/* ------------------------------------------------------------------------------------ */
/* ABOUT																				*/
/* ------------------------------------------------------------------------------------ */

#contentAbout{
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	padding-top: 4%;
	padding-bottom: 6%;
}

/* ------------------------------------------------------------------------------------ */
/* CONTACT																				*/
/* ------------------------------------------------------------------------------------ */

#contentContact{
	display: none;
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	padding-top: 3%;
	padding-bottom: 10%;
}
#contentContact .work_title{
	text-align: center;
}
/* ------------------------------------------------------------------------------------ */
/* PROMO																				*/
/* ------------------------------------------------------------------------------------ */

#contentPromo{
	color: #ffffff;
	padding-top: 6%;
	padding-bottom: 6%;
	background-image: url('../images/bg.png');
}
#contentPromo .content{
	width: 80%;
}
/* ------------------------------------------------------------------------------------ */
/* FOOTER																				*/
/* ------------------------------------------------------------------------------------ */

#footer{
	background-image: url('../images/bg.png');
}
#footer_content{
	padding-top: 5%;
	padding-bottom: 5%;
	background-color: #e5e5e5;
}

#footer_menu{
	padding-top: 2%;
	padding-bottom: 5%;
}

#footer_copyright{
	color: #fff;
 	font-family: "Baskervville", serif;
 	font-optical-sizing: auto;
 	font-weight: 400;
 	font-style: normal;
 	font-size: 20px;
	padding-top: 5%;
	padding-bottom: 5%;
}


/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */
/* TABLET																				*/
/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */


@media screen and (max-width: 1024px){
	h1{
 		font-size: 40px;
 		padding-top: 5%;
	}
	h2{
 		font-size: 48px;
	}
	h3{
		font-size: 20px;
		margin: 10px;
	}
	#proj_load{
		width: 60%;
	}
}

/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */
/* MOBILE																				*/
/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */

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

	.desktop_only{
		display: none;
	}
	.mobile_only{
		display: inline-block;
	}

	/* Text - MOB */
	/* ----------------------------------- */
	p{
		font-size: 15px;
	}

	h1{
 		font-size: 32px;	
 		padding-top: 70px;
	}
	h2{
 		font-size: 42px;
	}
	h3{
		font-size: 16px;
		margin: 8px;
	}

	/* Columns - MOB */
	/* ----------------------------------- */
	.col2{
		width: 90%;
		margin: 0;
		display: inline-block;
		vertical-align: middle;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	#contentAbout .col2A{
		width: 100%;
		margin: 0%;
	}
	#contentAbout img{
		width: 70%;
	}
	#contentAbout .col2B{
		width: 90%;
		margin: 0%;
		margin-top: 30px;
	}
	#contentPromo .col2A{
		width: 80%;
		margin: 0%;
	}
	#contentPromo .col2B{
		width: 90%;
		margin: 0%;
		margin-top: 20px;
	}


	/* Home - MOB */
	/* ----------------------------------- */
	#contentGallery .btnArrow{
		display: none;
	}
	#contentGallery .btnArrow2{
		display: none;
	}
	/* --- */
	#contentFeatured{
		padding-bottom: 20%;
	}


	/* Work Grid - MOB */
	/* ----------------------------------- */
	#contentWork .workTnImgHolder{
		width: 46%;
		margin: 2%;
		margin-top: 0;
		margin-bottom: 2%;
	}
	#contentWork h1{
		font-size: 32px;
	}
	#contentWork .work_title{
		margin-bottom: 12px;
	}
	#contentWork{
		padding-bottom: 20%;
	}


	/* Project - MOB */
	/* ----------------------------------- */
	#contentProject{		
		padding-top: 0;
		margin-top: 0;
		position: relative;
		padding-bottom: 5%;
	}
	#contentProject .content{
		padding-top: 0;
		margin-top: 0;
		width: 100%;
	}
	#proj_load{
		padding-top: 0;
		margin-top: 0;
		width: 80%;
	}
	#proj_load img{
		padding-bottom: 5%;
	}
	#btn_left{
		padding: 4px;
		width: 38px;
		height: 38px;
		padding-top: 8px;
		padding-bottom: 8px;
		top: 10px;
		left: 0px;
		border: 0;		
		border-bottom-right-radius: 50px;
		border-top-right-radius: 50px;
		background-color: #fff;
	}
	#btn_right{
		padding: 4px;
		padding-top: 8px;
		padding-bottom: 8px;
		width: 38px;
		height: 38px;
		top: 10px;
		border: 0;
		border-bottom-left-radius: 50px;
		border-top-left-radius: 50px;
		background-color: #fff;
	}


	/* About - MOB */
	/* ----------------------------------- */
	#contentAbout{
		padding-top: 10%;
		padding-bottom: 20%;
	}
	#contentAbout .work_title{
		text-align: center;
	}
	#contentPromo .work_title{
		text-align: center;
	}


	/* Promo - MOB */
	/* ----------------------------------- */
	#contentPromo{
		padding-top: 10%;
		padding-bottom: 10%;
	}
	#contentPromo .content{
		width: 90%;
	}


	/* More - MOB */
	/* ----------------------------------- */
	#contentProjThree{
		padding-top: 10%;
		padding-bottom: 10%;
	}
	#contentProjThree img{
		width: 46%;
		margin: 2%;
	}
	#contentProjThree canvas{
		width: 46%;
		margin: 2%;
	}


	/* Footer - MOB */
	/* ----------------------------------- */
	#footer_socials{
		padding-top: 6%;
		padding-bottom: 6%;
	}
	#footer_copyright{
		font-size: 16px;
		padding-top: 14%;
		padding-bottom: 14%;
	}	
	#footer .btnIcon img{
		width: 44px;
		filter: brightness(200%);
	}



	/* Misc - MOB */
	/* ----------------------------------- */
	.circImage{
		width: 80%;
	}
	.titleBar{
		height: 24px;
		margin-bottom: 8%;
	}
	.titleBarLine{
		top: 12px;
	}
	.titleBarTxt{
	 	font-size: 22px;
	}
	.titleBarTxtBlock{
		padding-left: 15px;
		padding-right: 15px;
	}
	.boarderTop{
		margin-top: 7%;
	}

}