/**
 * File: Style.css
 * Description : Contains all necessary styling for the TinyMiny Template 
 * Author: Oumz
 * Credits: 
 * Project: TinyMiny
 **/
/*========================================================================*/
/*   TABLE OF CONTENT
/*========================================================================*/
/*
/*		01. DEFAULT STYLING
/*		02. GENERAL STYLING
/*		03. NAVIGATION		
/*		04. SLIDER
/*		05. HEADER
/*      06. HEADING
/*		07. ABOUT
/*		08. SERVICES
/*      09. PORTFOLIO
/*		10. TEAM
/*      11. TESTIMONIAL
/*		12. CONTACT / FOOTER
/*		13. RESPONSIVE FIXES
/*
/*========================================================================*/
 
@import url("reset.css");

/*========================================================================*/
/*   01. DEFAULT STYLING
/*========================================================================*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, adress, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}

ul,ol{
	list-style:none;
}

@font-face {
    font-family: 'bebasneue';
    src: url('fonts/BebasNeue-webfont.eot');
    src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeue-webfont.woff') format('woff'),
         url('fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('fonts/BebasNeue-webfont.svg#bebasneue') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'roboto';
    src: url('fonts/Roboto-Light-webfont.eot');
    src: url('fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Light-webfont.woff') format('woff'),
         url('fonts/Roboto-Light-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Light-webfont.svg#roboto') format('svg');
    font-weight: normal;
    font-style: normal;

}

html, body {
	width: 100%;
	background-color: #060606;
	color: #666666;
	font-family: 'roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-weight: normal;
	font-size: 16px;
}

section{
	display:block;
}


/*========================================================================*/
/*   02. GENERAL STYLING
/*========================================================================*/

h1,h2,h3,h4,h5,h6{
	line-height:1.5em;
	font-family:'bebasneue', sans-serif;
}
h1{
	font-size: 48px;
}
h2{
	font-size: 40px;
}
h3{
	font-size: 36px;
}
h4{
	font-size: 32px;
}
h5{
	font-size: 24px;
}
h6{
	font-size: 20px;
}

small{
	font-size: 11px;
}

a:visited,
a:focus,
a:active{
	text-decoration:none;
	outline:none;
}

a:hover,
a.readmore{
	color: #222;
	text-decoration:none;
}
button{
	border: none;
}

p{
	letter-spacing:1px;
	font-size: 18px;
}


/* ========================================================================*/
/*   03. NAVIGATION
/* ========================================================================*/

.global{
    position: relative;
}

.global, .pusher{
    height: 100%;
    display:inline-block;
    width: 100%;
}

#menutrigger{
	color: #FFF;
	padding: 2px;
	float: right;
	cursor:pointer;
}

#menutrigger {
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

#menutrigger span {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	margin-top: -2px;
	background-color: #fff;
	font-size: 0px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.open #menutrigger span {
	background-color: transparent;
}

#menutrigger span:before, #menutrigger span:after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

#menutrigger span:before {
	-webkit-transform: translateY(-250%);
	transform: translateY(-250%);
}

#menutrigger span:after {
	-webkit-transform: translateY(250%);
	transform: translateY(250%);
}

.open #menutrigger span:before {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}

.open #menutrigger span:after {
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}

.menu h1 > img{
	width: 100%;
	height: auto;
}
.menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    width: 300px;
    height: 100%;
    background: #333;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-right: 1px solid #444;
}

.menu::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    content: '';
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.open .menu::after {
    width: 0;
    height: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu h2 {
    margin: 0;
    padding: 1em;
    color: rgba(0,0,0,0.4);
    text-shadow: 0 0 1px rgba(0,0,0,0.1);
    font-weight: 300;
    font-size: 2em;
}

.menu ul li a {
	text-transform:uppercase;
	border-bottom: 1px dashed #444;
    display: block;
    padding: 1em 1em 1em 1.2em;
    outline: none;
    color: #f3efe0;
    text-shadow: 0 0 1px rgba(255,255,255,0.1);
    letter-spacing: 2px;
    font-weight: 400;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
    font-size: 14px;
}

.menu ul li.active a, .menu ul li a:hover {
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 -1px rgba(0,0,0,0);
    color: #fff;
}

.pusher {
    position: relative;
    left: 0;
    z-index: 99;
    overflow-y:scroll;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    background:#333;
    width: 100%;
    display:block;
}

.pusher::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.open .pusher::after {
    width: 120px;
    height: 120px;
    opacity: 1;
    z-index: 9999;
    cursor:pointer;
}

.effect.open .pusher {
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0);
}

