@font-face{	font-family: tisa; src: url('Tisa.ttf'); }
HTML, BODY {
	font-family: tisa;
	font-size: 1.2em;
	padding: 0;
	margin: 0;
}
NAV { display: none; }
#gallery-dim {
	display: none;
	background-color: rgba(0,0,0,0.6);
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 10;
	left: 0;
	top: 0;
}
#gallery-dim > SPAN {
	color: rgba(255,255,255,0.6);
	width: 45px;
	cursor: pointer;
	font-size: 3em;
	font-weight: bold;
	margin-top: 20%;
}
#gallery-dim > SPAN:hover {
	color: rgba(255,255,255,1);
}
#nav-left { float: left; margin-left: 20px; }
#nav-right { float: right; margin-right: 20px; }
#close {
	color: rgba(255,255,255,0.6);
	position: absolute;
	cursor: pointer;
	right: 10px;
	top: 0;
}
#close:hover {
	color: rgba(255,255,255,1);
}
#gallery-box {
	background-color: rgba(210,210,210,1);
	position: relative;
	margin: 5% auto;
	padding: 10px;
	z-index: 100;
	width: 1024px;
	height: 714px;
}
#gallery-box > A {
	background-repeat: no-repeat;
	vertical-align: bottom;
	background-color: #FFF;
	text-decoration: none;
	display: table-cell;
	width: 1024px;
	height: 715px;
}
#header {
	width: 100%;
	position: relative;
	padding-top:40%;
}
#header > DIV {
	overflow: hidden;
	margin-top: -40%;
	padding-top: 40%;
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/staging-header-back-one.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
#header H1 {
	text-shadow: 0 0 5px #000;
	font-family: Sans;
	position: absolute;
	color: #FFFFFF;
	font-size: 3em;
	top: 15%;
	left: 35%;
}
#header H1 > SPAN {
	border-top: 1px #FFF solid;
	text-align: center;
	padding-top: 10px;
	margin-top: 5px;
	font-size: .5em;
	display: block;
	width: 100%;
}
H2 {
	text-align: center;
	padding: 10px 0;
}
UL {
	margin: 0;
	display: flex;
	list-style: none;
	padding: 5px 10%;
	align-content: center;
	justify-content: center;
}
#services_list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
#services_list LI {
	flex: 1;
	width: 20%;
	padding: 10px;
	min-width: 20%;
	background-color: #EEE;
}
#services_list LI:hover {
	box-shadow: 0 0 7px #555;
}
#services_list LI DIV {
	width: 96%;
	margin: auto;
	cursor: pointer;
	overflow: hidden;
	min-height: 240px;
	display: block;
}
#thmb_one {
	background: url('../images/projects/project_family_room_th1.jpg') no-repeat center center;
	background-size: contain;
}
#thmb_two {
	background: url('../images/projects/project_living_room_th2.jpg') no-repeat center center;
	background-size: contain;
}
#thmb_three {
	background: url('../images/projects/project_living_room_th3.jpg') no-repeat center center;
	background-size: contain;
}
#thmb_four {
	background: url('../images/projects/project_dining_room_th4.jpg') no-repeat center center;
	background-size: contain;
}
#thmb_five {
	background: url('../images/projects/project_bedroom_th5.jpg') no-repeat center center;
	background-size: contain;
}
#thmb_six {
	background: url('../images/projects/project_breakfast_room_th6.jpg') no-repeat center center;
	background-size: contain;
}
#thmb_seven {
	background: url('../images/projects/project_breakfast_room_th7.jpg') no-repeat center center;
	background-size: contain;
}
#thmb_eight {
	background: url('../images/projects/project_family_room_th8.jpg') no-repeat center center;
	background-size: contain;
}
#features {
	padding: 3em 0;
	display: flex;
}
#features h3 {
	flex: 1;
	width: 50%;
	text-align: center;
	font-family: Sans;
	transition: transform 0.2s linear;
}
#features h3:first-of-type { margin-left: -1000px; }
#features h3:last-of-type { margin-right: -1000px; }
#contact-us { background-color: #CFDFCF; }
#contact-us UL {
	height: 200px;
	gap: 50px;
}
#contact-us LI {
	flex: 1;
	width: 35%;
	min-width: 35%;
	text-align: center;
}
#contact-us LI IMG {
	display: inline-block;
}
#contact-us LI A {
	color: rgb(0, 70, 128);
	display: block;
	margin-top: 7px;
	text-decoration: none;
	font-family: san-serif;
}
#contact-us LI A:hover {
	text-decoration: underline;
}
FOOTER {
	background: #004500;
	height: 70px;
}
#copyright {
	color: #FFF;
	width: 100%;
	font-size: 0.7em;
	padding-top: 25px;
	text-align: center;
	display: block;
}

/********* Responsive ***********/
@media screen and (max-width : 1024px) {
	#gallery-box {
		margin: 40% auto;
		height: auto;
		width: 100%;
	}
	#gallery-box > A {
		text-shadow: 1px 0 5px #000;
		background-size: cover;
		text-align: center;
		padding-top: 60%;
		display: block;
		color: #FFF;
		width: 95%;
		height: auto;
	}
	
	#header > DIV {
		background-attachment: inherit;
		padding-top: 60%;
	}
	
	#header H1 {
		left: 0;
		right: 0;
		width: 90%;
		margin: 7% auto;
		font-size: 1.7em;
		text-align: center;
	}
	
	#services_list { gap: 10px; padding: 15px; }
	#services_list LI {
		width: 48%;
		padding: 5px;
		min-width: 40%;
	}
	#services_list LI DIV {
		min-height: 110px;
	}	
	#features h3:first-of-type { margin-left: -100px; }
	#features h3:last-of-type { margin-right: -100px; }
	#features h3 {
		width: 50%;
		max-width: 50%;
	}
	#contact-us H2 { margin: 1px auto; }
	#contact-us UL {
		height: auto;
		display: block;
		padding: 15px;
	}
	#contact-us LI {
		width: 100%;
		margin-top: 30px;
		display: block;
	}
	#contact-us LI:first-of-type { margin-top:5px; }
	#contact-us LI A { font-size: 0.75em; }
}

