/*
	Fonts
*/

@import url(https://fonts.googleapis.com/css?family=Kanit:200,500&subset=latin-ext);


/*
	Base
*/

body {
	font-size: 16px;
	line-height: 30px;
	word-spacing: 0;
	letter-spacing: 0;
	font-weight: 200;
	color: #000;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

body, input, button, textarea {
	font-family: Kanit, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 30px;
	line-height: 1.2em;
	font-weight: 500;
	text-transform: uppercase;
}

h2 {
	font-size: 36px;
}

p {
	margin: 0 0 30px;
}

a, input, button, textarea {
	-webkit-transition:	all 0.3s;
	   -moz-transition: all 0.3s;
			transition: all 0.3s;
}

a,
a:focus {
	text-decoration: none;
	outline: none !important;
	color: #ec3a17;
}

a:hover {
	text-decoration: none;
	color: #000;
}

img {
	max-width: 100%;
}

/*
	Header
*/

.header .navigation {
	position: absolute;
	right: 0;
	left: 0;
	margin: 30px auto 60px;
	z-index: 10;
}

	.header-inner {
		position: relative;
		background: #fff;
	}

		.header h1 {
			margin: 0;
		}

			.header .logo {
				display: block;
				width: 250px;
				height: 65px;
				margin: 17px 0 17px 30px;
				text-indent: -9999px;
				background: url('../images/logo.png') left top no-repeat;
				-webkit-background-size: 250px 65px;
						background-size: 250px 65px;
			}

		.header .menu ul {
			margin: 0 15px 0 0;
			font-size: 14px;
			text-align: right;
		}

			.header .menu li {
				padding: 0;
			}

				.header .menu li a {
					display: block;
					padding: 35px 15px;
					text-transform: uppercase;
				}
				
				.header .menu li:hover a,
				.header .menu li.active a {
					color: #000;
				}
				
.header .headline {
	position: relative;
	margin: 35px 0 0;
	padding: 0 0 15px;
	font-size: 60px;
	text-align: center;
}

.header .headline:after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 3px;
	margin-left: -25px;
	background: #ec3a17;
}

.header-bg {
	position: relative;
	background: url('../images/header-bg.jpg') center top fixed;
}

.header-bg:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ec3a17;
	opacity: 0.7;
	z-index: 1;
}

/*
	Footer
*/

.footer {
	font-size: 14px;
	line-height: 20px;
}

	.footer .top {
		padding: 60px 0 30px;
		color: #ccc;
		background: #000;
	}

		.footer .top a {
			color: #ccc;
		}

		.footer .top a:hover {
			color: #fff;
		}

		.footer .top h4 {
			margin-bottom: 10px;
		}

		.footer-logo {
			display: block;
			width: 300px;
			height: 65px;
			margin: -18px 0 30px 0;
			text-indent: -9999px;
			background: url('../images/logo-white.png') left top no-repeat;
		}

		.footer .contact {
			margin-bottom: 30px;
		}
		
			.footer .contact .fa {
				position: relative;
				top: 2px;
				margin: 0 10px 0 0;
				font-size: 18px;
				color: #fff;
			}
			
		.footer .social {
			margin: 0 0 30px;
			font-size: 0;
			line-height: 0;
			text-align: right;
		}
		
			.footer .social li {
				padding: 0 0 1px 1px;
			}
			
				.footer .social a {
					display: block;
					width: 50px;
					height: 50px;
					line-height: 50px;
					font-size: 24px;
					text-align: center;
					color: #fff;
				}
				
				.footer .social a.fa-facebook { background-color: #46629e; }
				
				.footer .social a:hover {
					color: #000;
					background-color: #fff;
				}
				
					.footer .social a span {
						display: inline-block;
						text-align: left;
						text-indent: -9999px;
					}
	
	.footer .copyright {
		padding-top: 20px;
		padding-bottom: 20px;
		color: #999;
	}
	
		.footer .copyright p {
			margin: 0;
		}
		
/*
	Components
*/

/* Buttons */
.btn {
	position: relative;
	overflow: hidden;
	padding: 14px 29px;
	font-size: inherit;
	line-height: 20px;
	text-transform: uppercase;
	border-width: 1px;
	border-style: solid;
	white-space: normal;
	background: transparent;
	z-index: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}

.btn:before,
.btn:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 50%;
	z-index: -1;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
			transition: all 0.3s;
}

.btn:before {
	left: 0;
	top: 0;
}

.btn:after {
	right: 0;
	bottom: 0;
}

.btn:hover:before {
	left: -100%;
}

.btn:hover:after {
	right: -100%;
}

.btn-white {
	border-color: #fff;
}

.btn-white:hover {
	color: #fff;
}

.btn-white:before,
.btn-white:after {
	background: #fff;
}

.btn-white:hover:before,
.btn-white:hover:after {
	background: transparent;
}

.btn-red {
	color: #fff;
	border-color: #ec3a17;
}

