body {
	padding: 0;
	margin: 0;
	background: #FFF;
	font-family: 'Montserrat', sans-serif;/*设置 body 的默认字体样式*/
}

body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	text-decoration: none;
}

input[type="button"], input[type="submit"] {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #004393;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

label {
	margin: 0;
}

img {
	width: 100%;
}

a:focus, a:hover {
	text-decoration: none;
	outline: none;
}


/*-- Navbar --*/

.navbar {
	margin-bottom: 0;                             /* 设置元素的下外边距 */ 
	border-radius: 0;                             /*向元素添加圆角边框，0表示方形*/
	border-bottom: 1px solid #CCC;                /*设置下边框的样式*/
}

.navbar-default {
	background: none;/* 设置背景属性，无背景 */ 
	border: none;/* 设置边框属性，无边框 */ 
}

.navbar-default .navbar-nav > li > a {
	color: #777;/* 设置颜色属性 */ 
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: #6BC676;
	background-color: transparent;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
	color: #028fcc;
	background-color: transparent;
}

.menu__list {
	position: relative;
	-webkit-flex-wrap: inherit;
	flex-wrap: inherit;
	list-style: none;
	width: 100%;
}

.menu__item {
	display: block;
	width: 12.5%;
	padding: 10px 0;
}

.menu__link {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu__link:hover, .menu__link:focus {
	outline: none;
}

/* 导航文字 */ 

.menu--francisco .menu__link {
	position: relative;
	overflow: hidden;
	padding-top: 8px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	/*padding: 8px 0;*/
	text-align: center;
	color: #028fcc;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.menu--francisco .menu__link:hover, .menu--francisco .menu__link:focus {
	color: #33333;
}

.menu--francisco .menu__item--current .menu__link {
	color: #028fcc;
}

/* 导航文字下面的横线 */ 

.menu--francisco .menu__link::before {
	content: '';
	position: absolute;/* 绝对定位 */
	bottom: 0;
	left: 37.5%;
	width: 25%;
	height: 2px;
	opacity: 0;/* 元素的不透明度，数字越高越不透明 */
	background: #000000;
	-webkit-transform: translate3d(0, -3em, 0);
	transform: translate3d(0, -3em, 0);
	-webkit-transition: -webkit-transform 0s 0.3s, opacity 0.2s;
	transition: transform 0s 0.3s, opacity 0.2s;
}

.menu--francisco .menu__item--current .menu__link::before,.menu--francisco .menu__link:hover::before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.1s;
	transition: transform 0.5s, opacity 0.1s;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.menu--francisco .menu__helper {
	display: block;
	pointer-events: none;
	font-family: "微软雅黑";
	font-size: 18px;
}

.menu--francisco .menu__item--current .menu__helper,.menu__link:hover  .menu__helper {
	-webkit-animation: anim-francisco 0.3s forwards;
	animation: anim-francisco 0.3s forwards;
    color: #000000;
	
}
/* 标题文字翻转效果 */ 

@-webkit-keyframes anim-francisco {
	50% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	51% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes anim-francisco {
	50% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	51% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

/*-- Navbar --*/




/*-- Top-Bar --*/

.top-bar {
	position: absolute;
	width: 100%;
	z-index: 99999;
	padding: 30px 0;
}

/*-- Logo --*/

.logo {
	width: 60%;
	float: left;
}

/*-- 图片上winbest图标在鼠标滑上前的显示效果 --*/

.logo a {
	font-size: 40px;
	font-weight: bold;
	color: #EEE;
	font-style: italic;
}

/*-- 图片上winbest图标在鼠标滑上后的显示效果 --*/

.logo a:hover {
	color: #FFF;
	font-family: "Arial Black", Gadget, sans-serif;
	font-weight: bold;
	font-style: italic;
}

/*-- Logo --*/

/*-- Info --*/

.info {
	width: 40%;
	float: left;
	padding-top: 20px;
}

.info .email, .info .phone {
	width: 50%;
	float: left;
}

.info p {
	color: #EEE;
	font-size: 13px;
}

.info a {
	color: #FFF;
}

.info a:hover {
	color: #009688;
}

.info span.glyphicon {
	margin-right: 5px;
}

/*-- Info --*/


/*-- Top-Bar --*/


/*-- Slider --*/

#slider {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	margin: 0 auto;
}

.rslides_tabs {
	list-style: none;
	padding: 0;
	background: rgba(0,0,0,.25);
	box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
	-moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
	-webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
	font-size: 18px;
	list-style: none;
	margin: 0 auto 50px;
	max-width: 540px;
	padding: 10px 0;
	text-align: center;
	width: 100%;
}

.rslides_tabs li {
	display: inline;
	float: none;
	margin-right: 1px;
}

.rslides_tabs a {
	width: auto;
	line-height: 20px;
	padding: 9px 20px;
	height: auto;
	background: transparent;
	display: inline;
}

.rslides_tabs li:first-child {
	margin-left: 0;
}

.rslides_tabs .rslides_here a {
	background: rgba(255,255,255,.1);
	color: #fff;
	font-weight: bold;
}

.events {
	list-style: none;
}

.callbacks_container {
	position: relative;
	float: left;
	width: 100%;
}

.callbacks {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}

.callbacks li {
	position: absolute;
	left: 0;
	top: 0;
}

.callbacks img {
	position: relative;
	z-index: 1;
	height: auto;
	border: 0;
}

.callbacks .caption {
	display: block;
	position: absolute;
	z-index: 2;
	font-size: 20px;
	text-shadow: none;
	color: #fff;
	left: 0;
	right: 0;
	padding: 10px 20px;
	margin: 0;
	max-width: none;
	top: 10%;
	text-align: center;
}

.callbacks_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	top: 80.7%;
	right: 70%;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 82px;
	width: 29px;
	background: transparent url("../images/cal1.png") no-repeat left top;
	margin-top: 1%;
}

.callbacks_nav:active {
	opacity: 1.0;
}

.callbacks_nav.next {
	right: 70%;
	background-position: right top;
	background: transparent url("../images/cal.png") no-repeat left top;
}

.callbacks2_nav:active {
	opacity: 1.0;
}

.callbacks_nav.prev {
	left: 25%;
	background-position: left top;
}

#slider-pager a {
	display: inline-block;
}

#slider-pager span {
	float: left;
}

