/**
 * File: Style.css
 * Description : Contains all necessary styling for the TinyMiny Template
 * Author: Oumz
 * Credits: www.oumz.com
 * 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: #DD3F19;
	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;
    -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{
	width: 100%;
	position: relative;
	text-align:center;
    height: 100vh;
}


#homecontent {
    position: relative;
    z-index: 2;
}
.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{
    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;
    color: #fff;
	font-size: 95px;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 19px;
	position:relative;
	padding: 0 30px 0 0;
}




/* ========================================================================*/
/*   07. ABOUT
/* ========================================================================*/
.about{
	background:#9780bc;
	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 #fff;
}

.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: #56babc;
	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: #f8f2fc;
}

.portfolio{
	background: #f8f2fc;
	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: 1;
}

.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);
	}

.portfolioslider{
	position:relative;
}
.flexslider.portfolioslider .flex-prev, .flexslider.portfolioslider .flex-next{
	color: #ddd;
}
.portfolioslider img{
	width: 100%;
		height: auto;

		display:block;

}

/*========================================================================*/
/*   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;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

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

.project-grid > li h3 {
	font-size: 26px;
	font-weight: 400;
	letter-spacing:1px;
	line-height: 1.7;
	position: relative;
}

.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 {
	position: relative;
	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:#eff3f4;
	color: #fff;
	padding-bottom: 80px;
	position: relative;
}

.team .heading{
  border-bottom: 1px dashed #444;
}
.download .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/team2.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-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: #db94ad;
	position: relative;
}

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

.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{
    position: relative;
	background:#5e5aaf;
	color: #FFF;
}

#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: #fff;
}

#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;
    font-weight: 300;
	display:block;
	background: #5a5aa3;
	position: relative;
	-moz-box-shadow: inset 0 0 10px rgba(42,41,73,.1);
	-webkit-box-shadow: inset 0 0 10px rgba(42,41,73,.1);
	box-shadow: inset 0 0 10px rgba(42,41,73,.1);
	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;
}
/* Submit */
#submit{
    font-family: 'bebasneue','Noto Sans TC', '微軟正黑體';
	margin: 10px 0 0 0;
	font-size: 26px;
	border:2px solid #EEE;
	color: #fff;
	max-width: 120px;
	float: right;
	background: transparent;
	padding: 10px 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: 80px;
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	margin-bottom: 0;
	text-align:center;
	border-top: 1px solid #6c6cbc ;
	padding-top: 30px;
}

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

.address{
	margin-top: 80px;
}

#social_footer 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;

}


#social_footer 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;
 }
}


body,h1,h2,h3,h4,h5,h6,p,a,span {
    font-family: 'Noto Sans JP', 'Noto Sans TC', '微軟正黑體';
}


.container {
    position: relative;
}
#home .container {
    z-index: 2;
}
.home__maintitle {
    max-height: 2.4em;
    font-family: 'MS PGothic', 'Noto sans TC', '微軟正黑體';
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
    text-align: center;
}

