html,
body {
  height: 100%;
  width: 100%;
  font-family: "Heebo", Arial, sans-serif;
  scroll-behavior: smooth;
}

html,
body,
h1,
h2,
h3,
h4,
p,
a,
ul,
li {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

.no-overflow {
  overflow: hidden;
}

.overflow-wrapper {
  overflow: hidden;
  /*position: relative;*/
  width: 100%;
}

.overflow_index {
  background-color: white;
  /*margin-top: 85vh !important;*/
  z-index: 9;
}

video {
  width: 100%;
  height: 100vh;
  background-color: #000;
}

header {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 900;
}

a {
  text-decoration: none;
  color: #ff0000;
}

select::-ms-expand {
  display: none;
}

.logos-wrapper {
  display: inline-block;
  background-color: #ffffff;
  padding: 10px 20px;
}

.larger-logo {
  display: inline-block;
  height: 78px;
}

.small-logo {
  display: inline-block;
  height: 54px;
}

.small-logo + .small-logo {
  margin-left: 16px;
}

.partner-small-logo {
  display: inline-block;
  height: 68px;
}

.shade {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 998;
  text-align: center;
  display: none;
}

.lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0 auto;
  display: none;
  z-index: 999;
  padding: 12px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 5px;
}

.shade.active,
.lightbox.active {
  display: block;
}

.lightbox img {
  position: relative;
}

.lightbox p {
  color: #0f477d;
  font-size: 16px;
  text-align: left;
  padding: 14px 10px;
}

.js-animated {
  opacity: 0;
}

.banner {
  width: 100%;
}

.more-margin {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .overflow-wrapper {
    margin-top: 72px;
  }
}

.aspect-ratio-box {
  position: relative;
  width: 50%;
  /* desired width */
}

.aspect-ratio-box:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* 1:1 - 100% ; 4:3 - 75% ; 16:9 - 56.25%*/
}

.aspect-ratio-box-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* --------------------------------  header  -------------------------------- */

.header {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 50px 22px 50px;
  box-sizing: border-box;
  overflow: hidden;
}

.header-logo {
  /* float: left; */
  display: inline-block;
  /* vertical-align: middle; */
  vertical-align: bottom;
}

.header-logo img {
  vertical-align: middle;
  /* width: 70%; */
  height: 32px;
  width: auto;
}
/*
@media screen and (max-width: 991px) {
    .header-logo img {
        height: 28px;
    }
}
@media screen and (max-width: 767px) {
    .header-logo img {
        height: 24px;
    }
}
@media screen and (max-width: 479px) {
    .header-logo img {
        height: 20px;
    }
}
*/
.menu_wording {
  display: inline-block;
  font-size: 15px;
  color: #ccc;
  margin-right: 10px;
}

.hamburger {
  float: right;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  vertical-align: middle;
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
  cursor: pointer;
  margin-top: 9px;
}
@media screen and (max-width: 480px) {
  .hamburger {
    margin-top: 2px;
  }
}

.hamburger:hover .bar-red {
  width: 40px;
}

.bar-group {
  display: inline-block;
  margin-top: 0;
}

.clearfix {
  clear: both;
}

.burger-bar {
  width: 40px;
  height: 2px;
  background-color: #0f477d;
  margin-top: 2px;
}

.bar-3 {
  width: 30px;
}
@media screen and (max-width: 480px) {
  .burger-bar {
    /*
        width: 20px;
        height: 1px;
        margin-top: 1.5px;
        */
  }
  .bar-3 {
    /*
        width: 10px;
        */
  }
}
.bar-red {
  width: 0px;
  background-color: #ff0000;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  transition: all 0.2s ease;
}

.bar-r2 {
  transition: all 0.3s ease;
}

.bar-r3 {
  transition: all 0.4s ease;
}

