/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,500,700");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a[href^=tel] {
  text-decoration: none; }

.preserve3d {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.vAlign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%); }

.hAlign {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.enableSelect {
  -webkit-touch-callout: auto;
  -webkit-user-select: buttonauto;
  -khtml-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.disableInteraction {
  pointer-events: none; }

.enableInteraction {
  pointer-events: all; }

.interactive {
  cursor: pointer; }

.show {
  display: block; }

.hide {
  display: none; }

.center_align {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%); }

.v_align {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%); }

.flash {
  animation: flash 1s ease-out;
  animation-iteration-count: infinite;
  -moz-animation: flash 1s ease-out;
  -moz-animation-iteration-count: infinite;
  -webkit-animation: flash 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  -ms-animation: flash 1s ease-out;
  -ms-animation-iteration-count: infinite; }

@keyframes flash {
  0% {
    opacity: 0.3; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.3; } }
@-webkit-keyframes flash {
  0% {
    opacity: 0.05; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.05; } }
@-moz-keyframes flash {
  0% {
    opacity: 0.3; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.3; } }
@-ms-keyframes flash {
  0% {
    opacity: 0.3; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.3; } }
.inline_block_display {
  display: inline-block; }

.circle {
  width: 100px;
  height: 100px;
  background: red;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px; }

body {
  width: 100%;
  height: 100%; }

#temporary_disable {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: white;
  position: fixed;
  overflow: hidden;
  z-index: 99; }
  #temporary_disable div {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 36px;
    color: #1d4c80;
    width: 800px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%); }

#main_wrapper {
  position: relative;
  width: 100%;
  height: 100%; }

#nav_wrapper {
  position: relative;
  width: 100%;
  height: 130px; }

#logo {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 320px;
  height: 64px;
  background-image: url("../images/logo.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  left: 3vw; }

#nav {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0; }
  #nav ul {
    display: inline-block; }
  #nav li {
    display: inline-block;
    padding-right: 55px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 21px; }
  #nav li::first-letter {
    text-transform: uppercase; }
  #nav a {
    color: #1d4c80; }

#footer_wrapper {
  display: block;
  width: 100%;
  height: 100%; }
  #footer_wrapper div {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #7f7f7f;
    line-height: 21px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 5px 0; }

#video_wrapper {
  display: block;
  width: 100%;
  height: 650px;
  position: relative;
  pointer-events: none;
  background-color: black; }
  #video_wrapper #iframe_video {
    width: 100%;
    height: calc(100vw/1.77);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%); }

#about_us_wrapper, #partnership_wrapper, #our_people_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1d4c80;
  padding: 50px 0;
  background-image: url("../images/blu_tri_desk_left.png"), url("../images/blu_tri_desk_right.png");
  background-position: left top, right top;
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-repeat: repeat-y;
  background-attachment: fixed; }

#about_us_title, #partnership_title, #our_people_title, .our_projects_title {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 60px;
  color: white; }

#about_us_title::first-letter, #partnership_title::first-letter, #our_people_title::first-letter, .our_projects_title::first-letter {
  text-transform: uppercase; }

#about_us_body, #partnership_body, #our_people_body_text, .our_projects_body_text {
  width: 546px;
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
  line-height: 21px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  text-align: center;
  padding: 50px 0; }

#about_us_btn, #specialty_button, #project_btn {
  position: relative;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  position: relative;
  width: 250px;
  height: 65px;
  border: 1px white solid;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: white;
  cursor: pointer; }

.btn_contents {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%); }

.btn_contents img {
  padding-left: 15px; }

#about_us_bg_tri_wrapper {
  width: 100%;
  height: 100%; }

.blu_tri_left {
  width: 500px;
  height: 100%;
  background-image: url("../images/blu_tri_desk_left.png");
  background-position: 0 0;
  background-repeat: no-repeat; }

#staffs_wrapper, #projects_wrapper {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 150px 0;
  background-image: url("../images/colored_tri_desk.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-position: -30px top;
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-size: 130px, auto;
  background-color: white; }

