/*CSS变量==*/
:root {
	--Bar: rgba(128,128,128,1);
	--HColor: #00C6D7;
	--SFont: #EEE; /*根据 标题区域 背景颜色变化*/
	--SBack: #111; /*根据 标题区域 背景颜色变化*/
	--SFBG: #888; /*根据 标题区域 背景颜色变化*/
	--SAVG: #111; /*根据 标题区域 背景颜色变化*/
	--Sfont: #EEE; /*根据 标题区域 背景颜色变化*/
	--Sfbg: #000; /*根据背 标题区域 景颜色变化*/
	--Savg: #888; /*根据背 标题区域 景颜色变化*/
	--Sback: #111; /*根据 标题区域 背景颜色变化*/
	--Mavg: #222; /*根据 中央区域 背景颜色变化*/
	--Mfont: #EEE; /*根据 中央区域 背景颜色变化*/
	--Mback: #DDD; /*根据 中央区域 背景颜色变化*/
	--Mfbg: #000; /*根据 中央区域 背景颜色变化*/
	--BFont: #FFF;
	--DFont: #888;
	--ContactBG: #3B3B3B url('../images/contact-bg.jpg') no-repeat center center;
	--btnPri:rgba(122, 10, 88, 0.8);
	--btnPB:rgba(25, 25, 25, 1.0);
	--btnSec:rgba(18, 43, 75, 1.0);
	--btnSB:rgba(25, 25, 25, 1.0);
	--BR:2.5rem;
}
.btn{
	border-radius:var(--BR);
}
.btn-primary{
	background-color: var(--btnPri);
	border:  var(--btnPB);
	transition: all 0.4s ease-in-out;
}
.btn-primary:hover{
	background-color: rgba(0,0,0,0.8);
}
.cover{
	object-fit: cover;
}

.d3d {
	-webkit-transform: translateZ(0);
	/* Chrome, Opera */
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	/* Chrome, Opera */
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	/* Chrome, Opera */
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	perspective: 1000;
}

.blur {
	-webkit-filter: blur(10px);
	/* Chrome, Opera */
	-moz-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
}

.blur2 {
	-webkit-filter: blur(3px);
	/* Chrome, Opera */
	-moz-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
}


body {
	background: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	position: relative;
}


html,
body {
	width: 100%;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
	font-weight: bold;
	letter-spacing: 2px;
}

.heading {
	font-size: 20px;
}

.subheading {
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 60px;
}

.bold {
	font-weight: bold;
}

p {
	line-height: 28px;
	font-size: 15px;
}

a {
	outline: none !important;
}


.section-title strong {
	color: #00C6D7;
	color: var(--HColor);
	font-size: 56px;
}

.section-title h1 {
	font-size: 24px;
}

.section-title {
	padding-bottom: 32px;
}

.medium-icon {
	font-size: 32px !important;
}

.large-icon {
	font-size: 64px !important;
}

.page {
	padding: 100px 0px;
	/* display: none; */
}

.tlinks {
	text-indent: -9999px;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}




/* ==========================================================================
preloader section
========================================================================== */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: none repeat scroll 0 0 var(--SFBG);
}
.preloader .btn{
	background: var(--SAVG);
	color: var(--SFont);
}
/* ==========================================================================
navigation section
========================================================================== */
.custom-navbar {
	background: var(--Bar);
	margin-bottom: 0;
}

.custom-navbar .navbar-brand {
	color: var(--HColor);
	font-weight: 600;
	font-size: 24px;
}

.custom-navbar .navbar-brand .navbar-toggle {
	background: var(--Bar);
	padding: 4px 6px;
	font-size: 16px;
	color: var(--BFont);
}

.custom-navbar .nav li a {
	color: var(--BFont);
	font-size: 14px;
	font-weight: 500;
}
.nav-tag {
	color: rgba(var(--Sfont),0.8) !important ;
}

.custom-navbar .nav li a:hover {
	background: transparent;
	outline: none;
}

.custom-navbar .nav>li>a:focus {
	background-color: transparent;
	color: var(--BFont);
	outline: none;
}

.custom-navbar .nav li.active>a {
	color: var(--HColor);
}

.custom-navbar .navbar-toggle {
	border: none;
	padding-top: 10px;
}

.custom-navbar .navbar-toggle .icon-bar {
	border-color: transparent;
}

@media(min-width:1000px) {
	.custom-navbar {
		background: linear-gradient(rgba(var(--Sback),0.8),rgba(var(--Sback),0.2),rgba(var(--Sback),0));
		padding: 8px;
		border-bottom: 0;
	}

	.custom-navbar .top-nav-collapse {
		padding: 8px;
		background: var(--SFBG);
	}
}


/* ==========================================================================
home section
section_0
========================================================================== */
#section_0 {
	background-size: cover;
	background-position: center;
	color: var(--SFont);
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	letter-spacing: 1rem;
}

