/**********************
DEFAULT
***********************/
a:link{
text-decoration:none;
}
a:visited{
text-decoration:none;
}
a:hover{
text-decoration:none;
}
a:active{
text-decoration:none;
} 
body {
	padding-top: 50px;
	font-family: "microsoft yahei";
	font-size: 15px;
	color: #637988;
	line-height: 1.7;
}

ul, ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.social-list li {
	display: inline-block;
}

.social-list a {
	padding: 20px;
	color: #fff;
	text-decoration: none;
}

p {
	margin: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, label, button, .btn {
	font-family: "microsoft yahei";
	text-transform: uppercase;
	margin: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	display: block;
}

h1, .h1 {
	font-size: 50px;
}

h2 {
	font-size: 25px;
}

h2.section-title {
	color: #231f20;
}

h2.section-title:after {
	display: block;
	content: '';
	width: 100%;
	height: 19px;
	background: url('../img/svg/separator.svg') center center no-repeat;
	margin-top: 45px;
}

h5 {
	font-size: 15px;
	letter-spacing: 0.2em;
}

section {
	position: relative;
}

/*section:nth-child(odd){
	background-color: #ffffff;
}*/

section:nth-child(even){
	background-color: #f4f4f4;
}

blockquote {
	padding: 0;
	margin: 0;
	border: 0;
}
.copyrights{
	text-indent:-9999px;
	height:0;
	line-height:0;
	font-size:0;
	overflow:hidden;
}
form {
	text-align: left;
}

label {
	font-weight: normal;
}

button, .btn {
	font-size: 15px;
}

.form-group {
	margin-bottom: 15px;
}

.form-control {
	background-color: transparent;
	color: #ffffff;
	border: none;
	border-bottom: 1px solid #707070;
	border-radius: 0;
	transition: all 0.3s ease-out;
}

.form-control:focus {
	border-color: #ffffff;
	box-shadow: none;
}

/**********************
NAVBAR
***********************/

.navbar {
	min-height: 50px;
	font-family: "microsoft yahei";
	text-transform: uppercase;
}

.navbar-default {
	background-color: #ffffff;
}

.navbar-brand {
	height: 50px;
	padding: 15px 0 0 0;
}

.navbar-brand img {
	max-height: 20px;
}

.navbar-default .navbar-nav>li>a {
	font-size: 13px;
	color: #707070;
	padding: 35px 23px;
}

.navbar-default .navbar-nav>li>a:focus, 
.navbar-default .navbar-nav>li>a:hover {
	color: #00c7fc;
	background-color: transparent;
}

.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:focus, 
.navbar-default .navbar-nav>.active>a:hover {
	color: #00c7fc;
	background-color: transparent;
}

.navbar-default .navbar-toggle {
/*	margin-top: 28px;
	margin-bottom: 28px;*/
	border: 0;
	border-radius: 0;
}

.navbar-default .navbar-toggle .icon-bar {
	background: #707070;
}

.navbar-default .navbar-toggle:focus, 
.navbar-default .navbar-toggle:hover {
	background-color: transparent;
}

.navbar-default .navbar-toggle:focus .icon-bar, 
.navbar-default .navbar-toggle:hover .icon-bar {
	background: #00c7fc;
}

/**********************
HOME SECTION
***********************/

#home {
	height: 580px;
	background-size: cover;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.8);
}

.home-content {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #ffffff;
}

.home-content .h1,
.home-content h2 {
	margin-top: 45px;
}

.home-content .cta-container {
	margin-top: 54px;
}

.home-content .btn {
	letter-spacing: 0.2em;
	margin:0 15px;
	text-align: center;
	padding: 0;
	width: 200px;
	height: 60px;
	line-height: 60px;
	box-sizing: border-box;
	color: #ffffff;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
}

.home-content .btn-default {
	background-color: transparent;
	border: 1px solid #ffffff;
}