.staff_wrapper, .project_wrapper {
  position: relative;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.staff_photo_wrapper, .project_photo_wrapper {
  flex: 1; }

.staff_photo {
  width: 300px;
  height: 300px;
  background-image: url("../images/thumb_neville.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background-position: center;
  background-size: cover; }

.staff_details_wrapper, .project_details_wrapper {
  position: relative;
  vertical-align: middle;
  flex: 1; }

.staff_details, .project_details {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }

.staff_name {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 45px;
  color: #1d4c80; }

.staff_title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 35px;
  color: #2d9446;
  font-size: 28px;
  padding-bottom: 43px; }

.staff_description {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f;
  line-height: 21px;
  width: 546px;
  height: 100%;
  padding-bottom: 50px; }

.staff_btn {
  position: relative;
  width: 250px;
  height: 65px;
  border: 1px #1d4c80 solid;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #1d4c80;
  cursor: pointer; }

.bullets {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #2d9446;
  padding-bottom: 40px; }

.right_arrow {
  display: inline-block;
  width: 50px;
  height: 100%; }

#specialty_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 100px 0;
  background-color: #2d9446;
  background-image: url("../images/green_tri_desk_left.png"), url("../images/green_tri_desk_right.png");
  background-position: left top, right top;
  background-repeat: repeat-y;
  background-attachment: fixed; }

#specialty_text {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 60px;
  color: white;
  text-align: center;
  padding-bottom: 50px; }

#projects_wrapper {
  background-image: url("../images/colored_tri_desk_left.svg");
  background-position: 100% 0; }

.project_details_wrapper {
  padding-left: 20px;
  text-align: left; }

.project_photo_wrapper {
  position: relative;
  padding: 0 50px; }

.project_photo_frame {
  background-image: url("../images/project_frame.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 663px;
  height: 465px;
  margin: auto; }

.project_photo {
  width: 600px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-image: url("../images/project_sample.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

#partnership_logo_wrapper {
  position: relative;
  padding-bottom: 50px; }
  #partnership_logo_wrapper ul {
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    flex-wrap: wrap;
    justify-content: center; }
    #partnership_logo_wrapper ul li {
      width: 135px;
      height: 135px;
      margin: 0 20px;
      position: relative; }
      #partnership_logo_wrapper ul li .partnership_logo {
        width: 135px;
        height: auto;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%); }
      #partnership_logo_wrapper ul li .partnership_logo_shadow {
        width: 75px;
        height: 7px;
        background: #1b3751;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        margin: auto;
        left: 0;
        right: 0; }

#contact_us_wrapper {
  width: 100%;
  height: 100%;
  padding: 100px 0;
  position: relative;
  background-color: white; }

#contact_us_content_wrapper {
  text-align: center;
  font-family: "Roboto", sans-serif; }

#contact_us_title_wrapper div {
  padding: 10px 0; }
#contact_us_title_wrapper #contact_us_title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 60px;
  color: #1d4c80; }
#contact_us_title_wrapper .contact_us_body {
  width: 546px;
  height: 100%;
  margin: auto; }
#contact_us_title_wrapper #contact_us_title_body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f;
  line-height: 21px;
  width: 546px;
  height: 100%;
  margin: auto; }

#contact_us_details_wrapper {
  padding: 50px 0; }
  #contact_us_details_wrapper .contact_us_details_padding {
    padding: 30px 0; }
  #contact_us_details_wrapper .contact_us_details_title {
    padding: 4px 0;
    font-weight: 700;
    font-size: 24px;
    color: #2d9446; }

.contact_us_body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f;
  line-height: 21px; }
  .contact_us_body a {
    color: #7f7f7f; }

#pg_about_us_wrapper {
  width: 100%;
  height: 100%;
  padding: 100px 0;
  background-image: url("../images/colored_tri_desk.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-position: 0px top;
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-size: 130px, auto; }
  #pg_about_us_wrapper #pg_about_us_contents, #pg_about_us_wrapper .pg_projects_contents {
    text-align: center;
    display: block;
    position: relative; }
    #pg_about_us_wrapper #pg_about_us_contents #pg_about_us_title, #pg_about_us_wrapper .pg_projects_contents #pg_about_us_title {
      font-family: "Roboto", sans-serif;
      font-weight: 300;
      font-size: 60px;
      color: #1d4c80;
      padding: 25px 0; }
    #pg_about_us_wrapper #pg_about_us_contents #pg_about_us_body, #pg_about_us_wrapper .pg_projects_contents #pg_about_us_body {
      font-family: "Roboto", sans-serif;
      font-weight: 300;
      font-size: 18px;
      color: #7f7f7f;
      line-height: 21px;
      width: 546px;
      height: 100%;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      padding: 25px 0; }

