/* CSS Document */
/*
a {
  color: gray;
  @include transition(color .3s ease);
  &:hover {
    color: black;
  }
}
*/

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins Bold';
  src: url("../fonts/Poppins-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins Medium';
  src: url("../fonts/Poppins-Medium.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins Black';
  src: url("../fonts/Poppins-Black.ttf");
  font-weight: 900;
  font-style: normal;
}
html {
  height: 100%;
  overflow-y: scroll; }

html, body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  font-size: 62.5%; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

section, header, article, footer, aside, nav, img {
  display: block; }

a {
  text-decoration: none; }

a img {
  border: 0; }

img {
  max-width: 100%;
  /* Width is defined by surrounding element */
  margin: 0 auto; }

.caps {
  text-transform: capitalize; }

/** Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ **/
.cf {
  zoom: 1; }

.cf:before, .cf:after {
  content: "";
  display: table; }

.cf:after {
  clear: both; }

.clear {
  clear: both; }

.clearright {
  clear: right; }

.clearleft {
  clear: left; }

.toupper {
  text-transform: uppercase; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.fulljustify {
  text-align: justify;
  padding: 10px 0; }

.fulljustify:after {
  content: "";
  display: inline-block;
  width: 100%; }

sup, sub {
  vertical-align: 0;
  position: relative; }

sup {
  bottom: 0.5ex; }

sub {
  font-size: 50%;
  top: 0.5ex; }

/** Responsive iframe **/
iframe {
  max-width: 100%; }

.iframe {
  /* Wrapper div */
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 70%; }

.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.mobile {
  display: block; }

.desktop {
  display: none; }

.w-100{
  width: 100%;
}

@media all and (min-width: 680px) {
  .left {
    float: left; }

  .right {
    float: right; }

  /** tables **/
  .table {
    display: table;
    width: 100%;
    position: relative;
    table-layout: fixed; }

  .cell {
    display: table-cell;
    vertical-align: middle; }

  .mobile {
    display: none; }

  .desktop {
    display: block; } }
/** Rollover image effect **/
.rollover {
  display: block;
  position: relative; }

.rollover img {
  display: block; }

.rollover a {
  margin: 0 !important;
  padding: 0 !important; }

.rollover .out {
  position: relative;
  top: 0;
  left: 0; }

.rollover .over {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  /* For IE8 and earlier */ }

.rollover a:hover .over {
  opacity: 1;
  filter: alpha(opacity=100); }

body {
  background: #f4f4f4;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 3.2vw;
  font-weight: 300;
  color: #656565;
  position: relative; }

.sitewidth {
  position: relative;
  width: 100%;
  padding: 0 1%;
  max-width: 1200px;
  min-width: 240px;
  margin: 0 auto; }

.fullwidth {
  clear: both;
  position: relative;
  width: 100%; }

@media screen and (min-width: 680px) {
  body {
    font-size: 16px;
    font-size: 1.4vw;
    padding-top: 170px; } }
@media screen and (min-width: 1200px) {
  body {
    font-size: 17px;
    font-size: 1.7rem; }

  .sitewidth {
    padding: 0 10px; } }
/** Common **/
.nav {
  margin: 0;
  padding: 0;
  list-style: none; }

.nav > li {
  position: relative;
  display: block; }

.nav > li > a {
  position: relative;
  display: block;
  cursor: pointer; }

.nav li ul {
  width: 100%;
  list-style: none; }

.nav li ul li {
  position: relative;
  overflow: hidden; }

.collapse {
  display: none;
  visibility: hidden; }

.collapse.in {
  display: block;
  visibility: visible; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  list-style: none; }

.dropdown-menu.pull-right {
  right: 0;
  left: auto; }

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-menu > li > a {
  display: block;
  clear: both;
  font-weight: normal;
  white-space: nowrap; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }

.navbar-collapse.in {
  overflow-y: auto; }

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px; }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0; }

