﻿/*--
    Author: W3Layouts
    Author URL: http://w3layouts.com
    License: Creative Commons Attribution 3.0 Unported
    License URL: http://creativecommons.org/licenses/by/3.0/
--*/
/*-- Reset-Code --*/

body {
    padding: 0;
    margin: 0;
    background: ;
    font-family: 'Open Sans', sans-serif, '微軟正黑體', 'Microsoft Jhenghei', '微软雅黑';
}
body a {
    color:#005ca7;
    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;
}
body a:active {
    color : #ff9900;
    text-decoration: none;
}
body a:hover {
    color : #ff9900;
    text-decoration: none;
}
body a:focus, a:hover {
    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;
    font-family: 'Open Sans', sans-serif, '微軟正黑體', 'Microsoft Jhenghei', '微软雅黑';
    text-transform: capitalize;
}
p {
    margin: 0;
    font-family: 'Open Sans', sans-serif, '微軟正黑體', 'Microsoft Jhenghei', '微软雅黑';
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style-type:none;
}
label {
    margin: 0;
}
a:focus, a:hover {
    text-decoration: none;
    outline: none;
}
/*-- //Reset-Code --*/
/*-- header --*/ 
.w3-start {
    background-color: rgba(31, 156, 214, 0.99);
    height: 80px;
    color: white;
}
.container.nav1 {
    text-align: right;
    padding-top: 10px;
}
.w3ls-navbar {
    background-color: transparent;
    border: none;
    /* color: white; */
}
.nav1 a {
    color: #f9ff00;
}
.nav1 span.fa {
    padding: 0 8px;
    color:#1ff759;
}
a.navbar-brand.w3-logo {
    color: white;
    position: absolute;
    top: -15px;
}
span.big {
    font-weight: bold;
    font-size: 25px;
}
.brand1 span.br {
    color: #35ff4f;
}
.brand1 span.br:hover{
    color:yellow;
}
.brand1 span.bb {
    color: #fff;

}
.navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
    color: #f9ff00;
    background-color: transparent;
}
.navbar-inverse .navbar-nav>li>a {
    color: #fff;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.navbar {
  padding: 0;
}

.main-navigation .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;  
  color: #413e66;
  white-space: nowrap;
  transition: 0.3s;
}


.navbar .dropdowna ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  text-align: left;
}

.navbar .dropdowna ul li {
  min-width: 200px;  
  /*-- //以下兩行新增否則會繼承之前的內容 --*/
  display: block;
  margin: 0;
}

.navbar .dropdowna ul a {
  padding: 10px 20px;
  text-transform: none;  
}

.navbar .dropdowna ul a:hover, .navbar .dropdowna ul .active:hover, .navbar .dropdowna ul li:hover > a {
  color: #1bb1dc;
}

.navbar .dropdowna:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdowna .dropdownb ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdowna .dropdownb:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/*-- //Menu左右顯示 --*/
@media (max-width: 1366px) {
  .navbar .dropdowna .dropdownb ul {
    left: -70%;
  }
  .navbar .dropdowna .dropdownb:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #434175;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(48, 47, 84, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #434175;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5a5af3;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #5a5af3;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*

.container.nav2 {
    display: flex;

}
.brand1 {
    flex: 1;
    position: absolute;
}

.menu {
    flex: 5;
    text-align:right;
}
.menu ul{
    padding:7px 0;
}
.menu li {
    display: inline-block;
    padding: 0 5px;
    text-align: center;
        width: auto;
}
.menu a:hover {
    color: red;
   
}
.menu a {
    margin: auto 0 0 2%;
    color: white;
} */
/*-- //Navigation --*/
/*-- //banner caurosel --*/
.carousel span.fa {
    top: 50%;
    font-size: 50px;
        color: #d20808;
    position: absolute;
}
.item {
    height: 700px;
}
.carousel-caption {
    top: 30%;
    padding: 0;
}
.carousel-caption h3,.carousel-caption h1 {
    margin-bottom: 3%;
    font-size: 60px;
    color: #ffffff;
    text-shadow: 2px 2px rgba(58, 58, 60, 0.65);
    font-weight: bold;
}
.carousel-caption p {
font-size: 45px;
}

.carousel-caption p img{
padding: 20px;
}
.carousel-caption a {
    background-color: #0957ff;
    border-radius: 0 10px 10px 0;
    padding: 9px;
    border: 1px solid #0957ff;
    /* margin-left: -3px; */
    color: yellow;
    position: absolute;
    top: 25%;
    left: 51%;
}
.carousel-caption input[type="email"] {
    padding: 9px 1%;
    width: 21%;
    color: black;
    border-radius: 10px 0 0 10px;
    border: 2px solid #0957ff;
    position: absolute;
    left: 30%;
    top: 25%;
    outline: 0;
}
.w3ls-mail input[type="submit"] {
    background: none;
    border: none;
    outline: 0;
}
/* 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;
  letter-spacing: -.05rem;
}

.carousel-caption p {
    color: #00577F;    
  }



/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    font-size: 4.5rem;
    /*font-weight: bold;*/
    line-height: 0;    
  }
  
  .carousel-caption .pimg{
    font-size: 4.5rem;
    line-height: 5;    
  }
  
  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
/*-- //banner caurosel --*/
/*-- to-top --*/
#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 24px;
    right: 1%;
    overflow: hidden;
    z-index: 999; 
    width: 64px;
    height: 64px;
    border: none;
    text-indent: 100%;
    background: url("../images/arrow1.png") no-repeat 0px 0px;
}
#toTopHover {
    width: 64px;
    height: 64px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}
/*-- //to-top --*/
/*-- welcome section --*/
.agileits-welcome {
    color: #fdfcfc;
    background-color: #00a0b0;
    padding: 5% 0px;
}

.w3-patent {
    display: flex;
}