#our_people_list_wrapper, .our_projects_list_wrapper {
  width: 100%;
  height: 100%;
  padding: 50px 50px;
  box-sizing: border-box; }
  #our_people_list_wrapper #our_people_list, .our_projects_list_wrapper #our_people_list, #our_people_list_wrapper .our_projects_list, .our_projects_list_wrapper .our_projects_list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 800px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }
    #our_people_list_wrapper #our_people_list li, .our_projects_list_wrapper #our_people_list li, #our_people_list_wrapper .our_projects_list li, .our_projects_list_wrapper .our_projects_list li {
      width: 150px;
      height: 150px;
      position: relative;
      cursor: pointer;
      overflow: hidden; }
      #our_people_list_wrapper #our_people_list li .our_people_name, .our_projects_list_wrapper #our_people_list li .our_people_name, #our_people_list_wrapper .our_projects_list li .our_people_name, .our_projects_list_wrapper .our_projects_list li .our_people_name {
        display: inline-block;
        position: absolute;
        z-index: 2;
        bottom: 0;
        padding: 2px;
        font-family: "Roboto", sans-serif;
        color: white;
        font-size: 12px;
        font-weight: 300;
        word-wrap: normal;
        width: 65px; }
      #our_people_list_wrapper #our_people_list li .our_people_name::first-line, .our_projects_list_wrapper #our_people_list li .our_people_name::first-line, #our_people_list_wrapper .our_projects_list li .our_people_name::first-line, .our_projects_list_wrapper .our_projects_list li .our_people_name::first-line {
        font-size: 14px;
        font-weight: 500; }
      #our_people_list_wrapper #our_people_list li .blu_overlay, .our_projects_list_wrapper #our_people_list li .blu_overlay, #our_people_list_wrapper .our_projects_list li .blu_overlay, .our_projects_list_wrapper .our_projects_list li .blu_overlay {
        position: absolute;
        width: 150px;
        height: 150px;
        background-color: #1d4c80;
        z-index: 1;
        opacity: .75;
        mix-blend-mode: overlay; }
      #our_people_list_wrapper #our_people_list li .our_people_photo, .our_projects_list_wrapper #our_people_list li .our_people_photo, #our_people_list_wrapper .our_projects_list li .our_people_photo, .our_projects_list_wrapper .our_projects_list li .our_people_photo {
        width: 150px;
        height: 150px;
        filter: gray;
        /* IE6-9 */
        -webkit-filter: grayscale(100%);
        /* Chrome 19+ & Safari 6+ */
        -webkit-transition: all .6s ease;
        /* Fade to color for Chrome and Safari */
        -webkit-backface-visibility: hidden;
        /* Fix for transition flickering */
        -webkit-transition: all 0.5s linear;
        transition: all 0.5s linear;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1); }

.latched {
  position: fixed;
  top: 0;
  width: auto; }

.content {
  width: 100%;
  float: left;
  overflow: hidden; }

.spacer {
  width: 0;
  float: left;
  clear: both; }

.team_member_wrapper {
  width: 100%;
  height: 100%; }

.team_member_photo, .pg_project_photo {
  width: 100%;
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed; }

.team_member_details_wrapper, .pg_project_details_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  padding: 20px 0;
  padding-bottom: 100px;
  background-color: white; }

.team_member_name, .pg_project_name {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 60px;
  color: #1d4c80;
  padding: 2px 0;
  margin-top: 30px; }

