

/* ==========================================================================
   Base Styles, Bootstrap Modifications & Fonts Import
   ========================================================================== */

@import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700);
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);

/* === custom icon === */
@import url('custom-fonts.css');




@font-face {
  font-family: "goldSquirrel";
  src:url("../fonts/goldSquirrel.eot");
  src:url("../fonts/goldSquirrel.eot?#iefix") format("embedded-opentype"),
    url("../fonts/goldSquirrel.woff") format("woff"),
    url("../fonts/goldSquirrel.ttf") format("truetype"),
    url("../fonts/goldSquirrel.svg#goldSquirrel") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "goldSquirrel" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "goldSquirrel" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-goldsquirrel:before {
  content: "\67";
}


/* Preloader */
#preloader {
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#000; /* change if the mask should have another color then white */
  z-index:99999; /* makes sure it stays on top */
}

#status {
  width:200px;
  height:auto;
  position:absolute;
  padding: 15px;
  left:50%; /* centers the loading animation horizontally one the screen */
  top:50%; /* centers the loading animation vertically one the screen */
  background-image:url(../img/status.gif); /* path to your loading animation */
  background-repeat:no-repeat;
  background-position:center;
  margin:-100px 0 0 -100px; /* is width and height divided by two */
}

#success_message{ display: none;}



/*scroll-change-start*/

::-webkit-scrollbar {
    width: 12px;
	}
 
	::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
	}
 
	::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
	}
	
/*scroll-change-end*/








html,
button,
input,
select,
textarea {
    color: #222;
}




/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #f2c2c9;
    color: #a4003a;
    text-shadow: none;
}

::selection {
    background: #16a085;
    color: #a4003a;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

 hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.centered {
	text-align: center
}


/* ==========================================================================
   General styles
   ========================================================================== */

html,
body {
    height: 100%;
}

body {
    font-family: roboto, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000;
	-webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
	background: #d2af6d;
	padding-top: 44px;
}


/* ==========================================================================
   MENU CONFIGURATION
   ========================================================================== */

.menu {
	position: fixed;
	right: -200px;
	width: 260px;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: left;
}

.menu.menu-open {
	right: 0px;
}

.menu-wrap {
	position: absolute;
	top: 0;
	left: 60px;
	background: #1a1a1a;
	width: 200px;
	height: 100%;
}


.logo1 a{
	font-size: 20px;
	text-decoration: none;	    
	text-shadow: 3px 1px 0px #000;
}
.menu h1.logo a {
	font-size: 13px;
	line-height: 40px;
	color: #d2af6d;
	margin-top: 20px;
}

.menu h1.logo a:hover {
	color: #f5f5f5;
}

.menu img.logo {
	margin: 20px 0;
	max-width: 160px;
}

.menu a {
	margin-left: 20px;
	color: #b1b1b1;
	display: block;
	font-size: 12px;
	line-height: 35px;
	letter-spacing: 0.1em;
	text-decoration: none;
}

.side-menu a{
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 500;
}

.contact-side {
	color: #8a8a8a;
	padding: 30px 20px 5px;
	font-size: 11px;
	font-size: 300 !important;
}

.menu a:hover {
	color: #ffffff;
}

.menu a:active {
	color: #ffffff;
}

.social-side a > i {
	float: left;
	display: inline-block;
	vertical-align: middle; 
	text-align: left;
	width: 25px;
	font-size: 14px;
	margin: 25px 0;
}

.menu-close {
	cursor: pointer;
	display: block;
	position: absolute;
	font-size: 14px;
	color: #808080;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 10px;
	right: 5px;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

.menu-close:hover {
	color: #ffffff;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

/* Push the body after clicking the menu button */
.body-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.body-push-toright {
	left: 200px;
}

.body-push-toleft {
	left: -200px;
}

.menu,
.body-push {
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		 -o-transition: all .3s ease;
			transition: all .3s ease;
}

#menuToggle {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 999;
	display: block;
	text-align: center;
	font-size: 14px;
	color: #d2af6d;
	cursor: pointer;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

#menuToggle:hover {
	color: #ffffff;
	background: rgba(0,0,0,0.2);
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}


/* ==========================================================================
   Wrap Sections
   ========================================================================== */

#headerwrap {
	
}

/*.banner-wrap-main {
	position: relative;
}

.banner-main{
	height: 100%;
	background: red;
}

.banner-main img{
	width: 100%;
	overflow: hidden;
}*/


.banner .nullbutton{
	color: #d2ae6d;
	text-decoration: none;
}

.banner-lh{
	overflow: hidden;
}

.banner-lh img{
	width: 100%;
	height: 100%;
}

.welcome h4{
	font-weight: 300;
}

.header-top{
	padding: 8px;
	z-index: 8;
	background: #4c4c4c;
}

#headerwrap h1 {
	
}