.agileits-patent {
	
	background: url('../images/patent.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 560px;	
}



.btn_patent {
	
	background-color: transparent;
	color: #000000;
	font-size: 40px;
	font-weight: 600;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	border: 1px solid #000000;	
	text-align: center;
	position: absolute;    
    
	margin-top:450px;
	margin-left:30%;
    
}

.btn_patent:hover, .btn_patent:focus {
	background-color: #000000;
	color: #fff;
}


.modal-content {
    color: black;
}
.w3-text p {
    line-height: 2.5;
    text-align: justify;
    margin: 3% 3% 2% 0;
}
.modal-body img {
    margin: auto;
}
.modal-header {
     padding: 5px 15px;
     font-size: 20px;
}
span.w3ag {
    color: #fb0303;
    font-weight: bold;
    font-size: 35px;
    vertical-align: middle;
}
.w3-welcome {
    display: flex;
}
.w3-text button.btn.btn-info.btn-lg, .w3-image a {
    color: white;
    background-color: #e43400;
    padding: 1% 2%;
    /* margin-top: 3%; */
    border-radius: 5px;
    /*
    border-bottom: 3px solid #e2f109;
    */
}
.w3-text button.btn.btn-info.btn-lg:hover, .w3-image a:hover {
    background-color: white;
    color: #e43400;
    border-bottom-color: lightgray;
}
.w3-text {
    line-height: 2.7;
}
.bestimg {
    margin: 3% 0;
}
.bestimg img {
    height: 300px;
    border-radius: 5px;
}
.w3-image p {
    margin: 5% 0;
}
/*-- //welcome section --*/
/*-- Services section --*/
.w3ls-service {
    padding: 4% 0;
    line-height: 3;
}
/*
.img-responsive {
    background: url('../images/5.jpg');
    min-height: 301px;
    background-size: cover;
}
.img2.img-responsive {
    background: url('../images/office6.jpg');
    background-size: cover;
}
.img3.img-responsive {
    background: url('../images/office4.jpg');
    background-size: cover;
} */
.row-agile h2 {
    margin: 4% 0;
}
.row-agile p {
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
}
.row-agile .part1:hover {
    background-color: cornsilk;
}
.row-agile .part1 {
    padding: 5px;
    /* margin-right: 0px; */
    transition: 0.5 all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
.row-agile button.btn.btn-secondary.details:hover {
    color: #fff;
    background: #0b9fa4;
    /* border-bottom-width: 3px; */
}
.row-agile button.btn.btn-secondary.details {
    border-radius: 5px;
    color: #0b9fa4;
    border-color: #0b9fa4;
    padding: 9px 20px;
    background-color: transparent;
}
.row-agile a.btn.btn-secondary.details:hover {
    color: #fff;
    background: #0b9fa4;
    /* border-bottom-width: 3px; */
}
.row-agile a.btn.btn-secondary.details {
    border-radius: 5px;
    color: #0b9fa4;
    border-color: #0b9fa4;
    padding: 9px 20px;
    background-color: transparent;
}

.w3ls-service p.center {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: bold;
}
.center {
    text-align: center;
}
/*-- //Services section --*/
/*-- gallery --*/
.w3ls-galley {
    padding: 4% 0;
    line-height: 3;
}
.agilecount h3.center {
    padding: 3% 0;
    color: #086969;
    font-weight: bold;
}
.resp-tab-content {
    border: 1px solid #5AB1D0;
    border-top-color: #5AB1D0;
    height: 320px;
}
h3.center {
    font-size: 40px;
    text-transform: capitalize;
    font-weight: bold;
    color: #005ca7;
}
.taba {
    padding: 0;
}
.chocolat-image img {

    padding: 5px;
}

div#tab2, div#tab3, div#tab4 {

}
a.tabs {
    font-size: 20px;
}
.chocolat-wrapper .chocolat-bottom {
    background: rgba(234, 10, 10, 0.4);
}
/*-- //gallery --*/
/*-- Our Team --*/
.agile-team {
    background-color: rgba(253, 145, 2, 0.53);
}
.w3ls-team {
    padding: 5% 0;
    background-color: rgba(250, 235, 215, 0.37);
}
.team {
    margin-top: 3%;
    text-align: center;
    font-size: 25px;
}
.team h4 {
    padding: 2% 0;
    color: red;
    font-weight: bold;
    text-transform: uppercase;
}
.team p {
    text-transform: uppercase;
}
.team img {
  /*  height: 300px; */
  margin:auto;
}
.team span.fa.fa-facebook-square {
    color: #3b5998;
}
.team span.fa.fa-google-plus-square {
    color: #e01515;
}
.team span.fa.fa-twitter-square {
    color: #55acee;
}
/*-- //Our Team --*/

/*-- number scroll section --*/
.counter1 {
    background-color: deepskyblue;
    position: absolute;
    width: 35%;
    padding: 2% 2%;
    right: 10%;
    color: white;
}
.c1 {
    width: 32%;
    display: inline-block;
    background-color: darkcyan;
    text-align: center;
    padding: 6% 0;
    margin-top:5%;
}
span.numscroller {
    font-size: 35px;
}
.agilecount {
    background-color: beige;
    min-height: 600px;
    background: url(../images/counter.jpg);
    background-size: cover;
}
/*-- //number scroll section --*/
/*-- grids section --*/
.w3-service-pd1 {
    padding: 96px 0 0px 0;
    background-color: aliceblue;
}


.w3-service {
    padding: 3% 0;
    background-color: aliceblue;
}
.w3ls-servicegrid {
    padding: 2% 0;
    display: flex;
}
.text {
    flex: 1;
    padding: 3%;
}
.text h3 {
    font-weight: bold;
    margin-bottom: 10px;
}
.text p {
    text-align: justify;
}
.grids {
    flex: 1;
}
.gridbox {
    text-align: center;
    width: 25%;
    font-size: 20px;
    height: 120px;
    margin: 10px;
    display: inline-block;
    /* line-height: 3; */
    background-color: antiquewhite;
    /* color: red; */
}
.gridbox p {
    font-size: 18px;
    text-transform: uppercase;
}
.gridbox span.fa {
    color: red;
    font-size: 30px;
    padding: 20% 0 3% 0;
}
/*-- //grids section --*/
/*-- map section --*/
iframe {
    border: none;
    width: 100%;
    /* margin: auto; */
    height: 350px;
}
/*-- //map section --*/
/*-- Contact section --*/
.w3ls-contact {
    background-color: black;
    color: white;
    line-height: 3;
}
.w3ls-contact h4 {
    text-transform: uppercase;
}
.form h4 {
    margin-bottom: 4%;
}
.w3ls-contact span.fa {
    color: #00A2E8;
    font-size: 18px;
    transition:0.5 all;
    margin-right: 12px;
}
.w3ls-contact span.fa:hover{
    color:#faff22;
}
.form input[type="text"],.form input[type="email"] {
    width: 100%;
    color: black;
    margin-bottom: 5%;
    padding: 0 15px;
}
.form textarea {
    width: 100%;
    color: black;
    padding: 0 15px;
}
.form input[type="SUBMIT"] {
    color: white;
    background-color: #e43400;
    border-radius: 10px;
    
    /* margin-top: 3%; */
    border-radius: 5px;
    /*
    border-bottom: 3px solid #e2f109;
    */
}
.form input[type="SUBMIT"]:hover {
    background-color: white;
    color: #e43400;
    border-bottom-color: lightgray;
    /*
    border: 2px solid #0af31d;
    */
}
.agile-contact {
    padding: 4% 0 2% 0;
}
.agile-contact a {
    color: white;
}
.agile-contact a:hover {
    color: yellow;
}
/*-- //Contact section --*/
/* footer */

.footer {
    text-align: center;
    color: white;
    background-color: black;
}
.footer hr {
    margin: 0;
}
.footer a:hover {
    color: yellow;
}
.footer p{
    padding:1.2% 0;
}



/* HEADER STLYING */
.site-header {
  position: fixed	;
  top: 0;
  display: block;
  /* 上排Header高度 */
  padding: 6px 0;
  width: 100%;
  background-color: white;
  border-bottom: 2px solid #f3f3f3;
  z-index: 100;
}



/* Mobile Menu Styling */
.mobile-menu-trigger {
  position: absolute;
  right: 10px;
  top: -30px;
  display: block;
  background-color: #e04d47;
  width: 35px;
  height: 35px;
  text-align: center;
}
.mobile-menu-trigger i {
  font-size: 15px;
  line-height: 35px;
  color: white;
}

.mobile-nav {
  position: fixed;
  left: 0;
  width: 220px;
  height: 100%;
  background: #373737;
  border-top: 1px solid #4f4f4f;
  z-index: 9999;
  -webkit-transition: all .25s ease-out 0s;
  transition: all .25s ease-out 0s;
}
.mobile-nav.show-nav {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  top: 0;
}
.mobile-nav.hide-nav {
  -webkit-transform: translateX(-220px);
  transform: translateX(-220px);
  top: 0;
}
.mobile-nav ul {
  border-bottom: 1px solid #484848;
}
.mobile-nav ul li a {
  display: block;
  padding: 1em 5%;
  color: gray;
  border-top: 1px solid #4f4f4f;
  border-bottom: 1px solid #292929;
}
.mobile-nav ul li a:hover {
  background-color: #e04d47;
  color: white;
}
.mobile-nav .mobile-social-icons {
  border: none;
  width: 100%;
  padding: 30px 0 0 0;
  text-align: left;
}
.mobile-nav .mobile-social-icons li {
  margin-left: 10px;
  display: inline-block;
}
.mobile-nav .mobile-social-icons li a {
  padding: 0;
  display: block;
  background: #5c5c5c;
  width: 35px;
  height: 35px;
  text-align: center;
}
.mobile-nav .mobile-social-icons li a:hover {
  background: #e04d47;
}
.mobile-nav .mobile-social-icons li a i {
  color: white;
  font-size: 15px;
  line-height: 35px;
}

.mobile-menu-close {
  padding: 20px;
  text-align: right;
}

.mobile-menu-close button {
  display: inline-block;
  margin-right: 5px;
  text-transform: uppercase;
  font-size: 10px;
  color: gray;
  font-weight: 300;
}

.mobile-menu-close span {
  display: inline-block;
  margin-right: 5px;
  text-transform: uppercase;
  font-size: 10px;
  color: gray;
  font-weight: 300;
}

.mobile-menu-close .close {
  padding: 2px;
  color: gray;
}

.mobile-menu-close .close:hover {
  background-color: none;
}

.main-navigation {
  width: 100%;
  text-align: right;
}
.main-navigation li {
  display: inline-block;
  margin: 0 0 0 30px;
}
.main-navigation li a {
  display: block;
  font-size: 15px;
  line-height: 40px;
  color: #555555;
}
.main-navigation li a:hover {
  color: #e04d47;
}

.content-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 0px 0;
}