.team_member_position, .pg_project_category {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 36px;
  color: #2d9446; }

.team_member_description, .pg_project_description {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f;
  line-height: 21px;
  padding: 30px 0 0 0;
  width: 50%;
  margin: auto; }
  .team_member_description div, .pg_project_description div {
    box-sizing: border-box;
    width: 960px;
    margin: auto; }

.pg_projects_title {
  text-align: center; }

.pg_projects_body {
  text-align: center; }

.our_projects_wrapper {
  position: relative;
  width: 100%;
  height: 100%; }

.our_projects_name {
  width: 100%;
  position: absolute;
  z-index: 2;
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 12px;
  font-weight: 500;
  word-wrap: normal;
  text-transform: uppercase;
  padding: 3px;
  bottom: 0;
  line-height: 14px; }

.our_projects_photo {
  width: 150px;
  height: 150px;
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
  -webkit-transition: all .6s ease;
  /* Fade to color for Chrome and Safari */
  -webkit-backface-visibility: hidden;
  /* Fix for transition flickering */
  background-image: url(../images/no_project.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

.pg_project_photo {
  background-image: url(../images/project_sample.png); }

.pg_project_details_wrapper {
  width: 80%;
  margin: auto; }

.pg_project_name {
  text-transform: uppercase; }

.pg_project_category {
  margin: 10px 0; }

#pg_specialty_wrapper {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 50px 0; }

.specialty_title, .pg_projects_title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 60px;
  color: #1d4c80;
  padding: 20px 0; }

.specialty_title_description, .pg_projects_body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f;
  line-height: 21px;
  width: 800px;
  margin: auto;
  padding: 20px 0 20px 0; }

.product_wrapper {
  padding-bottom: 20px; }

.product_title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 21px;
  color: #2d9446;
  font-weight: 700;
  padding: 15px 0 5px 0; }

.product_details {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f; }
  .product_details li {
    padding: 2px 0; }

#pg_partnership_wrapper {
  width: 100%;
  height: 100%;
  position: relative; }

.partnership_ul {
  position: relative; }
  .partnership_ul li {
    padding: 80px; }
    .partnership_ul li .partnership_list_wrapper {
      display: inline-block;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      text-align: center; }
  .partnership_ul li:nth-child(even) {
    background-color: #f2f2f2; }

.partner_logo {
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background-color: grey;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; }

.partner_details {
  width: 45%;
  text-align: left;
  display: inline-block;
  padding-left: 80px;
  box-sizing: content-box;
  vertical-align: middle; }

.partner_name {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 36px;
  color: #1d4c80; }

.partner_description {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #7f7f7f;
  line-height: 20px;
  padding: 30px 0; }

.partner_btn {
  position: relative;
  width: 250px;
  height: 65px;
  border: 1px #1d4c80 solid;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #1d4c80;
  cursor: pointer; }

.staffs_main_wrapper {
  width: 100%;
  height: 100%;
  background-color: white;
  position: relative;
  padding: 80px 0; }

#staffs_main_page_swiper {
  width: 100%;
  height: 100%; }
  #staffs_main_page_swiper .staffs_wrapper {
    text-align: center; }
  #staffs_main_page_swiper .swiper-slide .staff_photo_wrapper, #staffs_main_page_swiper .swiper-slide .project_photo_wrapper {
    display: inline-block;
    vertical-align: middle; }
  #staffs_main_page_swiper .swiper-slide .staff_details_wrapper, #staffs_main_page_swiper .swiper-slide .project_details_wrapper {
    display: inline-block;
    text-align: left;
    margin-left: 30px; }

.staffs_slider {
  overflow: hidden;
  position: relative;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background-color: white; }
  .staffs_slider #staffs_wrapper_ul {
    position: relative; }
    .staffs_slider #staffs_wrapper_ul li {
      float: left;
      overflow: hidden; }
      .staffs_slider #staffs_wrapper_ul li .staffs_wrapper {
        padding: 100px 0; }
        .staffs_slider #staffs_wrapper_ul li .staffs_wrapper .staff_photo_wrapper, .staffs_slider #staffs_wrapper_ul li .staffs_wrapper .project_photo_wrapper {
          display: inline-block;
          vertical-align: middle;
          padding: 0 50px; }
        .staffs_slider #staffs_wrapper_ul li .staffs_wrapper .staff_details_wrapper, .staffs_slider #staffs_wrapper_ul li .staffs_wrapper .project_details_wrapper {
          display: inline-block; }
        .staffs_slider #staffs_wrapper_ul li .staffs_wrapper .staff_photo {
          width: 300px;
          height: 300px;
          background-image: url("../images/thumb_neville.jpg");
          background-position: 0 0;
          background-repeat: no-repeat;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%;
          position: relative;
          left: 50%;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%); }