@media screen and (min-width: 240px) and (max-width: 679px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; } }
@media screen and (min-width: 680px) {
  .nav {
    margin: 0;
    padding: 0; }
    .nav li > ul {
      position: absolute;
      top: auto;
      left: 0;
      width: auto;
      min-width: 100%; }
    .nav li ul.open {
      display: block;
      opacity: 1;
      visibility: visible;
      z-index: 1; }
    .nav li ul.open li {
      overflow: visible; }
    .nav li ul.open ul.open {
      margin-left: 100%;
      top: 0; }

  .collapse {
    display: block;
    visibility: visible; }

  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }

  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0; }

  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }

  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    visibility: visible !important; }

  .navbar-collapse.in {
    overflow-y: visible; }

  .navbar-nav > li {
    float: left; }

  .dropdown:hover .dropdown-menu {
    display: block; } }
/** Custom **/
.bootnav {
  font-size: 100%;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 300;
  clear: both;
  background: #383734;
  border: none; }
  .bootnav li {
    overflow: hidden; }
  .bootnav li a {
    position: relative;
    display: block;
    background: transparent;
    padding: 5px 5px 5px 50px;
    z-index: 2;
    overflow: hidden;
    color: white;
    border-bottom: #656565 1px solid;
    text-decoration: none;
    line-height: 170%;
    text-transform: uppercase;
    font-size: 140%; }
  .bootnav li:hover a,
  .bootnav li.active a {
    color: #3689d1;
    background: transparent; }
  .bootnav li ul li a,
  .bootnav li:hover ul li a {
    display: block;
    padding: 2px 2px 2px 50px;
    z-index: 2;
    color: #656565;
    border-bottom: none;
    font-size: 120%;
    text-decoration: none;
    text-transform: none;
    background: #f4f4f4;
    border-bottom: white 1px solid; }
  .bootnav li ul li:hover a,
  .bootnav li ul li.active a {
    color: #3689d1; }

.menu-button {
  clear: right;
  position: relative;
  display: block;
  width: 50%;
  padding: 8px 20px;
  margin: 0 0 0 50%;
  text-align: right;
  color: #3689d1;
  font-size: 160%;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap; }

.menu-button.collapsed {
  color: #656565; }

.menu-button:hover {
  color: #3689d1; }

.dropdown::after {
  position: absolute;
  content: "+";
  color: #656565;
  font-size: 210%;
  font-weight: 700;
  top: 0;
  right: 40px;
  cursor: pointer;
  z-index: 1; }

.dropdown.open::after {
  content: "\2013"; }

@media screen and (min-width: 1px) and (max-width: 679px) {
  .navbar-nav .open .dropdown-menu {
    background-color: white;
    padding: 0; } }
/* breakpoint */
@media screen and (min-width: 680px) {
  .bootnav {
    position: relative;
    z-index: 999;
    overflow: visible;
    width: 100%;
    border: none;
    text-align: center;
    margin: 0;
    padding: 0;
    background: white; }
    .bootnav li {
      overflow: visible;
      position: relative;
      float: none;
      display: inline-block;
      vertical-align: bottom;
      margin: 0 1.15%;
      padding: 0; }
      .bootnav li a {
        color: #656565;
        padding: 0 0 1vw 0;
        text-align: center;
        border-bottom: white 5px solid;
        font-size: 100%; }
    .bootnav li:hover a,
    .bootnav li.active a {
      color: #3689d1;
      border-bottom: #3689d1 5px solid; }
    .bootnav li > ul {
      border: none;
      padding: 0;
      background: none;
      min-width: 100%;
      padding: 0;
      margin: 0; }
    .bootnav li:last-child > ul {
      left: auto;
      right: 0; }
    .bootnav li > ul li {
      width: 100%;
      text-align: left;
      height: auto;
      border: none;
      padding: 0;
      background: rgba(255, 255, 255, 0.8);
      margin: 0 0 1px 0; }
    .bootnav li ul li a,
    .bootnav li:hover ul li a,
    .bootnav li.active ul li a {
      display: block;
      padding: 3px 12px;
      margin: 0;
      border: none;
      color: #656565;
      background: transparent;
      text-align: left;
      line-height: normal;
      white-space: nowrap;
      z-index: 2;
      font-size: 100%;
      font-weight: 300; }
    .bootnav li:hover ul li:hover a,
    .bootnav li:hover ul li.active a {
      color: #3689d1; }
    .bootnav li > ul li.ntitle {
      background: #3689d1;
      color: white;
      padding: 0 12px; }
    .bootnav li ul li.ntitle a,
    .bootnav li:hover ul li.ntitle a,
    .bootnav li.active ul li.ntitle a {
      padding: 3px 0;
      color: white; }
    .bootnav li:hover ul li.ntitle:hover a,
    .bootnav li:hover ul li.ntitle.active a {
      color: #cbcbcb; }

  .menu-button {
    display: none; }

  .dropdown-menu {
    padding: 0;
    margin: 0; }

  .menu-button::after {
    position: absolute;
    content: ""; }

  .menu-button.collapsed::after {
    content: ""; }

  .dropdown::after {
    content: ""; }

  .dropdown.open::after {
    content: ""; } }
header {
  background: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 500;
  color: #656565;
  font-size: 80%;
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.4); }
  header a {
    color: #656565; }
  header .heathwood.mobile {
    float: left;
    width: 30%;
    max-width: 150px;
    padding: 10px; }
  header .heathwood.desktop {
    display: none; }
  header .topnav {
    float: right;
    margin: 0;
    padding: 0;
    text-align: right; }
    header .topnav li {
      position: relative;
      display: inline-block;
      width: 4vw;
      max-width: 40px;
      margin: 10px 2px;
      z-index: 50; }

.logos {
  position: relative;
  text-align: center;
  background: white; }
  .logos ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center; }
    .logos ul li {
      display: inline-block;
      position: relative; }

footer {
  font-size: 70%; }
  footer .logos li img {
    height: 6vw;
    max-height: 60px;
    margin: 1vw 2vw; }
  footer .col {
    padding: 2%;
    text-align: center;
    line-height: 180%; }
    footer .col a {
      color: #656565; }
      footer .col a:hover {
        color: #3689d1; }

/* Breakpoint */
@media screen and (min-width: 680px) {
  header .heathwood.mobile {
    display: none; }
  header .heathwood.desktop {
    display: inline-block;
    width: 12%;
    max-width: 150px; }

  .home header .heathwood.desktop {
    display: none; }

  footer .logos li img {
    height: 5vw;
    margin: 20px 3vw; }
  footer .left {
    text-align: left; }
  footer .right {
    text-align: right; } }
/* Sitewidth */
@media screen and (min-width: 1200px) {
  footer .logos li img {
    margin: 20px 30px; } }
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1; }

.bx-wrapper img {
  max-width: 100%;
  display: block; }

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  left: -5px;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0); }

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%; }

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(../bxSlider/images/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100; }

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px; }

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline; }

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000; }

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(../bxSlider/images/controls.png) no-repeat 0 -32px; }