.menu {
    z-index: 1;
}

.effect.open .menu {
    visibility: visible;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.menu::after {
    display: none;
}

#menutrigger {
position:fixed;
	top: 30px;
	left: 30px;
}

#social li a{
	color: rgba(255,255,255,0.8);
	font-size: 15px;
	background: #444;
	padding: 6px 10px;
	float: left;
	margin-left: 17px;
	margin-top: 20px; 
}

#social li a:hover{
	border: none;
	background: #666;
}

/* ========================================================================*/
/*   04. SLIDER
/* ========================================================================*/
.homeslider{
	position:absolute;
	left: 0;
	top: 0;
	line-height:0;
	width: 100%;
}

.homecaption h1,
.homecaption h2,
.homecaption h3,
.homecaption h5{
	color: #FFF;
}

#home{
	background: url('../images/123.jpg') no-repeat 50% 50%;
	background-attachment:fixed;
	display:block;
	padding: 20% 0;
	width: 100%;
	position: relative;
	text-align:center;
}

#home:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/bg/bg12.png');
	display:block;
	top: 0;
}

.static h3{
	color: #fff;
}

i.first{
	color: #E27A3F;
}

i.second{
	color: #6EA12D;
}

i.third{
	color: #EFC94C;
}

#hometicker{
	display:inline-block;
}

#hometicker,
#hometicker > ul > li{
text-align:center;
display:block;
color: #FFF;
padding: 0px;
clear: both;
}

#hometicker > ul > li{
	display:inline-block;
}

#hometicker h2{
	font-size: 164px;
	line-height: 1em;
}

/* ========================================================================*/
/*   05. HEADER
/* ========================================================================*/

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	z-index: 9;
	-webkit-transform: translate3d(0, 0, 0);
}

.tagline{
	margin-top: 50px;
	padding: 30px;
	text-align:center;
	-webkit-transform: translate3d(0, 0, 0);
}


/* ========================================================================*/
/*   06. HEADING
/* ========================================================================*/

.heading{
    padding-top: 100px;
    margin-bottom: 30px;
  
}

.heading span{
	font-family: 'bebasneue', sans-serif;
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 10px;
}

.heading h2{
	font-family: 'bebasneue', sans-serif;
	font-size: 95px;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 70px;
	margin-bottom: 30px;
	position:relative;
	padding: 0 30px 0 0;
}




/* ========================================================================*/
/*   07. ABOUT
/* ========================================================================*/
.about{
	background:#FED547;
	color: #444;
	padding-bottom: 90px;
	position: relative;
}

.abouticon{
	text-align:center;
	margin-top: 80px;
}

.abouticon .aboutthumb{
	display:inline-block;
	max-width: 128px;
	height: auto;
	margin-bottom: 30px;
}

.abouticon .aboutthumb img{
	width: 100%;
}

.abouticon h4 span{
	display: block;
	height: 4px;
	background: rgba(0,0,0,0.1);
	border-radius: 0px;
	margin: 10px 100px;
}

.about .heading{
  border-bottom: 1px dashed #666;
} 

.abouticon h4{
	letter-spacing:1px;
}

.about:after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.about:after {
    height: 100px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    width: 100px;
}

.about:after {
    background: inherit;
    bottom: -50px;
    z-index: 10;
}

.about .heading{
  border-bottom: 1px dashed #444;
} 

.icon1{
	font-size: 50px;
	background: #444;
	color: #fff;
	padding: 10px 18px;
	border-radius: 60px;
}

.moreicon{
	position: absolute;
	top: 140px;
	right: 0;
	font-size: 32px;
	padding: 12px 20px;
	border: 1px solid #555;
	background: #555;
	color: #fff;
}


/*========================================================================*/
/*   08. SERVICES
/*========================================================================*/
.services{
	background: #E2674A;
	color: #fff;
	padding-bottom: 80px;
	position:relative;
}

.services .heading{
  border-bottom: 1px dashed #fff;
} 

.services p.desc{
	letter-spacing: 1px;
	font-size: 20px;
}

.featured_image{
	margin: 20px 0 0;
}

.featured_image img{
	width:100%;
}

.servicesicon{
	clear: both;
	display:block;
}