.approach-left{
width:45%;
float:left;
}

.approach-right{
width:50%;
float:right;
padding: 50px 200px 0 0px;
}

.approach-left img{
width:100%;
}

.approach-right p {
  color: #00577F;
  margin: 0 0px 20px 0px;  
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8em;
}

.approach-right h3{
font-size:36px;
margin:0 0 40px 0;
color:#00577F;
font-weight:bold;
}

.pic1 {
    background: url(../images/img_F2.png)no-repeat; 
}

.pic2 {
    background: url(../images/img_F3.png)no-repeat; 
}

.design1-left {
    min-height: 165px;
}
.design1-text {
    width: 85%;
}
.design1-text h4 {
    font-size: 1.05em;
}
.design1-top p {
    font-size: 0.9em;
}
.design1-grid-left p {
    font-size: 0.9em;
}


/*--design1 start here--*/
.design1-left {    
    min-height: 600px;
    background-size:contain;
}
.design1-right {
    padding: 4em 1.5em 3em 4em;
    /*background:#555555;*/
    background:#312F30;
    min-height: 680px;
}
.design1-top h3 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 0.3em;    
}
.design1-top p {
    font-size: 1.25em;
    color:#E0E0E0;
    line-height: 2em;
    width: 90%;
}
/*--design1 end here--*/

.design2-left {
    min-height: 165px;
}
.design2-text {
    width: 85%;
}
.design2-text h4 {
    font-size: 1.05em;
}
.design2-top p {
    font-size: 0.9em;
}
.design2-grid-left p {
    font-size: 0.9em;
}


/*--design2 start here--*/
.design2-left {
    background: url(../images/img_F2.png)no-repeat;    
    min-height: 600px;
    background-size:contain;
}
.design2-right {
    padding: 4em 1.5em 3em 4em;
    /*background:#555555;*/
    background:#312F30;
    min-height: 680px;
}
.design2-top h3 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 0.3em;    
}
.design2-top p {
    font-size: 1.25em;
    color:#E0E0E0;
    line-height: 2em;
    width: 90%;
}
/*--design2 end here--*/

.move-30{
  margin-bottom:30px;
}

.pplace {
    margin-left : 500px;
    margin-top : -80px;
}

.logocns {
    width:200px;
    height:166px;
}

/* //footer */
/* Responsive */
@media screen and (max-width: 1920px){
    .carousel {
        height: 1000px;
    }
    .carousel-inner {
        height: 1000px;
    }
    .carousel-caption a {
        left:53%;
    }
    .carousel-caption input[type="email"] {
        width: 23%
    }
    
    .counter1 {
        padding: 1% 1%;
    }
    .counter1 p {
        line-height: 1.8;
    }
    
    /*--design1 start here--*/
    .design1-left {        
        min-height: 600px;
        background-size:contain;
    }
    .design1-right {
        padding: 4em 1.5em 3em 4em;
        /*background:#555555;*/
        background:#312F30;
        min-height: 680px;
    }
    .design1-top h3 {
        font-size: 2em;
        color: #fff;
        margin-bottom: 0.3em;    
    }
    .design1-top p {
        font-size: 1.25em;
        color:#E0E0E0;
        line-height: 2em;
        width: 90%;
    }
    
    .logocns {
        width:150px;
        height:125px;        
    }
    .pplace {
        margin-left : 500px;
        margin-top : -80px;
    }

    /*--design1 end here--*/
}