#section_0 h1 {
	font-size:  2.5rem;
}

#section_0 .searchBar {
	font-size: 2.5rem;
	line-height: normal;
	background-color: transparent;	
	padding: 5px 20px;
	max-width: 90%;
	color:#fff;
	border-radius: var(--BR);
	border: none;
	outline: none;
}
#section_0 .searchBar:focus{
	background-color: rgba(0,0,0,0.2);
}
#section_0 .searchBar:focus::-webkit-input-placeholder{
	color: rgba(0,0,0,0.1);
}

#section_0 input::-webkit-input-placeholder {
	letter-spacing: 3px;
	font-size:  2.5rem;
	text-align: center;
	color: var(--Mfont);
}
#section_0 input::-moz-input-placeholder {
	font-size:  2.5rem;
	text-align: center;
	color: var(--Mfont);
}
#section_0 input::-ms-input-placeholder {
	font-size:  2.5rem;
	text-align: center;
	color: var(--Mfont);
}

#section_0 h3 {
	font-size: 14px;
}

#section_0 .btn {
	background: transparent;
	border: 2px solid var(--Mfbg);
	border-radius: 0;
	color: var(--Mfont);
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 2px;
	padding: 0.5rem 3rem;
	border-radius: var(--BR);
	margin-top: 1rem;
	transition: all 0.4s ease-in-out;
}

#section_0 .ltitl {
	color: var(--Mfbg);
}

#section_0 .ltitl:hover {
	color: var(--Mfbg);
}

#section_0 .btn-default:hover {
	background: var(--Mavg);
	border-color: var(--Mavg);
}

#section_0 .btn-primary:hover {
	background: var(--Mavg);
	border-color: var(--Mavg);
}

/* ==========================================================================
carousel section
section_7
========================================================================== */
/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}
/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  /* rtl:remove */
  letter-spacing: -.05rem;
}
/* ==========================================================================
work section
section_1
========================================================================== */
#section_1 {
	text-align: center;
}

#section_1 .col-md-4 {
	padding: 28px;
	position: relative;
	transition: all 0.4s ease-in-out;
}

#section_1 .col-md-4:hover {
	background-color: #ffffff;
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.20);
}

#section_1 h3 {
	font-size: 18px;
}


/* ==========================================================================
about section
section_2
========================================================================== */
#section_2 {
	background: #3B3B3B;
	color: #ffffff;
	color: var(--BFont);
}
.photoframe{
	padding:1em;
	overflow: hidden;
}
.photoframe img{
	border-radius: calc(var(--BR)/2);	
	box-shadow: 0px 2px 8px 0px rgba(20, 20, 20, 1);
}
.aritcalframe{
	padding:2em;
}
.nav-tabs {
	margin-top: 20px;
	border-bottom: 1px solid #606060;
}

.nav-tabs>li {
	float: left;
	margin-bottom: -1px;
}

.nav-tabs>li>a {
	display: block;
	color: #ffffff;
	font-size: 16px;
	padding: 10px 20px;
	border: 0;
	border-radius: 0;
}

.nav-tabs>li>a:hover {
	background-color: transparent;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
	color: #00c6d7;
	color: var(--HColor);
	cursor: default;
	background-color: transparent;
	border: 1px solid transparent;
	border-bottom-color: transparent;
}

.tab-content {
	padding-top: 20px;
}

.tab-content a {
	color: #0CC;
}

.tab-content a:hover,
.tab-content a:link {
	color: #FF0;
	text-decoration: none;
}

/* ==========================================================================
team section
section_3
========================================================================== */
#section_3 {
	text-align: center;
}

#section_3 h3 {
	color: #00c6d7;
	color: var(--HColor);
	font-size: 14px;
	font-weight: bold;
}

#section_3 .col-md-3 {
	padding-top: 20px;
	padding-bottom: 20px;
}

#section_3 .team-wrapper {
	overflow: hidden;
	position: relative;
	border-radius: calc(var(--BR)/2);
}

#section_3 .team-des {
	background-color: rgba(00, 00, 00, 0.6);
	position: absolute;
	color: #ffffff;
	color: var(--BFont);
	opacity: 0;
	max-width: 500px;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.4s ease-in-out;
	margin: 0 auto;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#section_3 .team-des:hover {
	opacity: 1;
}

#section_3 img {
	margin: 0 auto;
}

#section_3 .social-icon li a {
	color: #fff;
	color: var(--BFont);
}

#section_3 .social-icon li a:hover {
	color: #00c6d7;
	color: var(--HColor);
}

/* ==========================================================================
portfolio section
section_4
========================================================================== */
#section_4 {
	background-color: #f6f6f6;
	text-align: center;
}

#section_4 .container {
	width: 100%;
	padding: 0;
	margin: 0;
}

