body{
  background-color: #F6F6F6;
}
#header{
  height: 100px;
  background-color: #F6F6F6;
  position: relative;
  z-index: 101;
}
#headerwrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #F6F6F6;
}
#header .container{
  padding-top: 35px;
  position: relative;
}
#mobilemenu {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  z-index: 1;
  display: none;
}
#mobilemenu .line{
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
}
#mobilemenu .topline{
  top: 5px;
}
#mobilemenu .middleline{
  top: 13px;
}
#mobilemenu .bottomline{
  top: 21px;
}
#mainmenu{
  position: absolute;
  right: 10px;
  bottom: 0;
}
#mainmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mainmenu ul li{
  display: inline-block;
}

#mainmenu ul li.mobile-item {
  display: none;
}
#mainmenu ul li.nav-item a {
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  color: #000;
  font-weight: bold;
}
#mainmenu ul li.nav-item.last {
  margin-right: 20px;
}
#mainmenu ul li.lang-item a {
  text-decoration: none;
  margin: 15px 0;
  display: block;
  color: #888;
  font-size: 14px;
  font-family: sans-serif;
}
#mainmenu ul li.lang-separator{
  width: 1px;
  background-color: #DDD;
  margin: 0 5px;
  height: 15px;
}
#mainmenu ul li.lang-item.active a {
  border-bottom: 1px solid #DDD;

}
#backtotop{
  display: none;
  opacity: 0;
  position: fixed;
  bottom: 55px;
  right: 10px;
  font-size: 24px;
  padding: 0 10px;
  z-index: 100;
}
#content{
  background-color: #F6F6F6;
}
#contentwrap{
  z-index: 1;
  padding-bottom: 70px;
  background-color: #F6F6F6;
}
/* landing */
#landing{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /*z-index: -1;*/
}
#landing_bg{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#landing_bg .bgimg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#landing_logo{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#landing_logo path{
  fill: #FFF;
}
#loading_logo2{
  width: 315.1px;
  height: 115.1px;
  position: absolute;
  right: 0;
}
#loadingwrap {
  overflow: hidden;
  width: 100%;
  z-index: 1;
  position: absolute;
  right: 0;
  height: 100%;
}
#loadingwrap path{
  fill: #000;
}
#landing_scroll{
  position: fixed;
  bottom: 30px;
  color: #000;
  padding-bottom: 4px;
  /*border-bottom: 2px solid #000;*/
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
#landing_scroll:after {
  background-color: #000;
  height: 2px;
  /*transition: background-color 1s 0.2s,background-color 1s 0.2s;*/
}
.loadcomplete #landing_scroll:after {
  background-color: #FFF;
}
/* index featured project */
#featuredtitle {
  margin: 40px 0 20px;
  font-size: 16px;
}
#featuredholder{
  position: relative;
  margin-bottom: 100px;
}
.proj.projtext{
  background-color: #282828;
}
.proj.projtext.allproj{
  background-color: #424846;
}
.projholder{
  display: inline-block;
  vertical-align: top;
  position: absolute;
  overflow: hidden;
}
.projholder .proj{
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  /*overflow: hidden;*/
}
.projholder img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.projholder img{
  width: 100%;
}
.projholder:hover img{
  width: 110%;
}
/*.projholder img.fullh{
  height: 100%;
}*/
.projholder .imagewrap{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.projholder .projhover{
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: -1px;
}
.projholder:hover .projhover{
  background-color: rgba(0,0,0,0.5);
}
.projholder .proj a{
  text-decoration: none;
}
.projholder .projinfo{
  -webkit-transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -ms-transition: opacity 0.8s;
  transition: opacity 0.8s;
  opacity: 0;
  padding: 35px;
}
.projholder .proj.projtext .projinfo{
  opacity: 1;
}
.projholder .projinfo .projtitle{
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}
.projholder .projinfo .projtitle a{
  color: #FFF;
  text-decoration: underline;
}
.projholder .proj.projtext .projinfo .projtitle{
  font-size: 26px;
  font-weight: 400;
}
body.zh_tw .projholder .proj.projtext .projinfo .projtitle{
  font-weight: 600;
}
.projholder .proj.projtext .projinfo .projtitle p {
  margin: 0;
}
.projholder .projinfo .projcat{
  font-size: 16px;
  color: #b3b3b3;
  padding-top: 0px;
  line-height: 1.5em;
  width: 85%;
}
.projholder .proj.projtext .projinfo .projcat{
  /*padding-top: 20px;*/
  font-size: 14px;
  color: #999;
}
.projholder:hover .projinfo{
  opacity: 1;
}
.projholder .projhover .hovertri{
  /*height: 101%;*/
  /*background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20100%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpolygon%20fill%3D%27rgb%28246%2C246%2C246%29%27%20points%3D%27100%2C0%20100%2C100%200%2C100%20%27%2F%3E%3C%2Fsvg%3E");*/
  width: 0;
  /*-webkit-transition: width 0.8s;*/
  /*-moz-transition: width 0.8s;*/
  /*-ms-transition: width 0.8s;*/
  /*transition: width 0.8s;*/
  border-top: 400px solid transparent;
  border-right: 0px solid #F6F6F6;
  -webkit-transition: border-right 0.8s;
  -moz-transition: border-right 0.8s;
  -ms-transition: border-right 0.8s;
  transition: border-right 0.8s;
  position: absolute;
  right: -1px;
  top: 0;
}
.projholder[data-height="1.77777777778"] .projhover .hovertri{
  border-top: 700px solid transparent;
}
.projholder[data-width="2"] .projhover .hovertri{
  border-top: 685px solid transparent;
}
.projholder:hover .projhover .hovertri{
/*  width: 10%;*/
  border-right: 30px solid #F6F6F6;
}
.projholder[data-width="2"]:hover .projhover .hovertri{
/*  width: 5%;*/
  border-right: 30px solid #F6F6F6;
}
.allproj{
  text-align: center;
}
.projholder .proj.allproj a{
  width: 100%;
  height: 100%;
  display: block;
}
.allproj .valigncontent {
  text-decoration: none;
  color: #AAA;
  /*border-bottom: 1px solid #757575;*/
  font-size: 20px;
  padding-bottom: 2px;
}
.allproj .animateborderbottom:after{
  background-color: #757575;
}
/* about page */
.staffbg {
  height: 450px;
  overflow: hidden;
  position: relative;
}
.staffbg img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.staffbg .bgoverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
}
.staffbox {
  padding: 20px;
  background: #FFF;
  z-index: 1;
  margin-bottom: 20px;
}
.staffwrapper {
  position: relative;
}
img.staffphoto {
  float: left;
  width: 35%;
}
.staffinfo {
  /*padding-left: 35%;*/
}
.stafftitle {
  padding-left: 20px;
  font-size: 16px;
  margin-bottom: 10px;
}
.staffdescription {
  padding-left: 20px;
  font-size: 14px;
  color: #999;
  line-height: 1.4em;
}
.flowwrapper {
  background-color: #282828;
  padding: 20px 0 70px;
}
.flow {
  width: 22%;
  float: left;
  text-align: center;
  background-color: #FFF;
  position: relative;
  margin-right: 4%;
}
.flow.last{
  margin: 0;
}
.flow .flowcounter {
  display: inline-block;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  border: 1px solid #424846;
  line-height: 33px;
  background-color: #FFF;
  position: relative;
  top: -18px;
}
.flow .flowicon {
  margin: 15px 0 10px;
  height: 52px;
}
.flow .icontext {
  width: 50%;
  margin: 0 auto;
}
.flow .icontext p{
  height: 2.6em;
}
.flow .flowdetails {
  color: #99999D;
  margin: 20px 15px 40px;
  font-size: 14px;
}
.partnerwrapper{
  background-color: #E6E6E6;
  background-color: #FFF;
  width: 85%;
  margin: 0 auto;
}
.partnerwrapper .partner {
  width: 33.33333333%;
  vertical-align: top;
  display: inline-block;
  /*padding: 70px 100px 0;*/
  padding: 70px 80px 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.partnerwrapper .container{
}
.partnerwrapper  img {
  width: 100%;
  vertical-align: top;
}
.jobwrapper {
  margin-bottom: 35px;
}
.jobwrapper .job{
  float: right;
  width: 410px;
  margin-bottom: 35px;
}
.jobwrapper .jobtitle{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.jobwrapper .jobdescription{
  color: #4D4D4D;
  line-height: 2em;
  font-size: 14px;
}
/* project list */
.category_filter{
  padding-top: 20px;
  padding-bottom: 20px;
}
#content .project_list {
  margin-bottom: 100px;
}
.project_list .projholder {
  position: relative;
  width: 33.33333333%;
  padding-top: 25%;
}
.category_filter ul {
  padding: 0;
}
.category_filter select {
  display: none;
}
.category_filter li {
  display: inline-block;
  margin-right: 40px;
}
.category_filter a {
  text-decoration: none;
  color: #b3b3b3;
}
.category_filter li a.active{
  border-bottom: 2px solid #000;
  color: #000;
}
.projtext.loadmoreprojs{
  text-align: center;
  background-color: #e6e6e6;
}
.projtext.loadmoreprojs a{
  color: #b3b3b3;
  display: block;
  height: 100%;
}
/* press list */
#content .press_list {
  margin-bottom: 100px;
  overflow: hidden;
}
/***/
.solganholder {
  width: 100%;
}
.solganholder .sloganimg {
  width: 100%;
}
.solganholder div.sloganimg {
  padding-top: 25%;
  background-size: 100% auto;
  background-position: 50% 0%;
}
.solganholder .container{
  padding-top: 70px;
  padding-bottom: 70px;
}
.solganholder.jobwrapper .container{
  padding-top: 0px;
}
.solganholder .title{
  width: 40%;
  float: left;
  font-size: 26px;
}
.solganholder .description{
  width: 410px;
  float: right;
  font-size: 16px;
  line-height: 1.7em;
  color: #63666c;
}
.solganholder .title p,
.solganholder .description p{
  margin: 0;
}
.solganholder .description a{
  color: #808080;
}
.solganholder.workflow{
  background-color: #282828;
}
.solganholder.workflow .title{
  color: #FFF;
}
.solganholder.workflow .description{
  color: #999;
}
.slogan-table {
  display: table;
  width: 100%;
}
.slogan-tablerow {
  display: table-row;
}
.slogan-tablecell {
  display: table-cell;
}
#footer {
  background: #E6E6E6;
  padding: 30px 0 20px;
  position: relative;
  z-index: 1;
}
.footer-menu {
  float: left;
}
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu ul li {
  display: inline-block;
  margin-right: 25px;
}
.footer-menu ul li a,
.footer-title {
  text-decoration: none;
  color: #424846;
  margin-bottom: 20px;
}
.footer-social,
.footer-contact{
  float: right;
}
.footer-col{
  padding-bottom: 65px;
}
.copyright{
  color: #424846;
  font-size: 12px;
}
.footer-row,
.footer-row a{
  color: #424846;
  font-size: 12px;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-social {
  margin-right: 60px;
}
.footer-social .social-icon{
  border: 1px solid #AFAFAF;
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  float: left;
  margin-right: 20px;
  color: #424846;
}
@media screen and (max-width: 1399px) and (min-width: 1200px){
  
}
@media screen and (max-width: 1199px) and (min-width: 992px){
  .flowwrapper{
    padding-bottom: 40px;
  }
  .flow{
    width: 48%;
    margin: 0 0 30px;
    min-height: 280px;
  }
  .flow.even{
    margin-left: 4%;
  }
  .partnerwrapper .partner {
    padding: 70px 50px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px){
  .flowwrapper{
    padding-bottom: 40px;
  }
  .flow{
    width: 48%;
    margin: 0 0 30px;
    min-height: 280px;
  }
  .flow.even{
    margin-left: 4%;
  }
  #featuredtitle {
    margin-top: 20px;
  }
  .projholder .proj.projtext .projinfo .projtitle {
    font-size: 20px;
  }
  .projholder .projinfo .projcat {
    width: 100%;
  }
  .project_list .projholder {
    width: 50%;
    padding-top: 37.5%;
  }
  #projectinfo{

  }
  .partnerwrapper .partner {
    padding: 70px 50px 0;
  }
}
@media screen and (max-width: 767px) {
  #header {
    height: 51px;
  }
  #mobilemenu {
    display: block;
  }
  #mainmenu {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: auto;
    display: table;
    /*background-color: rgba(246, 246, 246, 0.5);*/
    background-color: rgba(0, 0, 0, 0.8);