@media screen and (max-width: 1600px){
    .carousel {
        height: 800px;
    }
    .carousel-inner {
        height: 800px;
    }
    .carousel-caption a {
        left:53%;
    }
    
    .carousel-caption p {
        font-size: 4rem;
        /*font-weight: bold;*/
        line-height: 2;    
    } 
    .carousel-caption p img{
        width : 8%;
        padding: 5px;
    }

    .carousel-caption .pimg{        
        line-height: 4;    
    } 
    
    .carousel-caption input[type="email"] {
        width: 23%
    }
    .counter1 {
        padding: 1% 1%;
    }
    .counter1 p {
        line-height: 1.8;
    }
    
     /*--design1 start here--*/
    .design1-left {        
        min-height: 600px;
        background-size:contain;
    }
    .design1-right {
        padding: 4em 1.5em 3em 4em;
        /*background:#555555;*/
        background:#312F30;
        min-height: 680px;
    }
    .design1-top h3 {
        font-size: 2em;
        color: #fff;
        margin-bottom: 0.3em;    
    }
    .design1-top p {
        font-size: 1.25em;
        color:#E0E0E0;
        line-height: 1.6em;
        width: 90%;
    }
    
    .logocns {
        width:150px;
        height:125px;        
    }
    .pplace {
        margin-left : 400px;
        margin-top : -80px;
    }

    /*--design1 end here--*/
}

@media screen and (max-width: 1440px){
    
	.carousel {
    height: 720px;
    }
    .carousel-inner {
    height: 720px;
    }
    
    .carousel-caption {
        top: 40%;
    }
    
    .carousel-caption a {
        left:55%;
    }
    .carousel-caption p {
    font-size: 3.5rem;
        /*font-weight: bold;*/
        line-height: 0;    
    } 
    .carousel-caption p img{
        width : 10%;
        padding: 5px;
    }

    .carousel-caption .pimg{        
        line-height: 4;    
    } 
   
    .carousel-caption input[type="email"] {
        width: 25%
    }
    
    .agilecount h3.center {
        padding: 2% 0;
    }
    
    /*--design1 start here--*/
    .design1-left {        
        min-height: 400px;
        background-size:contain;
    }
    .design1-right {
        padding: 4em 1.5em 3em 4em;
        /*background:#555555;*/
        background:#312F30;
        min-height: 400px;
    }
    .design1-top h3 {
        font-size: 1.6em;
        color: #fff;
        margin-bottom: 0.3em;    
    }
    .design1-top p {
        font-size: 1em;
        color:#E0E0E0;
        line-height: 1.2em;
        width: 90%;
    }
    
    .logocns {
        width:133px;
        height:111px;        
    }
    .pplace {
        margin-left : 350px;
        margin-top : -60px;
    }

    /*--design1 end here--*/
}
@media screen and (min-width: 1280px) and (max-width: 1366px){
    
    .carousel {
    height: 580px;
    }
    .carousel-inner {
    height: 580px;
    }
    
    .carousel-caption {
        top: 31%;
    }
    
    .carousel-caption a {
        left:55%;
    }
    .carousel-caption p {
    font-size: 3rem;
        /*font-weight: bold;*/
        line-height: 0;    
    } 
    .carousel-caption p img{
        width : 8%;
        padding: 5px;
    }

    .carousel-caption .pimg{        
        line-height: 4;    
    } 
   
    .carousel-caption input[type="email"] {
        width: 25%
    }
    .carousel-caption h3,.carousel-caption h1 {
        font-size: 40px;
    }
    .agilecount h3.center {
        padding: 2% 0;
    }
    
    /*--design1 start here--*/
    .design1-left {        
        min-height: 400px;
        background-size:contain;
    }
    .design1-right {
        padding: 4em 1.5em 3em 4em;
        /*background:#555555;*/
        background:#312F30;
        min-height: 400px;
    }
    .design1-top h3 {
        font-size: 1.6em;
        color: #fff;
        margin-bottom: 0.3em;    
    }
    .design1-top p {
        font-size: 1em;
        color:#E0E0E0;
        line-height: 1.2em;
        width: 90%;
    }
    
    .logocns {
        width:133px;
        height:111px;        
    }
    .pplace {
        margin-left : 300px;
        margin-top : -60px;
    }

    /*--design1 end here--*/
}

@media screen and (max-width: 1024px){
    .carousel-caption h3,.carousel-caption h1 {
        font-size: 31px;
    }
    .carousel {
    height: 560px;
    }
    .carousel-inner {
    height: 560px;
    }
    h3.center {
    font-size: 24px;
    }
    .row-agile h2 {
        font-size:25px;
    }
    .agilecount {
    min-height: 497px;
    }
    span.numscroller {
    font-size: 25px;
    }
    .c1 h4 {
    font-size: 17px;
    }
    .team p {
    font-size: 20px;
    }
    
    /*--design1 start here--*/
    .design1-left {        
        min-height: 480px;
        background-size:contain;
    }
    .design1-right {
        padding: 4em 1.5em 3em 4em;
        /*background:#555555;*/
        background:#312F30;
        min-height: 480px;
    }
    .design1-top h3 {
        font-size: 1.4em;
        color: #fff;
        margin-bottom: 0.3em;    
    }
    .design1-top p {
        font-size: 1em;
        color:#E0E0E0;
        line-height: 1.4em;
        width: 90%;
    }
    
    .logocns {
        width:85px;
        height:71px;        
    }
    .pplace {
        margin-left : 250px;
        margin-top : -60px;
    }
    /*--design1 end here--*/
    
    .resp-tab-content {
        height: 280px;
    }
}