.btn-red:hover {
	color: #ec3a17;
}

.btn-red:before,
.btn-red:after {
	background: #ec3a17;
}

.btn-red:hover:before,
.btn-red:hover:after {
	background: transparent;
}

/*
	Table
*/

.full-width {
	width: 100%;
}

table tr {
	border-bottom: 3px solid #f3f3f3;
}

table tr:last-child {
	border-bottom: 0;
}

table tr:hover {
	background: #f3f3f3;
}

table th,
table td {
	padding: 10px 0;
}

table th {
	font-weight: 500;
}

/*
	Sections
*/

.container {
	-webkit-transition: width 0.3s;
	   -moz-transition: width 0.3s;
			transition: width 0.3s;
}

.section {
	padding-top: 100px;
	padding-bottom: 100px;
}

.light-grey {
	background-color: #f9f9f9;
}

.article-info {
	margin-bottom: 50px;
}

.article-info:last-of-type {
	margin-bottom: 0;
}

.signo-3d img {
	margin-bottom: -90px;
}

/*
	Slideshow
*/

.slideshow {
	position: relative;
	overflow: hidden;
	height: 600px;
	background: #000;
}

	.slideshow .slide,
	.slideshow .slide:after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.slideshow .slide {
		z-index: 1;
	}

	.slideshow .slide:after {
		content: '';
		background: #000;
		opacity: 0.1;
		z-index: -1;
	}

		.slideshow .slide .bg,
		.slideshow .slide .container {
			top: 50%;
			-webkit-transform: translate(0, -50%);
			   -moz-transform: translate(0, -50%);
					transform: translate(0, -50%);
		}

		.slideshow .slide .bg {
			position: absolute;
			left: 0;
			min-width: 100%;
			max-width: none;
			z-index: -1;
		}
		
		.slideshow .slide .container {
			position: relative;
		}
			
			.slideshow .slide .caption {
				margin-top: 120px;
				text-align: center;
				color: #fff;
			}

				.slideshow .slide .caption h2 {
					font-size: 60px;
				}
				
				.slideshow .slide .caption .text {
					padding: 15px;
					font-size: 24px;
					line-height: 36px;
					background: rgba(0, 0, 0, 0.4);
				}
				
				.slideshow .slide .caption .text p:last-of-type {
					margin-bottom: 0;
				}
			
/*
	Parallax
*/

.parallax {
	position: relative;
	background-position: center center;
	-webkit-background-size: cover;
			background-size: cover;
}

.parallax-red {
	color: #fff;
	background-image: url('../pictures/bg-references.jpg');
}

.parallax:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.9;
}