#slider-pager span {
	width: 100px;
	height: 15px;
	background: #fff;
	display: inline-block;
	border-radius: 30em;
	opacity: 0.6;
}

#slider-pager .rslides_here a {
	background: #FFF;
	border-radius: 30em;
	opacity: 1;
}

#slider-pager a {
	padding: 0;
}

#slider-pager li {
	display: inline-block;
}
.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: 100%;
}

.rslides li {
	-webkit-backface-visibility: hidden;
	position: absolute;
	display: none;
	left: 0%;
	top: 0;
	width: 100%;
}

.rslides li {
	position: relative;
	display: block;
	float: none;
}

.rslides img {
	height: auto;
	border: 0;
}

.callbacks_tabs {
	list-style: none;
	position: absolute;
	top: 80.5%;
	z-index: 999;
	left: 44.5%;
	padding: 0em 0.6em 1em 0.3em;
	margin: 0;
}

.callbacks_tabs li {
	display: inline-block;
	margin: 0.5em;
}

.callbacks_tabs a {
	visibility: hidden;
}

.callbacks_tabs a:after {
	content: "\f111";
	font-size: 0;
	font-family: FontAwesome;
	visibility: visible;
	display: block;
	width: 12px;
	height: 12px;
	display: inline-block;
	background: #fff;
	border: none;
	border-radius: 50%;
}

.callbacks_here a:after {
	background: #1ca0de;
}

/*-- 滚动图片上面的文字 --*/

.slider-info {
	position: absolute;
	top: 0px;
	z-index: 999;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	text-align: center;
	padding-top: 125px;
}

.slider-info img {
	width: 100px;
	margin: 0 auto;
}

.slider-info h3 {
	font-size: 55px;
	font-weight: 900;
	color: #FFF;
}

.underline {
	height: 3px;
	width: 100px;
	background-color: #FFF;
	margin: 20px auto;
}

.slider-info p {
	font-size: 16px;
	font-weight: 100;
	color: #FFF;
	margin: 0 auto 50px;
	width: 35%;
	line-height: 35px;
}

/*-- Slider --*/


/*-- index-pro --*/

.index-pro {
    padding-top: 32px;
    padding-bottom: 40px;
    font-size: 14px;
    color: #666;
    text-align: left;
    border-top: 1px solid #ddd;
    background: #fff;
}