@media screen and (max-width: 900px){
    .container.brand1 {
        margin-left: 100px;
    }
    .container>.navbar-collapse, .container>.navbar-header {
    margin-right: 0px;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 27px;
    }
    .carousel-caption a {
        left:66%;
        top: 60%;
    }
    .carousel-caption input[type="email"] {
        width: 36%;
        top: 60%;
    }
    .carousel {
        height: 589px;
    }
    .carousel-inner {
        height: 589px;
    }
    .carousel span.fa {
        top: 50%;
    }
    .carousel-caption {
    top: 20%;
    }
    .carousel-caption p {
    font-size: 1.5rem;
    }
    
    .carousel-caption p img{
        width : 10%;
        padding: 5px;
    }
    
    .carousel-caption .pimg{        
        line-height: 2;    
      } 
    .w3-welcome {
    padding: 0;
    width: 90%;
    }
    .w3-image {
    width: 35%;
    }
    .w3-text h3 {
    font-size: 18px;
    }
    span.w3ag {
        font-size: 23px;
    }
    .w3-image h3 {
    font-size: 17px;
    }
    .w3-text p {
    line-height: 1.8;
    font-size: 14px;
    }
    .w3-image p {
        font-size: 14px;
    }
    h3.center {
    font-size: 18px;
    }
    .w3ls-service p.center {
    font-size: 15px;
    }
    .row-agile h2 {
    font-size: 20px;
    }
    .w3ls-galley a.tabs{
    font-size: 18px;
    }
    .agilecount {
    min-height: 435px;
    }
    .counter1 {
    width: 50%;
    }
    .w3ls-servicegrid .text h3 {
    font-size: 19px;
    }
    .form input[type="text"], .form input[type="email"] {
    width: 100%;
    }
    .form textarea {
    width: 100%;
    }
    .w3ls-contact h4 {
    font-size: 17px;
    }
     .resp-tab-content {
        height: 240px;
    }
}
@media screen and (max-width: 800px){
    .brand1 {
    width: 85%;
    padding: 0;
    }
    ul.nav.navbar-nav.navbar-right.w3ls-nav li a {
    padding: 9px;
    }
    .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
    margin-left: 0px;
    font-size: 16px;
    }
    .carousel {
    height: 450px;
    }
    .carousel-inner {
    height: 450px;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 24px;
    }
    .carousel-caption {
    top: 20%;
    }
    .carousel-caption p {
    font-size: 1.5rem;
    }
    
    .carousel-caption p img{
        width : 10%;
        padding: 5px;
    }
    
    .carousel-caption .pimg{        
        line-height: 2;    
      } 
      
    .carousel-caption input[type="email"] {
    width: 40%;
        left: 26%;
    }
    .carousel-caption a {
    left: 66%;
    }   
    .w3-welcome {
    display:block;
    text-align: center;
    }
    .w3-image {
    width: 100%;
    }
    .w3-text h3 {
    font-size: 23px;
    }
    
    span.w3ag {
    font-size: 33px;
    }
    .w3-image h3 {
    font-size: 23px;
    padding-top: 20px;
    }
    .w3-text p {
    margin: 3% 0 2% 0;
    }
    .agilecount h3.center {
    padding: 1% 0;
    color: #1f1f90;
    }
    .counter1 {
    line-height: 1;
    }
    .agilecount {
    min-height: 387px;
    }
    .mymap iframe {
    height: 300px;
    }
    .w3ls-contact h4 {
    font-size: 15px;
    }
    
    .resp-tab-content {
        height: 240px;
    }
    
    
}
@media screen and (max-width: 640px){
    .carousel {
    height: 600px;
    }
    .carousel-inner {
    height: 600px;
    }
    .carousel-caption {
    top: 31%;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 22px;
    }
    .carousel-caption input[type="email"] {
    left: 23%;
    }
    .carousel-caption a {
    left: 62%;
    }
    .w3-text h3 {
    font-size: 21px;
    }
    .resp-tab-content {
    height: 1155px;
    }
    .counter1 {
    width: 60%;
    }
    .counter1 p {
    font-size: 12.5px;
    }
    .agilecount {
    min-height: 308px;
    }
    .gridbox p {
    font-size: 13px;
    }
    .gridbox {
    height: 100px;
    }
    .form.col-md-4.col-sm-4.col-xs-12 {
    margin-top: 15px;
    }
}
@media screen and (max-width: 600px){
    .carousel {
    height: 388px;
    }
    .carousel-inner {
    height: 388px;
    }
    .carousel-caption {
    top: 29%;
    }
    .container.brand1 {
    margin-left: 90px;
    }
    .carousel-caption p {
    font-size: 1.4rem;
    }
    span.w3ag {
    font-size: 22px;
    }
    .resp-tab-content {
    height: 1075px;
    }
    .c1 h4 {
    font-size: 16px;
    }
    .agilecount {
    min-height: 288px;
    }
    .gridbox {
    width: 44%;
    }
    .w3ls-contact h4 {
    font-size: 14px;
    margin-bottom: 4px;
    }
    h3.center {
    margin-bottom: 5px;
    }
    .w3ls-team {
    margin-top: -5px;
    }
}
@media screen and (max-width: 568px){
    .carousel {
    height: 367px;
    }
    .brand1 {
    width: 75%;
    }
    .container.nav1 {
    text-align: center;
    padding-top: 5px;
    }
    .w3-logo{
        margin-top: 15px;
    }
    .carousel-inner {
    height: 367px;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 20px;
    }
    .carousel-caption {
    top: 27%;
    }
    .carousel-caption input[type="email"] {
    height: 32px;
    font-size: 13px;
        width: 42%;
    }
    .carousel-caption a {
    left: 64%;
    height: 32px;
    font-size: 13px;
    line-height: 1;
    }
    .w3-text h3 {
    font-size: 20px;
    }
    .resp-tab-content {
    height: 1010px;
    }
    .counter1 {
    width: 62%;
        line-height: 0.41;
    }
    .agilecount {
    min-height: 272px;
    }
    .c1 {
    padding: 3% 0;
    }
    .counter1 h3 {
    font-size: 19px;
    }
    .counter1 p {
    font-size: 12px;
    }
    span.numscroller {
    font-size: 15px;
    }
    .c1 h4 {
    font-size: 14px;
    }
    .gridbox span.fa {
        padding: 14% 0 3% 0;
    }
}
@media screen and (max-width: 480px){
    .carousel {
    height: 309px;
    }
    .carousel-inner {
    height: 309px;
    }
    .carousel-caption {
    top: 23%;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 22px;
    }
    .carousel-caption p {
    font-size: 12px;    
    }
    
    .carousel-caption p img{
        width : 10%;
        padding: 5px;        
    }
    
    .carousel-caption input[type="email"] {
    font-size: 11px;
    }
    .carousel-caption a {
    left: 64%;
    height: 32px;
    font-size: 13px;
    line-height: 1.5;
    padding: 6px;
    }
    span.w3ag {
    font-size: 11px;
}
    .w3-text h3 {
    font-size: 19px;
    }
    .w3-text p {
    line-height: 1.5;
    font-size: 14px;
    }
    .w3-image h3 {
    font-size: 20px;
    }
    h3.center {
    font-size: 20px;
    margin-bottom: 5px;
    }
    .col-md-4.col-sm-4.col-xs-6.part1 {
    width: 100%;
    }
    .part1.part3 {
    margin-left: 0;
    }
    .row-agile h2 {
    font-size: 20px;
    }
    .row-agile p {
    font-size: 15px;
    }
    .resp-tab-content {
    height: 830px;
    }
    .agilecount h3.center {
    display: block;
    font-size: 20px;
    }
    .agilecount {
    min-height: 272px;
    position: relative;
    background-size: 550px;
    }
    .counter1 {
    width: 74%;
    right: 10px;
    top: 35px;
    line-height: 0.8;
    }
    .counter1 p {
    font-size: 13px;
    line-height: 1.5;
    }
    .team p {
    font-size: 14px;
    }
    .col-md-4.col-sm-4.col-xs-4.team {
    width: 100%;
    }
    .team img {
    /* height: 300px; */
    margin: auto;
    }
    .team p {
    font-size: 18px;
    }
    .w3ls-servicegrid {
    display: inline-block;
    }
    .gridbox {
    width: 30%;
    height: 110px;
    }
    .w3ls-servicegrid .text {
    padding: 15px;
    }
    .w3ls-contact h4 {
    margin-bottom: 20px;
    }
}
@media screen and (max-width: 414px){
    .brand1 {
    width: 72%;
    }
    .w3ls-nav {
    margin-top: 35px;
    margin-bottom: 0;
    }
    ul.nav.navbar-nav.navbar-right.w3ls-nav li a {
    padding: 2px;
    }
    .carousel span.fa {
    font-size: 25px;
    }
    .carousel {
    height: 230px;
    }
    .carousel-inner {
    height: 230px;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 19px;
    }
    .carousel-caption {
    top: 14%;
    }
    .carousel-caption input[type="email"] {
    font-size: 11px;
    top: 47%;
    width: 48%;
    left: 17%;
    }
    .carousel-caption a {
        top: 47%;
        line-height: 1.5;
            left: 64%;
    }
    .carousel span.fa {
    top: 46%;
    }
    span.w3ag {
    font-size: 16px;
    }
    .w3-text h3 {
    font-size: 16px;
    }
    .w3-text p {
    font-size: 14px;
    }
    .w3-image h3 {
    font-size: 20px;
    }
    h3.center {
    font-size: 19px;
    }
    span.rhide {
    display: none;
    }
    .resp-tab-content {
    height: 420px;
    }
    .counter1 {
    width: 86%;
    right: 10px;
    top: 35px;
    line-height: 0.9;
    }
    .agilecount h3.center {
    display:block;
    }
    .footer p {
    font-size: 13px;
    }
    
    /*--design1 start here--*/
    .design1-left {        
        min-height: 300px;
        background-size:contain;
    }
    .design1-right {
        padding: 4em 1.5em 3em 4em;
        /*background:#555555;*/
        background:#312F30;
        min-height: 300px;
    }
    .design1-top h3 {
        font-size: 1.4em;
        color: #fff;
        margin-bottom: 0.3em;    
    }
    .design1-top p {
        font-size: 1em;
        color:#E0E0E0;
        line-height: 1.4em;
        width: 90%;
    }
    
    .logocns {
        width:85px;
        height:71px;        
    }
    .pplace {
        margin-left : 0px;
        margin-top : 0px;
    }

    /*--design1 end here--*/
    
    
    
}
@media screen and (max-width: 384px){
    .carousel {
    height: 245px;
    }
    .carousel-inner {
    height: 245px;
    }
    .carousel-caption {
    top: 15%;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 18px;
    }
    .carousel-caption p {
    font-size: 14px;
    }
    .carousel span.fa {
    top: 41%;
    }
    span.w3ag {
    font-size: 0px;
    display: none;
    }
    .carousel-caption input[type="email"] {
    width: 53%;
    left: 12%;
}
    .w3-text h3 {
    font-size: 20px;
    }
    .w3-text p {
    line-height: 1.7;
        font-size: 13px;
    }
    .counter1 {
    width: 93%;
    }
    h3.center {
    font-size: 17px;
    }
    .w3ls-service p.center {
    font-size: 14px;
    }
    .resp-tab-content {
    height: 645px;
    }
    .gridbox {
    width: 29%;
    height: 100px;
    }
    .mymap iframe {
    height: 230px;
    }
}
@media screen and (max-width: 375px){
    .carousel {
        height: 200px;
    }
    .carousel-inner {
    height: 200px;
    }
    .carousel-caption {
    top: 12%;
    }
    
    .carousel-caption p {
    font-size: 0.2rem;
        /*font-weight: bold;*/
        line-height: 0;    
    } 
    .carousel-caption p img{
        width : 8%;
        padding: 5px;
    }

    .carousel-caption .pimg{        
        line-height: 4;    
    } 
    
    span.w3ag {
    font-size: 13px;
    }
    .w3-text p {
    font-size: 14px;
    line-height: 1.5;
    }
    .w3-text h3 {
    font-size: 20px;
    }
    .resp-tab-content {
    height: 380px;
    }
    .counter1 {
    width: 96%;
    right: 3px;
    top: 35px;
    }
    .info.col-md-4.col-sm-4.col-xs-6 {
    width: 100%;
    text-align: left;
    line-height: 2.5;
    margin-bottom: 20px;
    }
    .links.col-md-4.col-sm-4.col-xs-6 {
    width: 100%;
        text-align: left;
    line-height: 2.5;
    margin-bottom: 10px;
    }
    h3.center {
    font-size: 20px;
    }
    #service h3.center {
    font-size: 17px;
    }
    .footer p {
    font-size: 14px;
    }
}
@media screen and (max-width: 320px){
    span.w3ag {
    font-size: 9px;
    }
    .container.nav1 {
    text-align: center;
    padding-top: 5px;
    font-size: 12px;
    }
    .carousel {
    height: 180px;
    }
    .carousel-inner {
    height: 180px;
    }
    .carousel-caption {
    top: 11%;
    }
    .carousel span.fa {
    top: 40%;
    }
    .carousel-caption input[type="email"] {
    font-size: 9px;
    top: 47%;
    width: 52%;
    left: 13%;
    }
    .carousel-caption h3,.carousel-caption h1 {
    font-size: 20px;
    }
    .carousel-caption a {
    line-height: 1.8;
    font-size: 11px;
    }
    .w3-text h3 {
    font-size: 19px;
    }
    .bestimg img {
    width: 100%;
    }
    .container.brand1 {
    margin-left: 85px;
    }
    h3.center {
    font-size: 25px;
    }
    #service h3.center {
    font-size: 19px;
    }
    .row-agile p {
    font-size: 13px;
    }
    .resp-tab-content {
    height: 515px;
    }
    .counter1 {
    width: 89%;
    right: 10px;
    top: 32px;
    line-height: 0.8;
    }
    .agilecount h3.center {
    display: block;
    }
    .c1 h4 {
    margin-top: 10px;
    }
    .w3ls-servicegrid .text h3 {
    font-size: 15px;
    }
    .text p {
    font-size: 13px;
    }
    .footer p {
    font-size: 13px;
    }
    
    .agilecount h3.center {
    font-size: 25px;
    }
}