#section_4 img {
	width: 100%;
	transition: all 0.4s ease-in-out;
}

#section_4 img:hover {
	opacity: 0.5;
}

/* FILTER CSS */
.filter-wrapper {
	width: 100%;
	margin: 40px 0 24px 0;
	overflow: hidden;
	text-align: center;
}

.filter-wrapper li {
	display: inline-block;
	margin: 4px;
}

.filter-wrapper li a {
	color: #999999;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 8px 17px;
	display: block;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}

.filter-wrapper li .selected,
.filter-wrapper li a:focus,
.filter-wrapper li a:hover {
	color: #00c6d7;
	color: var(--HColor);
	outline: none;
}

/* ISOTOPE BOX CSS */
.iso-box-section {
	width: 100%;
}

.iso-box-wrapper {
	width: 100%;
	padding: 0;
	clear: both;
	position: relative;
}

.iso-box {
	position: relative;
	min-height: 50px;
	float: left;
	overflow: hidden;
	margin-bottom: 20px;
}

.iso-box>a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.iso-box>a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.fluid-img {
	width: 100%;
	display: block;
}

/* ==========================================================================
pricing section
section_5
========================================================================== */
#section_5 {
	text-align: center;
}

#section_5 h2 {
	font-size: 52px;
}

#section_5 h3 {
	font-size: 16px;
}

#section_5 .plan {
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.20);
	padding-top: 40px;
	padding-bottom: 80px;
	margin-bottom: 32px;
	border-radius: calc(var(--BR)/2);
}

#section_5 .plan span {
	font-size: 16px;
}

#section_5 .plan .plan_title {
	font-weight: 300;
	letter-spacing: 2px;
	padding: 30px;
	margin-bottom: 20px;
}

#section_5 .medium-icon {
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.20);
	border-radius: 50%;
	font-size: 52px;
	width: 120px;
	height: 120px;
	line-height: 120px;
	text-align: center;
	margin-bottom: 32px;
}

#section_5 .plan ul {
	padding: 0px;
}

#section_5 .plan ul li {
	display: block;
	font-weight: 500;
	padding: 12px 0px;
}

#section_5 .plan .btn {
	border-radius: var(--BR);
	color: var(--BFont);
	font-size: 16px;
	font-weight: bold;
	padding: 16px 60px;
	transition: all 0.4s ease-in-out;
	margin-top: 20px;
	text-transform: uppercase;
}

#section_5 .plan .btn:hover {
	background-color: var(--btnPB);
}


/* ==========================================================================
contact section
section_6
========================================================================== */
#section_6 {
	background: #3B3B3B url('../images/contact-bg.jpg') no-repeat center center;
	background: var(--ContactBG);
	background-size: cover;
	color: var(--BFont);
}

#section_6 h2 {
	padding-bottom: 20px;
}

#section_6 h3 {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}

#section_6 .medium-icon {
	padding-top: 10px;
	padding-right: 10px;
}

#section_6 .contact-info div {
	padding-top: 14px;
	padding-bottom: 14px;
}

#section_6 form {
	padding-top: 60px;
}

#section_6 .form-control {
	border: 2px solid var(--BFont);
	border-radius: 0;
	box-shadow: none;
	margin-top: 10px;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

#section_6 input {
	height: 40px;
}

#section_6 input[type="submit"] {
	background: transparent;
	border: 2px solid var(--BFont);	
	border-radius: var(--BR);
	letter-spacing: 1px;
	margin-top: 18px;
	height: 50px;
	color: var(--BFont);
}

#section_6 input[type="submit"]:hover {
	background: var(--HColor);
	border: var(--HColor);
}


/* ==========================================================================
signUp section
#section_9
========================================================================== */
#section_9 .sfont{
	color: var(--SFont);
}

/* ==========================================================================
footer section
========================================================================== */
footer {
	text-align: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

footer p {
	padding-top: 20px;
}

.social-icon {
	padding: 0;
	margin: 0;
}

.social-icon li {
	list-style: none;
	display: inline-block;
	padding: 6px;
}

.social-icon li a {
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.09);
	color: var(--Dfont);
	font-size: 20px;
	width: 56px;
	height: 56px;
	line-height: 60px;
	text-align: center;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}

.social-icon li a:hover {
	color: var(--HColor);
}

@media screen and (min-width: 992px) {
	@-moz-document url-prefix() {
		#section_4 .col-lg-4,
		#section_4 .col-md-4 {
			width: 33.333%;
		}
	}
}

/* ==========================================================================
media quires for mobile
========================================================================== */
@media (max-width: 440px) {
	#section_0 {
		padding-top: 320px;
		padding-bottom: 320px;
	}

	#section_0 h1 {
		font-size: 22px;
	}

	#section_0 h3 {
		font-size: 12px;
	}
}
/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}