/* About Wrap & Conf */
#aboutwrap {
	padding: 80px 0;
}

#aboutwrap p{
	font-size: 13px;
	color: #000;
	font-weight: 300;
	line-height: 22px;
	text-align: justify;
}

.padding0{
	padding:0;
}

#headerwrap .box{
	color: #d2af6d;
}

#headerwrap .box:hover{
	color: #d2af6d;
}

.ehover12{
	padding: 37.50% 0;
}

.box-bg2 a{
	color: #272727 !important;
}

.box-bg2 a:hover{
	color: #d2ae6d !important;
}


.ehover12 h2 {
    position: absolute;
    overflow: hidden;
    padding: 5px 0;
    right: 15px;
    bottom: 5px;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.ehover12 a{
	color: #d2ae6d;
}



.box .fa{
	vertical-align: central;
	text-shadow: 1px 0.1px 0.1px #6d6d6d;
}

.box-bg1{
	background: #272727;
}

.box-bg2{
	background: #d2af6d;
	color: #272727;
}


.box-bg3{
	background: #272727;
}
.box-bg4{
	background: #4c4c4c;
	}
.box-bg5{
	background: #272727;
	}
.box-bg6{
	background: #4c4c4c;
	}

.box-bg1:hover{
	background: url(../img/web-bg.jpg) no-repeat;
	background-size: 100% 100%;
	color: #d2af6d;	
}
.box-bg2:hover{
	background: url(../img/graphics-bg.jpg) no-repeat;
	color: #d2af6d;
	background-size: 100% 100%;
}
.box-bg3:hover{
	background: url(../img/photography-bg.jpg) no-repeat;
	background-size: 100% 100%;
}
.box-bg4:hover{
	background: url(../img/mob-app-bg.jpg) no-repeat;
	background-size: 100% 100%;
	}
.box-bg5:hover{
	background: url(../img/desktop-app-bg.jpg) no-repeat;
	background-size: 100% 100%;
	}
.box-bg6:hover{
	background: url(../img/digital-mktg-bg.jpg) no-repeat;
	background-size: 100% 100%;
	}


.name {
	text-align: center;
}
.name p {
	font-size: 22px;
	font-weight: lighter;
	margin-top: 15px;
	letter-spacing: 2px;
}

.name-label {
	width: 60px;
	height: 60px;
	margin: 0 auto 45px;
	border-top: 1px solid #000;
	background: url(../img/name-label.png) center bottom no-repeat;
	background-size: 35px 35px;
}

.name-zig {
	width: 73px;
	height: 17px;
	margin: 38px 0 38px;
	background: url(../img/name-zig.png) 0 0 no-repeat;
	background-size: 73px 17px;
}

.name-desc h2 {
	font-size: 35px;
	line-height: 1.45;
	font-weight: 300;
}

/* Separator About - Parallax Section */
.sep {
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	height: 300px;
	position: relative;
	background-image: url(../img/bg-1.jpg);
	background-size: 100%;
}

.sep h4{
	padding: 10% 0;
	margin: 0;
	color: #d2ae6d;
}


.about {
	background-image: url(../img/bg-1.jpg);
	background-size: 100%;
}

/* Portfolio Wrap Section */
.portfoliowrap {
	padding: 80px 0;
	background: #efefef;
}

#portfoliowrap {
	display: block;
	}

#portfoliowrap h1 {
	font-weight: 300;
	text-align: center;
	margin-bottom: 50px;
}

.process p{
	font-size: 13px;
}

.process h2{
	margin: 50px auto;	
}

/*Portfolio*/

.portfolio-items, 
.portfolio-filter {
  list-style: none outside none;
  margin: 10px 0 0px 0;
  padding: 0;
}



.portfolio-filter > li {
  display: inline-block;
}


.portfolio-filter > li a {
  background: none repeat scroll 0 0 #969696;
  font-size: 14px;
  font-weight: 400;
  margin: 10px 5px;
  text-transform: uppercase;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
  border: 1px solid #969696;
  outline: none;
  border-radius: 3px;
  color: #fff;
}

.portfolio-filter > li a:hover,
.portfolio-filter > li a.active{
  color:#fff;
  background: #d2af6d;
  border: 1px solid #d2af6d;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-items > li {
  float: left;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}



.portfolio-item {
	margin: 15px auto;
}

.recent-work-wrap h2{
	color: #d2af6d;
}




/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/* Service Wrap */
#servicewrap {
	display: block;
	padding: 80px 0;
	background: #efefef;
}

#servicewrap h1 {
	font-weight: 300;
	text-align: center;
	margin-bottom: 20px;
}


.service {
	padding: 4%;
}
.service .content{
	margin-bottom: 50px;
}

.service small {
	font-size: 12px;
	font-weight: bold
}