/* ---------------------------------------------------------------------------
About
------------------------------------------------------------------------------*/
/*	CONTENT BLOCK 3-10
/*----------------------------------------------------*/

.content-3-10 {
	padding: 0px;
	position: relative;
	
}

.content-3-10 .image-container {
	position: absolute;
	height: 300px;
	padding: 0px;
	top: 0px;
}

.content-3-10 .image-container .background-image-holder_pd1 {
	background: url('../images/tug200.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	border: 6px solid #558ED5;
}

.content-3-10 .image-container .background-image-holder_pd2 {
	background: url('../images/led_light_1.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	border: 6px solid #558ED5;
}

.content-3-10 .image-container .background-image-holder_pd3 {
	background: url('../images/led_light_2.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	border: 6px solid #558ED5;
}


.content-3-10 .image-container .background-image-holder_pd4 {
	background: url('../images/led_light_3.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	border: 6px solid #558ED5;
}

.content-3-10 .image-container .background-image-holder_pd5 {
	background: url('../images/film_1.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;	
	border: 6px solid #558ED5;
}

.content-3-10 .image-container .background-image-holder_pd6 {
	background: url('../images/film_2.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;	
	border: 6px solid #558ED5;
}

.content-3-10 .image-container .background-image-holder_pd7 {
	background: url('../images/led_light_4.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;	
	border: 6px solid #558ED5;
}


.content-3-10 .content {
	margin-top: 100px;
	padding: 40px;
}

.content-3-10 h1 {
	margin-bottom: 32px;
	color: #2d3033;
    font-weight: 300;
}

h3.title1 {
    font-size: 36px;
    text-transform: capitalize;
    font-weight: bold;
    color: #005ca7;
	text-align: left;	
}


.content-3-10 p {
	margin-bottom: 20px;
	font-size: 14px;
    line-height: 22.4px;
    color: #6c7279;
	font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    color: #6c7279;
}



/*	CONTENT BLOCK 3-10 MEDIA QUERIES
/*----------------------------------------------------*/

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
	.content-3-10 .image-container {
		height: 100%;
	}
	
	.content-3-10 .content {
		margin-top: 0px;
		padding: 40px 0px 100px 60px;
		background: #eaeaea;
		border: 6px solid #558ED5;
	}
	
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	
	
	
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	
	
	
}


.btn_pd {
	
	background-color: transparent;
	color: #3496d8;
	font-size: 20px;
	font-weight: 600;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
	border: 1px solid #3496d8;
	margin-top: 20px;
	
}
.btn_pd:hover, .btn_pd:focus {
	background-color: #3496d8;
	color: #fff;
}
.btn_pd-large {
	padding: 15px 40px;
}


ul.withArrow{
	margin-top: 30px;		
}

ul.withArrow li{
	line-height: 2;
	font-size: 24px;
}

ul.withArrow li span{

	margin-right: 10px;
	font-weight: 700;
	color: #29448e;	
	border: 2px solid;
	padding: 0px 8px;
	font-size: 24px;
}

.figure {
    margin: 0px;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	
	/* 更新最小寬度 */
	min-width: 260px;		
	max-width: 480px;
	max-height: 360px;
	width: 48%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 20px;
}

.grid figure p {
	width: 90%;
	letter-spacing: 1px;
	font-size: 120%;	
}

/*---------------*/
/***** Oscar *****/
/*---------------*/

figure.effect-oscar {
	background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
	background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%);
}

figure.effect-oscar img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-oscar figcaption {
	padding: 0em;
	background-color: rgba(58,52,42,0.7);
	-webkit-transition: background-color 0.35s;
	transition: background-color 0.35s;
}

figure.effect-oscar figcaption::before {
	position: absolute;
	top: 30px;
	right: 10px;
	bottom: 30px;
	left: 10px;
	border: 1px solid #fff;
	content: '';
}

figure.effect-oscar h2 {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	color:#A3A3A3;
}

figure.effect-oscar figcaption::before,
figure.effect-oscar p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

figure.effect-oscar:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	color:#fff;
}

figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	color:#fff;+++++++
}

figure.effect-oscar:hover figcaption {
	background-color: rgba(58,52,42,0);
}

figure.effect-oscar:hover img {
	opacity: 0.4;
}


/* Portfolio
---------------------------------*/


#Portfolio {
    padding: 0px 0px;
}

.Portfolio-nav {
    padding: 0;
    margin: 0 0 45px 0;
    list-style: none;
    text-align: center;
}

.Portfolio-nav li {
    margin: 0 10px;
    display: inline;
}

.Portfolio-nav li a {
    display: inline-block;
    padding: 10px 22px;
    font-size: 12px;
    line-height: 20px;
    color: #222222;
    border-radius: 4px;
    text-transform: uppercase;
    background: #f7f7f7;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.Portfolio-nav li a:hover {
    background: #ED5441;
    color: #fff;
    text-decoration: none;
}

.portfolioContainer {
    margin: 0 auto;
    padding-left: 15px;
    width: auto !important;
}

.Portfolio-box {
    text-align: center;
    width: 350px;
    overflow: hidden;
    float: left;
    padding: 12px 0px;
}

.Portfolio-box img {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.Portfolio-box img:hover {
    opacity: 0.6;
}

.Portfolio-nav li a.current {
    background: #ED5441;
    color: #fff;
    text-decoration: none;
}

.portfolio_img .img {
    max-width: 100%;
}

/* no transition on .isotope container */

.isotope .isotope-item {
  /* change duration value to whatever you like */
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

.page_section.paddind {
    padding-bottom: 60px;
}

/* Animation Timers
---------------------------------*/
.delay-02s {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.delay-03s {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

.delay-04s {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.delay-05s {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

.delay-06s {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.delay-07s {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}

.delay-08s {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

.delay-09s {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}

.delay-1s {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.delay-12s {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}


/*new_profolio*/



	
/* Portfolio */	
	
.container.portfolio_title {
    padding-bottom: 0px;
}

#portfolio {
    padding: 60px 0 40px;
}



/* Portfolio Filters */	

#filters {
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: center;
    display: block;
    float: none;
    z-index: 2;
    position: relative;
}

#filters ul li {
    display: inline-block;
    margin: 0 5px;
}

#filters ul li a {
    display: block;
}

#filters ul li a h5 {
    background: none repeat scroll 0 0 #f7f7f7;
    border-radius: 4px;
    display: inline-block;
    
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 5px;
    padding: 10px 22px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
    background: #fff;
    border: #C2C2C2 solid 1px;
    color: #7C7C7C;
}

#filters ul li a:hover h5, #filters ul li a.active h5 {
    background: #225396;
    color: #FFFFFF;
    text-decoration: none;
    border: #225396 solid 1px;
}

.section-title h2 {
    color: #222222;
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    letter-spacing: -1px;
    margin: 0 0 15px;
    text-align: center;
}

.section-title span {
    display: block;
    color: #888888;
    font-family: 'Open Sans',sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 60px;
    text-align: center;
}



/* Portfolio Items */	

#portfolio_wrapper {
    position: relative;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    display: block;
}

#portfolio_wrapper .one-four {
    margin: 0!important;
    line-height: 0;
    width: 25%;
    padding: 0;
    position: relative;
}

#portfolio_wrapper1 {
    position: relative;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    display: block;
}

#portfolio_wrapper1 .one-four {
    margin: 0!important;
    line-height: 0;
    width: 25%;
    padding: 0;
    position: relative;
}


#portfolio_wrapper2 {
    position: relative;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    display: block;
}