.abouttext {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.875;
    margin: 35px 0 0;
}
.abouttext:first-child {
    margin: 0;
}
.abouttext__box-limit {
    max-height: 90px;
    overflow: hidden;
}
.abouttext__box-more {
    display: block;
    width: 85px;
    font-family: 'bebasneue', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    border: 2px solid #fff;
    margin: 15px 0 0;
}
.abouttext__box-more::before {
    content: 'More';
}
.abouttext__box-close::before {
    content: 'Close';
}
.abouttext__box-more:hover,
.abouttext__box-more:focus {
    color: #fff;
}
.common__section {
    padding: 85px 0;
    overflow: hidden;
}
.service__itembox {
    display: flex;
    flex-wrap: wrap;
}
.service__item {
    width: 100%;
}
.service__item:nth-child(n + 2) {
    margin-top: 40px;
}
.service__item-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px -15px 0;
}
.service__item-title {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    margin: 0;
}
.service__item-box {
    width: 25%;
    text-align: center;
    padding: 0 15px;
    cursor: pointer;
}
.service__item-icon {
    width: 60px;
}
.service__item-label {
    color: #372e68;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.36;
    margin: 0;
}
.service__item-text {
    font-family: 'MS PGothic', 'Noto sans TC', '微軟正黑體';
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.66;
    margin: 8px 0 0;
}
.company {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px 60px;
}
.company__item {
    width: 25%;
    padding: 0 20px;
    margin: 40px 0 0;
}
.company__item:nth-child(-n + 4) {
    margin: 0;
}
.company__box {
    width: 100%;
    border: 24px solid #efefef;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.company__box::before {
    content: '';
    display: block;
    padding-top: 100%;
}
.company__name {
    color: #555;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    padding: 15px 10px;
    background-color: #FFF;
}
.company__textbox-title {
    color: #555;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    margin: 30px 0 20px;
}
.company__textbox-text {
	color: #888;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.66;
    margin: 0;
}
.company__textbox-limit {
    max-height: 4.98em;
    overflow: hidden;
}
.company__textbox-more {
    display: block;
    width: 85px;
    font-family: 'bebasneue', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    border: 2px solid #fff;
    margin: 15px 0 0;
}
.company__textbox-more::before {
    content: 'More';
}
.company__textbox-close::before {
    content: 'Close';
}
.company__textbox-more:hover,
.company__textbox-more:focus {
    color: #fff;
}
.contact__subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.66;
}
textarea {
    resize: none;
}
.address__title {
    font-family: 'bebasneue';
    font-size: 30px;
    line-height: 1;
    margin: 0;
}
.address__text {
    font-size: 18px;
    font-weight: 400;
    margin: 15px 0;
}
#social_footer li a {
    margin: 0;
    background-color: #6c6cbc;
    cursor: pointer;
}
.copyright a,
.copyright p {
    color: rgba(255,255,255,.5);
    font-size: 15px;
    font-weight: 300;
}
.download {
    background-color: #3d8ac4;
}
.download__itembox {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.download__itembox-more {
    display: block;
    width: 85px;
    font-family: 'bebasneue', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    border: 2px solid #fff;
    margin: 15px 0 0;
}
.download__itembox-more::before {
    content: 'MORE';
}
.download__itembox-close::before {
    content: 'CLOSE';
}
.download__itembox-more:focus {
    color: #fff;
}
.download__item {
    width: 25%;
    padding: 0 20px;
    margin: 40px 0 0;
}
.download__item:nth-child(-n + 4) {
    margin: 0;
}
.download__box {
    position: relative;
    display: block;
    height: 100%;
    border: 4px solid rgba(255,255,255,.4);
    -webkit-transition: border-color .5s ease;
    -moz-transition: border-color .5s ease;
    transition: border-color .5s ease;
}
.download__box:hover {
    border-color: #fff;
}
.download__content {
    text-align: center;
    padding: 20px 12px 105px 12px;
}
.download__title {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.66;
    margin: 5px 0 0;
}
.download__title:first-of-type {
    margin: 15px 0 0;
}
.download__author {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.66;
    margin: 15px 0 0;
}
.download__author::before {
    content: '著作出版：';
}
.download__img {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.download__img::before {
    content: '';
    display: block;
    padding-top: 80.71%;
}
.download__name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 85px;
    text-align: center;
    border-top: 4px solid #fff;
    opacity: .5;
    padding: 20px 0;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
.download__box:hover .download__name {
    opacity: 1;
}
.download__name-title {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    margin: 5px 0 0;
}
.fixed__icon {
    display: block;
    float: right;
    cursor: pointer;
}
.fixed__icon img {
    width: 53px;
}
.contactslider {
    background-color: #56babc;
}
.slick-initialized .slick-slide {
    outline: none;
    padding: 0 50px;
}
.contact__title {
    color: #21454f;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 25px;
}
.contact__text {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.66;
    margin: 20px 0 0;
}
.contact__text:first-of-type {
    margin: 0;
}
.slick-prev {
    left: 0;
    z-index: 5;
    width: 26px;
    height: 46px;
    background-image: url(../images/arrow_prev.png);
}
.slick-prev:hover,
.slick-prev:focus {
    background-image: url(../images/arrow_prev.png);
}
.slick-next {
    right: 0;
    z-index: 5;
    width: 26px;
    height: 46px;
    background-image: url(../images/arrow_next.png);
}
.slick-next:hover,
.slick-next:focus {
    background-image: url(../images/arrow_next.png);
}
.slick-prev:before,
.slick-next:before {
    display: none;
}
.heading .grey__title {
    color: #444;
}
#social li a {
    cursor: pointer;
}
body {
    overflow-x: hidden;
}
img {
    max-width: 100%;
}
#submit:hover {
    color: #fff;
    opacity: .8;
}
@media (max-width:1199px) {
    .download__item:nth-child(4) {
        margin-top: 40px;
    }
}
@media (max-width:1199px) and (min-width:992px) {
    .download__item {
        width: 33.3333%;
    }
}
@media (max-width:991px) {
    .slick-initialized .slick-slide {
        padding: 0;
    }
    /*.contact__text br {
        display: none;
    }*/
    .common__section {
        padding: 40px 0;
    }
    .heading {
        margin-bottom: 25px;
    }
    .heading h2 {
        line-height: 1.2;
        margin: 0;
        padding-bottom: 10px;
    }
    .abouttext {
        font-size: 16px;
        margin: 20px 0 0;
    }
    .common__section::after {
        width: 50px;
        height: 50px;
        bottom: -25px;
    }
    .contact__text {
        font-size: 16px;
        margin: 10px 0 0;
    }
    .contact__title {
        font-size: 20px;
        margin: 0 0 15px;
    }
    .download__item:nth-child(3) {
        margin-top: 40px;
    }
    .company__item:nth-child(4) {
        margin-top: 40px;
    }
    .company {
        margin-bottom: 20px;
    }
    .company__textbox-title {
        font-size: 22px;
        margin: 10px 0;
    }
    .company__textbox-text {
        font-size: 16px;
    }
    #contact-area {
        margin-top: 20px;
    }
    .address {
        margin: 0;
    }
    .copyright {
        margin: 20px 0 0;
        padding-top: 20px;
    }
    .address__text {
        font-size: 16px;
        margin: 10px 0;
    }
    footer.common__section {
        padding-bottom: 20px;
    }
}
@media (max-width:991px) and (min-width:576px) {
    .heading h2 {
        font-size: 55px;
    }
    .download__item {
        width: 50%;
    }
    .company__item {
        width: 33.3333%;
    }
}
@media (max-width:767px) {
    .service__item {
        width: 100%;
    }
    .service__item:last-child {
        margin-top: 30px;
    }
    .service__item-label {
        font-size: 18px;
    }
}
@media (max-width:575px) {
    #home {
        height: 600px;
        background-attachment: scroll;
        background-size: cover;
    }
    .heading h2 {
        font-size: 40px;
    }
    .download__item {
        width: 100%;
    }
    .download__item:nth-child(2) {
        margin-top: 40px;
    }
    .company {
        margin: 0 -10px;
    }
    .company__item {
        width: 50%;
        padding: 0 10px;
    }
    .company__item:nth-child(3),
    .company__item:nth-child(4) {
        margin-top: 20px;
    }
    .service__item-box {
        width: 50%;
    }
    .service__item-box:nth-child(n + 3) {
        margin: 20px 0 0;
    }
}

