/* ===== VARIABLES ===== */
/* ===== VARIABLES ===== */
/* ===== MIXINS ===== */
.bgsizecover {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-position: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.bgsizecontain {
  background-size: contain;
  -moz-background-size: contain;
  -webkit-background-position: contain;
}
.vertalignmidhoralignleft {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  /* Safari 6.1+ */

  justify-content: center;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
}
.verticalignmid {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}
.verticalignbtm {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  -webkit-box-align: flex-end;
  align-items: flex-end;
}
.squarebox {
  position: relative;
  overflow: hidden;
}
.squarebox:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.notsquarebox {
  position: static;
  overflow: visible;
}
.notsquarebox:before {
  content: "";
  display: block;
  padding-top: 0;
}
.gray-square-box {
  position: relative;
  overflow: hidden;
  background: #e6e6e6;
}
.gray-square-box:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gray-square-box .gsb-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  /* Safari 6.1+ */

  justify-content: center;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
}
.nbtn {
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 16px 40px 16px 30px;
  vertical-align: middle;
  position: relative;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  border: 1px solid transparent;
}
.nbtn i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}
.nbtn-primary {
  background: #2a2d3c;
}
.nbtn-alternate {
  background: #7a7a7a;
}
.nbtn-secondary {
  background: #e6e6e6;
  color: #2a2d3c;
}
.nbtn-tertiary {
  background: transparent;
  border: 1px solid #2a2d3c;
  color: #2a2d3c;
}
.nbtn-quarternary {
  background: #ffffff;
}
@media (max-width: 991px) {
  .nbtn {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
/* ===== SITE STYLES ===== */
html {
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
body {
  font-family: 'Avenir LT W01 35 Light';
  color: #2a2d3c;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
body a,
body a:link,
body a:visited {
  color: #2a2d3c;
}
body a.nbtn,
body a:link.nbtn,
body a:visited.nbtn {
  text-decoration: none;
  color: #fff;
}
body a.nbtn-secondary,
body a:link.nbtn-secondary,
body a:visited.nbtn-secondary,
body a.nbtn-tertiary,
body a:link.nbtn-tertiary,
body a:visited.nbtn-tertiary,
body a.nbtn-quarternary,
body a:link.nbtn-quarternary,
body a:visited.nbtn-quarternary {
  color: #2a2d3c;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: 'Avenir LT W01 85 Heavy';
  text-transform: uppercase;
}
body h3 {
  font-size: 21px;
}
@media (max-width: 991px) {
  body h1 {
    font-size: 30px;
  }
  body h2 {
    font-size: 26px;
  }
}
@media (max-width: 690px) {
  body {
    padding-top: 58px;
  }
}
#mmenu {
  display: none;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  #mmenu {
    display: block;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.75);
    top: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
  }
  #mmenu nav {
    width: 270px;
    height: 100%;
    right: -270px;
    position: absolute;
    background: #2a2d3c;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  #mmenu h4 {
    margin: 0;
    letter-spacing: 1px;
    color: #f6f6f6;
    background: #232633;
    padding: 10px;
    text-align: center;
  }
  #mmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #mmenu ul li {
    border-bottom: 1px solid #323646;
  }
  #mmenu ul li:first-child {
    border-top: 1px solid #323646;
  }
  #mmenu ul li a {
    text-transform: uppercase;
    line-height: 16px;
    display: block;
    padding: 10px 20px;
    color: #f6f6f6;
    text-decoration: none;
    background: #2a2d3c;
  }
  #mmenu ul li a:hover {
    background: #232633;
  }
  #mmenu ul li .submenu {
    font-size: 12px;
    line-height: 15px;
  }
  #mmenu ul li .submenu li {
    border-bottom: 0;
  }
  #mmenu ul li .submenu li:first-child {
    border-top: 0;
  }
  #mmenu ul li .submenu li a {
    text-transform: none;
    padding: 5px 20px 5px 30px;
  }
  #mmenu ul li .submenu li .submenu a {
    padding-left: 50px;
  }
}
html.pushed,
html.pushed body {
  margin-left: -270px;
}
html.pushed #mmenu,
html.pushed body #mmenu {
  visibility: visible;
  opacity: 1;
}
html.pushed #mmenu nav,
html.pushed body #mmenu nav {
  right: 0;
}
@media (max-width: 767px) {
  html.pushed #siteheader,
  html.pushed body #siteheader {
    left: -270px;
  }
  html.pushed #siteheader .mobile-menu-icon i,
  html.pushed body #siteheader .mobile-menu-icon i {
    height: 0;
  }
  html.pushed #siteheader .mobile-menu-icon i:before,
  html.pushed body #siteheader .mobile-menu-icon i:before {
    -webkit-transform: translatey(0px) translatex(0) rotate(45deg);
    -moz-transform: translatey(0px) translatex(0) rotate(45deg);
    top: 0;
  }
  html.pushed #siteheader .mobile-menu-icon i:after,
  html.pushed body #siteheader .mobile-menu-icon i:after {
    -webkit-transform: translatey(0px) translatex(0) rotate(-45deg);
    -moz-transform: translatey(0px) translatex(0) rotate(-45deg);
    bottom: -2px;
  }
}
.topart {
  background: #f6f6f6;
  padding-bottom: 50px;
}
.whitesection {
  background: #fff;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .whitesection {
    margin: 0 15px;
  }
}
.bluesection {
  background: #2a2d3c;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .investors .whitesection {
    padding: 15px 0;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
#siteheader {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  position: relative;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#siteheader .navbar-header {
//  float: none; Disabled by Balpreet Saran
}
#siteheader #logo {
  display: block;
  max-width: 300px;
  margin: 0 auto;