.staff_slider_nav {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }
  .staff_slider_nav div {
    display: inline-block; }
  .staff_slider_nav div[data-name='prev'] {
    background-image: url("../images/arrow_green_left.png");
    background-position: 0 0;
    background-repeat: no-repeat; }
  .staff_slider_nav div[data-name='next'] {
    background-image: url("../images/arrow_green_left.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH"; }
  .staff_slider_nav .paginition {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #2d9446;
    padding: 0 10px;
    vertical-align: middle; }
  .staff_slider_nav .slide_btn {
    width: 35px;
    height: 10px;
    cursor: pointer; }

#main_projects_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px;
  background-color: white; }

.project_slider {
  position: relative;
  padding: 50px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  overflow: hidden; }
  .project_slider ul {
    position: relative;
    overflow: hidden;
    z-index: -2; }
    .project_slider ul li {
      float: left; }
      .project_slider ul li .project_contents {
        width: 300px;
        height: 300px;
        background-color: grey;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        font-size: 60px;
        color: #1d4c80; }

.projects_slider_nav {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }
  .projects_slider_nav div {
    display: inline-block; }
  .projects_slider_nav div[data-name='prev'] {
    background-image: url("../images/arrow_green_left.png");
    background-position: 0 0;
    background-repeat: no-repeat; }
  .projects_slider_nav div[data-name='next'] {
    background-image: url("../images/arrow_green_left.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH"; }
  .projects_slider_nav .paginition {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #2d9446;
    padding: 0 10px;
    vertical-align: middle; }
  .projects_slider_nav .slide_btn {
    width: 35px;
    height: 10px;
    cursor: pointer; }

.project_details_wrapper .staff_name {
  text-transform: uppercase; }
.project_details_wrapper .staff_title {
  width: 546px; }

.verticalAlign {
  display: inline-block;
  vertical-align: middle; }

.client_text {
  margin: 15px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 30;
  color: #7f7f7f;
  font-weight: 700;
  cursor: pointer; }
  .client_text .client_green {
    color: #1d4c80;
    font-weight: 300;
    cursor: initial; }

.client_text:hover {
  color: #1d4c80; }

#projects_main_page_swiper {
  text-align: center;
  width: 100%; }

#projects_wrapper_home_page {
  width: 100%;
  position: relative;
  background: white;
  padding: 80px 0; }
  #projects_wrapper_home_page #projects_swiper_home_page {
    width: 100%;
    padding: 20px 0; }
  #projects_wrapper_home_page .projects_swiper_home_page {
    text-align: center; }
  #projects_wrapper_home_page .project_photo_frame_home_page {
    background-image: url("../images/project_frame.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    width: 663px;
    height: 465px;
    margin: auto;
    position: relative;
    vertical-align: middle;
    display: inline-block; }
  #projects_wrapper_home_page .project_photo_home_page {
    width: 600px;
    height: 400px; }
  #projects_wrapper_home_page .project_details_home_page {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 45%;
    margin-left: 35px; }
  #projects_wrapper_home_page .project_slide {
    width: 100%; }
  #projects_wrapper_home_page .project_header_home_page {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 45px;
    color: #1d4c80; }
  #projects_wrapper_home_page .project_sub_header_home_page {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: #2d9446;
    padding-bottom: 43px; }
  #projects_wrapper_home_page .project_body_home_page {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #7f7f7f;
    line-height: 21px;
    padding-bottom: 50px; }

#mobile_navigation_wrapper {
  width: 100%;
  height: 75px;
  padding: 20px 0;
  position: relative;
  z-index: 5; }

#mobile_navigation_outer {
  width: 100%;
  height: 75px; }

#mobile_nav_list {
  width: 100%;
  height: 0px;
  background: white;
  text-align: center;
  position: relative;
  overflow: hidden; }
  #mobile_nav_list #mobile_close_menu {
    width: 21px;
    height: 21px;
    background: url(../images/mobile_close_menu.svg) no-repeat center center;
    background-size: cover;
    right: 3.8%;
    position: absolute; }
  #mobile_nav_list ul li {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 21px;
    padding: 20px 0; }
    #mobile_nav_list ul li a {
      color: #2d9446; }

#mobile_menu {
  width: 30px;
  height: 30px;
  background: url(../images/mobile_menu_icon.svg) no-repeat center;
  background-size: cover;
  float: right;
  margin-right: 3%; }