#portfolio_wrapper2 .one-four {
    margin: 0!important;
    line-height: 0;
    width: 25%;
    padding: 0;
    position: relative;
}



.portfolio-item {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.portfolio-item .portfolio_img {
    overflow: hidden;
    display: block;
    position: relative;
}

.portfolio-item .portfolio_img img {
    width: 100%;
    height: auto;
}

.portfolio-item:hover .item_overlay {
    opacity: 1;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.item_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    cursor: pointer;
}

.open-project-link {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
}

.item_overlay:hover {
    background:rgba(89, 89, 89, 0.7);
}

.item_info {
    position: absolute;
    height: 100px;
    width: 100%;
    top: 50%;
    margin-top: -50px;
    text-align: center;
}

.project_name {
    color: #fff;
    text-transform: uppercase;
    margin-top: 25px;
    
    opacity: 0;
    font-size: 18px;
    transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    position: relative;
    z-index: 10;
}

.portfolio-item:hover .project_name {
    opacity: 1;
    -webkit-transition: opacity .1s .2s;
    -moz-transition: opacity .1s .2s;
    -ms-transition: opacity .1s .2s;
    -o-transition: opacity .1s .2s;
    transition: opacity .1s .2s;
}

.project_catg {
    font-size: 14px;
    color: #fff;
    opacity: 0;
    margin-top: 0px;
    transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.portfolio-item:hover .project_catg {
    opacity: 0.8;
    -webkit-transition: opacity .1s .2s;
    -moz-transition: opacity .1s .2s;
    -ms-transition: opacity .1s .2s;
    -o-transition: opacity .1s .2s;
    transition: opacity .1s .2s;
}

.zoom-icon {
    left: 50%;
    margin-left: -20px;
    position: inherit;
    width: 40px;
    height: 40px;
    margin-top: 40px;
    opacity: 0;
    background: url(images/zoom.png);
    background-size: 40px 40px;
    transition: all 0.3s ease 0.1s;
    -moz-transition: all 0.3s ease 0.2s;
    -webkit-transition: all 0.3s ease 0.2s;
    -ms-transition: all 0.3s ease 0.2s;
    -o-transition: all 0.3s ease 0.2s;
}

.portfolio-item:hover .zoom-icon {
    opacity: 1;
    margin-top: 0px;
    -webkit-transition: opacity .3s .2s, margin-top .3s .2s;
    -moz-transition: opacity .3s .2s, margin-top .3s .2s;
    -ms-transition: opacity .3s .2s, margin-top .3s .2s;
    -o-transition: opacity .3s .2s, margin-top .3s .2s;
    transition: opacity .3s .2s, margin-top .3s .2s;
}
	
	
	
	
/* Portfolio Isotope Transitions */	

.isotope, .isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}



/* Portfolio Expander */	



#project_container {
    display: none;
    background-color: #FFF;
}