//  padding-bottom: 25px; Disabled by Balpreet Saran
}
#siteheader #logo img {
  width: 100%;
}
#siteheader .navbar-collapse {
  margin-top: 8px; // Added by Balpreet Saran
}
#siteheader .tb-megamenu-menu-ntc-menu {
  float: right; // Added by Balpreet Saran
}
#siteheader nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 1px;
}
#siteheader nav ul li {
  display: inline-block;
  vertical-align: top;
}
#siteheader nav ul li a {
  color: #212121;
  display: block;
  padding: 5px 20px;
  text-decoration: none;
}
#siteheader nav ul li.withchild {
  position: relative;
}
#siteheader nav ul li.withchild .submenu {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 5;
  width: 200px;
  left: 50%;
  margin-left: -100px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.75);
}
#siteheader nav ul li.withchild .submenu a {
  padding: 5px 0;
}
#siteheader nav ul li.withchild:after,
#siteheader nav ul li.withchild:before {
  content: "";
  height: 1px;
  width: 5px;
  top: 13px;
  background: #212121;
  position: absolute;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#siteheader nav ul li.withchild:after {
  right: 11px;
  -webkit-transform: translatey(0px) translatex(0) rotate(45deg);
  -moz-transform: translatey(0px) translatex(0) rotate(45deg);
}
#siteheader nav ul li.withchild:before {
  right: 8px;
  -webkit-transform: translatey(0px) translatex(0) rotate(-45deg);
  -moz-transform: translatey(0px) translatex(0) rotate(-45deg);
}
#siteheader nav ul li.withchild:hover .submenu {
  display: block;
  text-align: left;
}
#siteheader nav ul li.withchild:hover .submenu li {
  display: block;
}
#siteheader nav ul li.withchild:hover .submenu li.withchild .submenu {
  display: none;
}
#siteheader nav ul li.withchild:hover .submenu li.withchild:hover .submenu {
  display: block!important;
  right: -200px;
  left: auto;
  margin: 0;
  top: 0;
  font-size: 11px;
  line-height: 15px;
}
#siteheader nav ul li.withchild:hover .submenu li.withchild:after,
#siteheader nav ul li.withchild:hover .submenu li.withchild:before {
  right: 8px;
}
#siteheader nav ul li.withchild:hover .submenu li.withchild:after {
  top: 14px;
  right: 8px;
  -webkit-transform: translatey(0px) translatex(0) rotate(-45deg);
  -moz-transform: translatey(0px) translatex(0) rotate(-45deg);
}
#siteheader nav ul li.withchild:hover .submenu li.withchild:before {
  top: 12px;
  right: 8px;
  -webkit-transform: translatey(0px) translatex(0) rotate(45deg);
  -moz-transform: translatey(0px) translatex(0) rotate(45deg);
}
#siteheader nav ul li.withchild:hover:after {
  right: 11px;
  -webkit-transform: translatey(0px) translatex(0) rotate(-45deg);
  -moz-transform: translatey(0px) translatex(0) rotate(-45deg);
}
#siteheader nav ul li.withchild:hover:before {
  right: 8px;
  -webkit-transform: translatey(0px) translatex(0) rotate(45deg);
  -moz-transform: translatey(0px) translatex(0) rotate(45deg);
}
#siteheader .glyphicon-search {
  position: absolute;
  right: 15px;
  top: 41px;
  font-size: 22px;
  cursor: pointer;
}
#siteheader .glyphicon-menu-hamburger {
  display: none;
}
#siteheader .mobile-menu-icon {
  display: none;
  cursor: pointer;
  padding-top: 9px;
  position: absolute;
  width: 24px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: 15px;
}
#siteheader .mobile-menu-icon i {
  position: relative;
  display: block;
  height: 2px;
  background: #212121;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#siteheader .mobile-menu-icon i:before,