.parallax-red:after	{ background: #ec3a17; }

	.parallax .container {
		position: relative;
		z-index: 1;
	}

/*
	Service blocks
*/

.service {
	text-align: center;
}

	.service h3 {
		position: relative;
		padding-top: 155px;
	}
	
	.service h3:before {
		position: absolute;
		content: '';
		top: 0;
		left: 50%;
		width: 120px;
		height: 120px;
		margin-left: -60px;
		background-color: #ec3a17;
		background-position: center;
		background-repeat: no-repeat;
		-webkit-border-radius: 100%;
		   -moz-border-radius: 100%;
				border-radius: 100%;
	}
	
	.service-1 h3:before { background-image: url('../images/icon-service-1.png'); }
	.service-2 h3:before { background-image: url('../images/icon-service-2.png'); }
	.service-3 h3:before { background-image: url('../images/icon-service-3.png'); }
	
	.service h3:after {
		position: absolute;
		content: '';
		top: 60px;
		right: -85px;
		width: 170px;
		height: 1px;
		margin-right: -15px;
		background: #eee;
	}
	
	.service:last-of-type h3:after {
		display: none;
	}

	.service p:last-of-type {
		margin-bottom: 0;
	}
	
/*
	Reference blocks
*/

.reference-block {
	position: relative;
	height: auto;
	margin-bottom: 30px;
}

.reference-block:before {
	display: block;
	content: '';
	padding-top: 56.25%;
}

	.reference-block a {
		position: absolute;
		overflow: hidden;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 0;
		text-align: center;
	}
	
	.reference-block a:before,
	.reference-block a h3 span {
		-webkit-transition: all 0.3s;
		   -moz-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.reference-block a:before {
		position: absolute;
		visibility: hidden;
		content: '';
		top: 10%;
		left: 10%;
		width: 80%;
		height: 80%;
		background: #ec3a17;
		opacity: 0;
		z-index: 1;
		-webkit-border-radius: 100%;
		   -moz-border-radius: 100%;
				border-radius: 100%;
	}
	
		.reference-block a img {
			display: block;
			width: 100%;
		}
		
		.reference-block a h3 {
			position: absolute;
			top: 50%;
			width: 100%;
			margin: 0 auto;
			color: #fff;
			z-index: 2;
			-webkit-transform: translate(0, -50%);
			   -moz-transform: translate(0, -50%);
					transform: translate(0, -50%);
		}
		
			.reference-block a h3 span {
				display: inline-block;
				padding: 15px 30px;
				background: rgba(236, 58, 23, 0.8);
			}
	
	.reference-block a:hover:before {
		visibility: visible;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0.9;
		-webkit-border-radius: 0;
		   -moz-border-radius: 0;
				border-radius: 0;
	}
	
		.reference-block a:hover h3 span {
			background: transparent;
		}
		
.reference-pic {
	margin-bottom: 30px;
}

.reference-pic:last-of-type {

}

	.reference-pic img {
		width: 100%;
	}
h1 {
	font-weight:100;
	font-size:46px;}
h2,h3,h4 {
	font-weight:100;
	}
.contact-big {
	margin:0 auto;
	float:none;
	font-size:20px;
	text-align:center;
	}
	
.contact-big i{
	display:inline-block;
	width:120px;
	height:120px;
	line-height:120px;
	color:#fff;
	text-align:center;
	background-color:#ec3a17;
	border-radius:100%;
	font-size:30px;
	
}

.nopadding {
	padding:0;
	}
	
.nolineheight{
	line-height:0;}

/* RESPONSIVE
================================================== */

/*
	Large and medium devices
*/

@media screen and (min-width: 992px) {
	
	.navigation.fixed {
		position: fixed;
		top: 0;
		margin-top: 0;
		margin-bottom: 0;
	}
	
		.navigation.fixed .header-inner {
			border-bottom: 1px solid #eee;
		}
		
			.navigation.fixed .logo {
				width: 180px;
				height: 49px;
				margin-top: 10px;
				margin-bottom: 10px;
				-webkit-background-size: 180px 49px;
						background-size: 180px 49px;
			}
		
			.navigation .menu {
				display: block !important;
			}
			
				.navigation.fixed .menu li a {
					padding-top: 20px;
					padding-bottom: 20px;
				}
}

/*
	Large devices
*/

@media screen and (min-width: 1201px) {

}

/*
	Medium devices 
*/

@media screen and (min-width: 992px) and (max-width: 1200px) {

	.service h3:after {
		right: -60px;
		width: 120px;
	}

}

/*
	Small and extra small devices
*/

@media screen and (max-width: 991px) {
	
	.menu-toggle {
		display: block;
		float: right;
		width: 50px;
		height: 50px;
		line-height: 50px;
		margin: 17px 0;
		text-align: center;
		font-size: 24px;
		color: #fff;
	}
	
	.menu-toggle:hover,
	.menu-toggle:focus {
		color: #fff;
	}
	
		.menu-toggle span {
			display: inline-block;
			text-align: left;
			text-indent: -9999px;
		}
		
	.header {
		position: relative;
		top: 0;
		
	}
	
	.header-bg {
		background: #ec3a17;
	}
		
		.header .navigation {
			margin: 0 auto;
		}
		
			.header-inner {
				position: static;
				background: transparent;
			}
			
			.header .logo {
				margin: 10px 0;
				background-image: url('../images/logo-white.png');
			}
			
			.header .menu {
				position: absolute;
				display: none;
				top: 100%;
				right: 0;
				left: 0;
				padding: 0;
				z-index: 2;
			}
			
				.header .menu ul {
					margin: 0;
					text-align: center;
				}
				
					.header .menu li {
						display: block;
						width: 100%;
					}
				
						.header .menu li a {
							padding: 10px 20px;
							color: #fff;
							background: #000;
						}
						
						.header .menu li:hover a,
						.header .menu li.active a {
							color: #000;
							background: #fff;
						}
				
	.footer .contact li {
		margin-top: 5px;
	}
	
	.slideshow {
		height: 400px;
	}

		.slideshow .slide .caption {
			margin: 0;
		}
		
	.article-info figure img {
		margin-bottom: 30px;
	}
		
}

/*
	Small devices
*/

@media screen and (min-width: 768px) and (max-width: 991px) {
	
	.service h3:after {
		right: -30px;
		width: 60px;
	}

}

/*
	Extra small devices 
*/

@media screen and (max-width: 767px) {
	
	.header .logo {
		width: 180px;
		height: 49px;
		margin-left: 5px;
		-webkit-background-size: 180px 49px;
				background-size: 180px 49px;
	}
	
	.menu-toggle {
		margin: 9px 0;
	}
	
	.footer,
	.footer .social {
		text-align: center;
	}
	
	.footer-logo {
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
	}
	
	.service + .service {
		margin-top: 30px;
	}
	
		.service h3:after {
			display: none;
		}
		
	.signo-3d img {
		margin: 30px 0 -60px;
	}

	.header .headline {
		font-size: 40px;
	}
	
	table th,
	table td {
		display: block;
		width: 100%;
		padding: 5px 0;
	}
}