#project_slides .landscape_image {
  width: none; }
#project_slides .potrait_image {
  width: none; }

.imageTypeBg {
  position: absolute;
  z-index: 5; }

@media screen and (max-width: 1366px) and (min-width: 1025px) {
  #nav li {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 16px; }

  #staffs_main_page_swiper .swiper-slide .staff_details_wrapper, #staffs_main_page_swiper .swiper-slide .project_details_wrapper {
    display: block; }
  #staffs_main_page_swiper .swiper-slide .staff_photo_wrapper, #staffs_main_page_swiper .swiper-slide .project_photo_wrapper {
    display: block; }

  #staffs_wrapper, #projects_wrapper {
    padding: 100px 0; }

  .staff_details, .project_details {
    text-align: center;
    padding: 80px 0; }

  .staff_btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }

  .staff_description {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }

  .staff_wrapper, .project_wrapper {
    display: block; }

  .project_photo_frame_home_page {
    display: block;
    margin-bottom: 50px; }

  .project_details_home_page {
    text-align: center;
    margin-top: 50px; }

  .pg_project_details_wrapper {
    background: none; }

  #pg_about_us_wrapper {
    background: none; }

  #projects_swiper_home_page .project_slide .project_details_home_page {
    text-align: center; }

  #about_us_our_people #our_people_wrapper #our_people_contents #our_people_list_wrapper #our_people_list, #about_us_our_people #our_people_wrapper #our_people_contents .our_projects_list_wrapper #our_people_list, #about_us_our_people #our_people_wrapper #our_people_contents #our_people_list_wrapper .our_projects_list, #about_us_our_people #our_people_wrapper #our_people_contents .our_projects_list_wrapper .our_projects_list {
    padding: 50px;
    box-sizing: border-box; } }
@media screen and (max-width: 1024px) and (min-width: 751px) {
  #about_us_our_people #our_people_wrapper #our_people_contents #our_people_list_wrapper #our_people_list, #about_us_our_people #our_people_wrapper #our_people_contents .our_projects_list_wrapper #our_people_list, #about_us_our_people #our_people_wrapper #our_people_contents #our_people_list_wrapper .our_projects_list, #about_us_our_people #our_people_wrapper #our_people_contents .our_projects_list_wrapper .our_projects_list {
    padding: 50px;
    box-sizing: border-box; }

  body {
    width: 100%;
    height: 100%; }

  .staff_details, .project_details {
    text-align: center; }

  .staff_btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }

  .staff_description {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }

  .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .staff_photo_wrapper, .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .project_photo_wrapper {
    margin-bottom: 30px; }
  .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .staff_details_wrapper, .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .project_details_wrapper {
    display: block;
    margin-left: 0; }

  .project_photo_frame_home_page {
    display: block;
    margin-bottom: 50px; }

  #projects_swiper_home_page .project_slide .project_details_home_page {
    text-align: center;
    margin-top: 50px;
    width: 75%; }

  .pg_project_details_wrapper {
    background: none; }

  #pg_about_us_wrapper {
    background: none; }

  #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper {
    position: relative; }
    #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper .partner_details {
      width: 100%;
      text-align: center;
      padding-top: 30px;
      padding-left: 0;
      display: block; }
      #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper .partner_details .partner_btn {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%); }

  .team_member_details_wrapper, .pg_project_details_wrapper {
    width: 80%;
    margin: auto; } }