.servicesicon .text{
	padding: 15px 0;
	font-size: 15px;
	letter-spacing:1px;
}

.servicesicon h5{
	letter-spacing:1px;
	line-height:1em;
	color: rgba(0,0,0,0.5);
}

.servicesicon .icon{
	padding: 14px 18px;
	margin: 17px 20px 0 0;
	font-size: 24px;
	background: rgba(0,0,0,0.1);
	display: inline-block;
	float: left;
	-moz-border-radius: 30px;
	   -webkit-border-radius: 30px;
	   -khtml-border-radius: 30px;
	   border-radius: 30px;
}

section:after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.services:after {
    height: 100px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    width: 100px;
}

.services:after {
    background: inherit;
    bottom: -50px;
    z-index: 10;
}

.serviceright{
	margin-top: 0px;
}

.progress1{
	margin-top: 20px;
}

.progress1 h3{
	margin-bottom: 30px;
}

.progressbar h4{
	color: #444;
	position: absolute;
	left: 8px;
	top: 0;
	z-index:999;
	line-height: 1.6em;
	font-size: 25px;
}

.progressbar {
	background-color: rgba(0,0,0,0.1);
	height: 40px;
	width: 100%;
	margin-bottom: 55px;
	position: relative;			
}

.progressbar > span {
	display: inline-block;
	position:relative;
	height: 100%;	
	background: #FFF;
	-webkit-transition: width .4s ease-in-out;
    -moz-transition: width .4s ease-in-out;
    -ms-transition: width .4s ease-in-out;
    -o-transition: width .4s ease-in-out;
    transition: width .4s ease-in-out;    
}

.progressbar > span > span{
	position: absolute;
	top: -2.5em;
	right: -1.1em;
	width: 3.3em;
	height: 1.9em;
	margin: 0;
	font-weight: bold;
	line-height: 1.9em;
	text-align: center;
	border-radius: .2em;
	background: rgba(0,0,0,0.1);
}

.progressbar > span > span:after {
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	margin: 0 0 -4px -3px;
	border: 8px solid;
	border-color: rgba(0,0,0,0.1) transparent transparent;
}

/*========================================================================*/
/*   09. PORTFOLIO
/*========================================================================*/

.portfoliomain{
	background: #F0EBE2;
}

.portfolio{
	background: #F0EBE2;
	color: #222;
	padding-bottom: 80px;
	position: relative;
}

.portfolio .heading{
	 border-bottom: 1px dashed #444;
}

.portfolio:after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.portfolio:after {
    height: 100px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    width: 100px;
}

.portfolio:after {
    background: inherit;
    bottom: -50px;
    z-index: 10;
}

.projopen h2{
	margin-bottom: 20px;
	letter-spacing:1px;
}

.social_share li a{
	color: #fff;
	font-size: 15px;
	background: rgba(0,0,0,0.1);
	padding: 6px 10px;
	float: left;
	margin-right: 10px;
	margin-top: 30px;
	}
	
.social_share li a:hover{
	border: none;
	background: rgba(0,0,0,0.3);
	}

/*========================================================================*/
/*   PORTFOLIO GRID 
/*========================================================================*/

.project-grid {
	list-style: none;
	text-align: center;
	margin: 0 auto;
}

.project-grid > li {
	width: 24%;
	height: 15em;
	margin: 0.5%;
	background: #8CC7DF;
	color: #fff;
	display: block;
	float: left;
	padding: 1.6em;
	cursor: pointer;
	position: relative;
}

.project-grid > li.project-span-2 {
	width: 49%;
}

.project-grid > li.project-span-4 {
	width: 99%;
}

.project-grid > li h3 {
	font-size: 28px;
	font-weight: 400;
	letter-spacing:1px;
	line-height: 50px;
}

.project-grid > li[class^="icon-"]:before,
.project-grid > li[class*=" icon-"]:before {
	font-size: 10em;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	line-height: 3;
	opacity: 0.4;
	text-align: right;
	pointer-events: none;
}

