@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700');
/* CSS Document */

html, 
body {
    height: 100%;
	background:#eee;
}

body {
    margin: 0; 
    padding: 0;
	font-family: "微軟正黑體", sans-serif;
}

header {
    position: fixed;
	padding:24px 15px;
	width: 100%;
	height: 100px;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(244, 244, 244, 0.3);
    -webkit-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
}

header.smaller {
    padding: 8px 0px;
	height: 68px;
	background-color: rgba(244, 244, 244, 0.9);
}

.navbar {
	background-color: transparent;
	border-color: transparent;
	border-radius: 0;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-toggle .icon-bar {
    width: 28px;
    height: 3px;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ff0000;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 5px;
}

.navbar-nav {
	margin-top: 5px;
	margin-right: -25px;
}

nav .navbar-brand {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-brand {
	padding: 2px 15px;
}

.navbar-brand.smaller {
	padding: 2px 15px;
}

.nav > li > a {
    margin: 0 15px;
    padding: 10px 2px;
}

.navbar-default .navbar-nav > li > a {
	color: #333;
	font-weight: 600;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #000;
    background-color: transparent;
    border-bottom: 3px solid #ff0000;
    padding-bottom: 2px;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #000;
    background-color: transparent;
    border-bottom: 3px solid #ff0000;
    padding-bottom: 0px;
}

.btn_fb_follow {
    float: right;
	margin: 10px 0 0 30px;
	width: 25px;
	height: 25px;
	background: url(../images/facebook-social-button.svg) no-repeat 50% 50%; 
	background-size: cover;
	-webkit-filter: grayscale(100%) brightness(-5);
	filter: grayscale(100%) brightness(-5);
	cursor:pointer;
}

.btn_fb_follow:hover {
	-webkit-filter: grayscale(0%) brightness(90);
	filter: grayscale(0%) brightness(90);
}

.btn_language {
	float: right;
	font-family:"Hind", sans-serif;
	font-weight: bold;
	margin-right: -15px;
}

.btn_language a {
	display: block;
    padding: 17px 0 0 10px;
	color:#000;
	text-decoration:none;
}

.btn_language a:hover {
	color:#ff0000;
	text-decoration:none;
}

.mobile_nav {
	display: none;
}

.tite-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: -4% auto;
    color: #fff;
    font-size: 3.5em;
    font-weight: 700;
    text-align: center;
	line-height:1em;
    width: 80%;
    z-index: 2;
}

.tite-text span {
	font-size: 0.5em;
	font-weight: 500;
}
/* Carousel Fading slide */
.main-slider {
    height: 100%;
}

.carousel {
    height: 100%;
}

.carousel-fade .carousel-inner { 
    background: #000;
    height: 100%; 
}

.carousel-fade .carousel-control {
    z-index: 2;
	width: 10%;
} 
 
.carousel-fade .item {
    opacity: 0;
    height: 100%;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
  
.item:nth-child(1) {
    background:url(../images/index_side01.jpg) center center no-repeat;
	background-size:cover;
}

.item:nth-child(2) {
    background:url(../images/index_side02.jpg) center center no-repeat;
	background-size:cover;
}

.item:nth-child(3) {
    background:url(../images/index_side03.jpg) center center no-repeat;
	background-size:cover;
}

.item:nth-child(4) {
    background:url(../images/index_side04.jpg) center center no-repeat;
	background-size:cover;
}

.item:nth-child(5) {
    background:url(../images/index_side05.jpg) center center no-repeat;
	background-size:cover;
}

.item:nth-child(6) {
    background:url(../images/index_side06.jpg) center center no-repeat;
	background-size:cover;
}

.carousel-fade .next.left,
.carousel-fade .prev.right,
.carousel-fade .item.active {
    opacity: 1; 
}

.carousel-fade .active.left,
.carousel-fade .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}


/* Safari Fix */
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

/* Carousel Control custom */
.carousel-control .control-icon {
    font-size: 48px;
    height: 30px;
    margin-top: -15px;
    width: 30px;
    display: inline-block;
    position: absolute;
    top: 50%;
    z-index: 5;
}

.carousel-control .prev {
    margin-left:  -15px;  
    left: 50%; 
} /* Prev */

.carousel-control .next {
    margin-right: -15px;
    right: 50%; 
} /* Next */


/* Removing BS background */
.carousel .control-box {
    opacity: 0;
}

a.carousel-control.left  {
    left: 0; 
    background: none;
    border: 0;
}

a.carousel-control.right {
    right: 0;
    background: none;
    border: 0;
}


/* Animation */
.control-box, a.carousel-control, .carousel-indicators li {
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;   
  /* hardware acceleration causes Bootstrap carousel controlbox margin error in webkit */
  /* Assigning animation to indicator li will make slides flicker */
} 

/* Hover animation */
.carousel:hover .control-box {
    opacity: 1;
}

.carousel:hover a.carousel-control.left {
    left: 15px;
}

.carousel:hover a.carousel-control.right {
    right: 15px;
}  

/* Carouse Indicator */
.carousel-indicators li.active,
.carousel-indicators li {
    border: 0;
}

.carousel-indicators li {
    background: #666;
    margin: 0 3px;
    width: 12px;
    height: 12px;
}

.carousel-indicators li.active {
    background: #fff;
    margin: 0 3px;
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-menu-left, .carousel-control .glyphicon-menu-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}

.carousel-control .glyphicon-menu-left, .carousel-control .glyphicon-menu-right, .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 50px;
    height: 50px;
    margin-top: -10px;
    font-size: 50px;
}
.carousel-control .icon-prev, .carousel-control .glyphicon-menu-left {
    left: 50%;
    margin-left: -10px;
}
.carousel-control .icon-next, .carousel-control .glyphicon-menu-right {
    right: 50%;
    margin-right: -10px;
}