@media screen and (max-width: 750px) {
  body {
    width: 100%;
    height: 100%; }

  #logo {
    background-size: 70%;
    background-position: center left; }

  .about_us_title {
    font-size: 36px; }

  #about_us_body, #partnership_body, #our_people_body_text, .our_projects_body_text {
    width: 75%;
    font-size: 15px;
    line-height: 17px; }

  .staff_photo {
    width: 200px;
    height: 200px; }

  #about_us_body, #partnership_body, #our_people_body_text, .our_projects_body_text {
    font-size: 15px;
    line-height: 17px; }

  #specialty_text {
    font-size: 36px; }

  .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper {
    text-align: center; }
    .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .staff_details_wrapper, .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .project_details_wrapper {
      position: relative;
      width: 75%;
      text-align: center;
      margin-top: 30px;
      margin-left: 0; }
      .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .staff_details_wrapper .staff_name, .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .project_details_wrapper .staff_name {
        font-size: 36px; }
      .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .staff_details_wrapper .staff_title, .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .project_details_wrapper .staff_title {
        font-size: 20px; }
      .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .staff_details_wrapper .staff_description, .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .project_details_wrapper .staff_description {
        width: 100%;
        font-size: 15px;
        line-height: 17px; }
      .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .staff_details_wrapper .staff_btn, .staffs_main_wrapper #staffs_main_page_swiper .swiper-wrapper .project_details_wrapper .staff_btn {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%); }

  #partnership_title, #our_people_title, .our_projects_title {
    font-size: 36px; }

  #partnership_body, #our_people_body_text, .our_projects_body_text {
    font-size: 15px;
    line-height: 17px; }

  #contact_us_wrapper #contact_us_content_wrapper #contact_us_title_wrapper #contact_us_title {
    font-size: 36px; }
  #contact_us_wrapper #contact_us_content_wrapper #contact_us_title_wrapper #contact_us_title_body {
    width: 75%;
    font-size: 15px;
    line-height: 17px; }
  #contact_us_wrapper #contact_us_content_wrapper #contact_us_details_wrapper {
    padding: 10px 0; }
    #contact_us_wrapper #contact_us_content_wrapper #contact_us_details_wrapper .contact_us_details_title {
      font-size: 20px; }
    #contact_us_wrapper #contact_us_content_wrapper #contact_us_details_wrapper .contact_us_body {
      font-size: 15px;
      line-height: 17px; }

  #projects_wrapper_home_page {
    padding: 0 0 50px 0; }
    #projects_wrapper_home_page #projects_swiper_home_page .projects_swiper_home_page .project_slide .project_photo_frame_home_page {
      background: none;
      width: 100%;
      height: 360px;
      margin-bottom: 30px; }
      #projects_wrapper_home_page #projects_swiper_home_page .projects_swiper_home_page .project_slide .project_photo_frame_home_page .project_photo_home_page {
        width: 100%;
        height: 360px;
        background-size: cover; }
    #projects_wrapper_home_page #projects_swiper_home_page .projects_swiper_home_page .project_slide .project_details_home_page {
      width: 75%;
      text-align: center;
      margin-left: 0; }
      #projects_wrapper_home_page #projects_swiper_home_page .projects_swiper_home_page .project_slide .project_details_home_page .project_header_home_page {
        font-size: 36px; }
      #projects_wrapper_home_page #projects_swiper_home_page .projects_swiper_home_page .project_slide .project_details_home_page .project_sub_header_home_page {
        font-size: 20px; }
      #projects_wrapper_home_page #projects_swiper_home_page .projects_swiper_home_page .project_slide .project_details_home_page .project_body_home_page {
        font-size: 15px;
        line-height: 17px; }
      #projects_wrapper_home_page #projects_swiper_home_page .projects_swiper_home_page .project_slide .project_details_home_page .staff_btn {
        margin: auto; }

  #pg_specialty_wrapper .specialty_title_wrapper .specialty_title, #pg_specialty_wrapper .specialty_title_wrapper .pg_projects_title {
    font-size: 36px; }
  #pg_specialty_wrapper .specialty_title_wrapper .specialty_title_description, #pg_specialty_wrapper .specialty_title_wrapper .pg_projects_body {
    width: 75%;
    padding-bottom: 50px;
    font-size: 15px;
    line-height: 17px; }
  #pg_specialty_wrapper .product_wrapper .product_list {
    width: 70%;
    margin: auto; }
    #pg_specialty_wrapper .product_wrapper .product_list .product_details {
      font-size: 15px;
      line-height: 17px; }
    #pg_specialty_wrapper .product_wrapper .product_list .product_details li {
      padding: 8px 0;
      border-bottom: 1px #2d9446 ridge; }

  #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper {
    position: relative; }
    #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper .partner_logo {
      width: 150px;
      height: 150px; }
    #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper .partner_details {
      width: 100%;
      text-align: center;
      padding-top: 30px;
      padding-left: 0; }
      #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper .partner_details .partner_name {
        font-size: 36px; }
      #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper .partner_details .partner_description {
        font-size: 15px;
        line-height: 17px; }
      #pg_partnership_wrapper .partnership_ul .partnership_list_wrapper .partner_details .partner_btn {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%); }

  .pg_projects_wrapper .pg_projects_contents .pg_projects_title {
    font-size: 36px; }
  .pg_projects_wrapper .pg_projects_contents .pg_projects_body {
    width: 75%;
    font-size: 15px;
    line-height: 17px; }
  .pg_projects_wrapper .pg_projects_contents .our_projects_wrapper .our_projects_contents .our_projects_list_wrapper .our_projects_list {
    width: 100%; }
    .pg_projects_wrapper .pg_projects_contents .our_projects_wrapper .our_projects_contents .our_projects_list_wrapper .our_projects_list li {
      width: 100px;
      height: 100px; }
      .pg_projects_wrapper .pg_projects_contents .our_projects_wrapper .our_projects_contents .our_projects_list_wrapper .our_projects_list li .our_projects_photo {
        width: 100px;
        height: 100px; }

  .pg_project_photo {
    width: 100%;
    background-size: cover;
    background-position: center center; }

  .pg_project_details_wrapper {
    background: none; }
    .pg_project_details_wrapper .pg_project_name {
      font-size: 36px; }
    .pg_project_details_wrapper .pg_project_category {
      font-size: 20px; }
    .pg_project_details_wrapper .project_2_client {
      font-size: 18px; }
    .pg_project_details_wrapper .pg_project_description {
      font-size: 15px;
      line-height: 17px;
      text-align: center;
      width: 95%; }

  .team_member_details_wrapper, .pg_project_details_wrapper {
    width: 80%;
    margin: auto; }

  .team_member_photo, .pg_project_photo {
    height: 250px; }

  .team_member_name, .pg_project_name {
    font-size: 36px; }

  .team_member_position, .pg_project_category {
    font-size: 20px; }

  .team_member_description, .pg_project_description {
    font-size: 15px;
    line-height: 17px; }

  #pg_about_us_wrapper {
    background: none;
    padding: 20px 0; }
    #pg_about_us_wrapper #pg_about_us_contents, #pg_about_us_wrapper .pg_projects_contents {
      width: 95%;
      margin: auto; }
      #pg_about_us_wrapper #pg_about_us_contents #pg_about_us_title span, #pg_about_us_wrapper .pg_projects_contents #pg_about_us_title span {
        font-size: 36px;
        line-height: 38px; }
      #pg_about_us_wrapper #pg_about_us_contents #pg_about_us_title, #pg_about_us_wrapper .pg_projects_contents #pg_about_us_title {
        font-size: 0; }
      #pg_about_us_wrapper #pg_about_us_contents #pg_about_us_body p, #pg_about_us_wrapper .pg_projects_contents #pg_about_us_body p {
        font-size: 15px;
        line-height: 17px; }
      #pg_about_us_wrapper #pg_about_us_contents #pg_about_us_body, #pg_about_us_wrapper .pg_projects_contents #pg_about_us_body {
        width: 95%; }

  #our_people_wrapper #our_people_contents #our_people_list_wrapper #our_people_list, #our_people_wrapper #our_people_contents .our_projects_list_wrapper #our_people_list, #our_people_wrapper #our_people_contents #our_people_list_wrapper .our_projects_list, #our_people_wrapper #our_people_contents .our_projects_list_wrapper .our_projects_list {
    width: 100%; }
    #our_people_wrapper #our_people_contents #our_people_list_wrapper #our_people_list li, #our_people_wrapper #our_people_contents .our_projects_list_wrapper #our_people_list li, #our_people_wrapper #our_people_contents #our_people_list_wrapper .our_projects_list li, #our_people_wrapper #our_people_contents .our_projects_list_wrapper .our_projects_list li {
      width: 100px;
      height: 100px; }
      #our_people_wrapper #our_people_contents #our_people_list_wrapper #our_people_list li .our_people_photo, #our_people_wrapper #our_people_contents .our_projects_list_wrapper #our_people_list li .our_people_photo, #our_people_wrapper #our_people_contents #our_people_list_wrapper .our_projects_list li .our_people_photo, #our_people_wrapper #our_people_contents .our_projects_list_wrapper .our_projects_list li .our_people_photo {
        width: 100px;
        height: 100px; } }

/*# sourceMappingURL=style.css.map */