/*    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;*/
  }
  body.openmenu{
    overflow: hidden;
  }
  body.openmenu #mainmenu {
    left: 0%;
  }
  #mainmenu .menu_bg {
    position: absolute;
    top: 0;
    left: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20100%20100%27%20preserveAspectRatio%3D%27none%27%3E%3Cpolygon%20fill%3D%27rgb%28246%2C246%2C246%29%27%20points%3D%2750%2C0%20100%2C0%20100%2C100%200%2C100%20%27%2F%3E%3C%2Fsvg%3E");
    width: 100%;
    height: 100%;
  }
  #mainmenu ul{
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    padding-left: 35%;
    opacity: 0;
  }
  #mainmenu ul li.mobile-item,
  #mainmenu ul li.nav-item {
    display: block;
  }
  #mainmenu ul li.nav-item.last{
    margin: 0;
  }
  #mainmenu ul li.nav-item a{
    color: #333;
    font-size: 26px;
  }
  #mainmenu ul li.nav-item.active a{
    color: #000;
  }
  #mainmenu ul li.lang-item a {
    font-size: 18px;
  }
  #contentwrap {
    padding-bottom: 20px;
  }
  #featuredholder {
    margin-bottom: 20px;
  }
  .flow{
    width: 100%;
    margin: 0 0 30px;
  }
  .flow .icontext{
    height: auto;
  }
  .category_filter {
    padding: 20px 0;
  }
  .category_filter ul {
    text-align: center;
    margin-top: 0;
    margin-bottom: 5px;
    display: none;
  }
  .category_filter select {
    width: 100%;
    border: 0;
    background-color: #FFF;
    padding: 10px 15px;
    display: block;
    -webkit-appearance: none;
    text-align: center;
  }
  .category_filter .container:after {
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 25px;
  }
  .category_filter li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .category_filter li a {
    font-size: 18px;
  }
  .project_list .projholder{
    width: 100%;
    padding-top: 75%;
  }
  .projholder .projhover{
    background: rgba(0,0,0,0.4);
    display: none;
  }
  .projholder:hover img{
    width: 100%;
  }
  .projholder .projinfo{
    opacity: 1;
    padding: 30px;
  }
  .projholder .proj.projtext .projinfo .projcat {
    width: 100%;
    font-size: 16px;
  }
  .projholder .projhover .hovertri{
    display: none;
  }
  .solganholder .container {
    padding: 30px;
  }
  .solganholder .solganimg,
  /*.solganholder.partnerwrapper,*/
  /*.solganholder.partnerwrapper img*/{
    /*display: none;*/
    
  }
  .solganholder div.sloganimg{
    padding-top: 60%;
    background-size: cover;
  }
  .partnerwrapper {
    width: 100%;
  }
  .partnerwrapper .partner {
    width: 50%;
    padding: 20px 20px 0;
  }
  .solganholder .title{
    margin-bottom: 20px;
    font-size: 22px;
  }
  .solganholder .title,
  .solganholder .description{
    width: 100%;
  }
  .slogan-table {
    display: block;
  }
  .slogan-tablerow {
    display: block;
  }
  .slogan-tablecell {
    display: block;
  }
  .footer-col {
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
  }
  .staffbg {
    display: block;
    height: auto;
  }
  .staffbg img {
    position: relative;
    vertical-align: top;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .staffbox {
    width: auto;
    height: auto;
    position: relative;
  }
  .staffbox {
    width: auto;
    height: auto;
    position: relative;
    margin: 0 -20px 20px;
  }
  img.staffphoto {
    float: none;
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  .staffinfo {
    padding-left: 0;
    padding-top: 20px;
  }
  .stafftitle,
  .staffdescription{
    padding-left: 0;
    font-size: 16px;
    line-height: 1.7em;
  }
  .input-group textarea {
    height: 5.7em;
  }
  .jobwrapper .job{
    width: 100%;
  }
  #footer .container {
    padding: 0 30px;
  }
}