.carousel-indicators {
    bottom: 60px;
}

.arrow {
    position: absolute;
	top: 93%;
    bottom: 0px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    font-size: 50px;
    color: #fff;
	cursor:pointer;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.index_wrapper {
	position:relative;
	margin:60px auto;
	padding:0 2%;
	width:96%;
	max-width:1200px;
}

.index_wrapper h1 {
	font-size: 3.5em;
    font-weight: 700;
    text-align: center;
}

.index_wrapper p {
	font-size: 1.6em;
    font-weight: 300;
    text-align: center;
}

.project_group {
	position:relative;
	width:100%;
}

.project_cat { 
	height: auto;
	cursor: pointer;
    margin: 40px 0;
}

.layer { 
	background: #000;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: calc(100% - 30px);
    margin: 0 15px;
    z-index: -1;
	border-radius: 5px;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.project_cat span {
	position: absolute;
    top: 42%;
	display: block;
    width: calc(100% - 30px);
	color: #fff;
    font-weight: 500;
    font-size: 1.8em;
    text-align: center;
}

.project_cat img { 
	width: 100%;
	border-radius: 5px;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	-webkit-filter: grayscale(0%) brightness(0.5);
	filter: grayscale(0%) brightness(0.5);
}

.project_cat:hover img { 
	bottom: 20px;
	margin-top:-10px;
	opacity: 1;
	-webkit-filter: grayscale(0%) brightness(1);
	filter: grayscale(0%) brightness(1);
}

.project_cat:hover .layer01 { 
	bottom: 2px;
	left:10px;
	opacity: 0.4;
	-webkit-transform: rotate(3deg) scale(1);
	transform: rotate(3deg) scale(1);
}

.project_cat:hover .layer02 { 
	bottom: 3px;
	left: -10px;
	opacity: 0.4;
	-webkit-transform: rotate(-3deg) scale(1);
	transform: rotate(-3deg) scale(1);
}

.project_cat:hover .layer03 { 
	bottom: 10px;
	left: -5px;
	opacity: 0.2;
	-webkit-transform: rotate(5deg) scale(1);
	transform: rotate(5deg) scale(1);
}

.project_cat:hover .layer04 { 
	bottom: 15px;
	left: 0px;
	opacity: 0.2;
	-webkit-transform: rotate(-5deg) scale(1);
	transform: rotate(-5deg) scale(1);
}

.index_projects {
	position:relative;
	margin:80px auto;
	padding:0 1%;
	width:98%;
	max-width:1200px;
}

.index_projects h1 {
	font-size: 3.5em;
    font-weight: 700;
    text-align: center;
}

.index_projects p {
	font-size: 1.6em;
    font-weight: 300;
    text-align: center;
}

.swiper-container {
	padding:0 1%;
	width:98%;
	max-width: 1200px;
	padding-top: 40px;
	padding-bottom: 10px;
}

.swiper-slide {
	background-position: center;
	background-size: cover;
	width: 350px;
	height: 250px;
	border-radius: 4px;
}

.swiper-control {
	font-size: 34px;
    position: absolute;
    padding: 10px 0;
    top: 45%;
    z-index: 99;
    cursor: pointer;
    background: #fff;
}

.swiper-left {
	right: 0;
}

.swiper-right {
	left: 0;
}

.btn_view_more {
	position: relative;
    margin: 30px auto;
    width: 250px;
    text-align: center;
    font-size: 1.6em;
	font-weight:500;
}

.btn_view_more a {
	background: #000;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5px 20px;
    border: 1px solid #000;
    border-radius: 4px;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn_view_more a:hover {
	background: #eee;
    display: block;
    color: #000;
    text-decoration: none;
    padding: 5px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.page_top {
	position:relative;
	width:100%;
	height: 40%;
}

.aboutus {
	background:url(../images/about.jpg) center center no-repeat;
	background-size:cover;
}

.sol {
	margin:20px 0;
	text-align:center;
}

.sol-left {
	padding-left: 6%;
}

.sol-center {
	padding: 0 3.75%;
}

.sol-right {
	padding-right: 6%;
}

.sol img {
	display: block;
    width: 60%;
    margin: 10px auto;
}

.sol p {
	font-weight:600;
	line-height:20px;
}

.sol span {
	font-weight:200;
	font-size:0.6em;
}

.sol01 {
	color:#9b1e23;
}

.sol02 {
	color:#d89d17;
}

.sol03 {
	color:#10669c;
}

.sol04 {
	color:#512760;
}

.sol05 {
	color:#315028;
}

.sol06 {
	color:#5e1c47;
}

.project {
	background:url(../images/project.jpg) center center no-repeat;
	background-size:cover;
}

.residential_bg {
	background:url(../images/residential.jpg) center center no-repeat;
	background-size:cover;
	height: 25%;
}

.office_bg {
	background:url(../images/office.jpg) center center no-repeat;
	background-size:cover;
	height: 25%;
}

.retail_bg {
	background:url(../images/retail.jpg) center center no-repeat;
	background-size:cover;
	height: 25%;
}

div#project-filter {
	margin: 0px auto;
    text-align: center;
}

div#project-filter div {
	display: inline;
}

div#project-filter div a {
	padding: 8px 10px;
    background: #000;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
	text-decoration: none;
}

div#project-filter div a:hover, 
div#project-filter a.current {
	background: #666;
}