.top {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.top h2 {
    font-size: 32px;
    font-family: '微软雅黑', sans-serif;
}

.underline1 {
	height: 3px;
	width: 50px;
	background-color: #004393;
	margin: 20px auto 20px;
}

.index-pro ul {
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    margin-top: 25px;
    margin-left: 0;
    margin-right: 0;
}

.index-pro li {
	list-style-type:none;
	float: left;
    width: 33.3333%;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 10px;
}


.pro-con {
    position: relative;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.pro-con img{
   border-radius:6px;
}

.sub-pro {
    display: block;
    position: relative;
    height: 100%;
    background: rgba(225,225,225,.7);
    overflow: hidden;
    width: 100%;
}

.pro-hover{
	font-size:14px;
	color:#fff;
	line-height:20px;
	position:absolute;/*生成绝对定位的元素*/
	width:100%;
	height:100%;
	left:0;
	background:#8cca00;
	z-index:7;/*设置元素的堆叠顺序,仅能在定位元素上奏效（例如 position:absolute;）*/
	text-align:left;
	padding:12px;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
	top: -100%;
}

.pro-hover span {
	color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    padding-top: 23px;
    padding-bottom: 18px;
}

.pro-hover em {
	height: 80px;
	font-style: normal;
	font-family: "微软雅黑",sans-serif;
	font-size: 14px;
    color: #fff;
    line-height: 20px;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.index-pro li h3 {
	float: left;
	font-family: '微软雅黑', sans-serif;
    font-size: 18px;
    height: 48px;
    line-height: 48px;
}

.index-pro h2{
    font-size: 32px;
    font-family: '微软雅黑', sans-serif;
}

.clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}


.index-pro li img {
    display: block;
    width: 100%;
}

.sub-pro h3 {
	font-family: '微软雅黑', sans-serif;
    position: absolute;
    left: 0;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    font-size: 15px;
    color:#002f6f;
    text-align: left;
    width: 100%;
    background-repeat: no-repeat;

}

.pro-hover i {
	color: #fff;
	font-family: "微软雅黑",sans-serif;
	font-style: normal;
    display: block;
    background-repeat: no-repeat;
    background-position: right center;
    margin-top: 28px;
}

.index-pro li:hover .pro-hover{
	top: 0;
	border-radius:6px;

}

/*-- index-pro --*/


/*-- index-case --*/

.gallery {
  width:auto;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
}

.imgtxt {
	width: 33%;
	position: relative;
	float: left;
	padding: 5px;
}

.int {
	padding-top: 25px;
	font-weight: normal;
}

.imgtxt p{
	font-family: "Microsoft Yahei",Helvetica,sans-serif;
	display: block;
    padding: 8px;
    position: relative;
    background: #fff;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    padding-bottom: 25px;
}

.img img {
	border-radius:12px;
	width: 100%;
	transition: .1s transform;
	transform: translateZ(0);
}

.imgtxt:hover {
  z-index: 1;
}

.imgtxt:hover img {
  transform: scale(1.0, 1.0);
  transition: .3s transform;
}

.img:hover img {
  transform: scale(1.0, 1.0);
  transition: .3s transform;
}

.cf:before, .cf:after {
  display: table;
  content: "";
  line-height: 0;
}

.cf:after {
  clear: both;
}

/*-- index-case --*/

/*-- Footer --*/

.footer {
	border-top: 1px solid #ddd;
	background:#efefef;
    padding-top: 27px;
}

.foot-link {
    overflow: hidden;
    float: left;
    padding-bottom: 15px;
    display: block;
}

.foot-link dl{ 
	float:left;
	margin-right: 90px;
}

.foot-link dl:last-child{ 
	margin:0
}

.foot-link dl dt a{ 
	font-size:16px; 
	color:#666; 
	line-height:40px; 
	display:block;
}

.foot-link dl dd a{ 
	display:block; 
	font-size:13px; 
	color:#666; 
	line-height:24px;
}

.foot-bottom {
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 13px;
    padding: 13px 0;
}

.foot-contact {
    padding-bottom: 15px;
    float: right;
}

.foot-right h2 {
	text-align: left;
	margin: 0;
	font-weight: normal;
    font-size: 16px;
    color: #666;
    padding-bottom: 30px;
}

.foot-right .p01 {
    background-image: url(../images/contact01.jpg);
}

.foot-right .p02 {
    background-image: url(../images/contact02.jpg);
}

.foot-right .p03 {
    background-image: url(../images/contact04.jpg);
}

.foot-right p {
	padding-left: 40px;
    font-size: 12px;
    line-height: 20px;
    color: #666;
    background-repeat: no-repeat;
    margin-top: 4px;
    margin-bottom: 4px;
}

.foot-right p a {
    color: #666;
}

.foot-bottom p{
	text-align: left;
}

/*-- Footer --*/


/*-- Responsive-Code --*/

@media screen and (max-width:1920px) {
	.slider-info p {
		width: 30%;
	}
}

@media screen and (max-width:1440px) {
	.about, .skills, .services, .portfolio, .team, .clients, .contact {
		padding: 75px 0;
	}
}

@media screen and (max-width:1280px) {
	.callbacks_tabs {
		left: 43%;
	}
	.callbacks_nav {
		top: 81.5%;
	}
	.slider-info {
		padding-top: 225px;
	}
	.slider-info h3 {
		font-size: 50px;
	}
	.slider-info p {
		width: 45%;
	}
	.slider-info img {
		width: 80px;
	}
	
	.underline1 {
		margin-bottom: 50px;
	}
	.about p, .services p, .team p, .contact p {
		font-size: 15px;
		width: 70%;
	}
	p.about-p-1, p.about-p-2, .services-item p, .team-top-text p, .contact-grid p {
		width: 100%;
		font-size: 14px;
	}
	.services-item {
		padding-bottom: 0;
		margin-bottom: 0;
	}
}

@media screen and (max-width:1024px) {
	.logo {
		width: 50%;
	}
	.logo a {
		font-size: 35px;
	}
	.info {
		width: 50%;
		padding-top: 15px;
	}
	.slider-info {
		padding-top: 175px;
	}
	.slider-info h3 {
		font-size: 45px;
	}
	.underline {
		margin: 15px auto;
	}
	.slider-info p {
		width: 50%;
		font-size: 15px;
		line-height: 30px;
		margin-bottom: 30px;
	}
	.callbacks_tabs {
		left: 41%;
	}
	.callbacks_nav.prev {
		left: 22%;
	}
	.about, .skills, .services, .portfolio, .team, .clients, .contact {
		padding: 50px 0;
	}
	.about-info h3 {
		text-align: left;
		margin-bottom: 30px;
	}
	p.about-p-1, p.about-p-2 {
		margin-bottom: 10px;
	}
	p.about-p-2 {
		margin-bottom: 50px;
	}
	.skills h4 {
		margin: 0 0 10px;
	}
	.skills-bars h5 {
		margin-bottom: 0;
	}

	.underline1 {
		margin-bottom: 35px;
	}
	.services-item {
		padding: 20px 0 0px;
	}
	.services-item img {
		width: 80px;
	}
	.underline2 {
		margin: 10px auto;
	}
	.portfolio section {
		margin-top: 50px;
	}
	.tabs nav a span {
		font-size: 18px;
	}
	.team-top-text {
		height: 225px;
	}
	.team h4 {
		font-size: 20px;
	}
	.team h5 {
		font-size: 16px;
	}
	.team-top-text p {
		line-height: 23px;
	}
	.view .mask, .view .content {
		height: 225px;
	}
	ul.social {
		margin: 90px 0 0 0;
	}
	.clients h4 {
		font-size: 28px;
		margin: 25px 0 30px;
	}
	.clients p {
		font-size: 15px;
		padding: 0 50px;
	}
}

@media screen and (max-width:991px) {
	.top-bar {
		padding: 20px 0;
	}
	.info {
		text-align: right;
	}
	.info p {
		font-size: 12px;
	}
	.top-bar .container, .navbar .container, .about .container, .skills .container, .services .container, .team .container, .clients .container, .contact .container {
		width: 100%;
	}
	.about h1, .services h2, .portfolio h3, .team h3, .clients h3, .contact h3 {
		font-size: 35px;
	}
	.about p, .services p, .team p, .contact p {
		font-size: 14px;
		width: 75%;
	}
	p.about-p-1, p.about-p-2, .services-item p, .team-top-text p, .contact-grid p {
		width: 100%;
	}
	.skills .progress-bar {
		padding-left: 225px;
	}
	.service-grid {
		padding: 0 5px;
	}
	.tabs nav {
		margin-bottom: -30px;
	}
	.team-top-text {
		height: 226px;
	}
	.team-top-text p {
		font-size: 13px;
	}
	.flexslider img {
		width: 125px;
	}
	.clients h4 {
		font-size: 25px;
		margin: 20px 0;
	}
	.clients p {
		font-size: 14px;
		padding: 0 25px;
		line-height: 30px;
	}
	.contact h4 {
		margin-bottom: 10px;
	}
	.contact-grid p {
		font-size: 13px;
	}
	.contact h5 {
		margin-bottom: 5px;
	}
	.address ul li {
		font-size: 13px;
		line-height: 22px;
	}
}

@media screen and (max-width:900px) {
	.slider-info p {
		width: 55%;
		font-size: 14px;
		line-height: 25px;
		margin-bottom: 15px;
	}
	.slider-info img {
		width: 75px;
	}
	.callbacks_tabs {
		left: 40%;
	}
	.callbacks_nav {
		top: 83%;
	}
	.callbacks_nav.prev {
		left: 20%;
	}
	.about-info h3 {
		margin-bottom: 15px;
	}
	p.about-p-1, p.about-p-2 p {
		width: 100%;
		line-height: 27px;
		margin-bottom: 5px;
	}
	p.about-p-2 {
		margin-bottom: 28px;
	}
	.skills-grid {
		padding: 0 5px;
	}
	.skills .progress-bar {
		padding-left: 210px;
	}
	.team-top-text {
		height: 203px;
	}
	.team h4 {
		margin: 10px 0 15px;
	}
	.team h5 {
		margin-bottom: 15px;
	}
	.view .mask, .view .content {
		height: 203px;
	}
	ul.social {
		margin: 70px 0 0 0;
	}
	.contact-email, .contact-phone {
		margin: 15px 0;
	}
}

@media screen and (max-width:853px) {
	.callbacks_tabs {
		left: 39.1%;
	}
	p.about-p-1, p.about-p-2, .services-item p, .team-top-text p, .contact-grid p {
		font-size: 13px;
	}
	p.about-p-1, p.about-p-2 p {
		line-height: 25px;
	}
	.skills .progress-bar {
		padding-left: 200px;
	}
	.progress {
		height: 18px;
		margin-bottom: 15px;
	}
	.service-grid {
		padding: 0 10px;
	}
	.team h4 {
		margin: 5px 0 10px;
		font-size: 19px;
	}
	.team h5 {
		margin-bottom: 10px;
		font-size: 15px;
	}
	.team-top-text p {
		line-height: 22px;
	}
	.team-top-text {
		height: 191.5px;
	}
	.view .mask, .view .content {
		height: 191px;
	}
	.contact input.more_btn {
		margin-top: 5px;
	}
}

@media screen and (max-width:800px) {
	.slider-info {
		padding-top: 125px;
	}
	.callbacks_tabs {
		left: 38.5%;
	}
	.about p, .services p, .team p, .contact p {
		width: 85%;
		line-height: 28px;
	}
	.about-info {
		padding: 0;
	}
	.about-image {
		padding: 0 5px;
	}
	p.about-p-2 {
		margin-bottom: 25px;
		line-height: 25px;
	}
	.skills .progress-bar {
		padding-left: 185px;
	}
	.team-top-text {
		padding: 0 5px;
		height: 178px;
	}
	.team h4 {
		margin: 10px 0 15px;
	}
	.team h5 {
		margin-bottom: 15px;
	}
	.view .mask, .view .content {
		height: 178px;
	}
}

@media screen and (max-width:768px) {
	.navbar-brand {
		margin: .5em 0;
	}
	.navbar-default .navbar-toggle {
		border-color: #212121;
	}
	.navbar-default .navbar-toggle .icon-bar {
		background-color: #212121;
	}
	.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
		background-color: transparent;
	}
	.navbar-toggle {
		margin: 1.3em 0 0;
	}
	.navbar-default .navbar-collapse, .navbar-default .navbar-form {
		border: none;
	}
	.navbar-collapse {
		padding: 0;
		box-shadow: none;
	}
	.navbar-nav {
		margin: 0;
		background: #212121;
		padding:0 0 1em;
	}
	p.about-p-1, p.about-p-2, .services-item p, .team-top-text p, .contact-grid p {
		width: 100%;
	}
	.skills .progress-bar {
		padding-left: 175px;
	}
	.team h4 {
		margin: 5px 0 10px;
		font-size: 18px;
	}
	.team h5 {
		margin-bottom: 10px;
	}
	.team-top-text {
		height: 170px;
	}
}

@media screen and (max-width:767px) {
	.navbar-default .navbar-toggle {
		border-color: #212121;
		margin: 10px;
		padding: 10px 8px;
	}
	.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
		background-color: rgba(0, 0, 0, 0.43);
	}
	li.menu__item {
		width: 10%;
		margin: 0 auto;
	}
	.menu--francisco .menu__link {
		padding: 10px 0;
	}
	.about-grid {
		width: 50%;
		float: left;
	}
	.skills-grid {
		width: 50%;
		float: left;
	}
	.service-grid {
		width: 33.3%;
		float: left;
	}
	.gallery-item {
		width: 25%;
		float: left;
	}
	.team-top {
		padding: 0 5px;
		text-align: left;
		width: 25%;
		float: left;
	}
	.team-top-text p {
		line-height: 22px;
	}
	.contact-grid {
		width: 50%;
		float: left;
	}
	.contact input.more_btn {
		margin-top: 0;
	}
}