.project-subheading {
	display: block;
	font-size: 1.2em;
	opacity: 0.5;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.project-grid > li:hover .project-subheading {
	opacity: 1;
}

.project-overlay {
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	z-index: -1;
	pointer-events: none;
	cursor: default;
}

.project-close {
	position: absolute;
	top: 0.4em;
	right: 0.4em;
	width: 2em;
	height: 2em;
	text-indent: -9000px;
	cursor: pointer;
	z-index: 1000;
}

.project-overlay{
	overflow-y: auto;
}

.project-close::before {
	content: 'x';
	font-weight: 100;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 3em;
	line-height: 0.6;
	text-align: center;
	text-indent: 0px;
}

.project-work {
	width: 100%;
	height: 100%;
	overflow-y:auto;
}

.project-work .project{
	width: 100%;
	min-height: 100%;
	overflow-y:auto;
	padding: 90px 0;
	text-align:left;
	color: #FFF;
}

.project-work h3+p{
	margin-top: 30px;
}

.project-work p+.details{
	margin-top: 30px;
}

.project-work img{
	width: 100%;
	border: 8px solid rgba(255,255,255,0.1);
}

.project-work ul.details li{
    line-height: 2em;
	clear: both;
	display:block;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.project-work ul.details li label{
	float: left;
	width: 320px;
	font-size: 16px;
	margin: 0;
	padding: 0;
	text-align:left;
	font-weight: 600;
}
/* Colors/Image */

/* Grid */
.project-work .project.one{
	background: #3399CC;
}

.project-grid > li:nth-child(1) { background: url(../images/p1.jpg); }

.project-work .project.two,
.project-grid > li:nth-child(2) { background: #33CCCC; }

.project-work .project.three{
	background: #996699;
}

.project-grid > li:nth-child(3) { background: url(../images/p4.jpg); }
.project-work .project.four,
.project-grid > li:nth-child(4) { background: #C24747; }

.project-work .project.five{
	background: #e2674a;
}

.project-grid > li:nth-child(5) { background: url(../images/p3.jpg); }
.project-work .project.six,
.project-grid > li:nth-child(6) { background: #FFCC66; }

.project-work .project.seven{
	background: #99cc99;
}

.project-grid > li:nth-child(7) { background: url(../images/p5.jpg); }
.project-work .project.eight,
.project-grid > li:nth-child(8) { background: #669999; }
.project-work .project.nine{
	background: #cc6699;
}

.project-grid > li:nth-child(9) { background : url(../images/p2.jpg); }
.project-work .project.ten,
.project-grid > li:nth-child(10) { background: #339966; }
.project-work .project.eleven,
.project-grid > li:nth-child(11) { background: #666699; }

@media screen and (max-width: 63.125em) {
	
	.project-grid li,
	.project-grid li.project-span-2,
	.project-grid li.project-span-4 {
		width: 100%;
		text-align: left;
	}

	.project-grid li[class^="icon-"]:before,
	.project-grid li[class*=" icon-"]:before {
		font-size: 6em;
		left: auto;
		right: 0;
		line-height: 2.5;
	}

	.project-grid li > div {
		text-align: center;
	}
}

/*========================================================================*/
/*   10. TEAM
/*========================================================================*/
.team{
	background:#E25454;
	color: #fff;
	padding-bottom: 80px;
	position: relative;
}

.team .heading{
  border-bottom: 1px dashed #fff;
}

.team:after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.team:after {
    height: 100px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    width: 100px;
}

.team:after {
    background: inherit;
    bottom: -50px;
    z-index: 10;
}

.teamimg{
padding: 40px;
}

.team_member ul.social{
	margin: 0 30px;
}

.team_member ul.social li{
	margin: 0 2px;
	float: left;
}
.team_member ul.social li a{
	padding: 2px 4px;
	color: #EEE;
	border: 2px solid #EEE;
	font-size: 20px;
}

.team_member ul.social li a:hover{
	color: #FFF;
	border-color: #FFF;
}


/* ------------------------------------------------------------------------ */
/*   TEAM ICON EFFECT
/* ------------------------------------------------------------------------ */
.ch-grid {
	margin-top: 20px;
	display:inline-block;
}
.ch-grid > li{
	width: 240px;
	height: 240px;
	margin: 0 45px 30px 0;
	float: left;
}

.ch-item {
	width: 100%;
	height: 100%;
	/*border-radius: 50%;*/
	position: relative;
	cursor: default;
	border: 10px solid #d8d8d8;	
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.ch-img-1 { 
	background-image: url(../images/team1.jpg);
	background-position:50%;
}

.ch-img-2 { 
	background-image: url(../images/car.jpg);
	background-position:50%;	
}

.ch-img-3 { 
	background-image: url(../images/team3.jpg);
	background-position:50%;	
}

.ch-img-4 { 
	background-image: url(../images/team4.jpg);
	background-position:50%;	
}

.ch-img-5 { 
	background-image: url(../images/Photography-5.jpg);
	background-position:50%;	
}

.ch-img-6 { 
	background-image: url(../images/interiordesign-2.jpg);
	background-position:50%;	
}

.ch-img-7 { 
	background-image: url(../images/Spa-1.jpg);
	background-position:50%;	
}

.ch-img-8 { 
	background-image: url(../images/wedding-1.jpg);
	background-position:50%;	
}

.ch-info {
	position: absolute;
	background: rgba(226,84,84, 0.8);
	width: inherit;
	height: inherit;
	/*border-radius: 50%;*/
	opacity: 0;
	text-align:center;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-backface-visibility: hidden;

}

.ch-info h3 {
	color: #fff;
	text-align:center;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 18px;
	margin: 0 30px 10px;
	padding: 85px 0 10px 0;
	border-bottom: 1px dotted #EEE;
	text-shadow: 	0 0 1px #fff, 0 1px 2px rgba(0,0,0,0.3);
}

.ch-info ul {
	color: #fff;
	display:inline-block;
	padding: 10px 5px;
	text-align:center;
	margin: 0 30px;
	opacity: 0;
	-webkit-transition: all 1s ease-in-out 0.4s;
	-moz-transition: all 1s ease-in-out 0.4s;
	-o-transition: all 1s ease-in-out 0.4s;
	-ms-transition: all 1s ease-in-out 0.4s;
	transition: all 1s ease-in-out 0.4s;
}

.ch-info ul a {
	display: block;
	color: #fff;
	color: rgba(255,255,255,0.7);
	font-style: normal;
	font-size: 16px;
}

.ch-info ul a:hover {
	color: #fff222;
	color: rgba(255,255,255, 0.8);
}

.ch-item:hover .ch-info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.ch-item:hover .ch-info ul {
	opacity: 1;
}



/*========================================================================*/
/*   11. TESTIMONIAL
/*========================================================================*/
.testimonial{
	background: #CCC859;
	position: relative;
}

.testimonial .heading{
	color: #333;
	border-bottom: 1px dashed #333;
}

.testimonial:after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.testimonial:after{
    height: 100px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    width: 100px;
}

.testimonial:after {
    background: inherit;
    bottom: -50px;
    z-index: 10;
}

.testimonialslider{
	position:relative;
	display:block;
	margin: 60px 0 90px !important;
}

.testimonialcaption{
	text-align: center;
	position:relative;
}

.testimonialslider .slides .testimonialcaption .client_logo{
	max-width: 300px;
	height: auto;
	display:inline-block;
}

.testimonial_content{
	clear: Both;
	padding: 30px 0;
	font-style:italic;
	font-size: 15px;;
}

.testimonial_author{
	clear: Both;
	
}

.testimonial_author p{
	font-size: 14px;
}

.testimonialslider .slides .testimonialcaption .testimonial_author img{
	max-width: 48px;
	display:inline-block;
}

/*========================================================================*/
/*   12. FOOTER/CONTACT
/*========================================================================*/

footer{
	color: #FFF;
}

.copyright{
	margin-bottom: 50px;
}

#contact{
	background:#333;
	color: #FFF;
	padding-bottom: 80px;
}

#contact .heading{
	border-bottom:1px dashed #efefef;
}

#contact .col-xs-6,#contact .col-md-6,#contact .col-sm-6{
	display:inline-block;
	float: none;
}

#contact-area{
	margin-top: 80px;
}



.aboutus_footer p{
	letter-spacing:1px;
}

#contact .heading h2{
	color: #FFF;
}

#contact address {
	color: #FFF;
	font-size: 18px;
	line-height:24px;
	}
	
hr{
	color: #333;
}

#contact-area {
    clear: both;
	display:block;
	padding: 0 60px 30px 0;
}

 #contact-area textarea {
	padding: 5px;
	width: 400px;
	margin: 0px 0px 10px 0px;
	border: 1px solid #000;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.2);
	border: medium none;
	color: #CCCCCC;
}

#contact-area textarea {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.2);
	border: medium none;
	color: #CCCCCC;
	height: 120px;
	padding: 14px;
	width: 100%;
	font-size: 16px;
}