#project-page-button-fullscreen {
    height: auto;
    z-index: 100;
    position: absolute;
    right: 30px;
    top: 30px;
}

#project-page-button-fullscreen li {
    display: inline-block;
    font-size: 30px;
}

#project-page-button-fullscreen li a {
    background: url(images/close.png) no-repeat #fff;
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50px;
    opacity: 0.5;
}

#project-page-button-fullscreen li a:hover {
    opacity: 1;
}

#project-page-button {
    text-align: center;
    margin-bottom: 20px;
    height: auto;
    position: relative;
    z-index: 100;
}

#project-page-button li {
    display: inline-block;
    margin: 60px 10px 0px 10px;
    font-size: 30px;
}

#project_data {
    margin-bottom: 0px;
}

.project-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.project-section-title h1 {
    margin-bottom: 5px!important;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
}

.project-page {
    background-color: #FFF;
    width: 100%;
    height: auto;
    left: 0;
    padding-bottom: 40px;
}

	
/* Portfolio*/	
	
	
.project-image-slider .bx-wrapper .bx-next {
    background: url("images/project_slider_right.png") no-repeat;
    background-size: 35px 65px;
    opacity: 0.3;
    right: -90px;
}

.project-image-slider .bx-wrapper .bx-prev {
    background: url("images/project_slider_left.png") no-repeat;
    background-size: 35px 65px;
    opacity: 0.3;
    left: -90px;
}

.project-image-slider .bx-wrapper .bx-next:hover, .project-image-slider .bx-wrapper .bx-prev:hover {
    opacity: 1;
    background-position: 0;
}

.project-image-slider .bx-wrapper .bx-controls-direction a {
    height: 65px;
    margin-top: -33px;
    outline: 0 none;
    position: absolute;
    text-indent: -9999px;
    top: 50%;
    width: 35px;
    z-index: 100;
}
	
/* Portfolio Normal Expander */		
	
.project-description {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.small-border {
    height: 2px;
    width: 50px;
    background-color: #ddd;
    margin-bottom: 15px;
}

.visit-project {
    width: 100%;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding: 55px 0 20px 0;
}

.project-description h5 {
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 5px;
}
	
	
	
/* Portfolio FullScreen Expander */			
	
#cycle-loader {
    height: 32px;
    left: 50%;
    margin: -8px 0 0 -8px;
    position: absolute;
    top: 50%;
    width: 32px;
    z-index: 999;
}

#arrow_left {
    top: 50%;
    height: 60px;
    position: absolute;
    left: 30px;
    width: 32px;
    z-index: 1000;
    margin-top: -30px;
}

#arrow_right {
    top: 50%;
    height: 60px;
    position: absolute;
    right: 30px;
    width: 32px;
    z-index: 1000;
    margin-top: -30px;
}

#arrow_left:hover, #arrow_right:hover {
    margin-top: -28px;
}

#arrow_left:active, #arrow_right:active {
    margin-top: -28px;
}

div.mc-image {
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.in-slide-content div.info-slide {
    background: #FFF url(images/info.png) no-repeat left bottom;
    background-size: 46px 46px;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    margin: 0;
    display: block;
    text-indent: 10px;
    -moz-border-radius: 23px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    cursor: pointer;
    z-index: 1000;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=0.5);
    opacity: 0.5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.in-slide-content div.info-slide:hover {
    width: 200px;
    background: #FFF;
    position: absolute;
    bottom: 40px;
    padding: 10px 20px;
    text-indent: 0px;
    moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    z-index: 1000;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=1);
    opacity: 1;
}

.in-slide-content h2, .in-slide-content p {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 24px;
}

.in-slide-content h2 {
    font-size: 14px;
    color: #444;
    text-shadow: none;
    font-weight: normal;
    text-transform: uppercase;
    z-index: 1001;
    position: relative;
    white-space: nowrap;
}

.info-slide p {
    color: #aaa;
    font-size: 13px;
    text-shadow: none;
    z-index: 1001;
    position: relative;
    margin: 0;
    font-weight: normal;
    white-space: nowrap;
}

.in-slide-content div.info-slide h2 {
    display: none;
    padding: 10px 10px 0 10px;
}

.in-slide-content div.info-slide p {
    display: none;
    padding: 0px 10px 10px 10px;
}

.in-slide-content div.info-slide:hover h2, .in-slide-content div.info-slide:hover p {
    display: inherit;
    padding: 0;
}