.nav {
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  right: 0;
  background-color: rgba(15, 71, 125, 0.95);
  position: fixed;
  z-index: 999;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.nav.open {
  top: 0;
  opacity: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav-holder {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 50px;
  position: relative;
  box-sizing: border-box;
}

.nav-holder .nav-header {
  width: 100%;
}

.nav-holder .nav-header .nav-logo {
  float: left;
}

.nav-holder .nav-header .nav-logo a img {
  width: 70%;
}

.nav-holder .nav-header .nav-close {
  float: right;
  position: relative;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.nav-holder .nav-header .nav-close:hover {
  /*	opacity: 0.5;*/
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.nav .nav-close .cross {
  width: 38px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
}

.nav .nav-close .cross-one {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(45deg);
  position: relative;
  top: 6px;
}

.nav .nav-close .cross-two {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav .nav-holder .nav-item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(30px) translateX(0);
  -ms-transform: translateY(30px) translateX(0);
  transform: translateY(30px) translateX(0);
  transition: all 0.5s ease 0.4s;
}

.nav .nav-holder .nav-item .main,
.nav .nav-holder .nav-item .sub-menu {
  font-size: 41px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 80px;
}

.nav .nav-holder .nav-item .main {
  text-align: right;
  width: 50%;
  position: relative;
  display: block;
  /* right: -50%; */
  transition: right 0.5s ease;
  list-style: none;
}

.nav .nav-holder .nav-item .main.active {
  right: 0;
}

.nav .nav-holder .nav-item .sub-menu {
  text-align: left;
  font-weight: 100;
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: 0;
  margin-left: 20px;
  visibility: hidden;
  width: 90%;
  transition: all 0.5s ease 0.5s;
  opacity: 0;
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  list-style: none;
  padding-bottom: 70px;
}

.nav .nav-holder .nav-item .sub-menu.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  /* Added the following for aesthetics reasons */
  margin-bottom: 5%;
}

.nav .nav-holder .nav-item .main a,
.nav .nav-holder .nav-item .sub-menu a {
  margin-bottom: 20px;
  color: #fff;
  cursor: pointer;
  display: block;
  line-height: 1;
}

.nav .nav-holder .nav-item .main a:hover,
.nav .nav-holder .nav-item .sub-menu a:hover {
  color: #ff0000;
  transition: all 0.3s ease;
}

.nav .nav-holder .nav-item .sub-menu li {
  transition: all 0.2s ease;
}

.nav .nav-holder .nav-item .sub-menu li:hover {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.on {
  color: #ff0000 !important;
}

.nav .nav-holder .side {
  max-width: 1500px;
  width: 50%;
  font-size: 20px;
  font-weight: 300;
  text-align: right;
  /* margin-top: 6px; */
  color: #fff;
  position: relative;
  /* right: 0; */
  /* padding: 0 50px; */
  opacity: 0;
  /* transform: translateY(30px); */
  transition: all 0.8s ease 0.4s;
}

.nav .nav-holder .side a {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  padding: 0 20px;
}

.nav .nav-holder .side a:last-child {
  padding-right: 0;
}

.nav .nav-holder .side a:hover {
  color: #ff0000;
  transition: all 0.5s ease;
}

.nav .nav-holder .nav-item-active {
  opacity: 1;
  -webkit-transform: translateY(0px) translateX(0%);
  -ms-transform: translateY(0px) translateX(0%);
  transform: translateY(0px) translateX(0%);
}

.nav .nav-holder .side.active {
  right: 48%;
  right: calc(50% - 50px);
  transition: all 0.5s ease;
}

.nav .nav-holder .nav-item-left {
  -webkit-transform: translateY(0px) translateX(-46%);
  -ms-transform: translateY(0px) translateX(-46%);
  transform: translateY(0px) translateX(-46%);
}

.panel.current {
  z-index: 1;
}

.box-txt-container,
.box_black,
.fb_dots_container {
  z-index: 8;
}

@media screen and (max-width: 1024px) {
  .header {
    padding: 18px 20px;
  }
  /* .header-logo img {
        width: 65%; 
    }*/
  .hamburger {
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
  }
  .burger-bar {
    /*width: 32px;
    	margin-top: 2px;*/
  }
  .bar-red {
    background-color: #0f477d;
  }
  .hamburger:hover .bar-red {
    width: 32px;
  }
  .menu_wording {
    /*font-size: 14px;*/
    align-self: center;
  }
  .nav-holder {
    padding: 20px 24px;
  }
  .nav-holder .nav-header .nav-logo a img {
    width: 60%;
  }
  .nav-holder .nav-header .nav-close {
    transform: scale(1);
  }
  .nav-holder .nav-header .nav-close:hover {
    transform: scale(1.3);
  }
  .nav .nav-holder .nav-item .main,
  .nav .nav-holder .nav-item .sub-menu {
    font-size: 37px;
  }
  .nav .nav-holder .nav-item .sub-menu {
    width: 80%;
  }
  .nav .nav-holder .side {
    padding: 0;
  }
  .nav .nav-holder .side.active {
    right: 48%;
    right: calc(50% - 20px);
  }
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0px;
  }
  .nav .nav-holder .nav-item-left {
    transform: translateY(0px) translateX(-50%);
  }
  .nav .nav-holder .nav-item .main,
  .nav .nav-holder .nav-item .sub-menu {
    font-size: 21px;
    padding: 0;
  }
  .nav .nav-holder .nav-item .main a,
  .nav .nav-holder .nav-item .sub-menu a {
    margin-bottom: 9px;
  }
  .nav .nav-holder .side a {
    font-size: 14px;
  }
  .nav .nav-holder .side p {
    font-size: 0;
  }
  .nav .nav-holder .side a {
    display: block;
    padding-right: 0;
    font-size: 17px;
    padding-top: 5px;
  }
}

/* --------------------------------  Footer  -------------------------------- */

footer {
  width: 100%;
  padding: 40px 0px 100px;
}

.footer-row {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
}

.media-icon-holder {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
}

.footer-row .footer-col {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer-row .footer-col {
    display: none;
  }
}

.footer-row .footer-inner-col {
  width: auto;
  margin: 0 5% 0 0;
}

.footer-row .footer-inner-col:last-child {
  margin: 0;
}

.footer-inner-col-inner {
  vertical-align: top;
  display: inline-block;
}

.footer-inner-col-inner:not(:last-child) {
  margin-right: 3vw;
}

.footer-inner-col h1 {
  font-size: 16px;
  font-weight: 500;
  color: #0f477d;
  margin-bottom: 10px;
  line-height: 1.2;
  min-height: 1.5em;
}

.footer-inner-col a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  color: #555;
}

.footer-inner-col a:hover {
  color: #ff0000;
}

.social-rol {
  margin-top: 100px;
  margin-bottom: 30px;
}

.footer-row .social-media {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  position: relative;
}

.footer-row .social-media p {
  font-size: 13px;
  font-weight: 300;
  color: #0f477d;
  position: absolute;
  bottom: 0;
}

.media-icon-holder {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: nowrap;
}

.footer-row .social-media .media-icon-holder img {
  margin: 0 30px 0 0;
  vertical-align: bottom;
  width: 30px;
  height: 30px;
}

.footer-row .social-media .media-icon-holder img:hover {
  transition: all 0.2s ease;
  transform: scale(1.3);
}

.footer-row .footer-left {
  /* width: 50%; */
  width: 70%;
}

.footer-row .footer-left a {
  text-decoration: none;
  color: #0f477d;
  font-size: 14px;
  font-weight: 300;
  margin-right: 30px;
}

.footer-row .footer-left .copyright {
  font-size: 12px;
}

.footer-row .footer-left a:hover {
  color: #ff0000;
}

.footer-row .footer-left p {
  font-size: 12px;
  color: #0f477d;
  margin-top: 6px;
  font-weight: 100;
}

.footer-row .footer-right {
  width: 100%;
  text-align: right;
}

.footer-right img {
  height: 90px;
  margin-left: 25px;
}
.footer-right img.taller {
  height: 90px !important;
}
@media screen and (max-width: 767px) {
  .footer-right img {
    height: 36px;
  }
}

@media screen and (max-width: 767px) {
  .footer-right img {
    height: 36px;
  }
}
.footer-right img.taller {
  height: 90px;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .footer-right img.taller {
    height: 68px;
    margin-top: 12px;
  }
}
.footer-row .footer-left a.fs-footer {
  color: #0f477d;
  font-size: 12px;
}

@media screen and (max-width: 1480px) {
  .footer-inner-col-inner {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .footer-inner-col-inner {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding: 50px 0px 100px;
  }
  .footer-row:first-child,
  .footer-row .social-media p,
  .footer-left a:not(.fs-footer) {
    display: none;
  }
  .footer-row {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .footer-row .social-media {
    margin: 0 auto;
    width: 80%;
  }
  .media-icon-holder {
    width: 100%;
    justify-content: space-between;
  }
  .social-rol {
    margin: 0 0 30px 0;
  }
  .footer-row .footer-left {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .footer-row .footer-right {
    order: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .footer-row .social-media .media-icon-holder img {
    margin: 0;
  }
}

/* --------------------------------  Common  -------------------------------- */

.redline {
  width: 1px;
  height: 55px;
  margin: 0px auto 24px;
  background-color: #ff0000;
  border: solid 1px #ff0000;
}

.normal-list {
  border-top: 1px solid #0f477d;
  padding: 50px 0;
  width: 80%;
  margin: 0 auto;
}

.normal-list li {
  display: block;
  width: 90%;
  text-align: left;
  color: #4f4f4f;
  margin: 30px auto;
}

@media screen and (max-width: 767px) {
  .normal-list li {
    width: 100%;
  }
}

/* --------------------------------  Swiper Page  -------------------------------- */

.swiper-slide {
  position: relative;
}

.swiper-slide .slide-txt-container {
  position: absolute;
  top: 48%;
  top: calc(50% - 92px);
  left: 50%;
  transform: translateX(-50%);
}

.swiper-slide .slide-txt-container h1 {
  width: 100%;
  min-width: 1100px;
  line-height: 1.2;
  text-align: center;
  margin: auto;
  color: #fff;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  /* font-family: "Rustico", "Heebo", Arial, sans-serif; */
  font-family: "Open Sans", "Heebo", Arial, sans-serif;
}

.swiper-slide .slide-txt-container p {
  width: 800px;
  text-align: center;
  margin: auto;
  color: #fff;
  font-size: 21px;
  font-weight: 300;
}

.swiper-slide img {
  width: 100%;
}

@media screen and (max-width: 1480px) {
  .swiper-slide .slide-txt-container h1 {
    font-size: 70px;
  }
}

@media screen and (max-width: 1024px) {
  .swiper-slide .slide-txt-container h1 {
    font-size: 55px;
  }
  .swiper-slide .slide-txt-container p {
    width: 500px;
    font-size: 15px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    background-size: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide {
    /* position: absolute; */
  }
  .swiper-slide .slide-txt-container {
    background-color: #0f477d;
    padding: 30px 20px 100px;
    position: static;
    margin-top: -7px;
  }
  .swiper-slide .slide-txt-container h1,
  .swiper-slide .slide-txt-container p {
    text-align: left;
    margin: 0;
  }
  .swiper-slide .slide-txt-container h1 {
    font-size: 45px;
    width: 100%;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  .swiper-slide .slide-txt-container p {
    width: 400px;
    font-size: 17px;
    line-height: 1.3;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .swiper-slide .slide-txt-container {
    transform: translateX(0%);
  }
  .swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 20px;
  }
}

/* --------------------------------  Block Holder  -------------------------------- */

.block-holder {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: center;
}

.block-holder .block {
  width: 24%;
  width: calc(25% - 4px);
  margin: 2px;
  background-color: #0f477d;
  transition: all 0.2s ease;
  cursor: pointer;
}

.block-holder .block-img-holder {
  position: relative;
  width: 100%;
  /* desired width */
  overflow: hidden;
}

.block-holder .block-img-holder:before {
  content: "";
  display: block;
  padding-top: 75%;
  /* 1:1 - 100% ; 4:3 - 75% ; 16:9 - 56.25%*/
}

.block-holder .block-img-holder img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  transition: all 0.4s ease;
}

.block-holder .redline {
  width: 20px;
  height: 1px;
  background-color: #ff0000;
  margin: 0 0 30px;
  transition: width 0.3s ease;
}

.block-holder .block .block-content {
  text-align: left;
  padding: 24px 30px;
  min-height: 170px;
}

.block-holder .block-content h1 {
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  margin: 0 auto 14px;
  line-height: 1.2;
}

.block-holder .block-content h2 {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin-top: 5px;
}

.block-holder .block:hover {
  background-color: #072e54;
}

.block-holder .block:hover img {
  transform: scale(1.1);
}

.block-holder .block:out-of-range img {
  transform: scale(1);
}

@media screen and (max-width: 1024px) {
  .block-holder .block {
    width: 49%;
    width: calc(50% - 4px);
  }
}

@media screen and (max-width: 767px) {
  .block-holder .block {
    width: 100%;
    margin: 0 0 2px 0;
  }
  .block-holder .block-content h1 {
    font-size: 21px;
  }
  .block-holder .block-img-holder img {
    top: -20%;
  }
  .block-holder .block .block-content {
    min-height: 120px;
  }
  .block-holder .block-img-holder:before {
    padding-top: 50%;
    /* 1:1 - 100% ; 4:3 - 75% ; 16:9 - 56.25%*/
  }
}

/* --------------------------------  Image holder  -------------------------------- */

.img-holder {
  width: 48%;
}

.img-holder .album-main {
  max-width: 85%;
  max-height: 85%;
  /*	background-color: #efefef;*/
  margin: 0px auto 4px;
  overflow: hidden;
}

.img-holder .album-main img {
  width: 100%;
}

.img-holder .album-main p {
  margin: 10px auto;
}

.img-holder .album-thumb-holder {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  max-width: 85%;
  margin: 0 auto;
}

.img-holder .album-thumb-holder .album-thumb {
  width: 24%;
  overflow: hidden;
  margin: 0.5%;
  cursor: pointer;
}

/*.img-holder .album-thumb-holder .album-thumb:first-child{
	margin-left: 0;
}*/

.img-holder .album-thumb-holder .album-thumb:last-child {
  margin-right: 0;
}

.img-holder .album-thumb-holder .album-thumb.active {
  box-sizing: border-box;
  border: 3px solid #ff0000;
}

.img-holder .album-thumb-holder .album-thumb img {
  /*width: 105%;
	transition: all 0.4s ease;*/
  position: relative;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.img-holder .album-thumb-holder .album-thumb:hover img {
  transform: translateX(-50%) scale(1.1);
}

.img-holder .album-thumb-holder .album-thumb:out-of-range img {
  transform: translateX(-50%) scale(1);
}

@media screen and (max-width: 767px) {
  .img-holder .album-main {
    max-width: 100%;
  }
  .img-holder .album-thumb-holder {
    max-width: 100%;
  }
}

/* --------------------------------  Index Page  -------------------------------- */

.content-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  /*top: 100px;*/
}

.index-col {
  width: 100%;
  padding: 100px 0px 0px;
  text-align: center;
}

.latest-news {
  padding: 100px 0px 0px;
}

.index-col h1 {
  font-family: "Heebo", Arial, sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #0f477d;
  letter-spacing: -0.5px;
}

.index-col p {
  font-family: "Heebo", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #4f4f4f;
  max-width: 850px;
  margin: 0 auto;
}

.index-col .redline {
  width: 1px;
  height: 55px;
  margin: 0px auto 10px;
  background-color: #ff0000;
  border: solid 1px #ff0000;
}

.youCover.icon2::before {
  background-image: url("../images/icon/youtube-ico.png");
  width: 160px;
  height: 160px;
  margin-left: -80px;
  margin-top: -80px;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .youCover.icon2::before {
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
  }
}

/* --------------------------------  Index News  -------------------------------- */
.latest-news-content {
  padding-bottom: 20px;
}
.latest-news-content a {
  width: 100%;
}
.lastest-new--no-img {
  height: 0;
  font-size: 0;
}
.lastest-new--no-img + .latest-news-content {
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: 20px;
}

.latest-news .block-holder .block .block-content {
  position: relative;
  display: inline-block;
  text-align: left;
  padding: 2.5% 0;
  min-height: 350px;
  width: calc(100% - 60px);
  /* height: calc(100% - 48px); */
  height: auto;
  min-height: auto;
}

.latest-news .block-holder .block {
  width: 19%;
  /* Fallback! */
  width: calc(20% - 4px);
}

.latest-news .block-holder .block .redline {
  width: 24px;
  height: 1px;
  margin: 0 0 20px;
}

.latest-news .block-holder .block:hover .redline {
  width: 44px;
}

.read_span {
  transition: all 0.2s ease;
}

.latest-news .block-holder .block:hover .read_span {
  margin-left: 6px;
  color: #ff0000;
}
.latest-news-content {
  padding-top: 20px;
}

.latest-news .block-holder .block .block-content p,
.latest-news .block-holder .block .block-content h1,
.latest-news .block-holder .block .block-content .a {
  color: #fff;
}

.latest-news .block-holder .block .block-content p {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 400;
}

.latest-news .block-holder .block .block-content h1 {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 60px;
}

.latest-news .block-holder .block .block-content .a {
  /* position: absolute; */
  font-size: 15px;
  font-weight: 500;
  /* padding: 0px 0px 25px 0; */
  /* bottom: 10%; */
  margin: 10px 0;
}

.latest-news .block-holder .block .block-content .a:hover {
  color: #ff0000;
  transition: all 0.2s ease;
}

/* --------------------------------  Core value  -------------------------------- */

.core-value-img-holder {
  margin: 0 auto;
  padding: 30px 0;
}

.core_banner {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background-image: url("../images/core-value/core_pattern_400px.png");
  background-repeat: repeat;
  overflow: hidden;
}

.core_banner .core_gammon_way {
  position: relative;
  width: 60%;
}

.core_banner .core_gammon_way img {
  width: 100%;
  height: auto;
  transform: translateX(-15%);
}

.core_banner .core_banner_point_contain {
  position: relative;
  width: 52%;
  float: right;
}

.core_banner .core_banner_point_contain .core_banner_point {
  position: relative;
  width: 31%;
  height: 31%;
  display: inline-block;
}

.core_banner .core_banner_point_contain .core_banner_point img {
  width: 100%;
  height: auto;
}

.core_banner .core_banner_point_contain .core_safety,
.core_banner .core_banner_point_contain .core_excellence {
  top: -107px;
}

.core_banner .core_banner_point_contain .core_safety {
  left: 20px;
}

.core_banner .core_banner_point_contain .core_excellence {
  left: -20px;
}

.full-width-video-wrapper {
  position: relative;
  margin-bottom: -1px;
  padding-top: 45%;
}

.full-width-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full-width-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*

.our-projects .block-holder .block, .our-values .block-holder .block {
	width: calc(25% - 4px);
	margin: 2px;
	background-color: #0f477d;
	transition: all 0.2s ease-in;
}
.our-projects .block-holder .img-holder,
.our-values .block-holder .img-holder  {
	width: 100%;
	height: 270px;
	overflow: hidden;
}

.our-projects .block-holder .img-holder .proj,
.our-values .block-holder .img-holder .values {
	 width: 100%;
	 height: 100%;
	 background-color: black;
	 background-position: center center;
	 background-size: cover;
	 transition: all .5s;
}

.our-projects .block-holder .img-holder img{
	position: relative;
	width: 100%;
    top: calc(0%);
    left: calc(0%);
	transition: all 0.2s ease;
}
.our-projects .block-holder .block:hover,
.our-values .block-holder .block:hover {
	background-color: #072e54;
}

.our-projects .block-holder .block:hover img,
.our-values .block-holder .block:hover .values{
	transform: scale(1.1);
	transition: all 0.6s ease;
}
.our-projects .block-holder .block:out-of-range img {
	transform: scale(1);
}


.our-projects .block-holder .block-content h1,
.our-projects .block-holder .block-content h2,
.our-projects .block-holder .block-content p,
.our-values .block-holder .block-content h1,
.our-values .block-holder .block-content p {
	color: #fff;
}

.our-projects .block-holder .block-content h1,
.our-values .block-holder .block-content h1 {
	font-size: 25px;
	font-weight: 400;
	margin-bottom: 0px;
	line-height: 1.2;
}

.our-projects .block-holder .block-content h2 {
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 5px;
}

.our-projects .block-holder .block-content p,
.our-values .block-holder .block-content p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px;
}
*/

.other {
  padding: 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}

.other .sustainability {
  background-image: url(../images/index-sus.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 49%;
  width: calc(50% - 2px);
  background-color: #aaa;
  margin-right: 1.5px;
  padding: 50px 0 70px;
}

.other .innovation {
  background-image: url(../images/index-work.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 49%;
  width: calc(50% - 2px);
  background-color: #bbb;
  margin-left: 1.5px;
  padding: 50px 0 70px;
}

.other .working-with-us {
  background-image: url(../images/index-career.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  margin: 4px 0;
  background-color: #bbb;
  padding: 50px 0 70px;
}

.other .other-content {
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.other .other-content h1,
.other .other-content p {
  color: #fff;
  margin: 0;
  text-align: left;
  line-height: normal;
}

.other .other-content h1 {
  font-size: 60px;
}

.other .other-content p {
  margin: 0px auto 30px;
}

.other .working-with-us .other-content,
.other .working-with-us .other-content h1,
.other .working-with-us .other-content p {
  text-align: center;
}

.other .working-with-us .other-content p {
  margin: 0px auto 30px;
}

.learn-btn {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 8px;
  width: 155px;
  cursor: pointer;
  transition: all 0.5s ease;
  text-align: center;
}

.other .working-with-us .other-content .learn-btn {
  margin: 0 auto;
}

.learn-btn a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.learn-btn:hover {
  border: 1px solid #0f477d;
  background-color: #0f477d;
  opacity: 0.8;
  width: 170px;
}

.learn-btn-blue {
  border: 1px solid #0f477d;
  margin: -20px auto 45px;
}

.learn-btn-blue a {
  color: #0f477d;
}

.learn-btn-blue:hover a {
  color: #fff;
}

.learn-btn-special {
  margin: 45px auto 0px;
  padding: 8px;
  border-radius: 50px;
}

.learn-btn-special:hover {
  width: 170px;
}

@media screen and (max-width: 1024px) {
  .core_banner .core_gammon_way {
    position: relative;
    width: 95%;
  }
  .core_banner .core_banner_point_contain {
    width: 90%;
    margin-top: 20%;
  }
  .core_banner .core_banner_point_contain .core_safety,
  .core_banner .core_banner_point_contain .core_excellence {
    top: -90px;
  }
  .latest-news .block-holder .block {
    width: 49%;
    width: calc(50% - 6px);
    display: inline-block;
    vertical-align: top;
    margin-top: 7px;
  }
  .our-projects .block-holder .block,
  .our-values .block-holder .block {
    width: 49%;
    width: calc(50% - 6px);
    display: inline-block;
  }
  .index-col {
    padding: 60px 0px 10px;
  }
  /* .latest-news .block-holder .block .block-content {
        min-height: 180px;
    } */
  video {
    height: 300px;
  }
  .content-container {
    padding: 0 20px;
  }
  .other {
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .other .sustainability,
  .other .innovation {
    width: 100%;
    margin: 0 0 5px;
  }
  .other .other-content {
    margin: 0;
    width: 100%;
    padding: 0 50px;
  }
  .other .working-with-us .other-content,
  .other .working-with-us .other-content h1,
  .other .working-with-us .other-content p {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .block-holder .block .block-content {
    padding: 21px;
  }
  /* .latest-news .block-holder .block .block-content {
        height: calc(100% - 24px);
    } */
  .index-col .block-holder .redline {
    margin: 0 0 20px;
  }
  .latest-news .block-holder .block {
    width: 100%;
    text-align: left;
  }
  .latest-news .block-holder .block .block-content h1 {
    font-size: 22px;
  }
  .latest-news .block-holder .block .block-content p {
    font-size: 15px;
  }
  /* .latest-news .block-holder .block .block-content .a {
        padding: 0px 0px 20px 0px;
    } */
  .our-projects .block-holder .block,
  .our-values .block-holder .block {
    width: 100%;
  }
  .our-projects .block-holder .img-holder {
    height: 180px;
  }
  .our-projects .block-holder .img-holder img {
    top: -20%;
    top: calc(-20%);
  }
  .core_banner {
    padding: 40px 0;
  }
  .core_banner .core_gammon_way {
    position: relative;
    width: 100%;
  }
  .core_banner .core_banner_point_contain {
    width: 100%;
    margin-top: 20%;
  }
  .core_banner .core_banner_point_contain .core_safety,
  .core_banner .core_banner_point_contain .core_excellence {
    top: -60px;
  }
  .other .working-with-us .other-content .learn-btn {
    margin: 0;
  }
  .other .other-content h1 {
    font-size: 42px;
  }
  .other .other-content p {
    font-size: 14px;
  }
  .other .sustainability {
    background-image: url(../images/index-sus-m.jpg);
  }
  .other .innovation {
    background-image: url(../images/index-work-m.jpg);
  }
}

/* --------------------------------  Inner Pages Common  -------------------------------- */

.hero-banner,
.hero-banner img {
  width: 100%;
}

.hero-banner {
  position: relative;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-banner.inner-inner-banner {
  /*height: 320px;*/
}

.breadcrumb {
  width: 100%;
  padding: 30px 50px;
  position: absolute;
  font-size: 13px;
  overflow: hidden;
  box-sizing: border-box;
}

.breadcrumb p {
  color: #fff;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  letter-spacing: 3px;
  line-height: 1.2;
  overflow: hidden;
}

.breadcrumb p a,
.breadcrumb p span {
  color: #fff;
  letter-spacing: 0.5px;
}

.breadcrumb p a:hover {
  border-bottom: 1px solid #fff;
  transition: all 0.2s ease;
}

.hero-txt-container {
  width: 100%;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.hero-txt-container h1 {
  font-size: 66px;
  line-height: 1;
  /* font-family: "Rustico", "Heebo", Arial, sans-serif; */
  font-family: "Open Sans", "Heebo", Arial, sans-serif;
  font-weight: 800;
}

.hero-txt-container p {
  font-size: 18px;
  font-weight: 300;
  width: 900px;
  margin: 0px auto;
}

.inner-page-content {
  width: 100%;
  text-align: center;
  padding: 100px 0 50px;
}

.inner-page-content h1 {
  font-weight: 100;
  font-size: 45px;
  color: #0f477d;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.inner-page-content .no-red-line {
  margin: 0 auto 40px;
}

.inner-page-content p {
  max-width: 50%;
}

.inner-page-content p,
.inner-page-content ol,
.inner-page-content ul {
  font-weight: 400;
  font-size: 16px;
  color: #4f4f4f;
  margin: 0 auto 40px;
}

.white-line {
  width: 1px;
  height: 45px;
  margin: 5px auto;
  background-color: #fff;
}

.flex1 {
  order: 0;
}

.flex2 {
  order: 1;
}

.small_view_more {
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid white;
  margin: 20px auto 0px;
  padding: 5px;
  border-radius: 50px;
  max-width: 140px;
  transition: all 0.2s ease;
}

@media screen and (max-width: 1024px) {
  .hero-txt-container {
    top: 49%;
    top: calc(50% - 30px);
  }
  .hero-txt-container h1 {
    font-size: 45px;
  }
  .hero-txt-container p {
    font-size: 15px;
    width: 700px;
  }
  .breadcrumb {
    padding: 20px 20px;
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .hero-banner img {
    width: 150%;
  }
  .hero-txt-container {
    position: relative;
    background-color: #0f477d;
    padding: 66px 0 30px 0;
    transform: translateX(0);
    left: 0;
  }
  .hero-txt-container h1 {
    width: 90%;
    margin-left: 5%;
    line-height: 1.1;
    font-size: 35px;
  }
  .hero-txt-container p {
    position: relative;
    font-size: 14px;
    width: 90%;
    left: 5%;
    margin: 0;
  }
  .inner-page-content {
    padding: 60px 0 0 0;
  }
  .inner-page-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .inner-page-content p {
    max-width: 95%;
  }
  .flex1 {
    order: 1;
  }
  .flex2 {
    order: 0;
  }
  .hero-txt-container h1 {
    font-size: 28px;
  }
}

/* --------------------------------  Corporate Profile Page  -------------------------------- */

.profile-block {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}

.profile-block + h1 {
  margin-top: 80px;
}

.profile-block .img-holder {
  width: 50%;
  overflow: hidden;
}

.profile-block .img-holder .img-grid {
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in;
  height: 100%;
  background-position: 50% 50%;
}

.profile-block .img-holder .corp-1 {
  background-image: url(../images/corporate-profile/cp-1.jpg);
}

.profile-block .img-holder .corp-2 {
  background-image: url(../images/corporate-profile/cp-2.jpg);
}

.profile-block .img-holder .corp-3 {
  background-image: url(../images/corporate-profile/cp-3.jpg);
}

.profile-block .img-holder .corp-4 {
  background-image: url(../images/corporate-profile/cp-4.jpg);
}

.profile-block .img-holder .corp-5 {
  background-image: url(../images/corporate-profile/cp-5.jpg);
}

/*.profile-block .img-holder .corp:hover,
.profile-block .img-holder .core-value:hover,
.profile-block .img-holder .business-cat:hover {
transform: scale(1.1);
}*/

.profile-block:hover .img-holder .img-grid {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.profile-block:hover .txt-holder {
  background-color: #072e54;
}

.profile-block:hover .small_view_more {
  color: #0f477d;
  background-color: white;
  border: 1px solid #0f477d;
  padding: 5px;
  max-width: 160px;
}

.profile-block .txt-holder {
  background-color: #0f477d;
  width: 50%;
  color: #fff;
  padding: 100px 0;
  transition: all ease-in 0.2s;
}

.profile-block .txt-holder h1 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  width: 90%;
  margin: 0 auto;
}

.profile-block .txt-holder p {
  max-width: 75%;
  font-size: 16px;
  font-weight: 300;
  margin: 0 auto;
  color: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .profile-block .img-holder {
    width: 100%;
    height: 250px;
  }
  .profile-block .txt-holder {
    width: 100%;
    padding: 50px 0 70px;
    margin-bottom: 20px;
  }
  .profile-block .img-holder .img-grid {
    background-position: center;
  }
}

@media screen and (max-width: 767px) {
  .profile-block .img-holder {
    height: 180px;
  }
  .profile-block .txt-holder h1 {
    font-size: 18px;
  }
  .profile-block .txt-holder p {
    width: 90%;
    font-size: 16px;
  }
}

/* --------------------------------  Management Team Page  -------------------------------- */

.slick_showcase {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  background-color: #004781;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-container {
  width: 100%;
  border-bottom: solid 1px #0f477d;
  position: relative;
}

.management-tab-container.moved:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #0f477d transparent transparent transparent;
  position: absolute;
  left: 29%;
  left: calc(30% - 10px);
}

.management-tab-container:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #0f477d transparent transparent transparent;
  position: absolute;
  left: 69%;
  left: calc(70% - 10px);
  transition: all ease-in-out 0.3s;
}

.tab {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  width: 80%;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.tab h1 {
  width: 50%;
  cursor: pointer;
  margin-bottom: 30px;
  line-height: 1;
}

.tab h1:hover {
  opacity: 1;
  transition: all 0.2s ease-in;
}

.tab-drop-down {
  display: none;
  cursor: pointer;
  background-image: url(../images/icon/drop-arrow.png);
  background-repeat: no-repeat;
  background-position: right;
}

.tab-drop-down h1 {
  width: 100%;
  font-weight: 500;
}

.tab-drop-down .drop-down-items {
  width: 100%;
  background-color: #fafafa;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  padding: 35px 0 25px;
  display: none;
  position: absolute;
}

.tab-drop-down .drop-down-items.show {
  display: block;
}

.tab-drop-down .drop-down-items h1 {
  font-size: 25px;
  font-weight: 300;
  opacity: 0.5;
  cursor: pointer;
}

.tab-drop-down .drop-down-items h1:hover {
  color: #ff0000 !important;
}

.tab-btn.active {
  color: #ff0000 !important;
}

.tab_holder {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  width: 200%;
  overflow: hidden;
  transform: translateX(0%);
  transition: all 0.3s ease;
  align-items: flex-start;
  padding-bottom: 60px;
}

.holder_to_director {
  transform: translateX(-50%);
}

.tab-content-holder {
  display: block;
  width: 100%;
}

.tab-content-holder a {
  color: #fff;
  transition: all ease 0.1s;
  font-size: 15px;
}

.tab-content-holder.show {
  display: block;
}

.tab-content-holder .member-block {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  width: 100%;
  padding: 70px 30px 0;
}

.tab-content-holder .member-block .img-holder {
  width: 40%;
  text-align: right;
  padding-right: 60px;
  box-sizing: border-box;
}

.tab-content-holder .member-block .txt-holder {
  width: 60%;
  text-align: left;
}

.tab-content-holder .member-block .txt-holder h1 {
  font-size: 35px;
  margin-bottom: 0;
}

.horizontal-redline {
  background-color: #ff0000;
  width: 110px;
  height: 2px;
  margin: 20px 0;
}

.tab-content-holder .member-block .txt-holder h2 {
  width: 60%;
  color: #0f477d;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.2;
}

.tab-content-holder .member-block .txt-holder p {
  max-width: 75%;
  font-size: 16px;
  color: #434343;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .tab h1 {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .tab {
    width: 100%;
  }
  .tab-content-holder .member-block {
    padding: 0;
  }
  .tab-content-holder .member-block .img-holder,
  .tab-content-holder .member-block .txt-holder {
    width: 100%;
  }
  .tab-content-holder .member-block .img-holder {
    margin-top: 120px;
  }
  .tab-content-holder .member-block .txt-holder {
    margin-top: 30px;
    padding-left: 30px;
  }
  .tab-content-holder .member-block .txt-holder h2 {
    width: 85%;
  }
  .tab-content-holder .member-block .txt-holder p {
    max-width: 95%;
  }
  .management-tab-container.moved:after {
    left: 24%;
    left: calc(25% - 10px);
  }
  .tab-container:after {
    left: 74%;
    left: calc(75% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .tab h1 {
    font-size: 18px;
  }
}

/* --------------------------------  Core Value Page  -------------------------------- */

.profile-block .img-holder .core-value-1 {
  background-image: url(../images/core-value/cv-1.jpg);
}

.profile-block .img-holder .core-value-2 {
  background-image: url(../images/core-value/cv-2.jpg);
}

/* --------------------------------  Staff Development Page  -------------------------------- */

.staffDev-inner {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: center;
}

.staffDev-inner .staffDev-block {
  width: 19.5%;
  min-width: 250px;
  min-height: 300px;
  margin: 0 0.25% 0.5%;
  height: 200px;
  background-color: #0f477d;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.staffDev-inner .staffDev-block .img-holder {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  transition: all ease-in-out 0.2s;
}

.staffDev-inner .staffDev-block .staff-1 {
  background-image: url(../images/staff/staff-1.jpg);
}

.staffDev-inner .staffDev-block .staff-2 {
  background-image: url(../images/staff/staff-2.jpg);
}

.staffDev-inner .staffDev-block .staff-3 {
  background-image: url(../images/staff/staff-3.jpg);
}

.staffDev-inner .staffDev-block .staff-4 {
  background-image: url(../images/staff/staff-4.jpg);
}

.staffDev-inner .staffDev-block .staff-5 {
  background-image: url(../images/staff/staff-5.jpg);
}

.staffDev-inner .staffDev-block:hover .img-holder {
  transform: scale(1.15);
}

.staffDev-inner .staffDev-block:hover .read_span {
  margin-left: 10px;
  color: #ff0000;
}

.staffDev-inner .staffDev-block h1 {
  width: 95%;
  color: #fff;
  text-align: left;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.staffDev-inner .staffDev-block p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  margin: 0;
  bottom: 30px;
  transition: all ease-in 0.2s;
}

.staffDev-inner .staffDev-block p:hover {
  color: #ff0000;
}

.regconitions-holder {
  padding-top: 50px;
}

.blue-table-holder {
  border-top: 1px solid #0f477d;
  padding: 50px 0;
  text-align: left;
}

.blue-bar-holder {
  background-color: #e9f2fb;
  margin: 5px 0;
  padding: 30px;
  color: #0f477d;
}

.staffDev-inner .staffDev-block .staffDev-txt {
  padding: 40px 33px;
}

.larger-width p {
  max-width: 80%;
}

.text-align-center {
  text-align: center;
  padding: 30px 200px;
}

.larger-width p.quote {
  font-size: 50px;
  display: inline;
  color: #0f477d;
}

@media screen and (max-width: 1024px) {
  .staffDev-inner .staffDev-block {
    width: 32.8%;
  }
}

@media screen and (max-width: 767px) {
  .staffDev-inner .staffDev-block {
    width: 49.5%;
  }
  .text-align-center {
    padding: 30px 40px;
  }
}

@media screen and (max-width: 767px) {
  .staffDev-inner .staffDev-block {
    width: 100%;
    min-height: 300px;
  }
}

/* --------------------------------  Regions Coverage Page  -------------------------------- */

.coverage-block {
  margin-bottom: 180px;
  width: 100%;
}

.business-regions p {
  max-width: 80%;
}

.album-holder {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
}

.album-left {
  width: 49.5%;
  height: 400px;
  overflow: hidden;
}

.album-left img {
  width: 100%;
}

.album-right {
  width: 49.5%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}

.album-right .album-thumb {
  width: 19%;
  height: 19%;
  margin: 0.5%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.album-right .album-thumb img {
  position: relative;
  min-width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  top: calc(0%);
  left: calc(0%);
  transition: all 0.2s ease;
}

.album-right .album-thumb:hover img {
  transform: scale(1.1);
  transition: all 0.4s ease;
}

.album-right .album-thumb:out-of-range img {
  transform: scale(1);
  transition: all 0.4s ease;
}

.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
}

.btn:before,
.btn:after {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: transparent;
  z-index: 33;
}

.btn:before {
  top: 0;
}

.btn:after {
  bottom: 0;
}

.btn:hover > * > *:before,
.btn:hover > * > *:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn:hover > * > * > *:before,
.btn:hover > * > * > *:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn:hover:before,
.btn:hover:after {
  left: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn > *:before,
.btn > *:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: transparent;
  z-index: 33;
}

.btn > *:before {
  left: 0;
}

.btn > *:after {
  right: 0;
}

.btn > * > *:before,
.btn > * > *:after {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #ff0000;
  z-index: 44;
  /* hiddeb old version */
  opacity: 0;
}

.btn > * > *:before {
  top: 0;
  -webkit-transform: translate3d(-105%, 0, 0);
  transform: translate3d(-105%, 0, 0);
  transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn > * > *:after {
  bottom: 0;
  -webkit-transform: translate3d(105%, 0, 0);
  transform: translate3d(105%, 0, 0);
  transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn > * > * > *:before,
.btn > * > * > *:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #ff0000;
  z-index: 44;
}

.btn > * > * > *:before {
  left: 0;
  -webkit-transform: translate3d(0, 105%, 0);
  transform: translate3d(0, 105%, 0);
  transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn > * > * > *:after {
  right: 0;
  -webkit-transform: translate3d(0, -105%, 0);
  transform: translate3d(0, -105%, 0);
  transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-right .active {
  border: 3px solid #ff0000;
}

.regions_holder {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.regions_holder .album-main {
  width: 49%;
  margin: 0;
  float: left;
}

.regions_holder .album-thumb-holder {
  width: 49%;
  align-items: flex-start;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .business-regions p {
    max-width: 95%;
  }
}

@media screen and (max-width: 1024px) {
  .album-right .album-thumb {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .coverage-block {
    margin-bottom: 50px;
  }
  .regions_holder {
    flex-direction: column;
  }
  .regions_holder .album-main {
    width: 100%;
    max-width: 100%;
    max-height: 85%;
  }
  .regions_holder .album-thumb-holder {
    width: 100%;
  }
  .img-holder .album-thumb-holder {
    max-width: 100%;
  }
  .album-left {
    width: 100%;
    height: auto;
  }
  .album-right {
    width: 100%;
  }
  .album-right .album-thumb {
    width: 24%;
    height: 23vw;
  }
}

/* --------------------------------  Business Categories Page  -------------------------------- */

.profile-block .img-holder .business-cat-1 {
  background-image: url(../images/business-cat/bc-1.jpg);
}

.profile-block .img-holder .business-cat-2 {
  background-image: url(../images/business-cat/bc-2.jpg);
}

.profile-block .img-holder .business-cat-3 {
  background-image: url(../images/business-cat/bc-3.jpg);
}

.profile-block .img-holder .business-cat-4 {
  background-image: url(../images/business-cat/bc-4.jpg);
}

.business-cat-tab {
  width: 100%;
}

.business-cat-tab .tab-container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #0f477d;
  border-bottom: none;
}

.business-cat-tab .tab-container .tab h1 {
  font-size: 18px;
  font-weight: 300;
  color: #0f477d;
  margin-top: 35px;
}

.business-cat-tab .tab-container .tab h1:hover {
  color: #ff0000;
}

.business-cat-tab .tab-content-block {
  width: 100%;
  padding: 80px 0;
  background-color: #0f477d;
}

.business-cat-tab .tab-content-block .tab-content-holder {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  flex-wrap: wrap;
  justify-content: center;
  display: none;
}

.business-cat-tab .tab-content-block .tab-content-holder.show {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
}

.business-cat-tab .tab-content-block .tab-content-holder .img-holder {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  margin-right: 2%;
  width: auto;
}

.business-cat-tab .tab-content-block .tab-content-holder .img-holder img {
  margin-bottom: 10px;
  max-width: 342px;
  border: 6px solid white;
}

.business-cat-tab .tab-content-block .tab-content-holder .txt-holder {
  width: 49%;
}

.business-cat-tab .tab-content-block .tab-content-holder .txt-holder h1 {
  margin-top: -10px;
}

.business-cat-tab .tab-content-block .tab-content-holder .txt-holder ul {
  list-style: disc;
  font-weight: 200;
  list-style-position: outside;
  margin: 12px 21px;
}

.business-cat-tab .tab-content-block .tab-content-holder .txt-holder ul.ul-num {
  list-style: decimal;
}

.business-cat-tab .tab-content-block .tab-content-holder .txt-holder a {
  text-decoration: underline;
}

.business-cat-tab
  .tab-content-block
  .tab-content-holder
  .txt-holder
  .horizontal-redline {
  width: 55px;
}

.business-cat-tab
  .tab-content-block
  .tab-content-holder
  .txt-holder
  .txt-holder__sub-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.business-cat-tab .tab-content-block .tab-content-holder .txt-holder p {
  font-weight: 100;
  font-size: 16px;
}

.caption_link {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s ease;
  cursor: pointer;
}

.caption_link:hover {
  color: #ff0000;
}

@media screen and (max-width: 767px) {
  .business-cat-tab .tab-container .tab {
    flex-direction: column;
    padding: 25px 0;
  }
  .business-cat-tab .tab-container .tab h1 {
    margin: 8px 0;
  }
  .business-cat-tab .tab-content-block .tab-content-holder .img-holder {
    width: 80%;
    margin: 0 0 40px 0;
  }
  .business-cat-tab .tab-content-block .tab-content-holder .txt-holder {
    width: 80%;
  }
}

/* --------------------------------  Project Page  -------------------------------- */

.projects-inner {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: left;
}

.projects-inner .project-block {
  width: 24.5%;
  min-width: 200px;
  min-height: 300px;
  margin: 0 0.25% 0.5%;
  height: 200px;
  background-color: #0f477d;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.projects-inner .project-block .img-holder {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  transition: all ease-in-out 0.2s;
}

.projects-inner .project-block .residential_holder {
  background-image: url("../images/project/blue_bg/residential.jpg");
}

.projects-inner .project-block .commercial_holder {
  background-image: url("../images/project/blue_bg/commercial.jpg");
}

.projects-inner .project-block .hotel_holder {
  background-image: url("../images/project/blue_bg/hotel_bbg.jpg");
}

.projects-inner .project-block .industrial_holder {
  background-image: url("../images/project/blue_bg/industrial_bbg.jpg");
}

.projects-inner .project-block .solid_holder {
  background-image: url("../images/project/blue_bg/solid_bbg.jpg");
}

.projects-inner .project-block .community_holder {
  background-image: url("../images/project/blue_bg/community_bbg.jpg");
}

.projects-inner .project-block .road_holder {
  background-image: url("../images/project/blue_bg/road_bbg.jpg");
}

.projects-inner .project-block .rail_holder {
  background-image: url("../images/project/blue_bg/rail_bbg.jpg");
}

.projects-inner .project-block .tunnel_holder {
  background-image: url("../images/project/blue_bg/tunnel_bbg.jpg");
}

.projects-inner .project-block .water_holder {
  background-image: url("../images/project/blue_bg/water_bbg.jpg");
}

.projects-inner .project-block:hover .img-holder {
  transform: scale(1.15);
}

.projects-inner .project-block:hover .redline {
  width: 40px;
}

.projects-inner .project-block h1 {
  width: 70%;
  color: #fff;
  text-align: left;
  font-size: 2.8vw;
  font-weight: 100;
  line-height: 1.1;
  margin: 0 0 30px;
}

.projects-inner .project-block p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  margin: 0;
  bottom: 30px;
}

.projects-inner .project-block .redline {
  width: 20px;
  height: 1px;
  position: absolute;
  transition: width 0.2s ease;
}

.projects-inner .project-block .project-txt {
  padding: 40px 33px;
}

@media screen and (min-width: 1480px) {
  .projects-inner .project-block h1 {
    font-size: 42px;
  }
}

@media screen and (max-width: 1024px) {
  .projects-inner .project-block {
    width: 32.8%;
  }
  .projects-inner .project-block h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .projects-inner .project-block {
    width: 100%;
    min-height: 200px;
    margin: 0 0 2px 0;
  }
  .projects-inner {
    padding-bottom: 60px;
  }
}

/* --------------------------------  Project Listing Page  -------------------------------- */

.project_details_holder {
  justify-content: flex-start !important;
}

.projects-details {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: center;
}

.project-content-holder {
  width: 23%;
  min-width: 200px;
  margin: 0 5px 30px;
  background-color: #0f477d;
  transition: all 0.2s ease-in;
}

.project-content-holder .project-content .img-holder {
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.project-content .img-holder img {
  position: relative;
  top: 48%;
  top: calc(50% - 165px);
  width: 100%;
  transition: all 0.2s ease-in;
}

.project-content-holder:hover {
  background-color: #072e54;
}

.project-content-holder .project-content:hover .img-holder img {
  transform: scale(1.1);
}

.project-content-holder .project-content h1 {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  padding: 30px 30px 0 30px;
  box-sizing: border-box;
  color: #fff;
  margin: 0;
}

.project-content-holder .project-content h2 {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 5px;
  color: #fff;
  padding: 0 0 30px 30px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .project-content-holder {
    width: 32%;
  }
}

@media screen and (max-width: 767px) {
  .project-content-holder {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .project-content-holder {
    width: 100%;
  }
}

/* --------------------------------  Project Detail Page  -------------------------------- */

.section_container {
  margin-top: 100px;
}

.section_title {
  font-family: "Heebo", Arial, sans-serif;
  font-weight: 100;
  font-size: 45px;
  letter-spacing: -0.5px;
  color: #0f477d;
  line-height: 1.2;
  margin: 0px 0 40px 0;
  text-align: center;
}

.project-intro-wrapper p {
  font-size: 21px;
  font-weight: 500;
  color: #0f477d;
  margin: 0 auto;
}

.project_detail_p {
  display: inline-block;
  font-size: 21px !important;
  border-bottom: solid 1px red;
  width: fit-content;
  font-weight: 400 !important;
  margin-bottom: 30px !important;
}

.project-intro {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: left;
  margin-top: 70px;
}

.project-intro .content-holder {
  width: 50%;
  text-align: left;
  padding: 0 0 0 2%;
}

.project-intro .content-holder h1 {
  font-size: 14px;
  font-weight: 500;
  color: #0f477d;
  margin: 0;
}

.project-intro .content-holder h2 {
  font-size: 20px;
  font-weight: 100;
  color: #4f4f4f;
  margin-bottom: 30px;
}

.project-intro .content-holder p {
  font-size: 16px;
  font-weight: 100;
  color: #4f4f4f;
  line-height: 1.3;
  margin: 0;
  max-width: 90%;
}

.other-projects {
  border-top: 1px solid #0f477d;
  margin-top: 100px;
  padding: 80px 0;
}

.other-projects h1 {
  /*padding: 50px 0 10px;
	font-size: 40px;*/
}

@media screen and (max-width: 767px) {
  .section_title {
    font-size: 30px;
    margin: 0px 0 40px 0;
  }
  .project-intro .img-holder {
    width: 100%;
  }
  .project-intro .content-holder {
    width: 100%;
    padding: 0;
    max-width: 515px;
    margin: 30px auto;
  }
  .project-intro-wrapper .project_detail_p {
    margin-bottom: 18px;
    font-size: 18px;
  }
}

/* --------------------------------  Sustainability Page  -------------------------------- */

.report-holder {
  margin: 80px auto;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.sign-up-link {
  display: block;
  max-width: none;
  width: 100%;
}

.report-holder-left {
  width: 34%;
  width: calc(35% - 10px);
}

.report-holder-right {
  width: 49%;
  width: calc(50% - 10px);
  text-align: left;
  margin-left: 30px;
  padding-left: 5px;
  box-sizing: border-box;
  border-top: 3px solid #0f477d;
  border-bottom: 3px solid #0f477d;
}

.report-holder-right .report-list li {
  padding: 16px 0;
  border-bottom: 1px solid #0f477d;
  display: block;
  cursor: pointer;
}

.report-holder-right .report-list li:last-child {
  border-bottom: none;
}

.report-holder-right .report-list a {
  color: #0f477d;
  transition: all ease 0.2s;
}

.report-holder-right .report-list li:hover a {
  color: #ff0000;
}

.report-holder .report {
  overflow: hidden;
  padding: 0 10px;
}

.report-holder .report img {
  box-shadow: 0px 0px 20px #eee;
  width: 100%;
}

.report-holder-right .report-list li span {
  float: right;
  font-size: 15px;
  color: #5c5c5c;
}

.icon_pdf {
  width: 10%;
  min-width: 74px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  align-items: center;
  float: right;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 16px;
  color: #5c5c5c;
  margin-right: 18px;
}

.icon_pdf img {
  width: 21px;
  height: 26px;
  margin-right: 8px;
}

/* .report-holder .report img:hover {
	opacity: 0.4;
	transition: all 0.2s ease;
} */

.case-intro {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: left;
  margin-top: 70px;
}

.case-intro .content-holder {
  width: 50%;
  text-align: left;
  padding: 0 0 0 2%;
}

.case-intro .content-holder h1 {
  font-size: 14px;
  font-weight: 500;
  color: #0f477d;
  margin: 30px 0 10px 0;
}

.case-intro .content-holder h1:first-child {
  margin-top: 0;
}

.case-intro .content-holder p {
  font-size: 16px;
  font-weight: 100;
  color: #4f4f4f;
  line-height: 1.3;
  margin: 0;
  max-width: 90%;
}

.case-intro .content-holder li {
  font-size: 16px;
  font-weight: 100;
  color: #4f4f4f;
  line-height: 1.3;
  margin: 0;
  max-width: 90%;
  list-style-position: inside;
}

.case-intro .content-holder .case-quote,
.quotedby {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 100;
  color: #4f4f4f;
}

.quotedby {
  text-align: right;
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .report-holder-left,
  .report-holder-right {
    width: 100%;
  }
  .report-holder-right {
    padding: 0;
    margin: 30px 0;
  }
  .icon_pdf {
    float: none;
  }
  .icon_pdf img {
    width: 18px;
    height: 18px;
    margin: 5px;
  }
  .case-intro .img-holder {
    width: 100%;
  }
}

/* --------------------------------  Timeline Page  -------------------------------- */

.timeline-block {
  width: 80%;
  margin: 0px auto 100px;
}

.timeline-container {
  position: relative;
}

/*.timeline-container:before {
	content: '';
	position: absolute;
	background-color: #0f477d;
	width: 1px;
	height: 100%;
	left: 50%;
}*/

.timeline-container:after {
  content: "";
  position: absolute;
  background-color: #0f477d;
  border-radius: 50px;
  width: 22px;
  height: 22px;
  top: 49%;
  left: 49%;
  top: calc(50% - 5px);
  left: calc(50% - 10.5px);
}

.timeline-content {
  width: 40%;
  border-radius: 10px;
  box-shadow: 0px 0px 70px #e9e9e9;
  position: relative;
  margin: 0px auto -20px;
  text-align: left;
  padding: 40px;
}

.timeline-content:hover {
  box-shadow: 0px 0px 150px #eee;
  transition: all ease-in 0.2s;
}

.timeline-container:nth-child(odd) .timeline-content {
  left: -30%;
}

.timeline-container:nth-child(even) .timeline-content {
  left: 30%;
}

.timeline-container:nth-child(odd) .timeline_line {
  display: inline;
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #0f477d;
  z-index: 999;
  left: 50%;
}

.timeline-container:nth-child(even) .timeline_line {
  display: inline;
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #0f477d;
  z-index: 999;
  left: 50%;
}

.timeline-container:nth-child(odd) .timeline-content:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 49%;
  right: 0.5%;
  top: calc(50% - 13px);
  right: calc(0% - 12px);
  transform: rotate(45deg);
  background-color: white;
  z-index: -1;
}

.timeline-container:nth-child(even) .timeline-content:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 49%;
  right: 0.5%;
  top: calc(50% - 13px);
  left: calc(0% - 12px);
  transform: rotate(45deg);
  background-color: white;
  z-index: -1;
}

.timeline-container .timeline-content time {
  font-size: 40px;
  font-weight: 700;
  color: #0f477d;
}

.timeline-container .timeline-content .horizontal-redline {
  width: 50px;
  height: 3px;
  margin-top: -5px;
}

.timeline-container .timeline-content p {
  color: #0f477d;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.timeline-container .timeline-content .img-holder {
  width: 100%;
  margin: 20px 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}

.timeline-container .timeline-content .img-holder .album-thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  cursor: pointer;
  /* margin-right: 5px; */
  margin: 2px;
  transition: all ease 0.3s;
}

.timeline-container .timeline-content .img-holder .album-thumb:hover {
  opacity: 0.4;
}

.timeline-container .timeline-content .img-holder .album-thumb img {
  width: 100%;
  min-width: 100px;
  min-height: 100px;
}

@media screen and (max-width: 1024px) {
  .timeline-container:nth-child(odd):before {
    right: 50.5%;
    right: calc(50% + 4%);
  }
  .timeline-container:nth-child(even):before {
    right: 50.5%;
    left: calc(50% + 4%);
  }
  .timeline-container {
    padding: 12.5px 0;
  }
  .timeline-container:after {
    left: 1%;
    left: calc(0% - 10.5px);
  }
  .timeline-content {
    width: 100%;
    margin: 0 0 0 40px;
    padding: 20px 20px;
    box-sizing: border-box;
  }
  .timeline-container:nth-child(odd) .timeline-content,
  .timeline-container:nth-child(even) .timeline-content {
    left: 0%;
  }
  .timeline-container:nth-child(odd) .timeline-content:before,
  .timeline-container:nth-child(even) .timeline-content:before {
    left: -8px;
  }
  .timeline-container:nth-child(odd) .timeline_line,
  .timeline-container:nth-child(even) .timeline_line {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .timeline-block {
    width: 80%;
    margin: 0px auto 40px;
  }
  /*.timeline-container:nth-child(odd) .timeline-content :before{
		content: '';
		position: absolute;
		width: 0;
		height: 0;
		top: calc(50% - 9px);
		left: -15px;
		border-top: 13px solid transparent;
		border-bottom: 13px solid transparent;
		border-right: 18px solid white;
		border-left: none;
	}*/
}

/* --------------------------------  Career Page  -------------------------------- */

.career-listing-page p {
  max-width: 1000px;
  width: 90%;
}

.career-listing-page a {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}

.career-listing-page a {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}

.drop-down-block {
  text-align: center;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  /* max-width: 600px; */
  /* margin: 0 auto;     */
  width: 100%;
  padding-bottom: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  text-align: center;
}

.drop-down-container {
  position: relative;
  /* margin: 0 auto; */
  margin-top: 15px;
  margin-right: 7px;
  margin-left: 7px;
}

.no-vacancy {
  font-size: 18px;
  color: #0f477d;
  justify-content: center;
}

/*.drop-down-container select {
	min-width: 200px;
	max-width: 280px;
	font-family: 'Heebo', Arial, sans-serif;
	border: 1px solid #0f477d;
	background-color: #fff;
	display: inline-block;
	padding: 11px 20px 10px;
	margin-right: 10px;
	line-height: 1;
	-webkit-appearance: none;
	border-radius: 0;
	font-size: 18px;
	font-weight: 100;
	color: #0f477d;
}*/

/* .drop-down-container select {
    min-width: 240px;
    max-width: 330px;
    font-family: 'Heebo', Arial, sans-serif;
    border: 1px solid #0f477d;
    background-color: #fff;
    display: inline-block;
    padding: 13px 60px 10px 20px;
    margin-right: 10px;
    line-height: 1;
    -webkit-appearance: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 100;
    color: #0f477d;
    cursor: pointer;
} */

.drop-down-container select {
  font-family: "Heebo", Arial, sans-serif;
  display: inline-block;
  /* margin-right: 10px; */
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
  border-style: solid;
  border-width: 2px 36px 2px 8px;
  border-color: #34bdb8;
  font-weight: 700;
  color: #333;
  background-color: transparent;
  padding: 8px 20px;
  outline: none;
  width: 250px;
}
.drop-down-container .byDepartment {
  width: 400px;
}
@media screen and (max-width: 480px) {
  .drop-down-container select {
    width: 200px;
    margin-top: 10px;
    margin-right: 0px;
    margin-left: 0px;
    padding: 6px 16px;
    border-right-width: 30px;
    border-left-width: 6px;
  }
  .drop-down-container .byDepartment {
    width: 300px;
  }
}
.drop-down-container:before {
  content: "";
  position: absolute;
  background-color: #34bdb8;
  width: 36px;
  height: 40px;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .drop-down-container:before {
    width: 30px;
    height: 30px;
    right: 0;
    top: 10px;
  }
}

.drop-down-container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 49.5%;
  top: calc(50% - 4.5px);
  right: 10px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid white;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .drop-down-container:after {
    top: 51.5%;
    right: 8px;
  }
}
.drop-down-block--blue select {
  border-color: #0f477d;
}
.drop-down-block--blue .drop-down-container::before {
  background-color: #0f477d;
}
.list-grid-toggle-container--with-dropdown .drop-down-block {
  padding-bottom: 0;
  width: auto;
  margin-right: 24px;
}
.list-grid-toggle-container--with-dropdown .drop-down-container {
  margin-top: 0;
}
@media screen and (max-width: 560px) {
  .list-grid-toggle-container--with-dropdown .drop-down-block {
    margin-right: 0;
    width: 100%;
    margin-bottom: 24px;
  }
}
.list-container {
  margin: 80px 0;
}

.filter-block {
  display: none;
}

.filter-block.active {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}

.list-container-margin {
  margin: 20px 0;
}

.item {
  text-align: left;
  margin-bottom: 2px;
  width: 100%;
}

.item h1 {
  font-size: 28px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 0;
  padding: 20px;
  border-bottom: 1px solid #0f477d;
  background-image: url(../images/expand_icon.png);
  background-repeat: no-repeat;
  background-position: right;
}

.item h1.btn-collaspe {
  background-image: url(../images/collaspe_icon.png);
}

.item .title {
  cursor: pointer;
  position: relative;
}

.item .title:hover {
  background-color: #fafafa;
  transition: all 0.2s ease;
}

.item .detail {
  overflow: auto;
  margin-top: 30px;
  display: none;
}

.item .detail.active {
  display: block;
}

.table-title-row,
.table-content-inner-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  padding: 20px;
  color: #0f477d;
  transition: all 0.4s ease;
}

.table-title-row {
  font-weight: 500;
}

.table-content-row {
  background-color: #e9f2fb;
  margin-bottom: 10px;
}

.table-title-row .left,
.table-content-row .table-content-inner-row .left {
  width: 30%;
  min-width: 200px;
}

.table-title-row .middle,
.table-content-row .table-content-inner-row .middle {
  width: 50%;
  min-width: 400px;
}

.table-content-row .table-content-inner-row .middle a {
  text-decoration: none;
  color: #0f477d;
  transition: all 0.4s ease;
}

.table-title-row .right,
.table-content-row .table-content-inner-row .right {
  width: 20%;
  min-width: 200px;
}

.table-content-row.in-grid {
  background-color: #e9f2fb;
  margin-bottom: 10px;
}

.table-title-row.in-grid .left,
.table-content-row .table-content-inner-row .left {
  width: 30%;
  min-width: 200px;
}

.table-title-row.in-grid .middle,
.table-content-row .table-content-inner-row .middle {
  width: 50%;
  min-width: 400px;
}

.table-content-row.in-grid .table-content-inner-row .middle a {
  text-decoration: none;
  color: #0f477d;
  transition: all 0.4s ease;
}

.table-title-row .right,
.table-content-row.in-grid .table-content-inner-row .right {
  width: 20%;
  min-width: 200px;
}

@media screen and (max-width: 767px) {
  .table-title-row,
  .table-content-inner-row {
    padding: 6px;
  }
  .table-title-row .left,
  .table-content-row .table-content-inner-row .left {
    width: 33%;
    min-width: auto;
  }
  .table-title-row .middle,
  .table-content-row .table-content-inner-row .middle {
    width: 66%;
    min-width: auto;
  }
}

/* --------------------------------  Career Details Page  -------------------------------- */

.inner-page-content.job-description {
  text-align: left;
  margin: 0 auto;
}

.inner-page-content.job-description h1 {
}

.inner-page-content.job-description h2 {
  color: #0f477d;
  font-size: 28px;
  font-weight: 100;
}

.inner-page-content.job-description p {
  max-width: 90%;
  margin: 0 0 70px;
}

.inner-page-content.job-description .job-criteria {
  border-top: 1px solid #0f477d;
  border-bottom: 1px solid #0f477d;
  width: 100%;
  padding: 50px 0px 70px;
  margin-bottom: 50px;
}

.inner-page-content.job-description .job-criteria h1 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.inner-page-content.job-description .job-criteria p {
  font-size: 16px;
  color: #4f4f4f;
  font-weight: 100;
  margin: 0 0 20px;
}

p.ql-align-justify {
  margin: 0 0 5px !important;
}

.inner-page-content.job-description ul {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-left: 50px;
}

.inner-page-content.job-description p {
  margin: 0 0 30px !important;
}

.job-apply-btn {
  color: #fff;
  background-color: #0f477d;
  font-size: 18px;
  padding: 10px 40px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.job-apply-btn:hover {
  opacity: 0.5;
}

/* --------------------------------  press & news Page  -------------------------------- */

.article-wrapper h2 {
  font-weight: 700;
  color: #0f477d;
  margin: 5% auto;
  width: 70%;
}
@media screen and (max-width: 480px) {
  .quote-content-holder h2 {
    font-size: 18px;
  }
  .quote-content-holder img {
    width: 40px;
    height: auto;
  }
}
.article-wrapper p {
  /*font-size: 24px;*/
  font-weight: 400;
  color: #0f477d;
  margin: 0 auto;
}

.article-wrapper h1 {
  width: 70%;
}

.content-holder-inner {
  border-top: 1px solid #0f477d;
  border-bottom: 1px solid #0f477d;
  padding: 35px 0;
  margin-top: 100px;
}

.content-holder .content-holder-inner h2 {
  font-size: 18px;
  font-weight: 500;
  color: #0f477d;
}

.content-holder .content-holder-inner p {
  font-size: 15px;
  margin-bottom: 5px;
}

.article-wrapper .article-date {
  font-size: 21px;
  border-bottom: solid 1px red;
  width: fit-content;
  font-weight: 400;
  margin-bottom: 30px;
  color: #0f477d;
}

.content-holder.full-width {
  width: 100%;
  padding: 0;
}

.content-holder.full-width p {
  margin: 0 auto;
}

.content-holder.full-width h1 {
  margin: 40px auto 20px;
  width: auto;
  max-width: 90%;
}

@media screen and (max-width: 767px) {
  .article-wrapper h1 {
    width: 90%;
  }
  .article-wrapper .article-date {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

/* --------------------------------  Sitemap Page  -------------------------------- */

.sitemap-holder {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.sitemap-col {
  width: 19%;
  width: calc(17% - 6px);
  text-align: left;
  padding: 0px 25px;
  box-sizing: border-box;
}

.sitemap-col:not(:last-child) {
  border-right: 1px solid #0f477d;
}

.sitemap-col h2 {
  color: #0f477d;
  font-size: 15px;
  font-weight: 500;
}

.sitemap-content {
  margin-top: 20px;
}

.sitemap-content a {
  color: #4e4e4e;
  font-size: 18px;
  font-weight: 300;
  display: block;
  transition: all ease-in-out 0.1s;
}

.sitemap-content a:hover {
  opacity: 0.5;
}

/* --------------------------------  Contact Us Page  -------------------------------- */

.contact-table {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 0 10%;
}

.contact-table p {
  max-width: 100%;
  width: 100%;
}

.form-item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
  width: 50%;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

.form-item .item-text {
  width: 18%;
  text-align: left;
}

.form-item input,
.form-item select,
.form-item option,
.form-item textarea {
  width: 82%;
  border: 1px solid rgba(130, 130, 130, 0.5);
  background-color: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 8px 20px;
  font-size: 15px;
  box-sizing: border-box;
  position: relative;
}

.drop-down {
  position: relative;
}

.drop-down:before {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #0f477d;
  z-index: 1;
}

.form-item .item-text,
.form-item input,
.form-item select,
.form-item option,
.form-item textarea {
  width: 100%;
}

.mobile-one-row {
  width: 100%;
}

.drop-down:before {
  right: 25px;
  top: 70%;
}

.submit_btn {
  width: 100%;
}

.submit_btn button {
  margin: 30px auto;
  padding: 9px 50px;
  background-color: #fff;
  border: solid 2px #0f477d;
  color: #0f477d;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit_btn button:hover {
  background-color: #0f477d;
  color: #fff;
}

.offices-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
}

.office-col {
  width: 32.5%;
  width: calc(33% - 6px);
  text-align: left;
  padding: 0px 20px;
  box-sizing: border-box;
  margin-bottom: 80px;
  border-right: 1px solid #0f477d;
}

.office-col:nth-child(3n + 3) {
  border-right: none;
}

.office-col h3 {
  font-size: 17px;
  font-weight: 500;
  color: #0f477d;
}

.office-col h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 3px 0 20px 0;
  color: #0f477d;
  line-height: 27px;
}

.office-col-inner {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.office-col-inner p {
  margin: 0;
  line-height: 1.3;
}

.office-col-head {
  color: #0f477d !important;
  width: 30%;
}

.office-col-info {
  width: 60%;
  max-width: 65% !important;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .form-item {
    width: 100%;
  }
  .office-col {
    width: 50%;
  }
  .office-col:nth-child(3n + 3) {
    border-right: 1px solid #0f477d;
  }
  .office-col:nth-child(2n + 2) {
    border-right: none;
  }
}

@media screen and (max-width: 767px) {
  .contact-table {
    width: 100%;
    margin: 0;
  }
  .office-col-head {
    width: 100%;
    font-size: 13px;
    margin-bottom: 10px !important;
  }
  .office-col {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #0f477d;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .office-col:nth-child(3n + 3) {
    border-right: none;
  }
  .sitemap-col {
    width: 100%;
    padding: 25px 0;
  }
  .sitemap-col:not(:last-child) {
    border-bottom: 1px solid #0f477d;
    border-right: none;
  }
}

/*** List Style ***/

.pics-content__bullet {
  width: 100%;
  padding-left: 0;
  list-style: none;
  color: #0f477d !important;
}

.pics-content__bullet li {
  position: relative;
  padding-left: 18px;
}

.pics-content__bullet li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  /*top: 50%;*/
  top: 10px;
  margin-top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #a1a1a1;
}

.pics-content__bullet.pics-content__bullet--inline li {
  display: inline-block;
  margin-right: 15px;
}

.pics-content__bullet.pics-content__bullet--inline li:last-child {
  margin-right: 0;
}

.pics-inner-bullet {
  margin: 10px 0px 10px 24px !important;
}

/*** END List Style ***/

/*** START Contact Us Style ***/

.btn-loading {
  display: none;
}

.img-loading {
  margin: auto;
  display: none;
  margin-top: 30px;
}

.img-loading.show {
  display: block;
}

.msg-submitted {
  font-size: 32px;
  display: none;
  margin: 150px auto;
  text-align: center;
}

.msg-submitted.show {
  display: block;
}

input.error,
select.error,
textarea.error {
  border: 1px solid #ff0000;
}

/*** END Contact Us Style ***/
.vimeo {
  position:relative;
  padding:56.25% 0 0 0;
}
.vimeo iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
/*** START Popup Video Style ***/
.popup_video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.8);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup_video__close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  z-index: 999;
}
.popup_video__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup_video__close::before,
.popup_video__close::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s all ease;
}
.popup_video__close::before {
  transform: rotate(45deg);
  transform-origin: top left;
}
.popup_video__close::after {
  margin-top: -2px;
  margin-left: -10px;
  transform: rotate(-45deg);
  transform-origin: top right;
}
.popup_video__close:hover::before,
.popup_video__close:hover::after {
  background-color: red;
}
.popup_video__container {
  position: relative;
  display: none;
  width: 130vh;
  padding-top: 30px;
}
@media (max-aspect-ratio: 16/9) {
  .popup_video__container {
    width: 90vw;
  }
}
.popup_video__container .azuremediaplayer {
  pointer-events: auto;
  width: 100%;
  height: auto;
  font-size: 0 !important;
}
.popup_video__container .azuremediaplayer .vjs-player {
  position: relative;
}
.popup_video__container .azuremediaplayer .vjs-tech {
  position: relative;
  width: 1200px;
  height: auto;
  max-height: 80vh;
  max-width: 95vw;
}
.popup_video__container .azuremediaplayer.vjs-fullscreen .vjs-tech {
  max-width: unset;
  max-height: unset;
  width: 100%;
}
.popup_video .amp-default-skin .vjs-big-play-button {
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
}
.popup_video .amp-default-skin .vjs-big-play-button::before {
  font-size: 18px;
}
.overflow-hidden {
  overflow: hidden;
}
/*** END Popup Video Style ***/

/* list & grid view START */
.list-grid-toggle-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
.list-grid-control {
  margin-right: 12px;
}
.view-toggle__btn {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.5;
  transition: 0.3s all ease;
  width: auto;
  cursor: pointer;
  color: #0f477d;
}
.view-toggle__btn.active,
.view-toggle__btn:hover {
  opacity: 1;
}
.grid-view-toggle__btn {
  margin-right: 24px;
}
.view-more-or-less-btn {
  padding: 10px 20px;
  border: solid 1px #0f477d;
  border-radius: 25px;
  background-color: white;
  color: #0f477d;
  width: 155px;
  margin: 20px auto;
  cursor: pointer;
  transition: 0.3s all ease;
  text-align: center;
}
.view-more-or-less-btn:hover {
  border: 1px solid #0f477d;
  background-color: #0f477d;
  color: #fff;
  opacity: 0.8;
  width: 170px;
}
@media screen and (max-width: 768px) {
  .view__container {
    padding-top: 24px;
  }
}
.view__item.hide {
  display: none;
}
/* grid view START */
.card-group {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.card-view__item {
  /* width: 19%; */
  width: calc(20% - 4px);
  max-width: 400px;
  min-height: 300px;
  /* margin: 0.5%; */
  margin: 2px;
  background-color: #0f477d;
  color: #ffffff;
  transition: 0.3s all ease;
}
.card-view__item:hover {
  background-color: #072e54;
}
@media screen and (max-width: 768px) {
  .card-view__item {
    width: calc(100% / 3 - 1%);
    height: auto;
    min-height: auto;
  }
}
@media screen and (max-width: 560px) {
  .card-view__item {
    width: 49%;
  }
}
@media screen and (max-width: 480px) {
  .card-view__item {
    width: 100%;
  }
}
.card-body {
  margin: 0 5%;
  padding: 20px 2.5%;
  color: #ffffff;
  text-align: left;
  display: block;
}
.card-group--no-img + .card-body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  height: 100%;
}
.card-img-container {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.card-img-container::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.card-img {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: 0.4s all ease;
}
.block:hover .card-img,
.card-view__item:hover .card-img {
  transform: scale(1.1);
}
.card-title {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 400;
  width: 100%;
}
.card-splitter {
  background-color: #ff0000;
  border: solid 1px #ff0000;
  width: 24px;
  height: 1px;
  margin: 0 0 20px;
  display: block;
  transition: all 0.4s ease;
}
.card-view__item:hover .card-splitter {
  width: 44px;
}
.card-text {
  font-size: medium;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  margin-bottom: 10px;
}
.card-text small {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0;
}
.card-text small:hover {
  color: #ff0000;
}
/* grid view END */

/* list view START */
.list-view__conainer {
  display: none;
}
.list-view__header {
  font-weight: bold;
  color: #10487e;
}
.list-view__item {
  background-color: rgb(233, 242, 251);
  color: rgb(15, 71, 125);
}
.list-view__item + .list-view__item {
  margin-top: 1px;
}
.list-view__item a {
  color: rgb(15, 71, 125);
}
.list-view__item a:hover {
  color: #ff0000;
}
.list-view__row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.list-view__date,
.list-view__title {
  padding: 20px;
}
.list-view__date {
  width: 20%;
  min-width: 140px;
}
@media screen and (max-width: 560px) {
  .list-view__date {
    padding-right: 0;
    width: 75px;
    min-width: unset;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 479px) {
  .list-view__date {
    width: 65px;
  }
}
.list-view__title {
  width: 80%;
  text-align: left;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.list-view__read-more {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  width: 115px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 479px) {
  .list-view__read-more {
    width: 105px;
  }
  .career-sub-page {
    padding-top: 55px;
  }
}

/* list view END */

/* list & grid view END */

/* inner Page navigation START */
.navigation-holder {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .navigation-holder {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.navigation-holder > div {
  width: 40%;
  padding: 40px;
  margin-right: 5px;
}

.navigation-prev {
  float: left;
  text-align: left;
  background-color: #aaa;
  width: 50%;
}

.navigation-prev div {
  color: #eee;
}

.navigation-next {
  float: right;
  text-align: -webkit-right;
  background-color: #9cb5ce;
  width: 50%;
}

.navigation-next div {
  color: #0f477d;
}
.navigation-arrow-left + div,
.navigation-arrow-right + div {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .navigation-holder > div {
    width: 100%;
    padding: 20px;
    margin-right: 0;
  }
  .navigation-prev,
  .navigation-next {
    float: unset;
    width: 100%;
  }
  .content-container {
    padding-bottom: 100px;
  }
}
/* inner Page navigation END */

/* inner Page gallery START */
.quote-content-holder,
.gallery-holder {
  padding: 5% 10%;
  margin: 0 0;
  width: 100%;
}

.quote-content-holder div::before {
  content: "";
  /*background-image: url(../images/quote1.png);*/
  background-repeat: no-repeat;
  background-size: contain;
  height: 80px;
  width: 80px;
  position: absolute;
  left: 250px;
}

.quote-content-holder div::after {
  content: "";
  /*background-image: url(../images/quote2.png);*/
  background-repeat: no-repeat;
  background-size: contain;
  height: 80px;
  width: 80px;
  position: absolute;
  right: 250px;
}

.quote-content-holder div .quote-title {
  font-size: 24px;
}

.quote-content-holder div .quote-content {
  font-size: 15px;
}

.gallery-holder div {
  width: 45%;
  padding: 2.5px;
  height: 18vw;
  float: left;
}

.gallery-holder div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-holder .enlarge {
  font-size: 24px;
  padding: 5px;
  z-index: 999;
  position: relative;
  right: -91%;
  bottom: 70px;
  background-color: #0f477d;
  color: white;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
/* inner Page gallery END */

/* image popup START */
.popup__container {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
}
.popup__container.active {
  opacity: 1;
  pointer-events: auto;
}
.popup__layer {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
.popup__container .wrapper {
  z-index: 2;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
}

.popup__image-container {
  max-width: 1200px;
  max-height: 80%;
  width: auto;
  position: relative;
  z-index: 2;
}

.popup__image-container img {
  max-width: 1200px;
  max-height: 80%;
  width: 100%;
}

.popup__close-icon {
  position: absolute;
  height: 20px;
  width: 20px;
  cursor: pointer;
  top: 0;
  right: 0;
}

.popup__close-icon:before,
.popup__close-icon:after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  display: block;
  transform-origin: center;
  position: relative;
  top: 10px;
}

.popup__close-icon:before {
  transform: rotate(45deg);
}

.popup__close-icon:after {
  top: 9px;
  transform: rotate(-45deg);
}
/* image popup END */

/* image popup slide START */
.popup-image__swiper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: 80vh;
  padding-top: 30px;
  padding-bottom: 30px;
}
.popup-image__swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.popup-image__item {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.popup__container .popup-image__swiper-left,
.popup__container .popup-image__swiper-right {
  color: #fff;
  display: block;
}
/* image popup slide END */

/* index video play btn START */
.corporate-video__img {
  position: relative;
}
.video__play-icon {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -75px;
  margin-left: -75px;
  transition: 0.3s all ease;
}
@media screen and (max-width: 992px) {
  .video__play-icon {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
  }
}
@media screen and (max-width: 640px) {
  .video__play-icon {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
  }
}
.popup_video__btn:hover .video__play-icon {
  transform: scale(1.1);
}
/* index video play btn  END */
/* PICS 210603 update START */
.pics-content__for-locate {
  display: none;
}
.pics-content__for-locate.nomal {
  display: block;
}
/* PICS 210603 update END */


.swiper-container .swiper1 {
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.swiper-container .swiper3 {
  height: auto;
  width: 100%;
}

.corporate-video-caption .corporate-video-caption-text {
  color: #000000;
}

.text-justify-left {
  text-align: justify !important; 
  text-align-last: left;
  -moz-text-align-last: left;
}