.home-content .btn-default:hover,
.home-content .btn-default.active.focus, 
.home-content .btn-default.active:focus, 
.home-content .btn-default.active:hover, 
.home-content .btn-default:active.focus, 
.home-content .btn-default:active:focus, 
.home-content .btn-default:active:hover {
	background: #ffffff;
	color: #231f20;
	border-color: #ffffff;
}

.home-content .btn-primary {
	background-color: #00c7fc;
}

.home-content .btn-primary:hover,
.home-content .btn-primary.active.focus, 
.home-content .btn-primary.active:focus, 
.home-content .btn-primary.active:hover, 
.home-content .btn-primary:active.focus, 
.home-content .btn-primary:active:focus, 
.home-content .btn-primary:active:hover {
	background: #ffffff;
	color: #00c7fc;
	border-color: #00c7fc;
}

.down-icon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	padding: 45px 15px 15px;
}

.down-arrow {
	animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
	0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
	40% {
    transform: translateY(-30px);
  }
	60% {
    transform: translateY(-15px);
  }
}

/**********************
HISTORY SECTION
***********************/

#history {
	background-color: #f4f4f4;
	padding: 150px 0 1px;
}

.history-content {
	text-align: center;
}

.history-content p {
	margin-top: 42px;
}

/**********************
PORTFOLIO SECTION
***********************/

.project {
	position: relative;
	width: 320px;
	height: 555px;
	overflow: hidden;
	outline: none;
}

.project:hover .description {
	transform: translateY(-100%);
}

.project img {
	width: 100%;
}


.project .description {
	position: absolute;
	width: 100%;
	height: 375px;
	padding: 120px 33px 14px;
	background: rgba(51, 51, 51, 0.50);
	color: #ffffff;
	text-align: left;
	transition: all .3s ease-out;
}

.project .description p {
	margin-top: 15px;
}

.project .description .social-list {
	margin-top: 54px;
}

/**********************
SERVICES SECTION
***********************/


#services2 {
	padding: 100px 0;
	background-color: #FFF;
}

#services {
	padding: 100px 0;
}

.service {
	background: #ffffff;
	padding: 58px 61px 98px;
	text-align: center;
}

.service .separator {
	width: 30px;
	height: 2px;
	background-color: #00c7fc;
	margin: 25px auto 0;
}

.service h5 {
	margin-top: 20px;
	color: #231f20;
}

.service p {
	margin-top: 20px;
	text-align:left;
}

/**********************
CLIENTS SECTION
***********************/

#clients {
	padding: 145px 0 150px;
}

.clients-content {
	text-align: center;
}

.clients-content blockquote {
	color: #231f20;
	font-size: 15px;
	margin-top: 37px;
}

.clients-content blockquote footer {
	margin-top: 30px;
	color: #999999;
}

.clients-content blockquote footer:before {
	content: '';
}

.clients-logs-container {
	margin-top: 115px;
	text-align: center;
}

/**********************
CONTACT SECTION
***********************/

#contact {
	background-color: #101012;
	color: #ffffff;
	padding: 55px 0 58px;
}

.contact-subsection {
	border: 1px solid #707070;
	text-align: center;
	min-height: 500px;
	box-sizing: border-box;
}

#about-subsection {
	padding: 95px 92px 149px;
}

#about-subsection h2:after {
	display: block;
	content: '';
	width: 30px;
	height: 2px;
	background-color: #00c7fc;
	margin: 46px auto 0;
}

#about-subsection p {
	margin-top: 54px;
}

#form-subsection {
	padding: 95px 70px 76px;
	overflow: hidden;
}

#form-subsection .email-label {
	margin-top: 28px;
}

#form-subsection input {
	padding: 0 5px;
	height: 33px;
}

#form-subsection .message-label {
	margin-top: 60px;
}