/* 0419 */
.project-more {
    display: block;
    width: 85px;
    font-family: 'bebasneue', sans-serif;
    color: #3d8ac4;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    border: 2px solid #3d8ac4;
    margin: 15px 0 0 0.5%;
}
.project-more::before {
    content: 'MORE';
}
.project-btn-close::before {
    content: 'CLOSE';
}
/* 0419 end*/

/* 0423 */
#home {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
}
.project-close {
    top: 10px;
    right: 30px;
}
.banner__slider .banner__slide {
    position: relative;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/*.banner__slide:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .4;
    top: 0;
    left: 0;
}*/
.banner__slide-box {
    position: relative;
}
.thumb__slider .slick-dots {
    bottom: 30px;
}
.thumb__slide {
    height: 100vh;
}
.slick-initialized .slick-slide.thumb__slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #fff;
}
@media (max-width:991px) {
    #contact-area {
        padding-right: 0;
    }
}
@media (max-width:575px) {
    .company__name {
        font-size: 14px;
    }

}
/* 0423 end */

/* 0601 */
.font--zh {
    font-family: "Noto Sans TC", 微軟正黑體;
}

.projopen h1,
.projopen h2,
.projopen h3,
.projopen h4,
.projopen h5,
.projopen h6 {
	font-weight: 500;
	margin: 0;
}
.projopen p {
	margin: 0;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
    word-break: break-all;
}

.projopen a {
	font-size: 16px;
	font-weight: 300;
	color: #FFF;
	text-decoration: underline;

	-webkit-transition: opacity .3s;
	   -moz-transition: opacity .3s;
	    -ms-transition: opacity .3s;
	     -o-transition: opacity .3s;
	        transition: opacity .3s;
}
.projopen a:hover {
	opacity: 0.8;
}

.projopen ol,
.projopen ul,
.projopen dl {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.7;
	padding: 0 0 0 40px;
}
.projopen ol {
	list-style: decimal;
}
.projopen ul {
	list-style: disc;
}

.projopen img {
	height: auto !important;
	max-width: 100%;
}

.projopen table {
	font-size: 16px;
	font-weight: 300;
    border-collapse: collapse;
    max-width: 100%;
}
.projopen td, .projopen th {
	padding: 10px 5px;
	white-space: normal !important;
	line-height: 1.7;
	border: 1px solid #fff;
}

.projopen .social_share a {
	cursor: pointer;
	text-decoration: none;
}
.projopen .social_share {
	padding: 0;
	list-style: none;
}

.projopen__table--scroll {
	width: 100%;

    overflow: auto;
}
.projopen__table--scroll::-webkit-scrollbar-track {
	background-color: #F5F5F5;
}
.projopen__table--scroll::-webkit-scrollbar {
	width: 8px;
	height: 8px;

	background-color: #F5F5F5;
}
.projopen__table--scroll::-webkit-scrollbar-thumb {
	background-color: #555;
}

.project__bg {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.projectimageopen {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 20px;

	float: none;
}
.projopen {
	margin: 0 auto;
	width: 100%;
	max-width: 900px;

	float: none;
}
.project__lightbox-title {
	margin: 0 auto 20px;
	max-width: 900px;
}
.project-grid > li .project__lightbox-title h3 {
	width: 100%;

	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
	color: #FFF;
}