#contact-area .form li{
	display:block;
	position:relative;
}

#submit{
	margin-left: 80%;
}

#contact-area .form label{
	line-height: 50px; font-size: 16px;
	position: absolute; 
	right: 30px; top: 0; bottom: 0;
    -moz-transition: 0.3s right ease;
    -ms-transition: 0.3s right ease;
    -o-transition: 0.3s right ease;
    -webkit-transition: 0.3s right ease;
    transition: 0.3s right ease;
 	z-index: 0}

#contact-area .form input[type="text"]{color: transparent; font-size: 16px; height: 35px; -moz-border-radius: 1px; -webkit-border-radius: 1px; border-radius: 1px;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;}

#contact-area .form input[type="text"],
#contact-area .form textarea{
	display:block;
	width: 100%;
	border: none;
	margin: 5px 0; 
	padding: 14px; 
	display:block;
	background:rgba(0,0,0,0.2);
	position: relative; 
	-moz-box-shadow: inset 0 0 10px rgba(0,0,0,.06);
	-webkit-box-shadow: inset 0 0 10px rgba(0,0,0,.06);
	box-shadow: inset 0 0 10px rgba(0,0,0,.06);
	z-index: 2;}

#contact-area .form input[type="text"]{
	height: 58px;	
}


#contact-area .form input[type="text"]{color: #FFF;}