.bx-wrapper .bx-next {
  right: 10px;
  background: url(../bxSlider/images/controls.png) no-repeat -43px -32px; }

.bx-wrapper .bx-prev:hover {
  background-position: 0 0; }

.bx-wrapper .bx-next:hover {
  background-position: -43px 0; }

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 999; }

.bx-wrapper .bx-controls-direction a.disabled {
  display: none; }

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center; }

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(../bxSlider/images/controls.png) -86px -11px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0; }

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(../bxSlider/images/controls.png) -86px -44px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px; }

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%; }

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px; }

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%; }

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px; }

/** CUSTOM 
=========================**/
.bxslider {
  margin: 0;
  padding: 0;
  height: 100%; }

.bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0; }
  .bx-wrapper .bx-viewport {
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    left: 0;
    background: #fff;
    height: 100% !important; }
    .bx-wrapper .bx-viewport ul.bxslider {
      margin: 0;
      padding: 0;
      height: 100%; }
      .bx-wrapper .bx-viewport ul.bxslider li {
        margin: 0;
        padding: 0;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover; }
        .bx-wrapper .bx-viewport ul.bxslider li img.bx-bg {
          display: none; }

.bx-pager {
  display: none; }

.home {
  position: relative;
  padding: 0;
  margin: 0;
  min-height: 100%; }
  .home .viewport {
    position: relative; }
    .home .viewport .concept {
      position: absolute;
      bottom: 0.5vw;
      right: 1vw;
      text-align: right;
      color: white;
      font-size: 80%; }
    .home .viewport .bxslider li {
      height: 100%;
      background: center center no-repeat;
      background-size: cover; }
      .home .viewport .bxslider li img {
        display: none; }
    .home .viewport .absolut {
      position: absolute;
      bottom: 1vh;
      left: 0;
      width: 100%; }
      .home .viewport .absolut img {
        width: 15%;
        max-width: 72px; }
  .home .content {
    padding: 0; }
  .home .welcome.logos {
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.5); }
    .home .welcome.logos ul {
      padding: 1% 0; }
    .home .welcome.logos li img {
      height: 12vw;
      max-height: 110px;
      margin: 0 1.2vw; }
  .home .home-teasers {
    position: relative; }
    .home .home-teasers .teaser {
      clear: both;
      padding: 5%;
      border-top: #cbcbcb 5px solid; }
      .home .home-teasers .teaser:first-child {
        border-top: none; }
      .home .home-teasers .teaser article {
        text-align: left;
        line-height: 175%; }
      .home .home-teasers .teaser h2 {
        margin: 10px 0; }
      .home .home-teasers .teaser p {
        margin: 1% 0; }
  .home .news {
    position: relative;
    padding: 2% 0; }
    .home .news h2 {
      border-bottom: #cbcbcb 5px solid;
      margin: 0 0 20px 0; }
    .home .news h3 {
      color: #383734;
      font-size: 120%;
      font-weight: 500;
      margin: 10px 0; }
    .home .news h4 {
      font-size: 120%;
      font-weight: 500;
      margin: 10px 0; }
    .home .news p {
      font-size: 90%;
      font-weight: 300;
      margin: 10px 0; }
    .home .news .more {
      font-size: 100%; }
    .home .news .item {
      margin: 0 0 40px 0;
      line-height: 150%; }
    .home .news .social {
      margin: 0;
      padding: 0;
      list-style: none; }
      .home .news .social li {
        position: relative;
        display: inline-block;
        width: 20%;
        max-width: 64px;
        margin: 0 5px 0 0; }

.home.device .viewport {
  height: 120vw; }

@media screen and (min-width: 10px) and (max-width: 679px) {
  .viewport {
    height: 120vw; } }
/* breakpoint */
@media screen and (min-width: 680px) {
  .home {
    height: 100%; }
    .home header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: auto; }
    .home .viewport {
      height: 100%; }
      .home .viewport .bxslider li {
        height: 100%; }
    .home .home-teasers {
      float: left;
      width: 68%; }
      .home .home-teasers .teaser {
        padding: 4% 0; }
        .home .home-teasers .teaser aside {
          float: left;
          width: 40%;
          max-width: 260px;
          margin: 0 5% 5% 0; }
        .home .home-teasers .teaser article {
          overflow: auto; }
      .home .home-teasers h2 {
        margin: 0; }
      .home .home-teasers p {
        margin: 1% 0; }
    .home .news {
      float: right;
      width: 30%; } }