@media screen and (max-width:736px) {
	.logo {
		width: 40%;
	}
	.logo a {
		font-size: 30px;
	}
	.info {
		width: 60%;
		padding-top: 12px;
	}
	.slider-info p {
		width: 60%;
	}
	.slider-info h3 {
		font-size: 40px;
	}
	.slider-info img {
		width: 60px;
	}
	.callbacks_tabs {
		left: 37.5%;
	}
	.navbar-header {
		text-align: center;
	}
	.navbar-toggle {
		position: relative;
		float: none; 
		text-align:center;
	}
	.skills .progress-bar {
		padding-left: 170px;
	}
	.team h4 {
		margin: 7px 0;
		font-size: 17px;
	}
	.team h5 {
		margin-bottom: 5px;
	}
	.team-top-text {
		height: 162px;
	}
	.view .mask, .view .content {
		height: 163px;
	}
	ul.social {
		margin: 60px 0 0 0;
	}
}

@media screen and (max-width:667px) {
	.slider-info {
		padding-top: 100px;
	}
	.slider-info p {
		font-size: 13px;
	}
	.callbacks_tabs {
		left: 36%;
	}
	.callbacks_nav {
		top: 84%;
	}
	.callbacks_nav.prev {
		left: 15%;
	}
	.callbacks_nav.next {
		right: 75%;
	}
	.about p, .services p, .team p, .contact p {
		width: 90%;
		font-size: 13px;
	}
	p.about-p-1, p.about-p-2, .services-item p, .team-top-text p, .contact-grid p {
		width: 100%;
	}
	.skills .progress-bar {
		padding-left: 150px;
	}
	.service-grid {
		padding: 0 2px;
	}
	.team h4 {
		margin: 5px 0;
		font-size: 15px;
	}
	.team h5 {
		font-size: 13px;
	}
	.team-top-text p {
		font-size: 12px;
		line-height: 20px;
	}
	.team-top-text {
		height: 145px;
	}
	.view .mask, .view .content {
		height: 145px;
	}
	ul.social li a {
		display: inline-block;
		width: 30px;
		height: 30px;
		background: url("../images/img-sprite.png") no-repeat 0px 0px;
		background-size: 200px;
	}
	ul.social li a.facebook:hover {
		background-position: 0px -33px;
	}
	ul.social li a.twitter {
		background-position: -35px 0px;
	}
	ul.social li a.twitter:hover {
		background-position: -35px -33px;
	}
	ul.social li a.googleplus {
		background-position: -69px 0px;
	}
	ul.social li a.googleplus:hover {
		background-position: -69px -33px;
	}
	.clients p {
		font-size: 13px;
		padding: 0 10px;
		line-height: 25px;
	}
	.contact-email, .contact-phone {
		margin: 10px 0;
	}
}