#form-subsection textarea {
	margin: 0;
	padding: 0 5px;
	border: 0;
	box-sizing: border-box;
	resize: none;
	font-size: 15px;
	line-height: 50px;
	vertical-align: bottom;
	background: linear-gradient(transparent 49px, #707070 1px);
	background-size: 100% 50px;
	background-repeat: repeat-y;
}

#form-subsection textarea:focus,
#form-subsection textarea:active {
	background: linear-gradient(transparent 49px, #ffffff 1px);
	background-size: 100% 50px;
	background-repeat: repeat-y;
}

#form-subsection .btn-default {
	color: #00c7fc;
	background: transparent;
	border: 0;
	border-color: transparent;
	border-radius: 0;
	padding: 10px 0;
	margin-top: 38px;
	outline: none;
	box-shadow: none;
}

#form-subsection .btn-default:hover,
#form-subsection .btn-default.active.focus, 
#form-subsection .btn-default.active:focus, 
#form-subsection .btn-default.active:hover, 
#form-subsection .btn-default:active.focus, 
#form-subsection .btn-default:active:focus, 
#form-subsection .btn-default:active:hover {
	color: #ffffff;
}

/**********************
FOOTER SECTION
***********************/

/*#footer {
	background: #00c7fc;
	color: #ffffff;
	padding: 55px 0;
}

#footer .copyright {
	font-family: 'Montserrat', sans-serif;
}

#footer .social-list {
	float: right;
}*/

/**********************
HELPER CLASSES
***********************/

.is-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.grabbable {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.grabbing { 
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

/**********************
RESPONSIVE
***********************/

@media only screen and (max-width: 1199px) {
	
	/**********************
	CONTACT SECTION
	***********************/
	
	#about-subsection, #form-subsection {
		padding: 95px 70px 70px;
		min-height: 560px;
	}

}

@media only screen and (max-width: 991px) {

	/**********************
	SERVICES SECTION
	***********************/
    .service:not(first-of-type) {
        margin-top: 30px;
    }

    /**********************
	CONTACT SECTION
	***********************/

	#about-subsection, #form-subsection {
		padding: 80px;
		min-height: auto;
	}

	#form-subsection {
		margin-top: 55px;
	}

}

@media only screen and (max-width: 767px) {
	
	/**********************
	DEFAULT
	***********************/

	h1, h2, h3, h4, h5, h6 {
		line-height: 1.5;
	}

	/**********************
	NAVBAR
	***********************/

	.navbar-default .navbar-nav {
		text-align: center;
	}

	.navbar-default .navbar-nav>li>a {
		padding: 20px 0;
	}

	/**********************
	HOME SECTION
	***********************/
	
	.home-content {
		transform: translateY(-55%);
	}
	
	.home-content .h1,
	.home-content h2 {
		font-size: 42px;
	}

	/**********************
	SERVICES SECTION
	***********************/
    .service {
        padding: 30px;
    }

	/**********************
	CLIENTS SECTION
	***********************/
	.single-client-container:not(first-of-type) {
		margin-top: 60px;
	}

	/**********************
	CONTACT SECTION
	***********************/

	#about-subsection, #form-subsection {
		padding: 60px 30px;
		min-height: auto;
	}


	/**********************
	FOOTER SECTION
	***********************/
	#footer {
		text-align: center;
	}

	#footer .social-list {
		float: none;
		margin-top: 45px;
	}

}

@media only screen and (max-width: 575px) {

	/**********************
	HOME SECTION
	***********************/

	.home-content .btn {
		display: block;
		margin: 0 auto;
	}

	.home-content .btn-primary {
		margin-top: 30px;
	}

}


.top-grids {
	margin: 0em 0 30em 0;
}
.wrap{
	width:80%;
	margin:0 auto;
}

.wrap11{
	width:1200px;
	margin:0 auto;
}