div#project-filter div a.current {
	background-color: #dd0000;
}

#project-list {
	margin: 40px 0 0 0;
	padding: 0;
}

#project-list div {
	margin: 15px 0;
}

#project-list img {
	display: block;
	width:100%;
	border-radius: 4px;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#project-list div a:hover img {
	-webkit-filter: grayscale(70%) brightness(1);
	filter: grayscale(70%) brightness(1);
}

#project-list div a {
	display: block;
}

#project-list div p {
	font-size: 1.2em;
    color: #333;
    margin: 8px 0 0 0;
}

.projects_title {
	position:relative;
	margin-bottom: 25px;
	width:100%;
	border-bottom:1px solid #000;
}

.projects_title h1 {
	font-size: 2.6em;
    font-weight: 700;
    text-align: left;
    float: left;
    margin: 10px 0 0 0;
    height: 48px;
}

.projects_title span {
	font-size: 3.1em;
    float: right;
    background: #000;
    color: #fff;
    padding: 7px;
    width: 57px;
	border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.projects_title span:hover {
    background: #dd0000;
}

.project_content {
	position:relative;
	width:100%;
	text-align:center;
}

.project_content p {
	font-size: 1em;
    color: #dd0000;
    margin-bottom: 0px;
}

.project_content h2 {
	font-size: 1.8em;
    margin: 0 0 10px 0;
    font-weight: 300;
    color: #333;
}

.project_gallery {
	position: relative;
	margin-top: 30px;
}

.project_gallery img {
	display:block;
	width:100%;
	margin-top: 5px;
	border-radius: 4px;
}

.contact {
	background:url(../images/contact.jpg) center center no-repeat;
	background-size:cover;
}

.contact_info {
	margin:40px 0;
	font-size: 1.6em;
	font-weight: 300;
}

.contact_map {
	margin: 40px 0;
    font-size: 1.6em;
    background: #ddd;
    padding: 10px;
    font-weight: 300;
	border-radius: 4px;
}

#contactmap {
	width: 100%;
	height: 400px;
}