@media screen and (max-width:640px) {
	.logo a {
		font-size: 25px;
	}
	.info p {
		font-size: 11px;
	}
	.slider-info h3 {
		font-size: 30px;
	}
	.callbacks_tabs a:after {
		width: 8px;
		height: 8px;
	}
	.callbacks_tabs {
		left: 37%;
	}
	.menu__item {
		padding: 6px 0;
	}
	.progress {
		height: 15px;
	}
	.skills .progress-bar {
		padding-left: 140px;
		line-height: 15px;
	}
	.team-top {
		width: 50%;
	}
	.team-top-text {
		height: 286.5px;
		padding-left: 20px;
	}
	.team h4 {
		margin: 20px 0;
		font-size: 25px;
	}
	.team h5 {
		font-size: 18px;
		margin-bottom: 25px;
	}
	.team-top-text p {
		font-size: 13px;
		line-height: 25px;
	}
	.view .mask, .view .content {
		height: 286.5px;
	}
	ul.social {
		margin: 130px 0 0 0;
	}
}

@media screen and (max-width:568px) {
	.logo {
		width: 37%;
	}
	.logo a {
		font-size: 20px;
	}
	.info {
		width: 63%;
		padding-top: 7px;
	}
	.slider-info {
		padding-top: 85px;
	}
	.underline {
		margin: 10px auto;
	}
	.slider-info p {
		width: 70%;
		margin-bottom: 10px;
	}
	.slider-info img {
		width: 50px;
	}
	.callbacks_tabs {
		left: 35.5%;
	}
	li.menu__item {
		width: 30%;
	}
	.about, .skills, .services, .portfolio, .team, .clients, .contact {
		padding: 30px 0;
	}
	.about h1, .services h2, .portfolio h3, .team h3, .clients h3, .contact h3 {
		font-size: 30px;
	}
	.about p, .services p, .team p, .contact p {
		width: 100%;
		line-height: 25px;
	}
	p.about-p-1, p.about-p-2, .services-item p, .team-top-text p, .contact-grid p {
		width: 100%;
	}
	p.about-p-1, p.about-p-2 {
		line-height: 25px;
	}
	.skills .progress-bar {
		padding-left: 120px;
	}
	.team-top-text {
		height: 250.5px;
		padding-left: 10px;
	}
	.team h4 {
		margin: 10px 0 20px;
	}
	.view .mask, .view .content {
		height: 250.5px;
	}
	ul.social {
		margin: 120px 0 0 0;
	}
	.contact input.text, .contact textarea {
		width: 100%;
	}
	.contact textarea {
		height: 150px;
	}
}

