@font-face {
	font-family: 'SEGOEUIL';
	src: url('../fonts/SEGOEUIL.eot');
	src: local('SEGOEUIL'), 
	url('../fonts/SEGOEUIL.woff') format('woff'), 
	url('../fonts/SEGOEUIL.ttf') format('truetype');
}

@font-face {
	font-family: 'Segoe UI';
	src: url('../fonts/SegoeUI-Bold.eot');
	src: url('../fonts/SegoeUI-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SegoeUI-Bold.woff') format('woff'),
		url('../fonts/SegoeUI-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Segoe UI';
	src: url('../fonts/SegoeUI-Regular.eot');
	src: url('../fonts/SegoeUI-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/SegoeUI-Regular.woff') format('woff'),
		url('../fonts/SegoeUI-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
/*
===================================
Start Basic Style
===================================
*/

*	{
	margin:0;
	padding:0;
}

body {
	margin:0 auto;
	color:#333232;
	background:#fff;
	font-size:16px;
	line-height:24px;
	font-weight:normal;
	overflow-x:hidden;
	font-family: 'Segoe UI';
}


/* Start Typography
-----------------------*/
p	{
	color:#333232;
	font-size:16px;
	line-height:24px;
	font-weight:normal;
	margin-bottom:15px;	
	font-family: 'Segoe UI';
}

h1, h2, h3, h4, h5, h6	{
	margin:0 0 15px 0;
	font-family: 'Segoe UI';
	color:#333232;
	font-weight: bold;
}

h1	{
	font-size:36px;
	line-height:44px;
}

h2	{
	font-size:34px;
	line-height:42px;
}

h3	{
	font-size:30px;
	line-height:38px;
}

h4	{
	font-size:26px;
	line-height:34px;
}

h5	{
	font-size:22px;
	line-height:30px;
}

h6	{
	font-size:18px;
	line-height:26px;
}

a	{
	text-decoration:none;
	color:#f58220;
	transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;	
}

a:hover	{
	color:#000;	
}
/* End Typography
-----------------------*/


/* Start Form Fields
-----------------------*/
input[type="text"], 
input[type="tel"], 
input[type="email"],
textarea {
	width:100%;
	border-radius:7px;
	border:none;
	border:1px solid #fff;
	padding:15px;
	margin-bottom:20px;
	color:#fff;
}

input[type="text"]	{
	background:url(../images/text_ico.png) no-repeat 98% 17px;
}

input[type="tel"] {
	background:url(../images/tel_ico.png) no-repeat 98% 18px;
}

input[type="email"] {
	background:url(../images/email_ico.png) no-repeat 98% 19px;
}

textarea	{
	background:url(../images/message_ico.png) no-repeat 98% 17px;
	min-height:140px;
	resize:none;
	height: 140px;
}

input[type="submit"] {
	display:block;
	width:100%;
	border:none;
	text-align:center;
	color:#fff;
	text-transform:uppercase;
	font-size:30px;
	line-height:38px;
	font-family: 'Segoe UI';
	font-weight:normal;
	background:#000;
	border-radius:7px;
	padding:12px;
	transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	margin-bottom:30px;
}

input[type="submit"]:hover	{
	background:#3B3B3A
}

input::-webkit-input-placeholder {
	color: #fff;
	font-size:16px;
	line-height:24px;
	opacity:1;
}

input::-moz-placeholder {
	color: #fff;
	font-size:16px;
	line-height:24px;
	opacity:1;
}

input:-moz-placeholder {  
	color: #fff;
	font-size:16px;
	line-height:24px;
	opacity:1;
}

input:-ms-input-placeholder { 
	color: #fff;
	font-size:16px;
	line-height:24px;
	opacity:1;
}

textarea:-ms-input-placeholder {
	color: #9e9e9e;
	font-size:18px;

}

textarea:-moz-placeholder {	
	color: #fff;
	font-size:16px;
	line-height:24px;
	opacity:1;

}

textarea::-webkit-input-placeholder {
	color: #fff;
	font-size:16px;
	line-height:24px;
	opacity:1;
}

textarea::-moz-placeholder {
	color: #fff;
	font-size:16px;
	line-height:24px;
	opacity:1;
}

input:focus::-webkit-input-placeholder {
	color:transparent;
}

input:focus::-moz-placeholder {
	color:transparent;
}

input:focus:-moz-placeholder {  
	color:transparent;
}

input:focus:-ms-input-placeholder { 
	color:transparent;
}

textarea:focus:-ms-input-placeholder {
	color:transparent;
}

textarea:focus:-moz-placeholder {	
	color:transparent;
}

textarea:focus::-webkit-input-placeholder {
	color:transparent;
}

textarea:focus::-moz-placeholder {
	color:transparent;
}
/* End Form Fields
-----------------------*/


/* Start Scroll Go To Top
---------------------------*/
.scrollup { 
	width:40px; 
	height:40px; 
	opacity:0.3; 
	filter: alpha(opacity=30); 
	position:fixed; 
	bottom:25px; 
	right:16px; 
	display:none; 
	text-indent:-9999px; 
	background: url('../images/icon_top.png') no-repeat;
}

.scrollup:hover { 
	opacity:0.6; 
}
/* End Scroll Go To Top
-------------------------*/

header , 
section.banner , 
section.content-area , 
section.bottom-query , 
section.gallery , 
section.contact , 
footer	{
	float:left;
	width:100%;	
}

.clear	{
	clear:both;
}

.padding-zero {
	padding:0 !important;	
}

/* Start General Class for Center Container */
.col-center	{
	margin:0 auto !important;
	float:none !important;	
}
/* End General Class for Center Container */


/* 
===================================
Start General Style
=================================== 
*/

/* Start Header Style 
------------------------*/
header {
	background:#000;
	border-bottom:10px solid #fb9844;
}

header .logo-menu .logo {
	background:#fff;
	padding:30px 70px 30px 30px;
}

header .logo-menu .logo a {
	display:block;
	text-align:right;
}

header .logo-menu .logo img {
	display:inline-block;
	max-width:100%;
	height:auto;
	vertical-align:middle;
}

header .logo-menu .menu-area {
	padding:23px 0;	
}

.menu {
	padding:20px 0 0 0;	
}

.main-nav {
    margin: auto;
    width: 100%;
}

.main-nav ul {
	z-index:999;
}

.main-nav ul li{
	float: left;
	list-style: none;
	position: relative;
	text-align: center;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.main-nav ul li a{
	color: #fff;
	display: block;
	font-size: 16px;
	line-height: 24px;
	padding:8px 15px;
	position: relative;
	border-right:1px solid #c9c8c9;
	font-weight:normal;
	text-decoration: none;
	text-transform:uppercase;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

.main-nav ul ul li	{
	padding-bottom:0;	
}

.main-nav ul ul li a	{
	border-right:none;
	color:#fff;
}

.main-nav ul li:last-child a{
	border-right:none;
}

.main-nav ul li.active a {
	color:#f58220;
}

.main-nav ul li a:hover	{
	color:#f58220;	
}

.main-nav  ul ul a:hover {
	color: #000;
	text-indent:10px;
	background:#fff;
}
 
.main-nav  li:hover ul {
	display: block;
	opacity: 1;
	visibility: visible;
	margin-top:0px;
}
 
.main-nav  ul li ul {
	background:#45BEAD;
	visibility: hidden;
	width: auto;
	position: absolute;
	text-align: center;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	opacity: 0;
	margin-top:15px;
}
 
.main-nav  ul ul li {
	border-top: 1px solid #ccc;
	display: block;
	float: none;
	margin: 0;
	list-style: none;
}

.main-nav  ul ul li:last-child a	{
	background:none;	
}

.main-nav  ul ul li:last-child a:hover	{
	background:#fff;
}
 
.main-nav ul li.sub_menu a {
	padding-right: 32px;
}

.main-nav ul li.sub_menu a:before {
	border-left: 6px solid rgba(0, 0, 0, 0);
	border-right: 6px solid rgba(0, 0, 0, 0);
	border-top: 6px solid #FFF;
	content: "";
	height: 0;
	position: absolute;
	right: 10px;
	top: 37px;
	width: 0;
	z-index: 999;
}
 
.main-nav  ul ul a,
.main-nav  ul ul a:link {
	font-size: 12px;
	line-height: 40px;
	padding: 0 15px;
	min-width: 200px;
	text-align: left;
}
 
.main-nav  ul:after {
	content: '.';
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.main-nav ul , 
.main-nav ul ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

.main-nav ul li ul ul {
	margin: -51px 0px 0px 188px !important;
}

.main-nav ul li:hover ul ul , 
.main-nav ul li:hover ul ul ul , 
.main-nav ul li.sfhover ul ul , 
.main-nav ul li.sfhover ul ul ul {
	left: -999em;
}

.main-nav ul li:hover ul , 
.main-nav ul li li:hover ul , 
.main-nav ul li li li:hover ul , 
.main-nav ul li.sfhover ul , 
.main-nav ul li li.sfhover ul , 
.main-nav ul li li li.sfhover ul { 
	left: auto;
}

.main-nav ul li li li:hover ul {
	top: 30px;
}

header .logo-menu .menu-area .top-call {
	text-align:right;
	padding-right:90px;
}

header .logo-menu .menu-area .top-call a {
	display:block;
	color:#fff;
	font-size:44px;
	line-height:52px;
	font-family: 'Segoe UI';
	font-weight: bold;
}

header .logo-menu .menu-area .top-call a:hover {
	color:#f58220;	
}

header .logo-menu .menu-area .top-call p {
	font-size:16px;
	line-height:25px;
	color:#fff;
	text-transform:uppercase;
	font-family: 'Segoe UI';
	margin:0;
	font-weight: bold;
}
/* End Header Style 
------------------------*/

/* Start Banner Style 
------------------------*/
section.banner {
	border-top:10px solid #feb476;
	position:relative;
}

section.banner .container {
	background:#0F0;	
}

section.banner img {
	display:block;
	max-width:100%;
	height:auto;
}

section.banner .banner-text {
	position:absolute;
	left:0;
	top:200px;
	padding:20px 80px 20px 88px;
	background:rgba(0, 0, 0, 0.7);
}

section.banner .banner-text h1 , 
section.banner .banner-text h2 {
	color:#fff;
	margin:0;
}

section.banner .banner-text h1 {
	font-size:36px;
	line-height:44px;
	font-family: 'SEGOEUIL';
	text-transform:uppercase;
}

section.banner .banner-text h2 {
	font-size:36px;
	line-height:44px;
	font-family: 'Segoe UI';
	text-transform:uppercase;
	font-weight:bold;
}
/* End Banner Style 
------------------------*/

/* Start Recent Work Area Style 
---------------------------------*/
section.content-area .recent-work {
	padding:90px 0;
	border-bottom:1px solid #cbcbcb;
}

section.content-area .recent-work .recent-work-text p {
	font-size:16px;
	line-height:24px;
	margin-bottom:20px;
}

section.content-area .recent-work .recent-work-text a {
	display:inline-block;
	text-align:center;
	color:#fff;
	text-transform:uppercase;
	font-family: 'Segoe UI';
	font-weight:bold;
	background:#f58220;
	padding:10px 30px;
	font-size:25px;
	line-height:33px;
	margin-top:30px;
}

section.content-area .recent-work .recent-work-text a:hover {
	background:#000;
}

section.content-area .recent-work .recent-work-image{
	text-align:center;
}

section.content-area .recent-work .recent-work-image img {
	display:block;
	max-width:100%;
	height:auto;
	vertical-align:middle;
}
/* End Recent Work Area Style
---------------------------------*/

/* Start Bottom Query Area Style 
---------------------------------*/
section.bottom-query {
	padding-top:90px;
	background:url(../images/bottom-img.jpg) left bottom no-repeat;	
}

section.bottom-query .query-social .social-links p {
	font-size:18px;
	line-height:26px;
	margin-bottom:30px;
}

section.bottom-query .query-social .social-links h4 {
	font-size:25px;
	line-height:33px;
	color:#000000;
	font-family: 'Segoe UI';
	font-weight:bold;
	text-transform:uppercase;
	margin:0 0 10px 0;
}

section.bottom-query .query-social .social-links p a {
	display:inline-block;	
}

section.bottom-query .query-social .social-links p i {
	color:#fff;
	width:35px;
	height:35px;
	text-align:center;
	font-size:16px;
	line-height:24px;
	padding:5px 0;
	transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;	
}

section.bottom-query .query-social .social-links p i.fa-facebook {
	background:#3d5a97;	
}

section.bottom-query .query-social .social-links p i.fa-twitter {
	background:#09aceb;	
}

section.bottom-query .query-social .social-links p i.fa-linkedin {
	background:#0177b5;	
}

section.bottom-query .query-social .social-links p i.fa-instagram {
	background:#125688;	
}

section.bottom-query .query-social .social-links p a i:hover {
	background:#F58220;
}

section.bottom-query .query-social .query-form {
	background:url(../images/border.png) top left repeat-x, url(../images/border.png) bottom left repeat-x, #f58220;
	padding:30px 22px;
	text-align:center;
}

section.bottom-query .query-social .query-form h1 {
	font-size:40px;
	line-height:48px;
	color:#fff;
	text-transform:uppercase;
	padding:30px 0 15px 0;
}

section.bottom-query .query-social .query-form form label.captcha {
	width:100%;
	border-radius:7px;
	border:none;
	border:1px solid #fff;
	margin-bottom:20px;
	text-align:center;
	padding:7px;
}

section.bottom-query .query-social .query-form form label.captcha img {
	display:inline-block;
	max-width:100%;
	vertical-align:middle;
	height:auto;
}

section.bottom-query .query-social .query-form form .captcha-field input[type="text"] {
	background:none;
}
/* End Bottom Query Area Style
---------------------------------*/

/* Start Footer Style 
---------------------------------*/
footer {
	background:#000;
	padding:20px 0;	
}

footer .copy-rights {
	text-align:center;	
}

footer .copy-rights p {
	margin:0;
	font-size:16px;
	line-height:24px;
	color:#fff;	
}
/* End Footer Style
---------------------------------*/

/* Start Footer Style 
---------------------------------*/
section.gallery {
	padding:40px 0;	
}

section.gallery .gallery-main h1 {
	font-size:36px;
	line-height:44px;
	color:#000000;
	font-family: 'SEGOEUIL';
	text-transform:uppercase;
	border-bottom:1px solid #c9c9c9;
	padding-bottom:15px;
	margin-bottom:25px;
}

section.gallery .gallery-main .gallery-image-box {
	text-align:center;
	position:relative;
	margin-bottom:30px;
}

section.gallery .gallery-main .gallery-image-box img {
	display:block;
	max-width:100%;
	height:auto;
	vertical-align:middle;
}

section.gallery .gallery-main .gallery-image-box span {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.4);
	opacity:0;
	transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;	
}

section.gallery .gallery-main .gallery-image-box span a {
	background:#fff;
	text-align:center;
	color:#000;
	text-transform:uppercase;
	font-size:16px;
	line-height:24px;
	padding:5px 30px;
	font-family: 'Segoe UI';
	font-weight:normal;
	position:absolute;
	top:45%;
	left:38%;
}

section.gallery .gallery-main .gallery-image-box span a:hover {
	background:#f58220;
	color:#fff;
}

section.gallery .gallery-main .gallery-image-box:hover span {
	opacity:1;
}
/* End Footer Style
---------------------------------*/

/* Start Contact Style 
---------------------------------*/
section.contact {
	padding:40px 0;	
}

section.contact .contact-main h1 {
	font-size:36px;
	line-height:44px;
	color:#000000;
	font-family: 'SEGOEUIL';
	text-transform:uppercase;
	border-bottom:1px solid #c9c9c9;
	padding-bottom:15px;
	margin-bottom:25px;
}

section.contact .contact-main ul {
	display:table;
	width:100%;
	margin:0 0 60px 0;
	padding:0;
	list-style:none;
}

section.contact .contact-main ul li {
	display:table-cell;
	vertical-align:middle;
	width:25%;
	text-align:center;
	padding:40px 10px;
	border:1px solid #c9c9c9;
}

section.contact .contact-main ul li:first-child , 
section.contact .contact-main ul li:nth-child(2) , 
section.contact .contact-main ul li:nth-child(3) {
	border-right:none;
}

section.contact .contact-main ul li p , 
section.contact .contact-main ul li p a {
	font-size:20px;
	line-height:28px;
	color:#333232;
}

section.contact .contact-main ul li p a:hover {
	color:#F58220;	
}

section.contact .contact-main ul li p i.fa-home , 
section.contact .contact-main ul li p i.fa-phone , 
section.contact .contact-main ul li p i.fa-envelope {
	display:block;
	padding:0;
	width:auto;
	height:auto;
	color:#333232;
	font-size:20px;
	line-height:28px;
}

section.contact .contact-main ul li p i {
	color:#fff;
	width:35px;
	height:35px;
	text-align:center;
	font-size:16px;
	line-height:24px;
	padding:5px 0;
	transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;	
}

section.contact .contact-main ul li p i.fa-facebook {
	background:#3d5a97;	
}

section.contact .contact-main ul li p i.fa-twitter {
	background:#09aceb;	
}

section.contact .contact-main ul li p i.fa-linkedin {
	background:#0177b5;	
}

section.contact .contact-main ul li p i.fa-instagram {
	background:#125688;	
}

section.contact .contact-main ul li p a i:hover {
	background:#F58220;
}

section.contact .contact-main .query-form {
	background:url(../images/border.png) top left repeat-x, url(../images/border.png) bottom left repeat-x, #f58220;
	padding:30px 22px;
	text-align:center;
}

section.contact .contact-main .query-form h1 {
	font-size:40px;
	line-height:48px;
	color:#fff;
	font-family: 'Segoe UI';
	font-weight:bold;
	text-transform:uppercase;
	padding:30px 0 15px 0;
	border:none;
}

section.contact .contact-main .query-form form label.captcha {
	width:100%;
	border-radius:7px;
	border:none;
	border:1px solid #fff;
	margin-bottom:20px;
	text-align:center;
	padding:7px;
}

section.contact .contact-main .query-form form label.captcha img {
	display:inline-block;
	max-width:100%;
	vertical-align:middle;
	height:auto;
}

section.contact .contact-main .query-form form .captcha-field input[type="text"] {
	background:none;
}

section.contact .contact-main .map iframe {
	width:100%;
	height:737px;
	border:none;
}
/* End Contact Style
---------------------------------*/




/* Start Media Quaries
==================================== */
@media only screen and (min-width: 992px) and (max-width:1199px) {
	header .logo-menu .menu-area .top-call {
		padding-right:30px;	
	}
	
	header .logo-menu .menu-area .top-call a {
		font-size:32px;
		line-height:40px;
	}
	
	header .logo-menu .menu-area .top-call p {
		font-size:12px;
		line-height:20px;	
	}
	
	.menu {
		padding: 15px 0 0;
	}
	
	section.banner .banner-text {
		top:100px;	
	}
	
	section.bottom-query .query-social .query-form h1 {
		font-size:30px;
		line-height:38px;	
	}
	
	section.bottom-query .query-social .query-form form label.captcha {
		padding:13px;	
	}
	
	section.bottom-query {
		background-position:-200px 100%;	
	}
	
	section.gallery .gallery-main .gallery-image-box span a {
		left:35%;	
	}
	
	section.contact .contact-main ul li p , 
	section.contact .contact-main ul li p a {
		font-size:18px;
		line-height:26px;	
	}
}

@media only screen and (max-width: 991px) {
	.main-nav ul li a span	{
		display:none;	
	}
	
	.main-nav ul li.active a	{
		background:#000;
	}
	
	.menu	{
		border:none;
	}
	
	.main-nav ul li ul {
		background-color: transparent;
		opacity: 1;
		position: static;
		transition: none;
	}
	
	.main-nav ul li a {
		line-height: 0px;
		border-radius: 0;
		-o-border-radius: 0;
		-moz-border-radius: 0;
		-ms-border-radius: 0;
		-webkit-border-radius: 0;
	}
	
	.main-nav ul ul li {
		border: none;
	}
	
	.mean-container .mean-bar	{
		position:static !important;		
	}
	
	.main-nav ul ul a , 
	.main-nav ul ul a:link {
		line-height: inherit;
	}
	
	.main-nav ul ul a , 
	.main-nav ul ul a:link {
		min-width: inherit;
	}
	
	.main-nav ul li ul ul {
		margin: 0 !important;
	}
	
	header .navigation {
		display: none;
	}
	
	.menues_container	{
		background:none;
		width:auto;
		z-index:0;
	}
	
	.main-nav li a i {
		color: #fff;
	}
	
	header .logo-menu .menu-area .none {
		display:none;
	}
	
	header .logo-menu .logo ,
	header .logo-menu .logo a {
		text-align:center;
		padding:0;	
	}
	
	header .logo-menu .logo {
		padding:15px;	
	}
	
	header .logo-menu .menu-area .top-call {
		text-align:center;
		padding:0;	
	}
	
	section.banner .banner-text {
		top:80px;	
	}
	
	section.banner .banner-text h1 , 
	section.banner .banner-text h2{
		font-size:28px;
		line-height:36px;
	}
	
	section.content-area .recent-work .recent-work-text {
		margin-bottom:60px;
	}
	
	section.content-area .recent-work , 
	section.content-area .recent-work .recent-work-image {
		text-align:center;	
	}
	
	section.content-area .recent-work .recent-work-image img {
		display:inline-block;	
	}
	
	section.bottom-query .query-social .query-form {
		background:url(../images/border.png) top left repeat-x, url(../images/border.png) bottom left repeat-x, rgba(245, 130, 32, 0.9);	
	}
	
	section.bottom-query {
		background-position:-85px 100%;	
	}
	
	section.gallery .gallery-main .gallery-image-box span a {
		left:30%;	
	}
	
	section.contact .contact-main ul li {
		display:inline-block;
		height:140px;
		margin-bottom:4px;
		width:48%;
		border:1px solid #c9c9c9 !important;	
	}

	section.contact .contact-main .map iframe {
		height:813px;
	}
	
	section.contact .contact-main ul {
		text-align:center;	
	}
}

@media only screen and (max-width: 767px) {
	section.banner .banner-text {
		top:40px;	
	}
	
	section.banner .banner-text h1 , 
	section.banner .banner-text h2{
		font-size:22px;
		line-height:30px;
	}
	
	section.bottom-query .query-social .social-links {
		text-align:center;	
	}
	
	section.bottom-query {
		background-position:-250px 100%;	
	}
	
	section.contact .contact-main ul li p , 
	section.contact .contact-main ul li p a {
		font-size:17px;
		line-height:25px;	
	}
	
	section.contact .contact-main .query-form {
		margin-bottom:30px;	
	}
	
	section.contact .contact-main .map iframe {
		height:350px;	
	}
}

@media only screen and (max-width: 580px) {
	.display-full {
		float:none !important;
		width:100% !important;
		margin:0 auto !important;	
	}
	
	header .logo-menu .menu-area .top-call a {
		font-size:34px;
		line-height:42px;	
	}
	
	header .logo-menu .menu-area .top-call p {
		font-size:13px;
		line-height:21px;
	}
	
	section.banner .banner-text {
		top:0px;
		padding:15px;
		text-align:center;
		width:100%;
		position:static;
		background:#000;
	}
	
	section.banner .banner-text h1 , 
	section.banner .banner-text h2{
		font-size:18px;
		line-height:26px;
		text-align:center;
	}
	
	section.content-area .recent-work .recent-work-text a {
		font-size:18px;
		line-height:26px;	
	}
	
	section.bottom-query .query-social .query-form h1 ,
	section.contact .contact-main .query-form h1 {
		font-size:30px;
		line-height:38px;	
	}
	
	section.bottom-query {
		background-position:-480px 100%;
		padding-top:40px;
	}
	
	section.content-area .recent-work {
		padding:40px 0;	
	}
	
	section.gallery .gallery-main .gallery-image-box span a {
		left:35%;	
	}
	
	section.gallery .gallery-main .gallery-image-box img {
		width:100%;	
	}
	
	section.gallery .gallery-main h1 , 
	section.contact .contact-main h1 {
		text-align:center;	
	}
	
	footer .copy-rights p {
		font-size:12px;
		line-height:18px;	
	}
	
	section.contact .contact-main ul li {
		display:block;
		width:100%;
		margin-bottom:15px;
		height:inherit;	
	}
	
	section.contact .contact-main .map iframe {
		height:250px;	
	}
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

}

@media (-webkit-max-device-pixel-ratio) {
	
}

/* ========================= XXX ========================= XXX ========================= */
/* ========================= XXX ========================= XXX ========================= */