@media screen and (min-width: 1000px) {
  .home .welcome.logos li img {
    margin: 0 2vw; } }
@media screen and (min-width: 1200px) {
  .home .welcome.logos li img {
    margin: 0 40px; } }
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1; }

.bx-wrapper img {
  max-width: 100%;
  display: block; }

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  left: -5px;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0); }

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%; }

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(../bxSlider/images/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100; }

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px; }

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline; }

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000; }

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(../bxSlider/images/controls.png) no-repeat 0 -32px; }

.bx-wrapper .bx-next {
  right: 10px;
  background: url(../bxSlider/images/controls.png) no-repeat -43px -32px; }

.bx-wrapper .bx-prev:hover {
  background-position: 0 0; }

.bx-wrapper .bx-next:hover {
  background-position: -43px 0; }

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 999; }

.bx-wrapper .bx-controls-direction a.disabled {
  display: none; }

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center; }

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(../bxSlider/images/controls.png) -86px -11px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0; }

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(../bxSlider/images/controls.png) -86px -44px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px; }

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%; }

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px; }

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%; }

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px; }

/** CUSTOM 
=========================**/
.bxslider {
  margin: 0;
  padding: 0;
  height: 100%; }

.bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0; }
  .bx-wrapper .bx-viewport {
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    left: 0;
    background: #fff;
    height: 100% !important; }
    .bx-wrapper .bx-viewport ul.bxslider {
      margin: 0;
      padding: 0;
      height: 100%; }
      .bx-wrapper .bx-viewport ul.bxslider li {
        margin: 0;
        padding: 0;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover; }
        .bx-wrapper .bx-viewport ul.bxslider li img.bx-bg {
          display: none; }