@media screen and (max-width:533px) {
	.logo {
		width: 50%;
	}
	.info {
		width: 50%;
		padding-top: 0;
	}
	.info .email, .info .phone {
		width: 100%;
	}
	.info p {
		line-height: 25px;
	}
	.callbacks_tabs {
		left: 34.5%;
	}
	.callbacks_nav.prev {
		left: 12%;
	}
	.about-info {
		width: 100%;
	}
	.about-image {
		width: 90%;
	}
	.about-image {
		width: 90%;
		margin: 30px 25px;
	}
	.skills-grid {
		width: 85%;
		margin: 20px 40px;
		float: left;
	}
	.skills .progress-bar {
		padding-left: 200px;
	}
	.service-grid {
		width: 50%;
	}
	.team-top-text {
		height: 233px;
	}
	.view .mask, .view .content {
		height: 233px;
	}
	ul.social {
		margin: 110px 0 0 0;
	}
	.team h4 {
		font-size: 24px;
	}
	.contact-grid p {
		font-size: 12px;
	}
}

@media screen and (max-width:480px) {
	.top-bar {
		padding: 5px 0;
	}
	.slider-info {
		padding-top: 70px;
	}
	.slider-info p {
		width: 90%;
		font-size: 12px;
		line-height: 20px;
	}
	.slider-info img {
		width: 40px;
	}
	.callbacks_tabs li {
		margin: 0.5em 0.2em;
	}
	.callbacks_nav.prev {
		left: 10%;
	}
	.callbacks_tabs {
		left: 37.5%;
	}
	.skills .progress-bar {
		padding-left: 170px;
	}
	.services-item img {
		width: 60px;
	}
	.services-item h4 {
		font-size: 18px;
	}
	.service1 .services-item, .service2 .services-item {
		padding-top: 0;
		margin-top: 0;
	}
	.tabs nav a span {
		font-size: 16px;
	}
	.team h4 {
		font-size: 21px;
	}
	.team-top-text {
		height: 206px;
	}
	.view .mask, .view .content {
		height: 206px;
	}
	ul.social {
		margin: 95px 0 0 0;
	}
	.clients p {
		padding: 0;
	}
	.footer {
		padding: 20px 0;
	}
	.contact h4 {
		font-size: 23px;
	}
	.copyright p {
		font-size: 13px;
	}
}