.help-block {
	font-size: 0.6em;
    margin: 0;
}

@media (min-width: 768px){
.col-sm-push-6 {
    left: 55%;
}
}

.contact_info label {
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 0.8em;
}

label.error {
	position: relative;
    color: red;
    font-size: 0.5em;
    width: 100%;
    line-height: 14px;
}

.contact_btn {
	position: relative;
    width: 290px;
}

.contact_btn i {
	font-size: 0.8em;
    padding: 0 8px;
    margin-right: 2px;
    border-right: 1px solid #fff;
}

.contact_btn a {
	padding:5px 5px;
	display:block;
	font-size:0.9em;
	color:#fff;
	border-radius: 4px;
	background: #dd0000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.contact_btn a:hover {
	background: #000;
	text-decoration:none;
}

.contact_fb {
	display: none;
}
.form_btn {
	width: 250px;
    padding: 5px 20px;
    font-size: 1em;
    background: #000;
    color: #fff;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

footer {
	padding: 10px 20px;
    background: #fff;
	color:#999;
}

.designby {
	text-align:right;
}

.designby a {
	color:#dd0000;
}

.designby a:hover {
	color:#000;
	text-decoration:none;
}

@media (max-width: 860px) {
.nav > li > a {
    margin: 0 5px;
}	
}
@media (max-width: 768px) {
.collapse {
    display: block;
    position: absolute;
    top: 9px;
    right: 0;
    border: 0;
}
.navbar-nav {
	display: none;
}
.btn_language {
    margin-right: -16px;
}
.btn_language a {
    padding: 10px 15px 10px 10px;
    background: #fff;
    font-weight: bolder;
}
.btn_fb_follow {
    display: none;
}
.navbar-toggle {
	display: none;
}

.carousel-indicators {
	display: none;
}

.mobile_nav {
	position: fixed;
	display: block;
    z-index: 9;
    bottom: 0;
	width: 100%;
	background: #eee;
}

.mobile_nav-group {
	text-align: center;
}

.mobile_nav-group img {
	width:28px;
}

.mobile_nav-group a {
	display: block;
    padding: 7px 0;
	-webkit-filter: grayscale(100%) brightness(-5);
	filter: grayscale(100%) brightness(-5);
}

.pageon a {
	-webkit-filter: grayscale(0%) brightness(1);
    filter: grayscale(0%) brightness(1);
}

.arrow {
    top: 80%;
}

.sol img {
    width: 75%;
}

.sol-left {
	padding-left: 15px;
}

.sol-center {
	padding: 0 15px;
}

.sol-right {
	padding-right: 15px;
}

footer {
	margin-bottom: 42px;
	text-align:center;
}
.designby {
	text-align:center;
}
}

@media (max-width: 450px) {
header {
    padding: 15px 15px;
    height: 70px;
}

header.smaller {
    padding: 6px 15px;
    height: 7.2%;
}

.navbar-nav {
	display: none;
}
.collapse {
    top: 0px;
}
.navbar-brand {
    padding: 0px 5%;
    margin: 0 auto;
    width: 80%;
    float: left;
    text-align: center;
    display: block;
}

#brand.smaller {
    padding: 1px 10%;
    width: 80%;
	height:auto;
}
div#project-filter div {
    display: inline-block;
    height: 45px;
}
.navbar-brand > img {
    display: -webkit-inline-box;
    width: 100%;
}

.tite-text {
    font-size: 2.2em;
}

.index_wrapper h1 {
	font-size: 2.2em;
}

.index_projects h1 {
	font-size: 2.2em;
}

.swiper-control {
	display:none;
}

.projects_title {
    margin-top: -40px;
}

.projects_title h1 {
	font-size: 2.2em;
    margin: 8px 0 0 0;
    height: 33px;
}

.projects_title span {
	font-size: 2em;
    padding: 7px;
    width: 42px;
}

.contact_info {
    padding-top: 30px;
    text-align: center;
    border-top: 1px dotted #666;
}

.contact_btn {
    position: relative;
    margin: 0 auto;
    width: 290px;
    text-align: left;
}

.form-group {
    text-align: left;
}

footer {
	margin-bottom: 42px;
	padding-bottom:50px;
	text-align:center;
}
.designby {
	text-align:center;
}

.contact_fb {
	display:block;
}

.contact_fb .contact_btn a {
	background: #3b5998;
}

}