.service i {
	font-size: 30px;
	vertical-align: middle;
}

.service .text {
	color: #000000;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
}

/* Testimonials Wrap */
#testimonials {
	display: block;
	padding: 80px 0;
	background: url(../img/testimon-bg.jpg) fixed no-repeat;
	background-size: 100% 100%;
}

#testimonials h2{
	color: #fff;
	font-weight: 300;
}


/* Clients
---------------------------------*/





#testimonials .item .thumbnail {
	margin-bottom:0;
}
#testimonials .carousel-control.left, .carousel-control.right {
	background-image:none !important;
}
#testimonials .carousel-control {
	color:#999;
	padding: 4px 0;
	width:26px;
	top:auto;	
	left:auto;
	bottom:0;
	opacity:1;
	text-shadow:none;
	transition: .5s;
}

#testimonials .carousel-control:hover {
	color:#d2af6d;
}

#testimonials .carousel-control.right {
	right:10px;
}
#testimonials .carousel-control.left {
	right: 40px;
}



.client-part-haead{
	color: #d2af6d;
	font-size: 15px;
	line-height: 26px;
	margin:30px 0 10px;
}
.client{
	padding:0;
	margin:20px 0 0;
	list-style:none;
	text-align:center;
}
.client li{
	display:inline;
	margin:0 15px;
}
.client li a{
	display:inline-block;
}
.client li a img{
	margin-bottom:15px;
	border-radius:50%;
}
.client li a:hover{
	text-decoration:none;
}
.client li a h3{
	color: #d2af6d;
	font-size: 18px;
}
.client li a span{
	color:#f1f1f1;
	font-size: 13px;
}
.quote-right{
	font-style:normal;
	width:68px;
	height:68px;
	margin:0 auto;
	border:2px solid #d1ad6c;
	border-radius:50%;
	display:block;
	line-height:68px;
	text-align:center;
	font-size:27px;
	color:#d1ad6c;
	cursor: pointer;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}

.quote-right:hover{
color: #fff;
border: 2px solid #fff;
}




/*client-logo-start*/

.client-logo-wrapper{
	background: #545454;
	padding: 20px 0;
}




/* Contact Wrap */
#contactwrap {
	background-color: #efefef;
	margin-top: 0px;
	padding: 80px 0;
}

#contactwrap p {
	color: #f2f2f2;
}

#contactwrap small {
	font-size: 13px;
}

.contact {
	background-image: url(../img/contact-sep.jpg);
}

.enquiry-btn {
	background: #d2ae6d !important;
	color: #4c4c4c;	
	margin-top: 4px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	
}

.enquiry-btn:hover {
	color: #efefef;	
}


#contactwrap label {
	color: #f2f2f2;
	margin-top: 10px;
}

#contactwrap .form-control {
    background: none;
    border: 1px solid #d2ae6d;
    border-radius: 0;  
}

#contactwrap .form-control:focus {
    border-color: #d2ae6d;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(210,174,109,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(210,174,109,.6);
}

.btn-primary {
    background-color: #d2ae6d;
    border-color: #d2ae6d;
	border-radius: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}

.btn-primary:hover {
    background-color: #ab8a4e;
    border-color: #ab8a4e;
	border-radius: 0;
}

.map-wrapper{
	background: #252525 !important;
}

.contact-info {
	color: #d2ae6d;
	padding: 4%;
	color: #d2ae6d;
}


.contact-info h6 {
	margin-top: 20px;
	color: #efefef;
}

.social-wrapper a{
	color: #efefef;
	font-size: 14px;
	margin: auto 5px;
	transition: 0.5s;
}

.social-wrapper a:hover{
	color: #d2ae6d;
}



.contact-info h4{
	color: #d2ae6d;
}

.contact-info p{
	font-size: 12px;
}


/*copy-rights*/

.copy-rights{
	background: #151515;
	padding:15px;
	color: #d2ae6d;
}



/* Gallery Configuration */
.photo-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #2f2f2f;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.project .overlay {
  position: absolute;
  text-align: center;
  color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  
}

.project:hover .photo-wrapper {
  background-color: #2f2f2f;
	background-image:url(../img/zoom.png);
	background-repeat:no-repeat;
	background-position:center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: relative;
}
.project:hover .photo {
  opacity: 10;
  filter: alpha(opacity=4000);
  opacity: 0.1;
  filter: alpha(opacity=40);
}
.project:hover .overlay {
  opacity: 100;
  filter: alpha(opacity=10000);
  opacity: 1;
  filter: alpha(opacity=100);
}

.desc {
	margin-top: 25px;
}

@media screen and (min-width: 768px){

body{
	padding-top: 50px;
}

.carousel-caption {
    right: 7%;
    left: 0;
    padding-bottom: 0;
}
}