/* Placeholder */
#contact-area .form input[type="text"]:-moz-placeholder{color: rgba(255,255,255,.2);}
#contact-area .form input[type="text"]:-ms-input-placeholder{color: rgba(255,255,255,.2);}
#contact-area .form input[type="text"]::-webkit-input-placeholder{color: rgba(255,255,255,.2);}

#contact-area .form textarea:-moz-placeholder{color: rgba(255,255,255,.2);}
#contact-area .form textarea:-ms-input-placeholder{color: rgba(255,255,255,.2);}
#contact-area .form textarea::-webkit-input-placeholder{color: rgba(255,255,255,.2);}

/* Label */
#contact-area .form input[type="text"] + label{color: rgba(0,0,0,0);}
#contact-area .form textarea + label{color: rgba(0,0,0,0);}

#contact-area .form input:focus + label{ right: 10px;color: #DDD;}
#contact-area .form textarea:focus + label{ right: 10px;color: #DDD;}

#contact-area .form input[type="text"]:focus,
#contact-area textarea:focus{background-color: rgba(255,255,255,0);}

#contact-area .form input[type="text"].error_input{
	border:1px solid #E25454;
}



#contact-area .form textarea.error_input{
	border:1px solid #E25454;
}


/* Submit */
#submit{
	margin: 10px 0 0 0;
	font-size: 16px;
	font-weight: 600;
	border:2px solid #EEE;
	color: #EEE;
	max-width: 200px;
	float: right;
	background: transparent;
	padding: 12px 24px;
	text-transform: uppercase;
	display:inline-block;
}

#submit:hover{
	color: #ff6937;
	text-shadow: 0 0 1px rgba(255,255,255,.2);
	}

.copyright{
	clear: both;
	margin-top: 100px;
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	margin-bottom: 0;
	text-align:center;
	border-top: 1px solid #555 ;
	padding-top: 30px;
}

.copyright p{
	font-size: 14px !important;
	letter-spacing:1px;
}

.address{
	margin-top: 80px;
}

#social1 li a{
	color: rgba(255,255,255,0.8);
	font-size: 15px;
	background: #444;
	padding: 6px 10px;
	float: left;
	margin-right: 10px;
	margin-top: 30px;
	
}

	
#social1 li a:hover{
	border: none;
	background: rgba(255,255,255,0.3);
	}


/*========================================================================*/
/*   13. RESONSIVE FIXES
/*========================================================================*/

@media (min-width: 768px) and (max-width: 991px) {
.ch-grid{
  	text-align:center;
  }
  
.ch-grid > li{
  	display:inline-block;
  	float: none;
  }
  
  #hometicker h2{
  	font-size: 124px;
  }
  
}

@media (max-width: 768px) {
.ch-grid{
	text-align:center;
}

.ch-grid > li{
	display:inline-block;
	float: none;
}
	
.menu{
	width: 200px;
}
	
.effect.open .pusher {
  -webkit-transform: translate3d(200px, 0, 0);
   transform: translate3d(200px, 0, 0);
}
	
#hometicker h2{
	font-size: 70px;
}

#contact-area {
	padding: 0;
}
	 
.heading h2{
	line-height: 80px;
 }
}