@media screen and (max-width:414px) {
	.callbacks_nav {
		display: none;
	}
	.callbacks_tabs {
		display: none;
	}
	.slider-info h3 {
		font-size: 25px;
	}
	.about-image {
		margin: 30px 0px;
	}
	.skills-grid {
		margin: 20px 30px;
	}
	.skills .progress-bar {
		padding-left: 150px;
	}
	.portfolio h3 {
		margin-bottom: 5px!important;
	}
	.gallery-item {
		width: 50%;
	}
	.team-top-text {
		height: 173px;
		padding-left: 5px;
	}
	.team h4 {
		font-size: 18px;
		margin: 5px 0 10px;
	}
	.team h5 {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.view .mask, .view .content {
		height: 173px;
	}
	ul.social {
		margin: 75px 0 0 0;
	}
	.clients h4 {
		font-size: 20px;
		margin: 7px 0;
	}
	.client h5 {
		font-size: 14px;
	}
	.contact-grid {
		width: 100%;
		float: left;
		padding: 0;
	}
	.contact h5 {
		font-size: 16px;
	}
	.contact input.text, .contact textarea {
		padding: 15px 0;
		margin-bottom: 25px;
	}
	.contact textarea {
		height: 100px;
	}
	.contact input.more_btn {
		margin-bottom: 20px;
	}
	.contact-grid p {
		font-size: 13px;
	}
	.contact-email, .contact-phone {
		margin: 20px 0;
	}
	.copyright p {
		line-height: 25px;
		padding: 0 10px;
	}
}

@media screen and (max-width:384px) {
	.top-bar .container {
		padding: 0 5px;
	}
	.logo a {
		font-size: 18px;
	}
	.slider-info h3 {
		font-size: 23px;
	}
	li.menu__item {
		width: 35%;
	}
	.about p, .services p, .team p, .contact p {
		width: 100%;
		line-height: 23px;
		font-size: 12px;
	}
	p.about-p-1, p.about-p-2, .services-item p, .team-top-text p, .contact-grid p {
		font-size: 13px;
	}
	.about-info h3 {
		margin-bottom: 15px;
		font-size: 1.4em;
	}
	.about a {
		padding: 7px 25px;
	}
	.skills-grid {
		margin: 20px 10px;
	}
	.skills .progress-bar {
		padding-left: 130px;
	}
	.tabs nav a span {
		font-size: 15px;
	}
	#portfolio {
		padding: 30px 0 0 0;
	}
	.team h4 {
		font-size: 17px;
		margin: 5px 0 5px;
	}
	.team h5 {
		font-size: 13px;
		margin-bottom: 3px;
	}
	.team-top-text p {
		line-height: 22px;
	}
	.team-top-text {
		height: 158px;
	}
	.view .mask, .view .content {
		height: 159px;
	}
	ul.social {
		margin: 65px 0 0 0;
	}
	#contact {
		padding: 30px 0 10px 0;
	}
	.footer {
		padding: 15px 0;
	}
}