#siteheader .mobile-menu-icon i:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #212121;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#siteheader .mobile-menu-icon i:before {
  top: -8px;
}
#siteheader .mobile-menu-icon i:after {
  bottom: -8px;
}
@media (max-width: 991px) {
  #siteheader {
    padding-top: 15px;
    padding-bottom: 15px;
    /*.glyphicon-menu-hamburger { 
          display: inline-block;
          position: absolute;
          right:15px;
          font-size: 22px;
          top:26px;
      }*/
  
  }
  #siteheader #logo {
    padding-bottom: 0;
  }
  #siteheader nav {
    display: none;
  }
  #siteheader .glyphicon-search {
    right: auto;
    left: 15px;
    top: 26px;
  }
  #siteheader .mobile-menu-icon {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #siteheader {
    position: fixed;
    background: #f6f6f6;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  #siteheader #logo {
    max-width: 200px;
  }
  #siteheader .glyphicon-search,
  #siteheader .glyphicon-menu-hamburger {
    top: 18px;
  }
}
.heroshot {
  height: 510px;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-position: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
.heroshot .herocontent {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 45px 75px;
}
.heroshot .herocontent h1 {
  font-family: 'Avenir LT W01 35 Light';
  margin: 0 0 20px;
}
.heroshot .herocontent h1 strong {
  font-family: 'Avenir LT W01 35 Light' !important;
  font-weight: normal;
}
.heroshot .herocontent p {
  font-size: 18px;
  margin: 0;
  line-height: 25px;
}
.heroshot .herocontent p em {
  font-style: normal;
  font-size: 12px;
  color: #847c7c;
  display: block;
  letter-spacing: 2px;
  font-family: 'Avenir LT W01 85 Heavy';
  margin-top: 10px;
}
.heroshot.hsv2 .herocontent {
  padding: 45px 30px;
}
.heroshot.hsv2 .herocontent h1 {
  border-top: 6px solid #fff;
  padding-top: 40px;
}
.heroshot.hsv2 .herocontent p {
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
}
.heroshot.hhome {
  background-image: url(../images/home-heroshot-img.jpg);
}
.heroshot.harticle {
  padding-left: 50px;
}
.heroshot.harticle .herocontent {
  padding: 45px 30px;
}
.heroshot.hwm2m {
  background-image: url(../images/wm2m-heroshot-img.jpg);
}
.heroshot.hfb {
  background-image: url(../images/fb-heroshot-img.jpg);
}
.heroshot.hfb .herocontent {
  background: rgba(42, 45, 60, 0.54);
}
.heroshot.hcompany {
  background-image: url(../images/cmpny-heroshot-img.jpg);
}
.heroshot.hcompany .herocontent {
  background: rgba(42, 45, 60, 0.59);
}
.heroshot.hcompany img {
  position: absolute;
  right: 80px;
  margin-top: -168px;
  top: 50%;
}
.heroshot.hfwrb {
  background-image: url(../images/fwrb-heroshot-img.jpg);
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.heroshot.hfwrb .herocontent {
  background: rgba(42, 45, 60, 0.65);
  padding: 45px;
}
.heroshot.hinvtrs {
  background-image: url(../images/invstrs-heroshot-img.jpg);
}
.heroshot.hinvtrs .extracontent {
  width: 300px;
  height: 300px;
  background: rgba(230, 230, 230, 0.9);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -150px;
  padding: 50px;
}
.heroshot.hinvtrs .extracontent p {
  width: 100%;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Avenir LT W01 35 Light';
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 12px;
}
.heroshot.hinvtrs .extracontent p strong {
  display: block;
  font-family: 'Avenir LT W01 85 Heavy';
  font-size: 70px;
  line-height: 70px;
  letter-spacing: 8px;
  color: #212121;
}
.heroshot.hinvtrs .extracontent p a {
  display: block;
}
@media (max-width: 1199px) {
  .heroshot.hfwrb {
    background-position: -110px center;
  }
  .heroshot.hfwrb .herocontent {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .heroshot {
    background-position: left center;
  }
  .heroshot .herocontent {
    width: 75%;
  }
  .heroshot.hfwrb {
    background-position: -150px center;
  }
  .heroshot.hcompany img {
    display: none;
  }
  .heroshot.hinvtrs {
    padding-right: 280px;
  }
  .heroshot.hinvtrs .herocontent {
    width: 100%;
    padding-top: 41px;
    padding-bottom: 41px;
  }
  .heroshot.hinvtrs .extracontent {
    padding: 30px;
    width: 270px;
    height: 270px;
    text-align: center;
    margin-top: -135px;
  }
}
@media (max-width: 690px) {
  .heroshot {
    background-position: center center;
    height: 400px;
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-justify-content: flex-end;
    /* Safari 6.1+ */
  
    justify-content: flex-end;
    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    -webkit-box-align: flex-end;
    align-items: flex-end;
  }
  .heroshot .herocontent {
    width: 100%;
    padding: 25px;
    text-align: center;
  }
  .heroshot .herocontent h1 {
    margin-bottom: 10px;
  }
  .heroshot .herocontent p {
    font-size: 14px;
    line-height: 18px;
  }
  .heroshot.hsv2 .herocontent {
    padding: 20px;
  }
  .heroshot.hsv2 .herocontent h1 {
    padding-top: 15px;
  }
  .heroshot.hsv2 .herocontent p {
    padding-bottom: 15px;
  }
  .heroshot.hfwrb .herocontent {
    width: 100%;
  }
  .heroshot.hinvtrs {
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    padding-right: 210px;
  }
  .heroshot.hinvtrs .herocontent {
    text-align: left;
  }
  .heroshot.hinvtrs .extracontent {
    padding: 15px;
    height: 136px;
    width: 200px;
    margin-top: -68px;
  }
  .heroshot.hinvtrs .extracontent p strong {
    font-size: 30px;
    line-height: 30px;
  }
  .heroshot.hinvtrs .extracontent p a.nbtn {
    padding: 12px 30px 12px 15px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .heroshot.hinvtrs {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    -webkit-box-align: flex-end;
    align-items: flex-end;
    padding-right: 0;
  }
  .heroshot.hinvtrs .herocontent {
    text-align: center;
  }
  .heroshot.hinvtrs .extracontent {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .heroshot.hinvtrs .extracontent p {
    position: relative;
    text-align: left;
    letter-spacing: 1px;
  }
  .heroshot.hinvtrs .extracontent p a.nbtn {
    position: absolute;
    right: 0;
    margin: 0;
    top: 6px;
    letter-spacing: 0;
    font-size: 12px;
    line-height: 12px;
    padding: 10px 20px 10px 10px;
  }
  .heroshot.hinvtrs .extracontent p a.nbtn i {
    right: 5px;
  }
}
.panel-type-one {
  text-align: center;
}
.panel-type-one h3 {
  margin: 0;
  letter-spacing: 4px;
}
.panel-type-one p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 25px;
  padding: 0 140px;
}
.panel-type-one .nbtn {
  margin-top: 15px;
}
.panel-type-one.bluesection {
  color: #fff;
}
.panel-type-one.bluesection .nbtn-primary {
  background: #e6e6e6;
  color: #2a2d3c;
}
@media (max-width: 991px) {
  .panel-type-one p {
    padding: 0 50px;
  }
}
@media (max-width: 690px) {
  .panel-type-one p {
    padding: 0;
  }
}
.panel-type-two img {
  width: 100%;
}
.panel-type-two .col-sm-6:first-child {
  float: right;
}
.panel-type-two .col-sm-6:first-child .ptt-content {
  padding-left: 15px;
  padding-right: 55px;
}
.panel-type-two .col-sm-6:last-child .ptt-content {
  padding-left: 45px;
  padding-right: 15px;
}
.panel-type-two h3,
.panel-type-two h4 {
  margin: 0;
  letter-spacing: 4px;
  font-family: 'Avenir LT W01 35 Light';
  border-top: 6px solid #212121;
  border-bottom: 1px solid #212121;
  padding: 20px 0;
}
.panel-type-two h3 strong,
.panel-type-two h4 strong {
  font-family: 'Avenir LT W01 85 Heavy';
}
.panel-type-two p {
  margin: 20px 0 0;
}
.panel-type-two .nbtn {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .panel-type-two .col-sm-6:first-child .ptt-content {
    padding: 0;
  }
  .panel-type-two .col-sm-6:last-child .ptt-content {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .panel-type-two .nbtn {
    margin: 20px 0 0;
    text-align: center;
    display: block;
  }
}
@media (max-width: 767px) {
  .panel-type-two .col-sm-6 {
    padding: 0 30px;
  }
  .panel-type-two .col-sm-6:first-child {
    float: none;
    margin-bottom: 30px;
  }
}
.topart .whitesection.panel-type-two {
  padding: 70px 0;
}
.topart .whitesection.panel-type-two .col-sm-6:first-child .ptt-content {
  padding-right: 90px;
}
.topart .whitesection.panel-type-two .col-sm-6:last-child .ptt-content {
  padding-left: 90px;
}
@media (max-width: 991px) {
  .topart .whitesection.panel-type-two {
    padding: 30px 0;
  }
  .topart .whitesection.panel-type-two .col-sm-6:first-child .ptt-content {
    padding-right: 30px;
  }
  .topart .whitesection.panel-type-two .col-sm-6:last-child .ptt-content {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .topart .whitesection.panel-type-two {
    padding: 30px 0;
  }
  .topart .whitesection.panel-type-two .col-sm-6:first-child .ptt-content {
    padding-right: 0;
  }
  .topart .whitesection.panel-type-two .col-sm-6:last-child .ptt-content {
    padding-left: 0;
  }
}
.panel-type-three {
  padding-top: 50px;
  padding-bottom: 50px;
}
.panel-type-three .ptt-content {
  height: 510px;
  position: relative;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-position: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  /* Safari 6.1+ */

  justify-content: center;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
}
.panel-type-three .ptt-content .row {
  height: 100%;
}
.panel-type-three .ptt-content .row .col-sm-6 {
  height: 100%;
}
.panel-type-three .ptt-content .row .col-sm-6:first-child.ptt-post {
  padding-left: 75px;
}
.panel-type-three .ptt-content .row .col-sm-6:last-child.ptt-xtra-post {
  padding-right: 75px;
}
.panel-type-three .ptt-content .ptt-post {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}
.panel-type-three .ptt-content .ptt-post h4 {
  border-top: 6px solid #2a2d3c;
  font-family: 'Avenir LT W01 35 Light';
  letter-spacing: 4px;
  padding: 20px 0 0;
  line-height: 22px;
  margin: 0 0 30px;
}
.panel-type-three .ptt-content .ptt-post h4 strong {
  font-family: 'Avenir LT W01 85 Heavy';
}
.panel-type-three .ptt-content .ptt-post h5 {
  margin: 0 0 5px;
}
.panel-type-three .ptt-content .ptt-post p {
  margin: 0;
}
.panel-type-three .ptt-content .ptt-post .nbtn {
  margin-right: 30px;
}
.panel-type-three .ptt-content .ptt-xtra-post {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  float: right;
}
.panel-type-three .ptt-content .ptt-xtra-post div {
  width: 100%;
}
.panel-type-three.light {
  color: #fff;
}
.panel-type-three.light .ptt-content .ptt-post h4 {
  border-top-color: #ffffff;
}
.panel-type-three:first-child {
  padding-top: 0;
}
@media (max-width: 991px) {
  .panel-type-three .ptt-content {
    height: 400px;
  }
  .panel-type-three .ptt-content .row .col-sm-6:first-child.ptt-post {
    padding-left: 45px;
  }
  .panel-type-three .ptt-content .row .col-sm-6:last-child.ptt-xtra-post {
    padding-right: 45px;
  }
  .panel-type-three .ptt-content .ptt-post h4 {
    padding-top: 15px;
    margin-bottom: 20px;
  }
  .panel-type-three .ptt-content .ptt-post .nbtn {
    margin: 20px 0 0;
  }
}
@media (max-width: 767px) {
  .panel-type-three {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .panel-type-three .ptt-content {
    height: auto;
  }
  .panel-type-three .ptt-content .row .col-sm-6 {
    height: auto;
  }
  .panel-type-three .ptt-content .row .col-sm-6:first-child.ptt-post {
    padding-left: 30px;
  }
  .panel-type-three .ptt-content .row .col-sm-6:last-child.ptt-xtra-post {
    padding-right: 30px;
    padding-left: 30px;
    float: none;
  }
  .panel-type-three .ptt-content .ptt-post {
    padding: 30px;
  }
}
@media (max-width: 690px) {
  .panel-type-three {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.m2mpost-one .ptt-content {
  background-image: url(../images/m2m-img-three.jpg);
}
.m2mpost-one .ptt-content .ptt-xtra-post div {
  text-align: center;
  background: rgba(0, 63, 111, 0.78);
  padding: 40px;
  color: #fff;
}
.m2mpost-one .ptt-content .ptt-xtra-post div p {
  font-style: italic;
  margin: 0;
}
.m2mpost-one .ptt-content .ptt-xtra-post div strong {
  display: block;
  font-size: 12px;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.m2mpost-one .ptt-content .ptt-xtra-post div a {
  font-family: 'Avenir LT W01 85 Heavy';
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .m2mpost-one .ptt-content {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .m2mpost-one .ptt-content {
    height: auto;
    background: none;
  }
  .m2mpost-one .ptt-content .ptt-post {
    background: #a8cad6;
  }
  .m2mpost-one .ptt-content .ptt-xtra-post {
    background-image: url(../images/m2m-img-three.jpg);
    background-position: right center;
    background-size: auto 200%;
    background-repeat: no-repeat;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.m2mpost-two .ptt-content {
  background-image: url(../images/m2m-img-four.jpg);
}
.m2mpost-two .ptt-content .ptt-xtra-post {
  height: 100%;
}
.m2mpost-two .ptt-content .ptt-xtra-post div {
  text-align: center;
  width: 100%;
}
.m2mpost-two .ptt-content .ptt-xtra-post div p {
  background: rgba(126, 133, 97, 0.79);
  padding: 40px;
  display: inline-block;
}
.m2mpost-two .ptt-content .ptt-xtra-post div p a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  color: #fff;
  font-family: 'Avenir LT W01 85 Heavy';
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}
.m2mpost-two .ptt-content .ptt-xtra-post div p img {
  width: 50px;
  margin-left: 15px;
  display: inline-block;
}
@media (max-width: 991px) {
  .m2mpost-two .ptt-content {
    height: 460px;
  }
}
@media (max-width: 767px) {
  .m2mpost-two .ptt-content {
    height: auto;
    background: none;
  }
  .m2mpost-two .ptt-content .ptt-post {
    background: #7e8561;
  }
  .m2mpost-two .ptt-content .ptt-xtra-post {
    background-image: url(../images/m2m-img-four.jpg);
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.fwrbpost-one .ptt-content {
  background-image: url(../images/fwrb-img-one.jpg);
}
.fwrbpost-one .ptt-content .ptt-post h4 {
  border-bottom: 1px solid #2a2d3c;
  padding-bottom: 20px;
}
.fwrbpost-one .ptt-content .ptt-xtra-post div {
  padding-left: 50px;
  text-align: center;
}
.fwrbpost-one .ptt-content .ptt-xtra-post div h4 {
  color: #fff;
  margin: 0 0 30px;
}
.fwrbpost-one .ptt-content .ptt-xtra-post div .embed-responsive {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.8);
}
@media (max-width: 991px) {
  .fwrbpost-one .ptt-content .ptt-post h4 {
    padding-bottom: 15px;
  }
  .fwrbpost-one .ptt-content .ptt-xtra-post div {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .fwrbpost-one .ptt-content {
    background: none;
  }
  .fwrbpost-one .ptt-content .ptt-post {
    background: #dbd6c5;
  }
  .fwrbpost-one .ptt-content .ptt-post h4 {
    padding-bottom: 15px;
  }
  .fwrbpost-one .ptt-content .ptt-xtra-post {
    background-image: url(../images/fwrb-img-one.jpg);
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-position: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-position: right center;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .fwrbpost-one .ptt-content .ptt-xtra-post div {
    padding-left: 0;
  }
  .fwrbpost-one .ptt-content .ptt-xtra-post div h4 {
    margin-bottom: 15px;
  }
}
.fwrbpost-two .ptt-content {
  background-image: url(../images/fwrb-img-three.jpg);
}
.fwrbpost-two .ptt-content .ptt-post h4 {
  border-bottom: 1px solid #2a2d3c;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .fwrbpost-two .ptt-content {
    height: 520px;
  }
  .fwrbpost-two .ptt-content .ptt-post .nbtn {
    display: block;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .fwrbpost-two .ptt-content {
    background: none;
    height: auto;
  }
  .fwrbpost-two .ptt-content .row {
    background-image: url(../images/fwrb-img-three.jpg);
    background-size: 260% auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding-bottom: 400px;
  }
  .fwrbpost-two .ptt-content .ptt-post {
    background: #dfe7eb;
  }
}
.postwidget span {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-position: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 80px;
  display: block;
  margin-bottom: 15px;
}
.postwidget h5 {
  margin: 0 0 15px;
  letter-spacing: 4px;
}
.postwidget p {
  margin: 0;
}
.postwidget .nbtn {
  margin-top: 20px;
}
.panel-type-four {
  margin-top: 50px;
}
.panel-type-four .col-md-5 {
  text-transform: uppercase;
}
.panel-type-four .gsb-wrap {
  padding: 0 30px;
}
.panel-type-four span {
  border-top: 1px solid #212121;
  padding-top: 30px;
  display: block;
  font-size: 12px;
  font-family: 'Avenir LT W01 85 Heavy';
  letter-spacing: 2px;
}
.panel-type-four h3 {
  margin: 30px 0 0;
  letter-spacing: 4px;
  font-family: 'Avenir LT W01 35 Light';
}
.panel-type-four h3 strong {
  font-family: 'Avenir LT W01 85 Heavy';
}
.panel-type-four h4,
.panel-type-four p {
  width: 100%;
}
.panel-type-four h4 {
  letter-spacing: 2px;
  margin: 0 0 20px;
}
.panel-type-four p {
  margin: 0;
}
@media (max-width: 991px) {
  .panel-type-four .col-md-5 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .panel-type-four .col-md-5 {
    margin-bottom: 30px;
  }
  .panel-type-four .col-md-7 .col-sm-6 {
    width: 50%;
    float: left;
  }
}
@media (max-width: 690px) {
  .panel-type-four .col-md-5 .nbtn {
    width: 100%;
    text-align: center;
  }
  .panel-type-four .col-md-7 .col-sm-6 {
    width: 100%;
    float: none;
  }
  .panel-type-four .col-md-7 .col-sm-6:first-child {
    margin-bottom: 15px;
  }
}
.wanna-know-more {
  margin-top: 0;
}
.wanna-know-more .col-md-5 h3 {
  margin: 100px 0 0;
}
.wanna-know-more .col-md-7 {
  float: right;
}
.wanna-know-more .col-md-7 .col-sm-6:first-child .gray-square-box {
  background: #c3c8cc;
}
.wanna-know-more .col-md-7 .col-sm-6:last-child .gray-square-box {
  background: #254c94;
  color: #fff;
}
@media (max-width: 1199px) {
  .wanna-know-more .col-md-7 .col-sm-6 .gray-square-box:before {
    padding-top: 120%;
  }
}
@media (max-width: 991px) {
  .wanna-know-more .col-md-7 {
    float: none;
  }
  .wanna-know-more .col-md-7 .col-sm-6 .gray-square-box:before {
    padding-top: 100%;
  }
  .wanna-know-more .col-md-5 {
    text-align: center;
  }
  .wanna-know-more .col-md-5 h3 {
    margin-top: 70px;
  }
  .wanna-know-more .col-md-5 .nbtn {
    display: block;
  }
}
@media (max-width: 690px) {
  .wanna-know-more .col-md-7 .col-sm-6 .gray-square-box {
    position: static;
    overflow: visible;
  }
  .wanna-know-more .col-md-7 .col-sm-6 .gray-square-box:before {
    content: "";
    display: block;
    padding-top: 0;
  }
  .wanna-know-more .col-md-7 .col-sm-6 .gray-square-box .gsb-wrap {
    position: static;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .wanna-know-more .col-md-7 .col-sm-6 .gray-square-box .gsb-wrap h4 {
    text-align: center;
  }
}
#siteContent {
  background: #e6e6e6;
  padding: 50px 0;
}
.two-boxed-content .row .tbc-content,
.two-boxed-content .row .tbc-img {
  position: relative;
  overflow: hidden;
}
.two-boxed-content .row .tbc-content:before,
.two-boxed-content .row .tbc-img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.two-boxed-content .row .tbc-content {
  background: #fff;
}
.two-boxed-content .row .tbc-content .tbc-content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 75px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  /* Safari 6.1+ */

  justify-content: center;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
}
.two-boxed-content .row .tbc-content .tbc-content-wrap h3,
.two-boxed-content .row .tbc-content .tbc-content-wrap p {
  width: 100%;
  margin: 0;
}
.two-boxed-content .row .tbc-content .tbc-content-wrap h3 {
  font-family: 'Avenir LT W01 35 Light';
  border-top: 6px solid #212121;
  border-bottom: 1px solid #212121;
  padding: 20px 0;
  letter-spacing: 4px;
}
.two-boxed-content .row .tbc-content .tbc-content-wrap h3 strong {
  font-family: 'Avenir LT W01 85 Heavy';
}
.two-boxed-content .row .tbc-content .tbc-content-wrap p {
  margin-top: 30px;
}
.two-boxed-content .row .tbc-img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.two-boxed-content .row.home-wm2m-content {
  padding: 30px 15px;
}
.two-boxed-content .row.home-wm2m-content .col-sm-6 {
  width: 50%;
  padding: 0;
}
.two-boxed-content .row.home-wm2m-content .col-sm-6:first-child {
  float: right;
}
.two-boxed-content .row.company-profile {
  padding-bottom: 50px;
}
.two-boxed-content .row.company-profile .col-sm-6:last-child .tbc-img {
  background: #2a2d3c;
}
.two-boxed-content .row.company-profile .col-sm-6:last-child .tbc-img p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  /* Safari 6.1+ */

  justify-content: center;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.two-boxed-content .row.company-profile .col-sm-6:last-child .tbc-img p img {
  width: 110px;
  margin: 0 15px;
  position: static;
}
@media (max-width: 1199px) {
  .two-boxed-content .row .tbc-content .tbc-content-wrap {
    padding: 40px;
  }
  .two-boxed-content .row .tbc-content .tbc-content-wrap h3 {
    letter-spacing: 1px;
  }
  .two-boxed-content .row .tbc-content .tbc-content-wrap p {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
  }
}
@media (max-width: 991px) {
  .two-boxed-content .row .tbc-content .tbc-content-wrap {
    padding: 30px;
  }
  .two-boxed-content .row .tbc-content .tbc-content-wrap h3 {
    padding: 10px 0;
  }
  .two-boxed-content .row .tbc-content .tbc-content-wrap p,
  .two-boxed-content .row .tbc-content .tbc-content-wrap .nbtn {
    margin-top: 15px;
  }
  .two-boxed-content .row.company-profile .col-sm-6 .tbc-content:before,
  .two-boxed-content .row.company-profile .col-sm-6 .tbc-img:before {
    padding-top: 130%;
  }
}
@media (max-width: 767px) {
  .two-boxed-content .row .tbc-content {
    position: static;
    overflow: visible;
    margin-bottom: 15px;
  }
  .two-boxed-content .row .tbc-content:before {
    content: "";
    display: block;
    padding-top: 0;
  }
  .two-boxed-content .row .tbc-content .tbc-content-wrap {
    position: static;
  }
  .two-boxed-content .row.home-wm2m-content .col-sm-6 {
    float: none;
    width: 100%;
  }
  .two-boxed-content .row.home-wm2m-content .col-sm-6:first-child {
    float: none;
  }
  .two-boxed-content .row.home-wm2m-content .tbc-content {
    margin-bottom: 0;
  }
  .two-boxed-content .row.home-wm2m-content .tbc-img {
    width: 100%;
  }
  .two-boxed-content .row.company-profile .col-sm-6 .tbc-content {
    position: static;
    overflow: visible;
  }
  .two-boxed-content .row.company-profile .col-sm-6 .tbc-content:before {
    content: "";
    display: block;
    padding-top: 0;
  }
  .two-boxed-content .row.company-profile .col-sm-6 .tbc-img:before {
    padding-top: 100%;
  }
  .two-boxed-content .row.company-profile .col-sm-6:last-child .tbc-img p img {
    width: 80px;
  }
}
.awards {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Avenir LT W01 85 Heavy';
  letter-spacing: 4px;
  padding-bottom: 50px;
  text-align: center;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}
.awards div {
  width: 20%;
  display: inline-block;
  vertical-align: top;
}
.awards img {
  width: 100px;
}
.awards span {
  margin-top: 15px;
  display: block;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 991px) {
  .awards span {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2px;
  }
}
@media (max-width: 767px) {
  .awards div {
    width: 33.3334%;
    padding: 20px 0;
  }
}
@media (max-width: 690px) {
  .awards div {
    width: 50%;
    padding: 20px 0;
  }
}
.article-body {
  padding-bottom: 50px;
}
.article-body .article-content {
  background: #fff;
}
.article-body .article-content .full-width-feat-image {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-position: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 500px;
}
.article-body .article-content .top-article-content,
.article-body .article-content .btm-article-content {
  padding: 70px 100px;
}
.article-body .article-content .top-article-content p,
.article-body .article-content .btm-article-content p {
  margin: 30px 0;
}
.article-body .article-content .top-article-content img.align-right,
.article-body .article-content .btm-article-content img.align-right {
  float: right;
  margin: 0 0 30px 30px;
}
.article-body .article-content .top-article-content img.align-left,
.article-body .article-content .btm-article-content img.align-left {
  float: left;
  margin: 0 30px 30px 0;
}
@media (max-width: 991px) {
  .article-body .article-content .top-article-content,
  .article-body .article-content .btm-article-content {
    padding: 30px;
  }
  .article-body .article-content .top-article-content img.align-right,
  .article-body .article-content .btm-article-content img.align-right,
  .article-body .article-content .top-article-content img.align-left,
  .article-body .article-content .btm-article-content img.align-left {
    display: block;
    float: none;
    margin: 0 30px 30px 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .article-body .article-content .top-article-content,
  .article-body .article-content .btm-article-content {
    padding: 15px;
  }
}
.newsletter {
  padding: 50px 0;
  text-align: center;
}
.newsletter h3 {
  letter-spacing: 4px;
  margin-top: 0;
}
.newsletter p {
  font-size: 18px;
  margin: 0;
}
.newsletter input {
  margin-top: 20px;
  border: 1px solid #212121;
  text-align: center;
  padding: 15px 20px;
  background: none;
  width: 300px;
}
.newsletter ::-webkit-input-placeholder {
  font-style: italic;
  color: #2a2d3c;
  opacity: 1;
}
.newsletter :-moz-placeholder {
  font-style: italic;
  color: #2a2d3c;
  opacity: 1;
}
.newsletter ::-moz-placeholder {
  font-style: italic;
  color: #2a2d3c;
  opacity: 1;
}
.newsletter :-ms-input-placeholder {
  font-style: italic;
  color: #2a2d3c;
  opacity: 1;
}
.newsletter ::-ms-input-placeholder {
  font-style: italic;
  color: #2a2d3c;
  opacity: 1;
}
.newsletter :placeholder-shown {
  font-style: italic;
  color: #2a2d3c;
  opacity: 1;
}
.newsletter:last-child {
  padding-bottom: 0;
}
@media (max-width: 690px) {
  .newsletter form {
    padding: 0 20px;
  }
  .newsletter input {
    width: 100%;
  }
}
.fwrb .newsletter,
.article .newsletter {
  background: #fff;
}
.fwrb .newsletter input,
.article .newsletter input {
  background: #b1b1b1;
}
.papers-articles h3 {
  border-top: 6px solid #212121;
  border-bottom: 1px solid #212121;
  padding: 20px 0;
  margin: 0;
  letter-spacing: 4px;
}
.papers-articles ul {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.papers-articles ul li {
  padding-top: 20px;
  padding-bottom: 20px;
}
.papers-articles .seeall {
  display: block;
  text-decoration: underline;
  border-top: 1px solid #2a2d3c;
  padding-top: 20px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .papers-articles .whitepapers {
    margin-bottom: 50px;
  }
}
.fwrb .papers-articles,
.article .papers-articles {
  background: none;
}
.fwrb .papers-articles:last-child,
.article .papers-articles:last-child {
  padding-bottom: 0;
}
.ourstrategy {
  padding-bottom: 50px;
}
.ourstrategy .strategylist {
  list-style: none;
  margin: 0;
  padding: 20px;
  background: #fff;
  font-size: 0;
  line-height: 0;
}
.ourstrategy .strategylist li {
  font-size: 18px;
  line-height: 24px;
  width: 50%;
  display: inline-block;
  padding: 20px;
}
.ourstrategy .strategylist li a {
  position: relative;
  overflow: hidden;
  display: block;
  background: #ebeff1;
  text-transform: uppercase;
}
.ourstrategy .strategylist li a:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.ourstrategy .strategylist li a div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  /* Safari 6.1+ */

  justify-content: center;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  align-items: flex-start;
}
.ourstrategy .strategylist li a div h4 {
  margin: 0;
  line-height: 20px;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.ourstrategy .strategylist li a div span {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  line-height: 12px;
}
@media (max-width: 991px) {
  .ourstrategy .strategylist {
    padding: 5px;
  }
  .ourstrategy .strategylist li {
    padding: 5px;
  }
  .ourstrategy .strategylist li a div {
    padding: 0 15px;
  }
  .ourstrategy .strategylist li a div h4 {
    font-size: 14px;
    line-height: 18px;
  }
}
#theInvestors .col-sm-6:first-child h3 {
  display: none;
}
#theInvestors .nav-tabs {
  font-size: 0;
  line-height: 0;
  text-align: center;
  border: 0;
}
#theInvestors .nav-tabs li {
  text-align: center;
  display: inline-block;
  float: none;
  width: 33.3334%;
  text-transform: uppercase;
  margin: 0;
}
#theInvestors .nav-tabs li a {
  border: 0;
  margin: 0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
#theInvestors .nav-tabs li img {
  width: 88px;
}
#theInvestors .nav-tabs li span {
  margin-top: 12px;
  display: block;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
}
#theInvestors .nav-tabs li.active a {
  background: #eee;
}
#theInvestors .nav-tabs li.active a span {
  font-family: 'Avenir LT W01 85 Heavy';
}
#theInvestors h3 {
  border-bottom: 1px solid #212121;
  border-top: 6px solid #212121;
  padding: 20px 0;
  font-family: 'Avenir LT W01 35 Light';
  font-weight: normal;
  margin: 0 0 20px;
}
#theInvestors h3 strong {
  font-family: 'Avenir LT W01 85 Heavy';
}
#theInvestors .tab-pane {
  background: #e6e6e6;
  padding: 40px;
}
#theInvestors .tab-pane h5 {
  margin: 0;
  letter-spacing: 2px;
}
#theInvestors .tab-pane p {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 991px) {
  #theInvestors .nav-tabs li img {
    width: 66px;
  }
}
@media (max-width: 767px) {
  #theInvestors .col-sm-6:first-child h3 {
    display: block;
    text-align: center;
  }
  #theInvestors .col-sm-6:last-child h3 {
    display: none;
  }
  #theInvestors .nav-tabs {
    margin-bottom: 15px;
  }
  #theInvestors .nav-tabs li {
    vertical-align: top;
  }
  #theInvestors .nav-tabs li a {
    padding: 10px;
  }
  #theInvestors .nav-tabs li span {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
  }
  #theInvestors .nav-tabs li img {
    display: none;
  }
  #theInvestors .tab-pane {
    padding: 20px;
  }
}
.news-and-announcements {
  background: #fff;
  padding: 50px 0;
  text-align: center;
}
.news-and-announcements h3 {
  font-family: 'Avenir LT W01 35 Light';
  font-weight: normal;
  margin: 0;
  letter-spacing: 4px;
}
.news-and-announcements h3 strong {
  font-family: 'Avenir LT W01 85 Heavy';
}
.news-and-announcements .seeall {
  font-size: 12px;
  display: block;
  padding: 20px 0 30px;
  text-decoration: underline;
}
.news-and-announcements .row {
  padding-left: 45px;
  padding-right: 45px;
  text-align: left;
}
.news-and-announcements .row .col-md-4 {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .news-and-announcements .row {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .news-and-announcements .row .col-sm-4 {
    padding: 10px 0;
  }
}
.latest-company-news {
  padding: 50px 0;
}
.events .news-and-announcements {
  background: none;
  padding: 0;
}
.events .news-and-announcements h3,
.events .news-and-announcements .seeall {
  color: #ffffff;
}
.events .news-and-announcements .row {
  padding-left: 15px;
  padding-right: 15px;
}
.events .news-and-announcements .row .col-sm-4 {
  padding-left: 15px;
  padding-right: 15px;
}
.events .news-and-announcements .row .col-sm-4 .postwidget {
  background: #e6e6e6;
  padding: 25px;
}
.events .news-and-announcements .row .col-sm-4 .postwidget span {
  height: 150px;
}
.events .news-and-announcements .row .col-sm-4 .postwidget em {
  font-style: normal;
  font-size: 14px;
  font-family: 'Avenir LT W01 85 Heavy';
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.events .news-and-announcements .row .col-sm-4 .postwidget .date {
  color: #616162;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .events .news-and-announcements .row {
    padding-left: 5px;
    padding-right: 5px;
  }
  .events .news-and-announcements .row .col-sm-4 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .events .news-and-announcements .row .col-sm-4 .postwidget {
    padding: 15px;
  }
}
.reportlist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.reportlist div .gray-square-box .gsb-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 0 50px;
}
.reportlist div .gray-square-box .gsb-wrap h2 {
  margin: 0;
  font-family: 'Avenir LT W01 35 Light';
}
@media (max-width: 991px) {
  .reportlist div .gray-square-box .gsb-wrap {
    padding: 0 15px;
  }
  .reportlist div .gray-square-box .gsb-wrap h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 690px) {
  .reportlist .col-xs-4 {
    margin: 15px 0;
    width: 100%;
    float: none;
  }
  .reportlist .col-xs-4:first-child {
    margin-top: 0;
  }
  .reportlist .col-xs-4:last-child {
    margin-bottom: 0;
  }
}
.pl-hdr h4 {
  font-family: 'Avenir LT W01 35 Light';
  margin: 0;
  padding-top: 15px;
  letter-spacing: 4px;
}
.pl-hdr h4 strong {
  font-family: 'Avenir LT W01 85 Heavy';
}
.pl-hdr form {
  float: right;
}
.pl-hdr form .form-control {
  border: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  height: auto;
  padding: 15px 20px;
  vertical-align: top;
}
.pl-hdr form .input-group-btn {
  vertical-align: top;
}
.pl-hdr form .input-group-btn button {
  border: 0;
  font-size: 26px;
  margin: -1px 0 0;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  height: 50px;
}
.pl-hdr form .input-group-btn button:last-child {
  margin: -1px 0 0;
}
.pl-hdr form .input-group-btn:hover button {
  background: #fff;
}
@media (max-width: 690px) {
  .pl-hdr {
    text-align: center;
  }
  .pl-hdr .col-sm-4 {
    float: none;
    width: 100%;
  }
  .pl-hdr h4 {
    padding-top: 0;
    margin-bottom: 20px;
  }
}
.products .item {
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border: 1px solid;
  height: 375px;
} 
.products .item:hover {
  background-color: white;
  border: 1px solid rgb(215, 111, 44);
}
.products .item a {
  display: block;
  text-decoration: none;
  padding: 15px 0 0;
}
.products .item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Avenir LT W01 85 Heavy';
}
.products .item span strong {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  display: block;
  margin: 10px 0 0;
  padding: 0 10px;
}
.products .item span strong a {
    padding: 0px;
}
.products .item span em {
  font-style: normal;
  font-size: 12px;
}
@media (max-width: 991px) {
  .products .item a img {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .products .item {
    width: 50%;
    float: left;
  }
}
@media (max-width: 690px) {
  .products .item a img {
    width: 120px;
  }
  .products .item a span {
    letter-spacing: 1 px;
  }
  .products .item a span strong {
    font-size: 16px;
    line-height: 20px;
  }
}
.video-container h4 {
  font-family: 'Avenir LT W01 35 Light';
  margin: 0;
  padding: 20px 0;
  letter-spacing: 4px;
  border-top: 6px solid #212121;
  border-bottom: 1px solid #212121;
}
.video-container h4 strong {
  font-family: 'Avenir LT W01 85 Heavy';
  display: block;
}
.video-container p {
  margin: 20px 0 0;
}
.mobile-pi-ddown {
  display: none;
}
@media (max-width: 690px) {
  .product-info .mobile-pi-ddown {
    display: block;
    background: #2a2d3c;
    color: #fff;
    padding: 10px 15px!important;
    text-transform: uppercase;
    font-family: 'Avenir LT W01 85 Heavy';
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 20px!important;
  }
  .mobile-pi-ddown:after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 10px;
    border-width: 6px 6px 0px;
    border-style: solid;
    border-color: #fff transparent;
    display: block;
    width: 0px;
  }
}
.product-info {
  padding-top: 50px;
}
.product-info .nav-tabs {
  border: 0;
  text-transform: uppercase;
  font-size: 11px;
  font-family: 'Avenir LT W01 85 Heavy';
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.product-info .nav-tabs li a {
  border: 0;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin: 0;
  outline: none;
}
.product-info .nav-tabs li.active a,
.product-info .nav-tabs li.active a:focus,
.product-info .nav-tabs li.active a:hover {
  border: 0;
  color: #fff;
  background: #2a2d3c;
}
.product-info .tab-content {
  background: #fff;
}
.product-info .tab-content .tab-pane {
  padding: 50px;
}
.product-info .tab-content h3 {
  margin: 0;
  letter-spacing: 4px;
}
.product-info .tab-content p {
  margin: 20px 0 0;
}
@media (max-width: 991px) {
  .product-info .nav-tabs {
    text-align: center;
  }
  .product-info .nav-tabs li {
    float: none;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .product-info .tab-content .tab-pane {
    padding: 30px;
  }
}
@media (max-width: 690px) {
  .product-info .nav-tabs {
    display: none;
  }
  .product-info .nav-tabs li {
    display: block;
    text-align: left;
  }
  .product-info .nav-tabs li.active a {
    background: none;
    color: #2a2d3c;
  }
  .product-info .nav-tabs li.active a:focus,
  .product-info .nav-tabs li.active a:hover {
    background: none;
    color: #2a2d3c;
  }
  .product-info.showmenu .nav-tabs {
    display: block;
  }
  .product-info .tab-content .tab-pane {
    padding: 15px;
  }
}
.product-preview #carousel-example-generic {
  background: #fff;
}
.product-preview #carousel-example-generic .carousel-indicators {
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 30px 15px;
  font-size: 0;
  line-height: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
}
.product-preview #carousel-example-generic .carousel-indicators li {
  width: 25%;
  height: auto;
  border: 0;
  margin: 0;
  padding: 0 15px;
  text-align: center;
  text-indent: 0;
}
.product-preview #carousel-example-generic .carousel-indicators li span {
  display: block;
  padding: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #fff;
}
.product-preview #carousel-example-generic .carousel-indicators li.active {
  background: none;
  border: 0;
}
.product-preview #carousel-example-generic .carousel-inner .item {
  padding: 20px 50px 50px;
}
.product-preview #carousel-example-generic .carousel-inner .item img {
  float: right;
}
.product-preview #carousel-example-generic .carousel-inner .item .carousel-caption {
  position: absolute;
  top: 100px;
  left: 100px;
  right: auto;
  bottom: auto;
  padding: 0;
  text-transform: uppercase;
  text-shadow: none;
  text-align: left;
  letter-spacing: 8px;
  font-size: 36px;
  color: #4b4b4b;
  line-height: 40px;
}
.product-preview #carousel-example-generic .carousel-inner .item .carousel-caption strong {
  display: block;
  font-family: 'Avenir LT W01 85 Heavy';
}
.product-preview #carousel-example-generic .carousel-control {
  background: none;
  width: 90px;
}
.product-preview #carousel-example-generic .carousel-control a {
  margin-top: -15px;
}
@media (max-width: 991px) {
  .product-preview #carousel-example-generic .carousel-indicators {
    padding: 15px 10px;
  }
  .product-preview #carousel-example-generic .carousel-indicators li {
    padding: 0 10px;
  }
  .product-preview #carousel-example-generic .carousel-indicators li span img {
    width: 80px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item {
    padding: 1px 30px 30px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item img {
    float: right;
    width: 350px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item .carousel-caption {
    font-size: 26px;
    line-height: 30px;
    top: 30px;
    left: 30px;
  }
}
@media (max-width: 991px) {
  .product-preview #carousel-example-generic .carousel-indicators {
    padding: 15px 10px;
  }
  .product-preview #carousel-example-generic .carousel-indicators li {
    padding: 0 10px;
  }
  .product-preview #carousel-example-generic .carousel-indicators li span img {
    width: 88px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item {
    padding: 10px 30px 30px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item img {
    float: right;
    width: 350px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item .carousel-caption {
    font-size: 26px;
    line-height: 30px;
    top: 30px;
    left: 30px;
  }
}
@media (max-width: 767px) {
  .product-preview #carousel-example-generic .carousel-indicators {
    padding: 10px 5px;
  }
  .product-preview #carousel-example-generic .carousel-indicators li {
    padding: 0 5px;
  }
  .product-preview #carousel-example-generic .carousel-indicators li span img {
    width: 100%;
  }
  .product-preview #carousel-example-generic .carousel-inner .item img {
    width: 60%;
    margin-bottom: 100px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item .carousel-caption {
    font-size: 20px;
    line-height: 24px;
    top: 30px;
    left: 0;
  }
  .product-preview #carousel-example-generic .carousel-control {
    width: 20px;
  }
}
@media (max-width: 690px) {
  .product-preview #carousel-example-generic .carousel-inner .item {
    padding-top: 100px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item img {
    width: 100%;
    margin-bottom: 100px;
  }
  .product-preview #carousel-example-generic .carousel-inner .item .carousel-caption {
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
#sitefooter {
  padding-bottom: 30px;
}
#sitefooter .sitelinks {
  font-size: 0;
  line-height: 0;
  margin: 0 -10px;
}
#sitefooter .sitelinks .slgrp {
  display: inline-block;
  width: 16.6666667%;
  padding: 50px 10px;
  vertical-align: top;
}
#sitefooter .sitelinks .slgrp h6 {
  margin-top: 0;
}
#sitefooter .sitelinks .slgrp ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sitefooter .sitelinks .slgrp ul li {
  font-size: 12px;
  line-height: 16px;
}
#sitefooter .sitelinks .slgrp ul li a {
  text-decoration: none;
  display: block;
  padding: 3px 0;
}
#sitefooter p {
  text-align: center;
  font-size: 12px;
}
#sitefooter p em {
  margin: 0 8px;
}
#sitefooter p img {
  display: block;
  width: 45px;
  margin: 10px auto 0;
}
@media (max-width: 991px) {
  #sitefooter .sitelinks .slgrp {
    width: 33.3334%;
  }
  #sitefooter .sitelinks .slgrp h6 {
    font-size: 14px;
    line-height: 20px;
  }
  #sitefooter .sitelinks .slgrp ul li {
    font-size: 14px;
    line-height: 18px;
  }
  #sitefooter .sitelinks .slgrp ul li a {
    padding: 6px 0;
  }
}
@media (max-width: 767px) {
  #sitefooter .sitelinks .slgrp {
    width: 50%;
    text-align: center;
  }
}