.top-grid{
	width: 31.33%;
	float: left;
	text-align: center;
	margin-right: 3%;
	font-family: "microsoft yahei"
	background: #FFF;
	padding: 1.5em 0;
	border-top: 5px solid #73C9F1;
	margin-top: -4em;
	-webkit-box-shadow: 0px 56px 36px -60px #121D12;
	-moz-box-shadow: 0px 56px 36px -60px #121D12;
	-o-box-shadow: 0px 56px 36px -60px #121D12;
}
.top-grid h3{
	color: #363638;
	font-size: 1.6em;
	padding:1px 0 20px 0;
}

.top-grid h4{
	color: #363638;
	font-size: 20px;
	padding:30px 0 30px 0;
	
}
.top-grid p{
	font-family: "microsoft yahei";
	font-size: 0.875em;
	color: #777;
	line-height: 1.5em;
	margin: 0.5em auto 0.8em auto;
	width: 90%;
	padding:00px 0 20px 0;
	text-align:left;
}
.top-grid h5{
	font-family: "microsoft yahei";
	font-size: 16px;
	color: #777;
	line-height: 1.5em;
	margin: 0em auto 0em auto;
	width: 90%;
	text-align:center;
}
.top-grid img{
	display: inline-block;
}
img{max-width:100%;}
.button{
	color: #FFF;
	font-size: 0.875em;
	text-transform: uppercase;
	padding: 0.8em;
	border: 1px solid #EEE;
	display: inline-block;
	background:#73C9F1;
}
.button:hover{
	background:#363638;
	color:#FFF;
}
.last-topgrid{
	margin:0;
	margin-top: -4em;
}
.footer {
  background-color: #232429; }

.footer-widgets {
  padding-top: 50px;
  color: #999; }

@media (min-width: 768px) {
  .footer-widgets {
    padding-top: 50px;
    padding-bottom: 0px; } }

.footer-widgets .widget-title {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff; }

@media (min-width: 768px) {
  .footer-widgets .widget-title {
    margin-bottom: 48px; } }

.footer-widgets .widget_archive a, .footer-widgets .widget_recent_entries a, .footer-widgets .widget_categories a, .footer-widgets .widget_recent_comments a, .footer-widgets .widget_nav_menu a {
  color: #999; }

.footer-widgets .widget_archive a:hover, .footer-widgets .widget_recent_entries a:hover, .footer-widgets .widget_categories a:hover, .footer-widgets .widget_recent_comments a:hover, .footer-widgets .widget_nav_menu a:hover {
  color: #fff; }

/* Logo widget */
.footer-logo-widget {
  text-align: center; }

.footer-logo-widget p {
  margin: 14px 17% 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6; }
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

.container:before, .container:after {
  content: " ";
  display: table; }

.container:after {
  clear: both; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1200px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table; }

.container-fluid:after {
  clear: both; }
.row {
  margin-left: 0px;
  margin-right: 0px; }
.widget {
  margin-bottom: 50px; }
.col-md-3 {
    width: 25%; }
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
.visible-sm {
  display: none !important; }
  .widget_recent_posts .post-thumb, .widget_featured_posts .post-thumb {
  float: left;
  margin-right: 22px;
  background-color: #04befc; }

.widget_recent_posts .post-thumb img, .widget_featured_posts .post-thumb img {
  transition: all 0.3s ease-in-out; }

.widget_recent_posts .post-thumb img:hover, .widget_featured_posts .post-thumb img:hover {
  opacity: .15; }
  .widget_recent_posts .post-content, .widget_featured_posts .post-content {
  display: table; }
  .widget_featured_posts .post-title {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0; }
.widget_featured_posts li {
  margin-bottom: 26px; }
  .widget_recent_posts li, .widget_featured_posts li {
  overflow: hidden; }
.view-kh{
    background:#ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 1px 5px 8px #e5e9f0;
}

#history2 {
	background-color: #f4f4f4;
	padding:80px 0 10px 0;
}

.history2-content {
	text-align: center;
}

.history2-content p {
	margin-top: 42px;
}