.bx-pager {
  display: none; }

.headbanner {
  position: relative;
  z-index: 10; }
  .headbanner img {
    border-bottom: #cbcbcb 7px solid;
    margin: 0 0 -10vw 0; }

.content {
  position: relative;
  background: white;
  padding: 11vw 0 0 0;
  box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.5);
  z-index: 5;
  line-height: 170%; }
  .content h1 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 180%;
    font-weight: 500;
    color: #3689d1;
    margin: 0;
    line-height: 120%; }
  .content h2 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 180%;
    font-weight: 400;
    color: #383734;
    text-transform: uppercase; }
  .content h3 {
    color: #383734;
    font-weight: 500; }
  .content .more a {
    color: #3689d1;
    font-weight: 400; }
  .content p {
    margin: 2% 0; }
  .content .title {
    padding: 0.5% 0 2% 0; }
    .content .title p {
      margin: 0;
      font-size: 140%;
      line-height: 160%; }
      .content .title p strong {
        color: #3689d1; }
    .content .title.border {
      border-bottom: #cbcbcb 7px solid; }
  .content article {
    overflow: auto; }
  .content .color {
    color: #656565; }
  .content .highlight {
    color: #3689d1; }
  .content .disclaimer {
    font-size: 70%; }
  .content a {
    color: #3689d1; }
  .content img.inline {
    display: inline; }

.story aside.quote {
  background: #656565;
  color: white; }
  .story aside.quote p {
    margin: 3% 8%;
    font-size: 90%;
    line-height: 150%; }

.decor-page aside {
  float: right;
  width: 30%;
  max-width: 380px;
  margin: 0 0 5% 5%; }
.decor-page article {
  line-height: 200%;
  overflow: visible; }

.gallery .content {
  padding: 2vw 0 0 0; }
.gallery .tour .table {
  margin: 2% 0 0 0;
  padding: 2% 0 0 0;
  border-top: #cbcbcb 2px solid;
  font-size: 120%; }
  .gallery .tour .table .cell {
    padding: 0 2% 0 0;
    text-align: center; }
.gallery .tour .table:first-child {
  border-top: none; }

.color h3 {
  color: #3689d1;
  margin: 4% 0 0 0; }

.construction .title {
  padding: 0.5% 0 0 0; }
.construction h2 {
  color: #3689d1;
  font-size: 120%;
  font-weight: 500;
  text-transform: none; }

.tabnav {
  display: block;
  border-bottom: #cbcbcb 7px solid;
  text-align: right;
  margin: 0;
  padding: 0 0 0.5% 0; }
  .tabnav li {
    display: inline-block;
    font-size: 90%; }
    .tabnav li a {
      color: #656565; }
  .tabnav li.ui-state-active a,
  .tabnav li:hover a {
    color: #3689d1; }

.tips h2 {
  color: #3689d1;
  font-size: 140%;
  font-weight: 500;
  text-transform: none;
  margin: 0; }
.tips h3 {
  font-size: 110%; }

.checks {
  list-style: none; }
  .checks li {
    background: url("../images/checkbox.png") left 5px no-repeat;
    padding: 0 0 1% 35px; }

.tmt aside {
  padding: 3% 0; }

.news h2 {
  color: #3689d1;
  font-size: 140%; }
.news h3 {
  font-size: 120%;
  font-weight: 600;
  margin: 0; }
.news .item {
  margin: 0 0 3% 0; }
  .news .item p {
    margin: 0; }
  .news .item .publication {
    font-size: 110;
    font-weight: 600; }
  .news .item .date {
    font-weight: 500; }

.contact .title {
  border-bottom: #cbcbcb 7px solid; }

.upcoming .content .title,
.thanks .content .title {
  margin: 10% 0; }
  .upcoming .content .title h1,
  .thanks .content .title h1 {
    font-size: 360%;
    text-align: right;
    line-height: 90%; }
    .upcoming .content .title h1 .regpad,
    .thanks .content .title h1 .regpad {
      padding: 0 20% 0 0; }
  .upcoming .content .title .quote,
  .thanks .content .title .quote {
    text-align: right;
    font-size: 180%; }
.upcoming .content h3,
.thanks .content h3 {
  font-size: 150%;
  color: #3689d1;
  margin: 0; }

.privacy .update {
  color: #3689d1;
  font-style: italic; }
.privacy h3 {
  margin: 3% 0 0 0; }

.iframe.gallery {
  padding-bottom: 70%; }

.iframe.past {
  padding-bottom: 380px; }

/* Breakpoint */
@media screen and (min-width: 680px) {
  .resources .content .title,
  .decor .content .title {
    border-bottom: #cbcbcb 7px solid;
    padding: 0 0 2% 0; }

  .past .content {
    padding: 5% 0 0 0; }

  .decor-page article {
    overflow: auto; }

  .tmt aside {
    float: right;
    width: 45%;
    padding: 3% 0 5% 5%; }

  .story aside {
    float: left;
    width: 25%;
    margin: 2% 3% 0 0; }
    .story aside p {
      margin: 2%; }
  .story aside.quote {
    width: 20%;
    padding: 1px; } }
/* Sitewidth */
@media screen and (min-width: 1200px) {
  .headbanner img {
    margin: 0 0 -120px 0; }

  .content {
    padding: 150px 0 0 0; }

  .gallery .content {
    padding: 20px 0 0 0; }

  .past .content {
    padding: 50px 0 0 0; }

  .iframe.past {
    padding-bottom: 450px; } }
/* Mortgage Calculator */
.calc {
  width: 100%;
  max-width: 650px;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px; }
  .calc dt {
    clear: left;
    padding: 7px; }
  .calc dd {
    border-left: 2px solid #ffffff;
    padding: 3px; }
  .calc dt, .calc dd {
    width: 50%;
    float: left;
    display: block;
    margin: 0;
    border-bottom: 2px solid #ffffff;
    height: 34px; }
    .calc dt .full, .calc dd .full {
      width: 100%; }
  .calc input {
    width: 50%; }
  .calc select {
    width: 70%; }
  .calc .btnRow {
    margin: 0 0 10px 0;
    height: auto;
    padding: 0; }
    .calc .btnRow a {
      display: block;
      padding: 6px;
      background: #254B75;
      color: white;
      font-weight: 700;
      text-align: center;
      font-size: 120%; }
  .calc .lightGrey {
    background: #e5e5e5; }
  .calc .darkGrey {
    background: #c4c4c3; }
  .calc .lightRed {
    background: #e2c2c3; }
  .calc .darkRed {
    background: #a90056; }
  .calc .lightBlue {
    background: #CDD6DF; }
  .calc .darkBlue {
    background: #254B75; }
  .calc .white {
    background: #ffffff; }
  .calc .year {
    clear: both; }
    .calc .year div {
      padding: 6px; }
    .calc .year ul {
      width: 100%;
      margin: 0;
      padding: 3px;
      background: #656565;
      display: table;
      list-style: none;
      color: white; }
      .calc .year ul li {
        display: table-cell;
        position: relative;
        margin: 0;
        padding: 3px; }
      .calc .year ul input {
        width: 100%;
        padding: 3px; }

.mikey h3 {
  margin: 0;
  color: #3689d1;
  font-size: 140%;
  text-transform: uppercase; }
  .mikey h3 a {
    color: #3689d1; }
.mikey .ptitle {
  background: #e8e9ea;
  margin: 10px -10px;
  padding: 10px;
  position: relative; }
  .mikey .ptitle p {
    margin: 0; }
  .mikey .ptitle:after, .mikey .ptitle:before {
    bottom: -10.5vw;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .mikey .ptitle:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #e8e9ea;
    border-width: 5vw;
    margin-left: -5vw; }
.mikey .item {
  clear: both;
  border-top: #cbcbcb 2px solid;
  padding: 2% 0 0 0;
  margin: 0 0 2% 0; }
  .mikey .item:first-child {
    border-top: none; }
  .mikey .item h3 a {
    color: #3689d1; }
  .mikey .item p {
    margin: 0 0 2% 0; }
    .mikey .item p a {
      color: #383734;
      font-weight: 500; }
  .mikey .item strong {
    font-weight: 500; }
  .mikey .item h4 {
    font-size: 110%;
    font-weight: 500; }
  .mikey .item .half {
    display: block;
    float: left;
    width: 50%;
    margin: 0 0 10px 0; }

.programs h3 {
  font-size: 120%;
  margin: 0; }
.programs .item {
  clear: both;
  border-top: #cbcbcb 2px solid;
  padding: 2% 0 0 0;
  margin: 0 0 2% 0; }
  .programs .item:first-child {
    border-top: none; }
  .programs .item img.hsmall {
    max-height: 110px; }
  .programs .item p {
    margin: 0 0 2% 0; }

/* Breakpoint */
@media screen and (min-width: 680px) {
  .mikey .ptitle:after, .mikey .ptitle:before {
    bottom: -6.5vw; }
  .mikey .ptitle:after {
    border-width: 3vw;
    margin-left: -3vw; }
  .mikey .item aside {
    float: right;
    width: 25%;
    padding: 0 0 0 5%; }
    .mikey .item aside.apps {
      width: 40%; }

  .programs .item aside {
    float: right;
    width: 25%;
    padding: 0 0 0 5%; }
  .programs .item .left {
    padding: 0 5% 0 0; } }
/* Sitewidth */
@media screen and (min-width: 1200px) {
  .mikey .ptitle:after, .mikey .ptitle:before {
    bottom: -75px; }
  .mikey .ptitle:after {
    border-width: 35px;
    margin-left: -35px; } }
.projectbanner {
  position: relative;
  z-index: 10; }
  .projectbanner .hat {
    border-bottom: #cbcbcb 7px solid;
    margin: 0 0 -12vw 0; }

.teasers {
  margin: 0  -2vw;
  padding: 1vw 0;
  position: relative; }
  .teasers .teaser {
    position: relative;
    width: 49%;
    display: inline-block;
    padding: 1vw 2vw;
    text-align: left;
    vertical-align: top; }
    .teasers .teaser h2 {
      font-size: 125%;
      margin: 5% 0 0 0; }
    .teasers .teaser p {
      margin: 0; }
  .teasers .info h2 {
    border-bottom: #cbcbcb 7px solid;
    margin: 5% 0; }
  .teasers .info .vr {
    position: relative;
    clear: both; }
    .teasers .info .vr img {
      float: left;
      width: 40%;
      max-width: 100px;
      margin: 0 5% 5% 0; }

.project-title {
  background: white;
  position: relative;
  padding: 2% 0 0 0; }
  .project-title .links {
    margin: 0;
    padding: 0;
    text-align: center;
    padding: 2%; }
    .project-title .links a {
      display: inline-block;
      background: #3689d1;
      color: white;
      text-transform: uppercase;
      padding: 4px; }
    .project-title .links.two a {
      width: 48%;
      margin: 0 1%; }

.quote-project {
  font-size: 110%; }
  .quote-project strong {
    color: #3689d1;
    font-weight: 400; }

/* Breakpoint */
@media screen and (min-width: 680px) {
  .teasers {
    margin: 0 -2%;
    padding: 1% 0; }
    .teasers .teaser {
      width: 33%;
      padding: 1% 2%; }

  .project-title {
    float: left;
    width: 29%;
    max-width: 340px;
    padding: 10% 0 0 0; }
    .project-title .only3 {
      padding: 0 0 3% 0; }
    .project-title .links {
      margin: 25% 0 0 0; }

  .meadowgreen .project-title {
    padding: 6% 0 0 0; }

  .project-img {
    float: right;
    width: 71%;
    max-width: 860px; } }
/* Sitewidth */
@media screen and (min-width: 1200px) {
  .projectbanner .hat {
    margin: 0 0 -120px 0; } }
.calculator .calc {
  width: 100%;
  position: relative; }

/* Breakpoint */
@media screen and (min-width: 680px) {
  .calculator .title {
    float: left;
    width: 35%; }
  .calculator .calc {
    width: 60%;
    float: right; } }
.register article {
  position: relative;
  text-align: left;
  line-height: 160%; }
  .register article p {
    margin: 2vw 0; }

.form #middle_name, .form #fax_number {
  display: none; }
.form form {
  width: 98%;
  max-width: 620px;
  margin: 1% auto;
  position: relative; }
.form table {
  width: 100%;
  font-size: 90%; }
.form th, .form td {
  width: 50%;
  font-weight: 400;
  text-align: right;
  vertical-align: top;
  padding: 4px;
  color: #383734; }
  .form th.align-left, .form td.align-left {
    text-align: left; }
  .form th.subscribe, .form td.subscribe {
    font-size: 80%;
    line-height: 140%; }
.form th strong, .form td strong {
  color: #3689d1;
  font-weight: 700; }
.form input[type=text],
.form textarea,
.form select {
  width: 100%;
  padding: 4px;
  border: #cbcbcb 1px solid;
  border-radius: 5px; }
.form input[type=submit] {
  color: white;
  background: #3689d1;
  padding: 5px 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-transform: uppercase; }
  .form input[type=submit]:hover {
    background: #383734; }

.disclaimer {
  font-size: 80%;
  text-align: justify;
  line-height: 160%; }
  .disclaimer a {
    color: #3689d1; }

@media all and (min-width: 680px) {
  .register .left {
    float: left;
    width: 45%;
    margin: 0 5% 0 0; }
    .register .left p {
      margin: 20px 0; }
  .register .form {
    float: right;
    width: 50%; } }

  
  .position-relative {
    position:relative !important;
  }  
  
  .d-inline-block{
    display:inline-block;
  }
  

  @media all and (min-width:992px) {
    .soo-tag-large {
      display:inline-block; 
      vertical-align:top; 
      position:absolute;
      top:17px;
    }

    .soo-tag-large img {
      max-width:189px;
    }

    .soo-tag-mob {
      display:none;
    }
  }  

  @media all and (max-width:991px) {
    .soo-tag-large{
      display:none;
    }
    .soo-tag-mob {
      background-color: #4299d7;
      max-width: 100%;
      color: #fff;
      width: 286px;
      padding: 7px 0px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 2.5rem;
    }

    .soo-tag-mob .font-large{
      font-size: 22px;
    }
  }  

  

/*# sourceMappingURL=style.css.map */

.future{color:#3687CF!important;font-size:21px;font-family: 'Poppins Black';}
.coming{font-size: 19px;position: relative;}
.coming:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 7px auto;
  width: 50%;
  height: 1px;
  background: #656565;
}