@media screen and (max-width:375px) {
	.service-grid {
		width: 100%;
		padding: 0 20px;
	}
	.service1 .services-item, .service2 .services-item {
		padding: 20px 0 0px;
	}
	.team-top {
		width: 100%;
		padding: 0;
	}
	.team-top-text {
		height: 200px;
		padding: 20px;
	}
	.team h4 {
		font-size: 20px;
		margin: 5px 0 15px;
	}
	.team h5 {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.view .mask, .view .content {
		height: 100%;
	}
	ul.social {
		margin: 160px 0 0 0;
	}
}

@media screen and (max-width:375px) {
	.slider-info h3 {
		font-size: 20px;
	}
	.underline {
		margin: 8px auto;
	}
	.slider-info p {
		width: 95%;
		font-size: 11px;
	}
	.slider-info img {
		width: 35px;
	}
	.skills .progress-bar {
		padding-left: 125px;
	}
	.service-grid {
		padding: 0 15px;
	}
}

@media screen and (max-width:320px) {
	.logo {
		width: 43%;
	}
	.logo a {
		font-size: 16px;
	}
	.info {
		width: 57%;
	}
	.info p {
		font-size: 10px;
		line-height: 20px;
	}
	.slider-info {
		padding-top: 60px;
	}
	.underline {
		margin: 5px auto;
	}
	.slider-info p {
		margin-bottom: 5px;
	}
	.slider-info img {
		width: 30px;
	}
	.menu--francisco .menu__link {
		padding: 5px 0;
	}
	.skills-grid {
		margin: 10px 0;
	}
	.skills .progress-bar {
		padding-left: 105px;
	}
	.tabs nav a span {
		font-size: 14px;
	}
	ul.social {
		margin: 130px 0 0 0;
	}
}

/*-- Responsive-Code --*/
@media (min-width: 1259px){
	.containerpro{
		margin:0px auto; 
		max-width:1260px; 
		padding:0
}
