/* 
	Master Stylesheet
	=================================
	DUSZA
------------------------------------------------------------------------------------------------------------ */
/*-------------------------------------------------------------------------LAYOUT
*/
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@400;700&display=swap');

html {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  display: block;
  font-family: "aktiv-grotesk-std",sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #484d53;
  height: 100%;
  font-size: 16px;
  background: #FFF !important;
}

@media screen and (max-width: 1175px) {
  body {
    font-size: 14px;
  }
}

p, a, h1, h2, h3, h4, h5, input, select, textarea, button, span, strong, li {
  font-family: "aktiv-grotesk-std",sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #484d53;
}

a {
  text-decoration: none;
  font-weight: 300;
}

::-webkit-input-placeholder {
  color: #484d53;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #484d53;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #484d53;
}

:-ms-input-placeholder {
  color: #484d53;
}

#wrapper {
  min-height: 100% !important;
  overflow: hidden;
  position: relative;
  padding-bottom: 420px;
  display: inline-block;
  width: 100%;
}

#wrapper #container {
  min-height: 100%;
  display: block;
  height: auto;
  overflow: auto;
}

@media screen and (max-width: 828px) {
  #wrapper {
    padding-bottom: 0px;
  }
}

/*-------------------------------------------------------------------------------------------------------HEADER
*/
div#header {
  height: auto;
  overflow: hidden;
  position: static;
  width: 100%;
  max-width: 1600px;
  padding: 0 6.25%;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 1345px) {
  div#header {
    padding: 0 5%;
  }
}

@media screen and (max-width: 828px) {
  div#header {
    padding: 0;
  }
}

div#header h1 a, div#header div.logo a {
  width: 370px;
  float: left;
  height: 100px;
  background: url(../images/logo.png) no-repeat;
  text-indent: -9999px;
  display: block;
  -moz-background-size: 370px;
       background-size: 370px;
  background-position: left center;
  margin: 20px auto;
}

@media screen and (max-width: 828px) {
  div#header h1 a, div#header div.logo a {
    overflow: hidden;
    clear: both;
  }
}

@media screen and (max-width: 828px) {
  div#header h1, div#header div.logo {
    padding-top: 80px;
    margin: auto;
    display: block;
    width: 60%;
  }
  div#header h1 a, div#header div.logo a {
    width: 100%;
    float: left;
    height: 200px;
    background: url(../images/mobile-logo.png) no-repeat;
    text-indent: -9999px;
    display: block;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    margin: 20px auto;
    margin: auto;
  }
}

div#header h2 {
  float: left;
  font-family: "Sarabun", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  position: absolute;
  width: 100%;
  max-width: 1600px;
  text-align: left;
  bottom: 20px;
  pointer-events: none;
  display: block;
  margin-left: 102px;
}

@media screen and (max-width: 828px) {
  div#header h2 {
    display: none;
  }
}

div#header div#access {
  float: left;
  text-indent: -9999px;
  width: 0;
  height: 0;
  display: none;
}

div#header div#header div#access a {
  float: left;
  text-indent: -9999px;
}

div#header .header_contact {
  float: right;
  right: auto;
  display: inline-block;
  font-size: 1.1rem;
  padding-top: 10px;
}

@media screen and (max-width: 828px) {
  div#header .header_contact {
    width: 100%;
    text-align: center;
  }
}

div#header .header_contact a.phone,
div#header .header_contact a.email {
  display: inline-block;
  float: right;
  clear: both;
  padding-left: 36px;
  line-height: 36px;
  text-align: right;
  -moz-background-size: 24px;
       background-size: 24px;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  transition: color 300ms ease;
}

@media screen and (max-width: 828px) {
  div#header .header_contact a.phone,
div#header .header_contact a.email {
    text-align: left;
    float: none;
    margin: 0 20%;
  }
}

div#header .header_contact a.phone:hover,
div#header .header_contact a.email:hover {
  color: #00b49c;
}

div#header .header_contact a.phone {
  background-image: url(../images/icons/phone@2x.png);
}

div#header .header_contact a.email {
  background-image: url(../images/icons/email@2x.png);
}

div#header div.social-links {
  float: right;
  right: auto;
  display: inline-block;
  margin-top: 8px;
  clear: both;
}

@media screen and (max-width: 828px) {
  div#header div.social-links {
    display: none;
  }
}

div#header div.social-links a {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 5px;
  text-indent: -9999px;
}

div#header div.social-links a.fb-link {
  background: url(../images/facebook.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

div#header div.social-links a.fb-link:hover {
  background: url(../images/facebook-hover.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

div#header div.social-links a.twitter-link {
  background: url(../images/twitter.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

div#header div.social-links a.twitter-link:hover {
  background: url(../images/twitter-hover.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

div#header div.social-links a.linkedin-link {
  background: url(../images/linked-in.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

div#header div.social-links a.linkedin-link:hover {
  background: url(../images/linked-in-hover.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

@media screen and (max-width: 828px) {
  div#header div.mobile-subcon-nav {
    width: 100%;
    height: auto;
    background: #d0d0d0;
    display: inline-block;
    clear: both;
    margin-top: 20px;
    z-index: 9999;
    margin-bottom: 30px;
  }
  div#header div.mobile-subcon-nav a {
    width: 50%;
    height: auto;
    font-size: 0.8rem;
    display: inline-block;
    float: left;
    text-align: center;
    line-height: 50px;
    border-right: 2px solid #FFF;
    position: relative;
    background: #eaeaea;
    z-index: 2;
  }
  div#header div.mobile-subcon-nav a:first-of-type {
    width: 100%;
    border-bottom: 2px solid #FFF;
  }
  div#header div.mobile-subcon-nav a:not(.active) {
    background: #d0d0d0;
    z-index: 0;
  }
  div#header div.mobile-subcon-nav a.active:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
    border-top: 20px solid #eaeaea;
  }
}

@media screen and (min-width: 828px) {
  div#header div.mobile-subcon-nav {
    display: none;
  }
}

div.nav {
  width: 100%;
  background: #00b49c;
}

@media screen and (min-width: 828px) {
  div.nav div.mobile-social-links {
    display: none;
  }
}

@media screen and (max-width: 828px) {
  div.nav {
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 828px) {
  div.nav #mobile-nav {
    display: block;
    width: 40px;
    height: 30px;
    float: right;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    margin-right: 5%;
  }
  div.nav #mobile-nav.open .burger {
    background: none;
  }
  div.nav #mobile-nav.open .burger:before, div.nav #mobile-nav.open .burger:after {
    top: 0;
  }
  div.nav #mobile-nav.open .burger:before {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  }
  div.nav #mobile-nav.open .burger:after {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
       transform: rotate(45deg);
  }
  div.nav #mobile-nav.open .burger:before, div.nav #mobile-nav.open .burger:after {
    background: #FFF;
  }
  div.nav #mobile-nav:hover:not(.open) .burger:before {
    top: -15px;
  }
  div.nav #mobile-nav:hover:not(.open) .burger:after {
    top: 15px;
  }
  div.nav #mobile-nav:hover:not(.open) .burger, div.nav #mobile-nav:hover:not(.open) .burger:before, div.nav #mobile-nav:hover:not(.open) .burger:after {
    background: #FFF;
  }
  div.nav .burger, div.nav .burger:before, div.nav .burger:after {
    width: 40px;
    height: 6px;
    background: #0c8474;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  div.nav .burger {
    position: relative;
    margin: 12px auto 0;
  }
  div.nav .burger:before, div.nav .burger:after {
    content: "";
    position: absolute;
  }
  div.nav .burger:before {
    top: -12px;
  }
  div.nav .burger:after {
    top: 12px;
  }
  div.nav div.mobile-social-links {
    position: absolute;
    left: 5%;
    top: 0;
    height: 60px;
  }
  div.nav div.mobile-social-links a {
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    display: inline-block;
    margin-right: 5px;
    line-height: 60px;
    height: 60px;
  }
  div.nav div.mobile-social-links a.fb-link {
    background: url(../images/mobile/facebook.png) no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    -moz-transition: background 300ms;
    -o-transition: background 300ms;
    -webkit-transition: background 300ms;
    transition: background 300ms;
  }
  div.nav div.mobile-social-links a.fb-link:hover {
    background: url(../images/mobile/facebook-hover.png) no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    -moz-transition: background 300ms;
    -o-transition: background 300ms;
    -webkit-transition: background 300ms;
    transition: background 300ms;
  }
  div.nav div.mobile-social-links a.twitter-link {
    background: url(../images/mobile/twitter.png) no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    -moz-transition: background 300ms;
    -o-transition: background 300ms;
    -webkit-transition: background 300ms;
    transition: background 300ms;
  }
  div.nav div.mobile-social-links a.twitter-link:hover {
    background: url(../images/mobile/twitter-hover.png) no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    -moz-transition: background 300ms;
    -o-transition: background 300ms;
    -webkit-transition: background 300ms;
    transition: background 300ms;
  }
  div.nav div.mobile-social-links a.linkedin-link {
    background: url(../images/mobile/in.png) no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    -moz-transition: background 300ms;
    -o-transition: background 300ms;
    -webkit-transition: background 300ms;
    transition: background 300ms;
  }
  div.nav div.mobile-social-links a.linkedin-link:hover {
    background: url(../images/mobile/in-hover.png) no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    -moz-transition: background 300ms;
    -o-transition: background 300ms;
    -webkit-transition: background 300ms;
    transition: background 300ms;
  }
}

@media screen and (min-width: 828px) {
  div.nav #mobile-nav {
    display: none;
  }
}

div.nav ul#nav {
  width: 100%;
  max-width: 1600px;
  padding: 0 6.25%;
  height: 50px;
  display: block;
  margin: auto;
  z-index: 9999;
}

@media screen and (max-width: 1345px) {
  div.nav ul#nav {
    padding: 0 5%;
  }
}

@media screen and (max-width: 925px) {
  div.nav ul#nav {
    padding: 0;
  }
}

div.nav ul#nav li {
  display: inline-block;
  float: left;
  position: relative;
  line-height: 50px;
  width: 10.5%;
  border-left: 2px solid #FFF;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

div.nav ul#nav li a {
  font-weight: 300;
  color: #FFF;
  font-size: 1em;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  width: 100%;
  text-align: center;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

div.nav ul#nav li ul {
  display: none;
}

@media screen and (max-width: 828px) {
  div.nav ul#nav li {
    border-left: none !important;
    border-right: none !important;
  }
}

div.nav ul#nav li ul {
  position: absolute;
  top: 52px;
  left: 0;
  display: none;
  background: #FFF;
  width: 180%;
  padding: 25px 30px;
  border: 1px solid #d0d0d0;
  z-index: 9999;
}

div.nav ul#nav li ul li {
  background: none !important;
  float: left !important;
  line-height: 1em;
  border: none !important;
  display: block;
  width: 100%;
}

div.nav ul#nav li ul li a {
  padding: 0;
  color: #484d53;
  width: 100%;
  background: #FFF url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 10px;
       background-size: 10px;
  background-position: left top 0.7em;
  margin: 0;
  text-align: left;
  border: none;
  line-height: 1.4em;
  height: auto;
  padding: 5px 0 5px 25px;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
  display: block;
}

div.nav ul#nav li ul li a:after {
  display: none;
}

div.nav ul#nav li ul li a:before {
  display: none;
}

div.nav ul#nav li ul li a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

div.nav ul#nav li ul li:after {
  display: none;
}

div.nav ul#nav li ul li:before {
  display: none;
}

div.nav ul#nav li.active {
  background: #FFF;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

div.nav ul#nav li.active > a {
  color: #484d53;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border-right: 1px solid #d0d0d0;
  border-top: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  line-height: 49px;
}

div.nav ul#nav li.active:before {
  content: " ";
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 50px;
  z-index: 9999;
  background: #FFF;
}

div.nav ul#nav li.active:after {
  content: " ";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: #FFF;
  border-right: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
}

div.nav ul#nav > li:hover:not(.active) {
  background: #FFF;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

div.nav ul#nav > li:hover:not(.active) a {
  color: #484d53;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

div.nav ul#nav > li:nth-of-type(6) {
  border-right: 2px solid #FFF;
}

div.nav ul#nav > li:nth-of-type(7):not(:last-of-type):hover,
div.nav ul#nav > li:nth-of-type(7):not(:last-of-type),
div.nav ul#nav > li:nth-of-type(8):not(:last-of-type):hover,
div.nav ul#nav > li:nth-of-type(8):not(:last-of-type) {
  float: right;
  background: #d0d0d0;
  width: 200px;
  text-align: center;
  height: 50px;
}

div.nav ul#nav > li:nth-of-type(7):not(:last-of-type):hover a,
div.nav ul#nav > li:nth-of-type(7):not(:last-of-type) a,
div.nav ul#nav > li:nth-of-type(8):not(:last-of-type):hover a,
div.nav ul#nav > li:nth-of-type(8):not(:last-of-type) a {
  color: #484d53;
  border: none;
  line-height: 50px;
  width: 100%;
  height: 50px;
}

@media screen and (max-width: 1175px) {
  div.nav ul#nav > li:nth-of-type(7):not(:last-of-type):hover,
div.nav ul#nav > li:nth-of-type(7):not(:last-of-type),
div.nav ul#nav > li:nth-of-type(8):not(:last-of-type):hover,
div.nav ul#nav > li:nth-of-type(8):not(:last-of-type) {
    width: 150px;
  }
}

div.nav ul#nav > li:last-of-type {
  display: none;
}

@media screen and (max-width: 828px) {
  div.nav ul#nav {
    position: absolute;
    top: 60px;
    left: 50%;
    height: auto;
    width: 90%;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
    background: #FFF;
    color: #484d53;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
       -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
  }
  div.nav ul#nav li {
    display: block;
    width: 90%;
    height: auto !important;
    line-height: 60px;
    margin-left: 5%;
    border-bottom: 1px solid #eaeaea;
  }
  div.nav ul#nav li a {
    color: #484d53;
    text-align: center;
    width: 100%;
    border: none !important;
    font-size: 1.2em;
    height: 60px;
    line-height: 60px !important;
    font-weight: 300;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    -webkit-transition: all 300ms;
    transition: all 300ms;
  }
  div.nav ul#nav li.subnav ul {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    overflow: hidden;
    clear: both;
    border: none;
    padding: 0;
    padding-bottom: 20px;
    padding-top: 10px;
    display: none;
  }
  div.nav ul#nav li.subnav ul li.subsubnav {
    display: block;
    width: 100%;
    color: #FFF;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none !important;
    line-height: 1em;
    padding-top: 10px;
  }
  div.nav ul#nav li.subnav ul li.subsubnav a {
    margin-top: 0;
    padding: 0 !important;
    width: 100%;
    text-align: center;
    background: none !important;
    height: 40px !important;
    line-height: 40px !important;
    position: static;
    border: none !important;
    text-indent: 0 !important;
    font-weight: bold;
    color: #00b49c !important;
    padding-top: 10px;
    display: inline-block !important;
    font-size: 1em;
  }
  div.nav ul#nav li.subnav ul li.subsubnav a:hover {
    text-decoration: underline;
  }
  div.nav ul#nav li.subnav ul li.subsubnav ul {
    position: static;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    display: inline-block;
    position: static;
  }
  div.nav ul#nav li.subnav ul li.subsubnav ul li {
    margin-left: 0;
    height: auto !important;
    line-height: 1em !important;
    padding-top: 0;
  }
  div.nav ul#nav li.subnav ul li.subsubnav ul li a {
    background: none;
    color: #484d53;
    font-weight: 300;
    color: #484d53 !important;
    height: auto !important;
    line-height: 1.4em !important;
    padding: 5px 0 !important;
    font-size: 0.9em;
  }
  div.nav ul#nav li.subnav ul li.subsubnav:last-of-type ul {
    border: none;
    padding-bottom: 0;
  }
  div.nav ul#nav li.subnav ul li:not(.subsubnav) {
    height: auto !important;
    line-height: 1em !important;
    margin: 0;
    padding-top: 0;
  }
  div.nav ul#nav li.subnav ul li:not(.subsubnav) a {
    background: none;
    color: #484d53;
    font-weight: 300;
    color: #484d53 !important;
    height: auto !important;
    line-height: 1.4em !important;
    padding: 0;
    text-align: center;
    background: none !important;
    font-size: 0.9em;
    display: inline-block;
    padding: 5px 0 !important;
  }
  div.nav ul#nav li.subnav ul li:not(.subsubnav) a:hover {
    text-decoration: underline;
  }
  div.nav ul#nav li.subnav ul li:first-of-type {
    padding-top: 0;
  }
  div.nav ul#nav li:hover a {
    color: #FFF !important;
    background: #00b49c !important;
    border-bottom: none !important;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    -webkit-transition: all 300ms;
    transition: all 300ms;
  }
  div.nav ul#nav li:hover:after, div.nav ul#nav li:hover:before {
    display: none;
  }
  div.nav ul#nav > li:nth-of-type(7):hover,
div.nav ul#nav > li:nth-of-type(7),
div.nav ul#nav > li:nth-of-type(8):hover,
div.nav ul#nav > li:nth-of-type(8) {
    display: none;
  }
  div.nav ul#nav > li:first-of-type,
div.nav ul#nav > li:last-of-type {
    display: block;
  }
  div.nav ul#nav > li:last-of-type div#mobile-nav-close {
    width: 30px;
    height: 30px;
    background: #00b49c;
    display: inline-block;
    clear: both;
    margin: 20px auto 0 auto;
    position: relative;
    left: 50%;
    cursor: pointer;
    text-indent: -9999px;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
  }
  div.nav ul#nav > li:last-of-type div#mobile-nav-close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FFF;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 828px) {
  div.nav ul#nav {
    display: block !important;
  }
}

div.nav div.sub-con_nav_links {
  width: 100%;
  max-width: 1600px;
  padding: 0 6.25%;
  height: 50px;
  display: block;
  margin: auto;
  z-index: 9999;
}

@media screen and (max-width: 1345px) {
  div.nav div.sub-con_nav_links {
    padding: 0 5%;
  }
}

@media screen and (max-width: 925px) {
  div.nav div.sub-con_nav_links {
    padding: 0;
  }
}

div.nav div.sub-con_nav_links a {
  display: inline-block;
  float: left;
  position: relative;
  line-height: 50px;
  border-left: 2px solid #FFF;
  font-weight: 300;
  color: #FFF;
  font-size: 1em;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  width: 150px;
  text-align: center;
  white-space: nowrap;
}

div.nav div.sub-con_nav_links a:hover {
  color: #00b49c !important;
  background: #FFF !important;
  border-bottom: none !important;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

div.nav div.sub-con_nav_links a:last-of-type {
  float: right;
  background: #f0f0f0;
  width: 200px;
  color: #484d53;
}

div.nav div.sub-con_nav_links a:last-of-type:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
     transform: translate(-50%, 0);
  border-top: 20px solid #f0f0f0;
}

div.nav div.sub-con_nav_links a:last-of-type:hover {
  background: #f0f0f0 !important;
  color: #484d53 !important;
}

@media screen and (max-width: 1005px) {
  div.nav div.sub-con_nav_links a:last-of-type {
    width: 150px;
  }
}

div.nav div.sub-con_nav_links a:nth-of-type(7) {
  border-right: 2px solid #FFF;
}

div.nav div.sub-con_nav_links div#mobile-nav-close {
  width: 30px;
  height: 30px;
  background: #00b49c;
  display: block;
  clear: both;
  margin: 20px auto 20px auto;
  cursor: pointer;
  text-indent: -9999px;
  position: relative;
  display: none;
  padding-bottom: 20px;
}

div.nav div.sub-con_nav_links div#mobile-nav-close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFF;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}

@media screen and (max-width: 1345px) {
  div.nav div.sub-con_nav_links a {
    width: 125px;
  }
}

@media screen and (max-width: 1075px) {
  div.nav div.sub-con_nav_links a {
    width: 110px;
  }
}

@media screen and (max-width: 828px) {
  div.nav div.sub-con_nav_links {
    background: #FFF;
    display: none;
    height: auto;
    overflow: hidden;
    width: 90%;
    position: absolute;
    top: 60px;
    left: 5%;
  }
  div.nav div.sub-con_nav_links a {
    width: 90%;
    display: inline-block;
    clear: both;
    margin-left: 5%;
    line-height: 60px;
    height: 60px;
    color: #484d53;
    font-size: 1.2em;
    border-bottom: 1px solid #eaeaea;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    -webkit-transition: all 300ms;
    transition: all 300ms;
  }
  div.nav div.sub-con_nav_links a:hover {
    background: #00b49c !important;
    color: #FFF !important;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    -webkit-transition: all 300ms;
    transition: all 300ms;
  }
  div.nav div.sub-con_nav_links a:last-of-type {
    display: none;
  }
  div.nav div.sub-con_nav_links a:nth-last-of-type(2) {
    margin-bottom: 20px;
  }
  div.nav div.sub-con_nav_links div#mobile-nav-close {
    display: block;
  }
}

ul#nav li.clients a[title="Portfolio/Previous Work"] {
  display: none !important;
}

body#services ul#nav li.services {
  background: #FFF;
}

body#services ul#nav li.services a {
  color: #484d53;
}

body#services ul#nav li.services ul li {
  background: #FFF;
}

body#services ul#nav li.services ul li a {
  color: #484d53;
}

body#about ul#nav li.about, body#careers ul#nav li.about {
  background: #FFF;
}

body#about ul#nav li.about a, body#careers ul#nav li.about a {
  color: #484d53;
}

body#about ul#nav li.about ul li, body#careers ul#nav li.about ul li {
  background: #FFF;
}

body#about ul#nav li.about ul li a, body#careers ul#nav li.about ul li a {
  color: #484d53;
  border: none;
}

body#clients ul#nav li.clients, body#testimonials ul#nav li.clients, body#portfolio ul#nav li.clients {
  background: #FFF;
}

body#clients ul#nav li.clients a, body#testimonials ul#nav li.clients a, body#portfolio ul#nav li.clients a {
  color: #484d53;
}

body#clients ul#nav li.clients ul li, body#testimonials ul#nav li.clients ul li, body#portfolio ul#nav li.clients ul li {
  background: #FFF;
}

body#clients ul#nav li.clients ul li a, body#testimonials ul#nav li.clients ul li a, body#portfolio ul#nav li.clients ul li a {
  color: #484d53;
  border: none;
}

body#news.general ul#nav > li:nth-of-type(5) {
  background: #FFF;
}

body#news.general ul#nav > li:nth-of-type(5) a {
  color: #484d53;
}

body#contact ul#nav > li:nth-of-type(6), body#key-contacts ul#nav > li:nth-of-type(6) {
  background: #FFF;
}

body#contact ul#nav > li:nth-of-type(6) a, body#key-contacts ul#nav > li:nth-of-type(6) a {
  color: #484d53;
}

body#sub-contractor li a.nav_sub-contractor,
body#apprentice li a.nav_apprentice {
  background: #f0f0f0;
  position: relative;
}

body#sub-contractor li a.nav_sub-contractor:after,
body#apprentice li a.nav_apprentice:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
   -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
  border-top: 20px solid #f0f0f0;
}

/*-------------------------------------------------------------------------PAGE
*/
body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page {
  width: 100%;
  max-width: 1600px;
  display: block;
  padding: 30px 6.25% 50px 6.25%;
  margin: auto;
  height: auto;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 1345px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page {
    padding: 50px 5%;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page {
    padding: 15px 5% 0 5%;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content {
  width: 55%;
  display: inline-block;
  float: left;
  margin-right: 5%;
}

@media screen and (max-width: 1150px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content {
    width: 60%;
  }
}

@media screen and (max-width: 970px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content {
    width: 54%;
  }
}

@media screen and (max-width: 925px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content {
    width: 60%;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content {
    width: 100%;
    display: block;
    clear: both;
    float: none;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h1,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h1,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h1 {
  font-size: 2.4em;
  font-weight: 400;
  padding: 15px 0 20px;
  line-height: 1.3;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h1,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h1,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h1 {
    font-size: 1.6em;
    padding: 15px 0 10px;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h2,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h2,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h2 {
  font-size: 1.8em;
  padding: 10px 0 10px;
  line-height: 1.4;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h2,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h2,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h2 {
    font-size: 1.4em;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h3,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h3,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h3 {
  font-size: 1.6em;
  padding: 5px 0 10px;
  line-height: 1.5;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h3,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h3,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h3 {
    font-size: 1.2em;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h4,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h4,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h4 {
  font-size: 1.25em;
  padding: 10px 0  5px;
  line-height: 1.3;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content h4,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content h4,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content h4 {
    font-size: 1.1em;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content p,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content p,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content p {
  line-height: 1.4;
  font-size: 1em;
  max-width: 800px;
  margin-bottom: 15px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content strong,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content strong,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content strong {
  font-size: inherit;
  font-style: inherit;
  font-weight: 500;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content em,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content em,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content em {
  font-size: inherit;
  font-style: italic;
  font-weight: inherit;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a {
  font-weight: inherit;
  font-style: inherit;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content p.date,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content p.date,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content p.date {
  margin-top: 5px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a {
  color: #00b49c;
  text-decoration: underline;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content ul,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content ul,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content ul {
  margin: 20px 0;
  list-style: none;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content ul li,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content ul li,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content ul li {
  padding-left: 15px;
  line-height: 1.4;
  background: url(../images/dot.png) no-repeat;
  -moz-background-size: 5px;
       background-size: 5px;
  padding-bottom: 10px;
  background-position: left top 9px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content table,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content table,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content table {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content table thead,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content table thead,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content table thead {
  color: #FFF;
  background: #00b49c;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content table thead tr th,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content table thead tr th,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content table thead tr th {
  font-weight: 500;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content table tr td, body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content table tr th,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content table tr td,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content table tr th,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content table tr td,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content table tr th {
  padding: 20px 30px;
  border: 1px solid #d0d0d0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content > img,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content > img,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content > img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: inherit;
  margin-bottom: 20px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content p.emph:last-of-type,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content p.emph:last-of-type,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content p.emph:last-of-type {
  margin-bottom: 30px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a.page_download,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download {
  width: auto;
  height: auto;
  text-decoration: none;
  border-bottom: 1px solid #00b49c;
  display: inline-block;
  clear: both;
  float: left;
  margin: 50px 0 0px 0;
  margin-left: 60px;
  position: relative;
  font-size: 0.9em;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a.page_download br,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download br,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download br {
  display: none;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a.page_download strong,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download strong,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download strong {
  color: #00b49c;
  float: left;
  padding-right: 5px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a.page_download.word:before,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.word:before,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.word:before {
  background: url(../images/doc.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  height: 50px;
  width: 50px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a.page_download.excel:before,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.excel:before,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.excel:before {
  background: url(../images/excel.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  height: 50px;
  width: 50px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a.page_download.powerpoint:before,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.powerpoint:before,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.powerpoint:before {
  background: url(../images/ppt.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  height: 50px;
  width: 50px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content a.page_download.pdf:before,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.pdf:before,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content a.page_download.pdf:before {
  background: url(../images/pdf.png) no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  height: 50px;
  width: 50px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.breadcrumb,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.breadcrumb,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.breadcrumb {
  padding-left: 0px;
  text-transform: capitalize;
  color: #00b49c;
  font-size: 1em;
  padding-bottom: 20px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.breadcrumb a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.breadcrumb a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.breadcrumb a {
  text-decoration: none;
  margin: 0 5px;
  line-height: 1.4em;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.breadcrumb a:first-of-type,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.breadcrumb a:first-of-type,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.breadcrumb a:first-of-type {
  margin-left: 0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item {
  padding: 30px 0;
  border-top: 1px solid #d0d0d0;
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item {
    padding: 20px 0;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.feature_image,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image {
  width: 25%;
  max-width: 220px;
  display: inline-block;
  float: left;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.feature_image img,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image img,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image img {
  display: inline;
  width: 100%;
  height: auto;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item h2,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2 {
  padding-top: 0;
  display: inline;
  width: 100%;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item h2 a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2 a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2 a {
  color: #484d53;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  padding-right: 50px;
  background: url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: top 0.3em right;
  line-height: 1.2em;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item h2 a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2 a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2 a {
    color: #00b49c;
    -moz-background-size: 15px;
         background-size: 15px;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item h2 a:hover,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2 a:hover,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item h2 a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item p,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item p,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item p {
  font-size: 1em;
  margin-top: 10px;
  width: 95%;
  max-width: 800px;
  padding: 0;
  margin-bottom: 10px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.learn_more,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.learn_more,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.learn_more {
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.learn_more,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.learn_more,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.learn_more {
    display: none !important;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.learn_more:hover,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.learn_more:hover,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.learn_more:hover {
  text-decoration: underline;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.view,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.view,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.view {
  display: none;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2,
body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2 + p,
body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2 + p + a.learn_more,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2 + p,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2 + p + a.learn_more,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2 + p,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.item a.feature_image + h2 + p + a.learn_more {
  width: 72.5%;
  margin-left: 2.5%;
  display: inline-block;
  float: left;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content ul.latest,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content ul.latest,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content ul.latest {
  margin: -20px 0 30px 0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content ul.latest li a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content ul.latest li a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content ul.latest li a {
  text-decoration: none;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content ul.latest li a:hover,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content ul.latest li a:hover,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content ul.latest li a:hover {
  text-decoration: underline;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination {
  width: 100%;
  padding: 30px 0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination a, body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination span,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span {
  text-decoration: none;
  font-size: 1.6em;
  color: #d0d0d0;
  margin-right: 20px;
  line-height: 60px;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination a.active,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.active,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.active {
  color: #00b49c;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination a:hover,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a:hover,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination span.next,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span.next,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span.next {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  display: inline-block;
  background: #f0f0f0 url(../images/right-arrow-light.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: center;
  text-indent: -9999px;
  line-height: 60px;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination span.next,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span.next,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span.next {
    float: right;
    margin-right: 0;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination a.next,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.next,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.next {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  display: inline-block;
  background: #f0f0f0 url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: center;
  text-indent: -9999px;
  line-height: 60px;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination a.next,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.next,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.next {
    float: right;
    margin-right: 0;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination span.prev,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span.prev,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination span.prev {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  display: inline-block;
  background: #f0f0f0 url(../images/right-arrow-light.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: center;
  text-indent: -9999px;
  line-height: 60px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
     transform: rotate(180deg);
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.pagination a.prev,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.prev,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.pagination a.prev {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  display: inline-block;
  background: #f0f0f0 url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: center;
  text-indent: -9999px;
  line-height: 60px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
     transform: rotate(180deg);
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.article-nav,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav {
  width: 100%;
  height: auto;
  padding: 30px 0;
  border-top: 1px solid #d0d0d0;
  margin-top: 50px;
  margin-bottom: 50px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.article-nav a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a {
  font-size: 1.4em;
  text-decoration: none;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.article-nav a.prev-article,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.prev-article,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.prev-article {
  float: left;
  color: #484d53;
  background: url(../images/left-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: center left;
  padding-left: 30px;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.article-nav a.prev-article,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.prev-article,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.prev-article {
    font-size: 1em;
    -moz-background-size: 15px;
         background-size: 15px;
    padding-left: 25px;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.article-nav a.next-article,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.next-article,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.next-article {
  float: right;
  background: url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: center right;
  padding-right: 30px;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.article-nav a.next-article,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.next-article,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.article-nav a.next-article {
    font-size: 1em;
    -moz-background-size: 15px;
         background-size: 15px;
    padding-right: 25px;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.get-in-touch,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch {
  width: 100%;
  height: auto;
  padding: 30px 0;
  border-top: 1px solid #d0d0d0;
  margin-top: 50px;
  display: inline-block;
  overflow: hidden;
  clear: both;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.get-in-touch a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch a {
  width: 300px;
  height: 70px;
  display: inline-block;
  color: #FFF;
  line-height: 70px;
  padding: 0 30px;
  text-decoration: none;
  font-size: 1.6em;
  background: #00b49c url(../images/right-arrow-white.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: center right 30px;
  -moz-transition: box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  -webkit-transition: box-shadow 300ms;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -moz-transition: box-shadow 300ms, -moz-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms, -moz-box-shadow 300ms;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.get-in-touch a:hover,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch a:hover,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch a:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
     -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
  -moz-transition: box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  -webkit-transition: box-shadow 300ms;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -moz-transition: box-shadow 300ms, -moz-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms, -moz-box-shadow 300ms;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.get-in-touch,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.get-in-touch {
    display: none;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  z-index: -5;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  padding: 0;
  background: none;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li {
    overflow: hidden;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li a,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li a,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li img,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li img,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li img {
  width: 100%;
  height: auto;
  display: inline;
  float: left;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li img,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li img,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li img {
    width: 125%;
    position: relative;
    left: -12.5%;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content {
  position: absolute;
  width: 75%;
  height: auto;
  bottom: 30px;
  left: 0;
  background: #FFF;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
  padding: 30px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content h2,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content h2,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content h2 {
  font-size: 2.6em;
  color: #00b49c;
  margin-bottom: 15px;
  font-weight: 400;
  padding: 0;
  line-height: 1.1em;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content p,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content p,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content p {
  font-size: 1.4em;
  color: #00b49c;
  line-height: 1.2em;
  background: url(../images/right-arrow.png) no-repeat;
  background-position: center right;
  -moz-background-size: 25px;
       background-size: 25px;
  padding-right: 30px;
  margin-bottom: 0;
}

@media screen and (max-width: 1130px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content {
    bottom: 0;
    width: 80%;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content h2,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content h2,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content h2 {
    font-size: 1.4em;
    color: #00b49c;
    margin-bottom: 10px;
    font-weight: 400;
    padding: 0;
    line-height: 1.1em;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content p,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content p,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li .content p {
    font-size: 1em;
    color: #00b49c;
    line-height: 1.2em;
    background: url(../images/right-arrow.png) no-repeat;
    background-position: center right;
    -moz-background-size: 15px;
         background-size: 15px;
    padding-right: 30px;
    margin-bottom: 0;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li:first-of-type,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li:first-of-type,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.slides li:first-of-type {
  display: inline-block;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.links,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.links,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.links {
  float: right;
  margin: 0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.links li,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.links li,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.links li {
  width: 15px;
  height: 15px;
  display: inline-block;
  float: left;
  border: 1px solid #d0d0d0;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;
  margin-left: 10px;
  text-indent: -9999px;
  cursor: pointer;
  padding: 0;
  background: none;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content div.content-slider ul.links li.active,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.links li.active,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content div.content-slider ul.links li.active {
  background: #00b49c;
  border: 1px solid #00b49c;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer {
  max-width: 100%;
  width: 800px;
  height: auto;
  overflow: hidden;
  clear: both;
  margin-bottom: 20px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
  width: 800px;
  height: 460px;
  margin-bottom: 0;
  max-width: 100%;
  position: relative;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size img,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size img,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size img {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 1300px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
    height: 370px;
  }
}

@media screen and (max-width: 1000px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
    height: 320px;
  }
}

@media screen and (max-width: 950px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
    height: 300px;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer ul,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul {
  padding: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  clear: both;
  display: block;
  margin: 0;
  padding: 0;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer ul li,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li {
  background: none;
  padding: 0;
  width: 24.25%;
  margin-right: 1%;
  float: left;
  display: inline-block;
  margin-bottom: 0;
  margin-bottom: 5px;
  padding: 0;
  background: none;
  line-height: 1em;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer ul li a img,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li a img,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li a img {
  width: 100%;
  margin: 0;
  max-width: 100%;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(4n),
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(4n),
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(4n) {
  margin-right: 0;
}

@media screen and (max-width: 828px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer {
    height: 750px;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
    height: 450px;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer ul li,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li {
    margin-right: 3%;
    width: 31.33%;
    margin-bottom: 10px;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(4n),
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(4n),
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(4n) {
    margin-right: 3%;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(3n),
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(3n),
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 650px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer {
    height: 600px;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
    height: 350px;
  }
}

@media screen and (max-width: 450px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer {
    height: 420px;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
    height: 260px;
  }
}

@media screen and (max-width: 321px) {
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer {
    height: 310px;
  }
  body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#apprentice:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size,
body#sub-contractor:not(.overview) div#wrapper div#container div#content div.page div.content .img-viewer .full-size {
    height: 190px;
  }
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor)#testimonials div#wrapper div#container div#content div.page div.item h2.item_title a,
body#apprentice:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item h2.item_title a,
body#sub-contractor:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item h2.item_title a {
  pointer-events: none;
  background: none;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor)#testimonials div#wrapper div#container div#content div.page div.item a.learn_more,
body#apprentice:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item a.learn_more,
body#sub-contractor:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item a.learn_more {
  display: none;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor)#testimonials div#wrapper div#container div#content div.page div.item p,
body#apprentice:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item p,
body#sub-contractor:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item p {
  max-width: 600px;
}

body:not(#home):not(#key-contacts):not(#apprentice):not(#sub-contractor)#testimonials div#wrapper div#container div#content div.page div.item strong,
body#apprentice:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item strong,
body#sub-contractor:not(.overview)#testimonials div#wrapper div#container div#content div.page div.item strong {
  font-weight: 500;
  color: #00b49c;
}

/*-------------------------------------------------------------------------SITE MAP
*/
body#site-map div#wrapper, body#error404 div#wrapper {
  padding-bottom: 400px;
}

@media screen and (max-width: 828px) {
  body#site-map div#wrapper, body#error404 div#wrapper {
    padding-bottom: 0px;
  }
}

body#site-map div.page h1, body#error404 div.page h1 {
  font-size: 2.4em;
  font-weight: 400;
  padding: 15px 0 20px;
  line-height: 1.2em;
}

@media screen and (max-width: 828px) {
  body#site-map div.page h1, body#error404 div.page h1 {
    font-size: 1.6em;
    padding: 15px 0 10px;
  }
}

body#site-map div.page h2, body#error404 div.page h2 {
  font-size: 1.8em;
  padding: 10px 0 10px;
  line-height: 1.4em;
}

@media screen and (max-width: 828px) {
  body#site-map div.page h2, body#error404 div.page h2 {
    font-size: 1.4em;
  }
}

body#site-map div.page h3, body#error404 div.page h3 {
  font-size: 1.6em;
  padding: 5px 0 10px;
}

@media screen and (max-width: 828px) {
  body#site-map div.page h3, body#error404 div.page h3 {
    font-size: 1.2em;
  }
}

body#site-map div.page h4, body#error404 div.page h4 {
  font-size: 1.25em;
  padding: 10px 0  5px;
}

@media screen and (max-width: 828px) {
  body#site-map div.page h4, body#error404 div.page h4 {
    font-size: 1.1em;
  }
}

body#site-map div.page p, body#error404 div.page p {
  line-height: 1.4em;
  font-size: 1em;
  max-width: 800px;
  margin-bottom: 20px;
}

body#site-map div.page p em, body#error404 div.page p em {
  font-style: italic;
}

body#site-map div.page p strong, body#error404 div.page p strong {
  font-weight: 400;
}

body#site-map div.page p.date, body#error404 div.page p.date {
  margin-top: 5px;
}

body#site-map div.page ul.sitemap, body#error404 div.page ul.sitemap {
  margin: 0 0;
  list-style: none;
  height: auto;
  width: 100%;
  display: block;
  clear: both;
  overflow: hidden;
}

body#site-map div.page ul.sitemap a, body#error404 div.page ul.sitemap a {
  color: #00b49c;
  text-decoration: underline;
}

body#site-map div.page ul.sitemap li, body#error404 div.page ul.sitemap li {
  padding-left: 20px;
  line-height: 1.8em;
  background: url(../images/dot.png) no-repeat;
  -moz-background-size: 5px;
       background-size: 5px;
  background-position: top 0.9em left;
}

body#site-map div.page ul.sitemap li a, body#error404 div.page ul.sitemap li a {
  text-decoration: none;
  color: #484d53;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

body#site-map div.page ul.sitemap li a:hover, body#error404 div.page ul.sitemap li a:hover {
  color: #00b49c;
  text-decoration: underline;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

body#site-map div.page ul.sitemap li a[title="Sub Contractor"], body#error404 div.page ul.sitemap li a[title="Sub Contractor"] {
  display: none;
}

body#site-map div.page ul.sitemap li a[title="Principal Contractor"], body#error404 div.page ul.sitemap li a[title="Principal Contractor"] {
  display: none;
}

body#site-map div.page ul.sitemap li a[title="Join Our Mailing List"], body#error404 div.page ul.sitemap li a[title="Join Our Mailing List"] {
  display: none;
}

/*-------------------------------------------------------------------------KEY CONTACTS
*/
body#key-contacts div#wrapper div#container div#content {
  width: 100%;
  max-width: 1600px;
  display: block;
  padding: 30px 6.25% 50px 6.25%;
  margin: auto;
  height: auto;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 1345px) {
  body#key-contacts div#wrapper div#container div#content {
    padding: 50px 5%;
  }
}

@media screen and (max-width: 828px) {
  body#key-contacts div#wrapper div#container div#content {
    padding: 10px 5% 0 5%;
  }
}

body#key-contacts div#wrapper div#container div#content div.page {
  width: 55%;
  display: inline-block;
  float: left;
  margin-right: 5%;
}

@media screen and (max-width: 1175px) {
  body#key-contacts div#wrapper div#container div#content div.page {
    width: 60%;
  }
}

@media screen and (max-width: 970px) {
  body#key-contacts div#wrapper div#container div#content div.page {
    width: 58%;
  }
}

@media screen and (max-width: 828px) {
  body#key-contacts div#wrapper div#container div#content div.page {
    width: 100%;
  }
}

body#key-contacts div#wrapper div#container div#content div.page h1 {
  font-size: 2.4em;
  font-weight: 400;
  padding: 15px 0 20px;
  line-height: 1.2em;
}

@media screen and (max-width: 828px) {
  body#key-contacts div#wrapper div#container div#content div.page h1 {
    font-size: 1.6em;
    padding: 15px 0 10px;
  }
}

body#key-contacts div#wrapper div#container div#content div.page h2 {
  font-size: 1.8em;
  padding: 10px 0 10px;
  line-height: 1em;
}

@media screen and (max-width: 828px) {
  body#key-contacts div#wrapper div#container div#content div.page h2 {
    font-size: 1.4em;
  }
}

body#key-contacts div#wrapper div#container div#content div.page h3 {
  font-size: 1.6em;
  padding: 5px 0 10px;
}

@media screen and (max-width: 828px) {
  body#key-contacts div#wrapper div#container div#content div.page h3 {
    font-size: 1.2em;
  }
}

body#key-contacts div#wrapper div#container div#content div.page h4 {
  font-size: 1.25em;
  padding: 10px 0  5px;
}

@media screen and (max-width: 828px) {
  body#key-contacts div#wrapper div#container div#content div.page h4 {
    font-size: 1.1em;
  }
}

body#key-contacts div#wrapper div#container div#content div.page p {
  line-height: 1.4em;
  font-size: 1em;
  max-width: 800px;
  margin-bottom: 20px;
}

body#key-contacts div#wrapper div#container div#content div.page p em {
  font-style: italic;
}

body#key-contacts div#wrapper div#container div#content div.page p strong {
  font-weight: 500;
}

body#key-contacts div#wrapper div#container div#content div.page p.date {
  margin-top: 5px;
}

body#key-contacts div#wrapper div#container div#content div.page a {
  color: #00b49c;
  text-decoration: underline;
}

body#key-contacts div#wrapper div#container div#content div.page ul {
  margin: 20px 0;
  list-style: none;
}

body#key-contacts div#wrapper div#container div#content div.page ul li {
  padding-left: 15px;
  line-height: 1.8em;
  background: url(../images/dot.png) no-repeat;
  -moz-background-size: 5px;
       background-size: 5px;
  background-position: center left;
}

body#key-contacts div#wrapper div#container div#content div.page .item {
  width: 31.33%;
  display: inline-block;
  float: left;
  overflow: hidden;
  margin-right: 3%;
  height: 400px;
}

@media screen and (max-width: 1250px) {
  body#key-contacts div#wrapper div#container div#content div.page .item {
    height: 350px;
  }
}

@media screen and (max-width: 1250px) {
  body#key-contacts div#wrapper div#container div#content div.page .item {
    height: 350px;
  }
}

@media screen and (max-width: 1150px) {
  body#key-contacts div#wrapper div#container div#content div.page .item {
    height: 300px;
  }
}

body#key-contacts div#wrapper div#container div#content div.page .item img {
  width: 155%;
  position: relative;
  left: -25%;
  height: auto;
}

body#key-contacts div#wrapper div#container div#content div.page .item img[alt="Awaiting Image"] {
  width: 100%;
  left: 0;
}

body#key-contacts div#wrapper div#container div#content div.page .item h2 {
  margin-top: 5px;
}

body#key-contacts div#wrapper div#container div#content div.page .item h2 a {
  text-decoration: none;
  color: #484d53;
  font-weight: 400;
}

body#key-contacts div#wrapper div#container div#content div.page .item h2 small {
  font-size: 0.6em;
  color: #00b49c;
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1150px) {
  body#key-contacts div#wrapper div#container div#content div.page .item h2 {
    font-size: 1.6em;
  }
  body#key-contacts div#wrapper div#container div#content div.page .item h2 small {
    margin-bottom: 5px;
  }
}

body#key-contacts div#wrapper div#container div#content div.page .item dl dt {
  display: none;
}

body#key-contacts div#wrapper div#container div#content div.page .item dl dd {
  line-height: 1.2em;
}

body#key-contacts div#wrapper div#container div#content div.page .item dl dd:first-of-type:before {
  content: "T";
  color: #00b49c;
  margin-right: 10px;
}

body#key-contacts div#wrapper div#container div#content div.page .item dl dd:nth-of-type(2):before {
  content: "F";
  color: #00b49c;
  margin-right: 10px;
}

body#key-contacts div#wrapper div#container div#content div.page .item dl dd.large:before {
  content: "E";
  color: #00b49c;
  margin-right: 10px;
}

body#key-contacts div#wrapper div#container div#content div.page .item dl dd.caption {
  display: none;
}

@media screen and (max-width: 828px) {
  body#key-contacts div#wrapper div#container div#content div.page .item {
    width: 100%;
    height: auto;
    padding: 20px 0;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
  }
  body#key-contacts div#wrapper div#container div#content div.page .item a[target="shadowbox[key_contacts]"] {
    width: 30%;
    height: auto;
    overflow: hidden;
    display: inline-block;
    position: relative;
    float: left;
  }
  body#key-contacts div#wrapper div#container div#content div.page .item a[target="shadowbox[key_contacts]"] img {
    height: 155%;
    width: 150%;
    position: relative;
    left: 0;
    display: inline-block;
    float: left;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
  }
  body#key-contacts div#wrapper div#container div#content div.page .item img[alt="Awaiting Image"] {
    width: 30%;
    height: auto;
    position: static;
    text-indent: -9999px;
    display: inline-block;
    background: url(../images/mobile/awaiting-image.png) no-repeat;
    -moz-background-size: 100%;
         background-size: 100%;
    background-position: center;
    left: 0;
    float: left;
  }
  body#key-contacts div#wrapper div#container div#content div.page .item h2 {
    width: 70%;
    display: inline-block;
    float: left;
    padding-left: 15px;
    padding-top: 0;
    font-size: 1.4em;
    margin-top: 0;
  }
  body#key-contacts div#wrapper div#container div#content div.page .item h2 small {
    font-size: 0.8em;
  }
  body#key-contacts div#wrapper div#container div#content div.page .item dl.key_contact {
    width: 70%;
    display: inline-block;
    float: left;
    padding-left: 15px;
    font-size: 0.8em;
  }
}

body#key-contacts div#wrapper div#container div#content div.page .item:nth-of-type(3n) {
  margin-right: 0;
}

body:not(#home) div.column {
  width: 400px;
  display: inline-block;
  float: left;
  float: right;
  min-height: 100%;
  padding-top: 40px;
}

@media screen and (max-width: 1175px) {
  body:not(#home) div.column {
    width: 300px;
  }
}

@media screen and (max-width: 925px) {
  body:not(#home) div.column {
    width: 35%;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column {
    width: 100%;
    display: block;
    clear: both;
    float: none;
    padding-top: 50px;
    margin-bottom: 30px;
  }
}

body:not(#home) div.column .quick_links {
  width: 100%;
  height: auto;
  overflow: hidden;
}

body:not(#home) div.column .quick_links a {
  width: 100%;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  font-size: 1.4em;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 0 20px;
  background: #f0f0f0 url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: right 20px center;
  max-width: 400px;
  float: right;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column .quick_links a {
    max-width: 100%;
  }
}

body:not(#home) div.column .quick_links a:hover {
  background: #00b49c url(../images/right-arrow-white.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: right 20px center;
  color: #FFF;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column .quick_links {
    display: none;
  }
}

body:not(#home) div.column ul.links {
  display: none;
}

body:not(#home) div.column div.side-links ul.slides,
body:not(#home) div.column div.sub-con-side-links ul.slides {
  width: 100%;
  height: auto;
}

body:not(#home) div.column div.side-links ul.slides li,
body:not(#home) div.column div.sub-con-side-links ul.slides li {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  position: relative;
}

body:not(#home) div.column div.side-links ul.slides li img,
body:not(#home) div.column div.sub-con-side-links ul.slides li img {
  width: 100%;
  height: auto;
}

body:not(#home) div.column div.side-links ul.slides li div.content,
body:not(#home) div.column div.sub-con-side-links ul.slides li div.content {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 100% !important;
  pointer-events: none;
  line-height: 60px;
  font-size: 1.4em;
  font-weight: 300;
  padding: 0 20px;
  background: #f0f0f0 url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: right 20px center;
}

body:not(#home) div.column div.side-links ul.slides li div.content p,
body:not(#home) div.column div.sub-con-side-links ul.slides li div.content p {
  margin: 0;
  line-height: 60px !important;
  vertical-align: middle;
  height: 60px !important;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body:not(#home) div.column div.side-links ul.slides li:hover div.content p,
body:not(#home) div.column div.sub-con-side-links ul.slides li:hover div.content p {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.side-links ul.slides,
body:not(#home) div.column div.sub-con-side-links ul.slides {
    display: none;
  }
}

body:not(#home) div.column div.sidebar-contact h2 {
  font-size: 1.6em;
  padding: 10px 0 15px;
  line-height: 1.4em;
  display: block;
}

body:not(#home) div.column div.sidebar-contact p {
  font-size: 1em;
  line-height: 1.3em;
  display: block;
}

body:not(#home) div.column div.sidebar-contact a {
  color: #00b49c;
  text-decoration: underline;
}

body:not(#home) div.column div.sidebar-contact .phone, body:not(#home) div.column div.sidebar-contact .fax {
  margin-top: 10px;
  display: block;
}

body:not(#home) div.column div.sidebar-contact .phone span, body:not(#home) div.column div.sidebar-contact .fax span {
  width: 100px;
  display: inline-block;
  color: #00b49c;
  font-weight: 500;
  text-decoration: none;
}

body:not(#home) div.column div.sidebar-contact .email {
  margin-top: 20px;
  text-decoration: underline;
  color: #00b49c;
  display: block;
  font-weight: 500;
}

body:not(#home) div.column div.sidebar-contact img {
  max-width: 100%;
  width: auto;
  display: block;
  margin: auto;
}

@media screen and (min-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content {
    display: none;
  }
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-1 {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 5px;
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-1 a {
  width: 100%;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  font-size: 1.4em;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 0 20px;
  background: #f0f0f0 url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: right 20px center;
  max-width: 400px;
  float: right;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-1 a {
    max-width: 100%;
  }
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-1 a:hover {
  background: #00b49c url(../images/right-arrow-white.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: right 20px center;
  color: #FFF;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-1 .sub-con_sidebar_quick_links {
  display: block;
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 {
  background: #f7f7f7;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: block;
  margin: auto;
}

@media screen and (max-width: 1175px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 {
    height: 300px;
  }
}

@media screen and (max-width: 875px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 {
    width: 100%;
  }
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul {
  width: 100%;
  display: block;
  margin: auto;
  height: auto;
  overflow: hidden;
  position: absolute;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
     transform: translate(0, -50%);
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li {
  display: inline-block;
  float: left;
  margin-right: 1%;
  width: 24.25%;
  height: auto;
  position: relative;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 20px;
  }
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li a {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li img {
  width: 100%;
  height: auto;
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li div.content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FFF;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li div.content p {
  line-height: 80px;
  height: 80px;
  font-size: 1.4em;
  padding: 0 30px;
  font-weight: 300;
  background: url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 30px;
       background-size: 30px;
  background-position: right 30px center;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (max-width: 1470px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li div.content p {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 1250px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li div.content p {
    font-size: 1em;
  }
}

@media screen and (max-width: 1000px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li div.content p {
    font-size: 1em;
    background: url(../images/right-arrow.png) no-repeat;
    -moz-background-size: 15px;
         background-size: 15px;
    background-position: right 20px center;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li div.content {
    height: auto !important;
  }
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li div.content p {
    height: auto !important;
    line-height: 1.2em !important;
    padding: 10px 40px 10px 10px !important;
    font-size: 0.9em !important;
    margin-bottom: 0 !important;
  }
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li:hover div.content p {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (min-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}

body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 ul.links {
  display: none;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 {
    background: none;
    height: auto;
    overflow: hidden;
    clear: both;
  }
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 div.home-links ul.slides {
    position: static;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 div.home-links ul.slides li div.content {
    height: 60px;
  }
  body:not(#home) div.column div.sidebar-mobile-content .sidebar-mobile-content-2 div.home-links ul.slides li div.content p {
    font-size: 0.8em;
    background: url(../images/right-arrow.png) no-repeat;
    -moz-background-size: 10px;
         background-size: 10px;
    background-position: right 20px center;
    font-weight: 400;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
  }
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3-bg {
  position: absolute;
  background: #f7f7f7;
  left: 0;
  right: 0;
  height: 280px;
  width: 100%;
  z-index: -1;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 {
  display: block;
  width: 100%;
  height: 280px;
  z-index: 9999;
  position: relative;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item {
  width: 33.33%;
  display: inline-block;
  float: left;
  padding: 0 50px;
  position: relative;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
     transform: translate(0, -50%);
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item img {
  margin-bottom: 30px;
  height: 60px;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item h2, body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item p {
  line-height: 1.4em;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item h2 {
  clear: left;
  margin-top: 20px;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item h2 strong {
  color: #00b49c;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item:after {
  position: absolute;
  top: 75px;
  left: 30px;
  content: "";
  width: 50px;
  height: 50px;
  z-index: -1;
  background: url(../images/top-quotes.png) no-repeat;
  background-position: center;
  -moz-background-size: contain;
       background-size: contain;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item:before {
  position: absolute;
  bottom: -10px;
  right: 30%;
  content: "";
  width: 50px;
  height: 50px;
  z-index: -1;
  background: url(../images/bottom-quotes.png) no-repeat;
  background-position: center;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 1100px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item {
    width: 50%;
    text-align: center;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item:before {
    position: absolute;
    bottom: -10px;
    right: 30px;
    content: "";
    width: 50px;
    height: 50px;
    z-index: -1;
    background: url(../images/bottom-quotes.png) no-repeat;
    background-position: center;
    -moz-background-size: contain;
         background-size: contain;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item:last-of-type {
    display: none;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item {
    width: 80%;
    max-width: 400px;
    display: block;
    margin: auto;
    padding: 0;
    float: none;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item img {
    width: 80%;
    display: block;
    height: auto;
    margin: 0 auto 20px auto;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item:after {
    position: absolute;
    top: 50px;
    left: -15px;
    content: "";
    width: 70px;
    height: 70px;
    z-index: -1;
    background: url(../images/top-quotes.png) no-repeat;
    background-position: center;
    -moz-background-size: contain;
         background-size: contain;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item:before {
    position: absolute;
    bottom: -20px;
    right: -15px;
    content: "";
    width: 70px;
    height: 70px;
    z-index: -1;
    background: url(../images/bottom-quotes.png) no-repeat;
    background-position: center;
    -moz-background-size: contain;
         background-size: contain;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-3 .item:nth-last-of-type(2) {
    display: none;
  }
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 {
  width: 100%;
  padding: 30px 0 0 0;
  display: block;
  clear: both;
  height: auto;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side {
  width: 60%;
  height: auto;
  overflow: hidden;
  display: inline-block;
  float: left;
  margin-right: 10%;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side h1 {
  font-size: 2em;
  display: block;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
  vertical-align: baseline;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side h1 a {
  font-size: 0.5em;
  text-align: right;
  float: right;
  text-decoration: underline;
  color: #00b49c;
  font-weight: 300;
  line-height: 30px;
  vertical-align: baseline;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side h1 {
    font-size: 1.4em;
    font-weight: 400;
  }
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet {
  width: 100%;
  padding: 20px 0 30px 0;
  border-bottom: 1px solid #d0d0d0;
  background: url(../images/right-arrow.png) no-repeat top 30px right;
  -moz-background-size: 15px;
       background-size: 15px;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet h2 a {
  font-size: 1.6em;
  font-weight: 300;
  padding: 10px 0 10px 0;
  color: #484d53;
  display: block;
  margin-top: 0;
  text-decoration: none;
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet h2 a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet h3 {
  margin-bottom: 10px;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet p {
  line-height: 1.4em;
  width: 90%;
  max-width: 800px;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet a {
  margin-top: 20px;
  font-weight: 300;
  color: #00b49c;
  display: inline-block;
  text-decoration: underline;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 1000px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side {
    width: 50%;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side {
    width: 100%;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side h1 a {
    display: none;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet {
    background: url(../images/right-arrow.png) no-repeat top 20px right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
    padding: 10px 0 20px 0;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet a:last-of-type {
    display: none;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet h2 a {
    font-size: 1.2em;
    font-weight: 400;
    display: block !important;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side .news-article-snippet p {
    width: 95%;
    max-width: 600px;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side a.mobile-read-all {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    padding: 0 20px;
    background: #eaeaea url(../images/right-arrow.png) no-repeat center right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.left-side a.mobile-read-all {
    display: none;
  }
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side {
  width: 30%;
  display: inline-block;
  float: left;
  margin-top: 20px;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side h1 {
  font-size: 2em;
  display: block;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
  vertical-align: baseline;
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side h1 {
    font-size: 1.4em;
    font-weight: 400;
  }
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side p:not(.emph) {
  line-height: 1.4em;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side a {
  font-weight: 300;
  color: #00b49c;
  text-decoration: underline;
  display: inline-block;
  margin: 20px 0;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies {
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies .item {
  height: 60px;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies .item .read_more {
  display: none;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies .item p.emph a {
  height: 60px;
  line-height: 60px;
  display: block;
  width: 100%;
  font-weight: 300;
  border-bottom: 1px solid #d0d0d0;
  font-size: 1.4em;
  background: url(../images/right-arrow.png) no-repeat center right;
  -moz-background-size: 20px;
       background-size: 20px;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
  margin: 0;
  text-decoration: none;
  color: #484d53;
}

body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies .item p.emph a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (max-width: 1000px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side {
    width: 40%;
  }
}

@media screen and (max-width: 828px) {
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side {
    width: 111.11%;
    float: none;
    display: inline-block;
    clear: both;
    overflow: hidden;
    background: #f0f0f0;
    margin-left: -5.55%;
    padding: 30px 5%;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies {
    margin-bottom: 15px;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies .item {
    height: 50px;
    line-height: 50px;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies .item p.emph {
    font-size: 1em;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side .vacancies .item p.emph a {
    font-size: 1em;
    background: url(../images/right-arrow.png) no-repeat center right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
    height: 50px;
    line-height: 50px;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side a.apply-online {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    background: #FFF;
    margin-bottom: 30px;
    margin-top: 20px;
    text-decoration: none;
    margin: 20px 0 0;
    text-indent: -9999px;
    position: relative;
  }
  body:not(#home) div.column div.sidebar-mobile-content div.sidebar-mobile-content-4 div.right-side a.apply-online:after {
    content: "Apply Online";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-indent: 0;
    background: #FFF url(../images/right-arrow.png) no-repeat center right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
    padding: 0 20px;
  }
}

/*-------------------------------------------------------------------------HOME
*/
body#home div#wrapper div#container div#content div.page,
body#sub-contractor div#wrapper div#container div#content div.page,
body#apprentice div#wrapper div#container div#content div.page {
  width: 100%;
  max-width: 1600px;
  display: block;
  padding: 50px 6.25%;
  margin: auto;
}

@media screen and (max-width: 1345px) {
  body#home div#wrapper div#container div#content div.page,
body#sub-contractor div#wrapper div#container div#content div.page,
body#apprentice div#wrapper div#container div#content div.page {
    padding: 50px 5%;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page,
body#sub-contractor div#wrapper div#container div#content div.page,
body#apprentice div#wrapper div#container div#content div.page {
    padding: 20px 5% 0 5%;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-1,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 {
  display: block;
  clear: both;
  width: 100%;
  height: auto;
  overflow: hidden;
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side {
  width: 60%;
  display: inline-block;
  float: left;
  margin-right: 10%;
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side h1,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side h1,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side h1 {
  font-size: 2em;
  font-weight: 400;
  width: 100%;
  display: inline-block;
  line-height: 1.2em;
  max-width: 800px;
  margin-bottom: 20px;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side h1,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side h1,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side h1 {
    font-size: 1.6em;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side h2 {
  font-size: 1.6em;
  margin-bottom: 20px;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side h2 {
    font-size: 1.4em;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side p {
  max-width: 800px;
  line-height: 1.6em;
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side a {
  margin-top: 25px;
  font-size: 1.4em;
  font-weight: 300;
  color: #00b49c;
  display: inline-block;
  background: url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: right center;
  padding-right: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side a {
    background: url(../images/right-arrow.png) no-repeat;
    -moz-background-size: 15px;
         background-size: 15px;
    background-position: right 20px center;
    font-size: 1.2em;
  }
}

@media screen and (max-width: 875px) {
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side {
    width: 50%;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side {
  width: 30%;
  display: inline-block;
  float: right;
  margin-bottom: 50px;
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side a {
  width: 400px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  font-size: 1.4em;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 0 20px;
  background: #f0f0f0 url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 15px;
       background-size: 15px;
  background-position: right 20px center;
  float: right;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy {
  padding: 0 !important;
  width: 100%;
  background: none ! important;
  /*margin-bottom: 30px;*/
  display: inline-block;
  height: auto;
  margin-bottom: 0;
  max-width: 400px;
  float: right;
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy img{
  width: 100%;
  height: auto;
}

@media screen and (max-width: 828px) {

  body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy,
  body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy,
  body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side a.carpentry_academy {
    max-width: 100%;
    float: left;
  }

}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side a:hover,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side a:hover,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side a:hover {
  background: #00b49c url(../images/right-arrow-white.png) no-repeat;
  -moz-background-size: 15px;
       background-size: 15px;
  background-position: right 20px center;
  color: #FFF;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

@media screen and (max-width: 1175px) {
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side a {
    width: 300px;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side, body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side {
    width: 100%;
    display: block;
    clear: both;
    margin: 0;
  }

body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side a, 
body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side a {
    width: 100%;
}

body#home div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.left-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.left-side a {
    margin-bottom: 30px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side {
    float: left;
    display: inline-block;
    margin-bottom: 20px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-1 div.right-side div.home_sidebar_links a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-1 div.right-side div.home_sidebar_links a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-1 div.right-side div.home_sidebar_links a {
    max-width: 100%;
    font-size: 1.2em;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-2-bg,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2-bg,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2-bg {
  background: #f7f7f7;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  clear: both;
  height: 400px;
}

@media screen and (max-width: 1175px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2-bg,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2-bg,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2-bg {
    height: 300px;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2-bg,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2-bg,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2-bg {
    display: none;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 {
  background: #f7f7f7;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: block;
  margin: auto;
}

@media screen and (max-width: 1175px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 {
    height: 300px;
  }
}

@media screen and (max-width: 875px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 {
    width: 100%;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul {
  width: 100%;
  display: block;
  margin: auto;
  height: auto;
  overflow: hidden;
  position: absolute;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
     transform: translate(0, -50%);
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul li,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li {
  display: inline-block;
  float: left;
  margin-right: 1%;
  width: 24.25%;
  height: auto;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 20px;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul li a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li a {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul li img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li img {
  width: 100%;
  height: auto;
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul li div.content,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li div.content,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li div.content {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: #FFF;
  background: rgba(255, 255, 255, 1);
  pointer-events: none;
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p {
  line-height: 80px;
  height: 80px;
  font-size: 1.4em;
  padding: 0 30px;
  font-weight: 300;
  background: url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 30px;
       background-size: 30px;
  background-position: right 30px center;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (max-width: 1470px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 1250px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p {
    font-size: 1em;
  }
}

@media screen and (max-width: 1000px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p {
    font-size: 1em;
    background: url(../images/right-arrow.png) no-repeat;
    -moz-background-size: 15px;
         background-size: 15px;
    background-position: right 20px center;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li div.content,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li div.content,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li div.content {
    height: auto !important;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li div.content p {
    height: auto !important;
    line-height: 1.2em !important;
    padding: 10px 40px 10px 10px !important;
    font-size: 0.9em !important;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul li:hover div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li:hover div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li:hover div.content p {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (min-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li:last-of-type,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li:last-of-type,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2 ul li:nth-of-type(2n),
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul li:nth-of-type(2n),
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-2 ul.links,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 ul.links,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 ul.links {
  display: none;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 {
    background: none;
    height: auto;
    overflow: hidden;
    clear: both;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides {
    position: static;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }
  body#home div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides li div.content,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides li div.content,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides li div.content {
    height: 60px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides li div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides li div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-2 div.home-links ul.slides li div.content p {
    font-size: 0.8em;
    background: url(../images/right-arrow.png) no-repeat;
    -moz-background-size: 10px;
         background-size: 10px;
    background-position: right 20px center;
    font-weight: 400;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-3,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 {
  padding: 50px 0 50px 0;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}

body#home div#wrapper div#container div#content div.page div.home-section-3 div.item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item {
  width: 25%;
  display: inline-block;
  float: left;
  padding: 0 50px;
}

body#home div#wrapper div#container div#content div.page div.home-section-3 div.item img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item img {
  height: 150px;
  display: block;
  margin: auto;
  margin-bottom: 30px;
}

body#home div#wrapper div#container div#content div.page div.home-section-3 div.item p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item p {
  line-height: 1.4em;
  margin-bottom: 20px;
  width: 100%;
  margin: -5px auto 20px auto;
}

body#home div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph {
  font-size: 1.6em;
  font-weight: 300;
  height: 70px;
  line-height: 1.2em;
  margin-bottom: 0;
}

body#home div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph a {
  font-weight: 300;
}

@media screen and (max-width: 1000px) {
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph {
    height: 50px;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph {
    height: auto;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-3 div.item a.read_more,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item a.read_more,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item a.read_more {
  font-weight: 300;
  color: #00b49c;
  text-decoration: underline;
  font-size: 1em;
}

@media screen and (max-width: 1000px) {
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item {
    width: 50%;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-3,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 {
    padding: 30px 0;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item {
    width: 90%;
    clear: both;
    overflow: hidden;
    padding: 0;
    display: inline-block;
    float: none;
    text-align: center;
    margin-left: 5%;
    margin-bottom: 40px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item img {
    height: 100px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item p {
    max-width: 500px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item p.emph {
    height: auto;
    font-size: 1.4em;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-3 div.item a.read_more,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-3 div.item a.read_more,
body#apprentice div#wrapper div#container div#content div.page div.home-section-3 div.item a.read_more {
    text-decoration: none;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-4,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 {
  padding: 50px 0;
  display: block;
  height: auto;
  overflow: hidden;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-4,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 {
    padding: 30px 0 20px;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides {
  width: 100%;
  height: auto;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li {
  display: inline-block;
  width: 33.33%;
  height: auto;
  float: left;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li img {
  width: 80%;
  height: auto;
  display: block;
  margin: auto;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item {
  width: 80%;
  display: block;
  float: none;
  padding: 0;
  margin: auto;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item img {
  height: 150px;
  display: block;
  margin: auto;
  margin-bottom: 30px;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p {
  line-height: 1.4em;
  margin-bottom: 20px;
  margin-top: -5px;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p strong,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p strong,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p strong {
  color: #00b49c;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph {
  font-size: 1.6em;
  font-weight: 300;
  height: 40px;
  line-height: 1.2em;
  margin-bottom: 0;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph a {
  font-weight: 300;
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item a.read_more,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item a.read_more,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item a.read_more {
  font-weight: 300;
  color: #00b49c;
  text-decoration: underline;
  font-size: 1em;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li {
    width: 100%;
    display: inline-block;
    clear: both;
    margin-bottom: 40px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li img {
    width: 90%;
    max-width: 300px;
    display: block;
    margin: auto;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item,
body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content {
    width: 100%;
    text-align: center;
    position: relative;
    padding-top: 20px;
    margin-top: 10px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p,
body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content p {
    line-height: 1.4em;
    margin-bottom: 20px;
    width: 100%;
    margin: 0 auto 20px auto;
    max-width: 500px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph,
body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content p.emph {
    font-size: 1.4em;
    font-weight: 250;
    height: 70px;
    line-height: 1.2em;
    margin-bottom: 0;
    height: auto;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item a.read_more,
body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content a.read_more,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item a.read_more,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content a.read_more,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item a.read_more,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content a.read_more {
    text-decoration: none;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item:before,
body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content:before,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item:before,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content:before,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.item:before,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    border-top: 1px solid #d0d0d0;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content:before,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content:before,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li div.content:before {
    border: none;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-4 ul.slides li:last-of-type img:not([alt="4 Sub Contractors Received 0 Quality Issues in August"]),
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.slides li:last-of-type img:not([alt="4 Sub Contractors Received 0 Quality Issues in August"]),
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.slides li:last-of-type img:not([alt="4 Sub Contractors Received 0 Quality Issues in August"]) {
    width: 90%;
    max-width: 200px;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-4 ul.links,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4 ul.links,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4 ul.links {
  display: none;
}

body#home div#wrapper div#container div#content div.page div.home-section-4.sub-con img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4.sub-con img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4.sub-con img {
  padding-bottom: 0px;
  border-bottom: 1px solid #eaeaea;
}

body#home div#wrapper div#container div#content div.page div.home-section-4.sub-con .content,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4.sub-con .content,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4.sub-con .content {
  width: 80%;
  margin: auto;
  display: block;
}

body#home div#wrapper div#container div#content div.page div.home-section-4.sub-con .content h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4.sub-con .content h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4.sub-con .content h2 {
  padding-bottom: 20px;
  padding-top: 30px;
  font-size: 1.6em;
  line-height: 1.2em;
}

body#home div#wrapper div#container div#content div.page div.home-section-4.sub-con .content p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4.sub-con .content p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4.sub-con .content p {
  line-height: 1.4em;
  margin-bottom: 20px;
  margin-top: -5px;
}

body#home div#wrapper div#container div#content div.page div.home-section-4.sub-con .content p strong,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-4.sub-con .content p strong,
body#apprentice div#wrapper div#container div#content div.page div.home-section-4.sub-con .content p strong {
  color: #00b49c;
}

body#home div#wrapper div#container div#content div.page div.home-section-5-bg,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5-bg,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5-bg {
  position: absolute;
  background: #f7f7f7;
  left: 0;
  right: 0;
  height: 350px;
  width: 100%;
  z-index: -1;
}

body#home div#wrapper div#container div#content div.page div.home-section-5,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 {
  display: block;
  width: 100%;
  height: 350px;
  z-index: 9999;
  position: relative;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item {
  width: 33.33%;
  display: inline-block;
  float: left;
  padding: 0 50px;
  position: relative;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
     transform: translate(0, -50%);
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item img {
  display: block;
  margin: auto;
  margin-bottom: 30px;
  height: 80px;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item h2, body#home div#wrapper div#container div#content div.page div.home-section-5 .item p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item p {
  line-height: 1.4em;
  text-align: center;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item p {
  font-size: 1.1em;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item h2 {
  clear: left;
  margin-top: 20px;
  font-size: 1.1em;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item h2 strong,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item h2 strong,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item h2 strong {
  color: #00b49c;
  font-weight: 500;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item:after,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item:after,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item:after {
  position: absolute;
  top: 90px;
  left: 40px;
  content: "";
  width: 50px;
  height: 50px;
  z-index: -1;
  background-position: center;
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item:before,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item:before,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item:before {
  position: absolute;
  bottom: -15px;
  right: 20%;
  content: "";
  width: 50px;
  height: 50px;
  z-index: -1;
  background-position: center;
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item.lazy_bg_loaded:after,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item.lazy_bg_loaded:after,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item.lazy_bg_loaded:after {
  background-image: url(../images/top-quotes.png);
}

body#home div#wrapper div#container div#content div.page div.home-section-5 .item.lazy_bg_loaded:before,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item.lazy_bg_loaded:before,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item.lazy_bg_loaded:before {
  background-image: url(../images/bottom-quotes.png);
}

@media screen and (max-width: 1100px) {
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item {
    width: 50%;
    text-align: center;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item:before,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item:before,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item:before {
    position: absolute;
    bottom: -10px;
    right: 30px;
    content: "";
    width: 50px;
    height: 50px;
    z-index: -1;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item:last-of-type,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item:last-of-type,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item:last-of-type {
    display: none;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item {
    width: 80%;
    max-width: 400px;
    display: block;
    margin: auto;
    padding: 0;
    float: none;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item img,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item img,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item img {
    width: 80%;
    display: block;
    height: auto;
    margin: 0 auto 20px auto;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item:after,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item:after,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item:after {
    position: absolute;
    top: 50px;
    left: -15px;
    content: "";
    width: 70px;
    height: 70px;
    z-index: -1;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item:before,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item:before,
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item:before {
    position: absolute;
    bottom: -20px;
    right: -15px;
    content: "";
    width: 70px;
    height: 70px;
    z-index: -1;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-5 .item:nth-last-of-type(2),
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-5 .item:nth-last-of-type(2),
body#apprentice div#wrapper div#container div#content div.page div.home-section-5 .item:nth-last-of-type(2) {
    display: none;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-6,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 {
  width: 100%;
  padding: 50px 0 0 0;
  display: block;
  clear: both;
  height: auto;
}

@media screen and (min-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 {
    overflow: hidden;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side {
  width: 60%;
  height: auto;
  overflow: hidden;
  display: inline-block;
  float: left;
  margin-right: 10%;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2 {
  font-size: 2em;
  display: block;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
  vertical-align: baseline;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2 a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2 a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2 a {
  font-size: 0.5em;
  text-align: right;
  float: right;
  text-decoration: underline;
  color: #00b49c;
  font-weight: 300;
  line-height: 30px;
  vertical-align: baseline;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side > h2 {
    font-size: 1.4em;
    font-weight: 400;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet {
  width: 100%;
  padding: 20px 0 30px 0;
  border-bottom: 1px solid #d0d0d0;
  background: url(../images/right-arrow.png) no-repeat top 30px right;
  -moz-background-size: 15px;
       background-size: 15px;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a {
  font-size: 1.6em;
  font-weight: 300;
  padding: 10px 0 10px 0;
  color: #484d53;
  display: block;
  margin-top: 0;
  text-decoration: none;
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a:hover,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a:hover,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h3,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h3,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h3 {
  margin-bottom: 10px;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet p {
  line-height: 1.4em;
  width: 90%;
  max-width: 800px;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet a {
  margin-top: 20px;
  font-weight: 300;
  color: #00b49c;
  display: inline-block;
  text-decoration: underline;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet:last-of-type,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet:last-of-type,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 1000px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side {
    width: 50%;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side {
    width: 100%;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side h1 a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side h1 a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side h1 a {
    display: none;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet {
    background: url(../images/right-arrow.png) no-repeat top 20px right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
    padding: 10px 0 20px 0;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet a:last-of-type,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet a:last-of-type,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet a:last-of-type {
    display: none;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet h2 a {
    font-size: 1.2em;
    font-weight: 400;
    display: block !important;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet p,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet p,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side .news-article-snippet p {
    width: 95%;
    max-width: 600px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side a.mobile-read-all,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side a.mobile-read-all,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side a.mobile-read-all {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    padding: 0 20px;
    background: #eaeaea url(../images/right-arrow.png) no-repeat center right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.left-side a.mobile-read-all,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.left-side a.mobile-read-all,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.left-side a.mobile-read-all {
    display: none;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side {
  width: 30%;
  display: inline-block;
  float: left;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side > h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side > h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side > h2 {
  font-size: 2em;
  display: block;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
  vertical-align: baseline;
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side > h2,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side > h2,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side > h2 {
    font-size: 1.4em;
    font-weight: 400;
  }
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side p:not(.emph),
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side p:not(.emph),
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side p:not(.emph) {
  line-height: 1.2em;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side a {
  font-weight: 300;
  color: #00b49c;
  text-decoration: underline;
  display: inline-block;
  margin: 20px 0;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies {
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item {
  height: 60px;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item .read_more,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item .read_more,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item .read_more {
  display: none;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a {
  height: 60px;
  line-height: 60px;
  display: block;
  width: 100%;
  font-weight: 300;
  border-bottom: 1px solid #d0d0d0;
  font-size: 1.4em;
  background: url(../images/right-arrow.png) no-repeat center right;
  -moz-background-size: 20px;
       background-size: 20px;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
  margin: 0;
  text-decoration: none;
  color: #484d53;
}

body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a:hover,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a:hover,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (max-width: 1000px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side {
    width: 40%;
  }
}

@media screen and (max-width: 828px) {
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side {
    width: 111.11%;
    float: none;
    display: inline-block;
    clear: both;
    overflow: hidden;
    background: #f0f0f0;
    -webkit-transform: translateX(-5.55%);
       -moz-transform: translateX(-5.55%);
        -ms-transform: translateX(-5.55%);
         -o-transform: translateX(-5.55%);
            transform: translateX(-5.55%);
    padding: 30px 5%;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies {
    margin-bottom: 20px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph {
    font-size: 1em;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side .vacancies .item p.emph a {
    font-size: 1em;
    background: url(../images/right-arrow.png) no-repeat center right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side a.apply-online,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side a.apply-online,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side a.apply-online {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    background: #FFF;
    margin-bottom: 30px;
    margin-top: 20px;
    text-decoration: none;
    margin: 20px 0 0;
    text-indent: -9999px;
    position: relative;
  }
  body#home div#wrapper div#container div#content div.page div.home-section-6 div.right-side a.apply-online:after,
body#sub-contractor div#wrapper div#container div#content div.page div.home-section-6 div.right-side a.apply-online:after,
body#apprentice div#wrapper div#container div#content div.page div.home-section-6 div.right-side a.apply-online:after {
    content: "Apply Online";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-indent: 0;
    background: #FFF url(../images/right-arrow.png) no-repeat center right 20px;
    -moz-background-size: 15px;
         background-size: 15px;
    padding: 0 20px;
  }
}

body#policies .single-page-image, body#about.awards-and-accreditations .single-page-image {
  display: none !important;
}

body#policies a#enlarge, body#about.awards-and-accreditations a#enlarge {
  display: none !important;
}

/*-------------------------------------------------------------------------------------------------------FORMS
*/
form {
  width: 100%;
  height: auto;
  background: #f0f0f0;
  padding: 30px;
  max-width: 600px;
}

@media screen and (max-width: 828px) {
  form {
    padding: 20px;
    max-width: 100%;
  }
}

form legend {
  font-size: 1.6em;
  padding: 10px 0 15px;
  display: none;
  font-weight: 500;
}

form legend.error, form p.error {
  display: block;
  color: #BD452F !important;
  font-size: 1.4em !important;
  margin: 0 0 20px !important;
}

form legend.success, form p.success {
  display: block;
  color: #00b49c !important;
  font-size: 1.4em !important;
  margin: 0 0 20px !important;
}

form span.warning {
  color: #BD452F;
}

form ol li label {
  display: block;
  padding-bottom: 8px;
  clear: both;
  padding-top: 12px;
  line-height: 1.2em;
}

form ol li label span.warning {
  padding-left: 10px;
}

form ol li input, form ol li select {
  width: 100%;
  height: 50px;
  background: #FFF;
  border: 1px solid #d0d0d0;
  padding: 0 20px;
  color: #484d53;
  font-size: 1em;
  -moz-transition: box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  -webkit-transition: box-shadow 300ms;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -moz-transition: box-shadow 300ms, -moz-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms, -moz-box-shadow 300ms;
}

@media screen and (max-width: 828px) {
  form ol li input, form ol li select {
    height: 50px;
  }
}

form ol li textarea {
  width: 100%;
  height: 250px;
  padding: 20px;
  background: #FFF;
  border: 1px solid #d0d0d0;
  resize: none;
  color: #484d53;
  font-size: 1em;
  -moz-transition: box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  -webkit-transition: box-shadow 300ms;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -moz-transition: box-shadow 300ms, -moz-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms, -moz-box-shadow 300ms;
}

form ol li select {
  background: #FFF url(../images/drop-down.png) no-repeat right;
  -moz-background-size: 15px;
       background-size: 15px;
  background-position: right 20px center;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  color: #484d53;
}

@media screen and (max-width: 828px) {
  form ol li select {
    -moz-background-size: 15px;
         background-size: 15px;
  }
}

form ol li input:focus, form ol li select:focus, form ol li textarea:focus {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
     -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
  -moz-transition: box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  -webkit-transition: box-shadow 300ms;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -moz-transition: box-shadow 300ms, -moz-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms, -moz-box-shadow 300ms;
}

form ol li input.error, form ol li select.error, form ol li textarea.error {
  border: 1px solid #BD452F;
}

form ol li input.error::-webkit-input-placeholder, form ol li textarea.error::-webkit-input-placeholder {
  color: #BD452F;
}

form ol li input.error:-moz-placeholder, form ol li textarea.error:-moz-placeholder {
  /* Firefox 18- */
  color: #BD452F;
}

form ol li input.error::-moz-placeholder, form ol li textarea.error::-moz-placeholder {
  /* Firefox 19+ */
  color: #BD452F;
}

form ol li input.error:-ms-input-placeholder, form ol li textarea.error:-ms-input-placeholder {
  color: #BD452F;
}

form ol li select.error {
  color: #BD452F;
}

form ol li dl {
  margin-top: 20px;
}

form ol li dl dt, form ol li dl dd {
  width: 120px;
  display: inline-block;
  height: auto;
  vertical-align: top;
}

form ol li dl dt input, form ol li dl dd input {
  height: 20px;
  width: 20px;
  vertical-align: top;
  margin-right: 10px;
}

form ol li dl dt label, form ol li dl dd label {
  width: 100%;
  padding: 0;
  height: auto;
  display: inline-block;
  padding-bottom: 20px;
}

form ol li dl dt {
  width: 40px;
}

@media screen and (max-width: 1050px) {
  form ol li dl {
    width: 100%;
  }
  form ol li dl dt, form ol li dl dd {
    width: 50%;
    display: inline-block;
    float: left;
  }
  form ol li dl dt {
    clear: left;
    width: 30px;
  }
  form ol li dl dd {
    clear: right;
  }
}

@media screen and (max-width: 828px) {
  form ol li dl {
    margin-top: 10px;
  }
}

form button {
  width: 100%;
  height: 60px;
  background: #00b49c;
  color: #FFF;
  text-align: center;
  font-size: 1.4em;
  margin-top: 10px;
  cursor: pointer;
  background: #00b49c url(../images/right-arrow-white.png) no-repeat right;
  -moz-background-size: 20px;
       background-size: 20px;
  background-position: right 20px center;
  -moz-transition: box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  -webkit-transition: box-shadow 300ms;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -moz-transition: box-shadow 300ms, -moz-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms, -moz-box-shadow 300ms;
}

@media screen and (max-width: 828px) {
  form button {
    -moz-background-size: 15px;
         background-size: 15px;
  }
}

form button:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
     -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
  -moz-transition: box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  -webkit-transition: box-shadow 300ms;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -moz-transition: box-shadow 300ms, -moz-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms, -moz-box-shadow 300ms;
}

form.supported ol li {
  padding-bottom: 10px;
}

@media screen and (max-width: 828px) {
  form.supported ol li {
    padding-bottom: 15px;
  }
}

/*-------------------------------------------------------------------------JQUERY SELECTBOX
*/
div#content div.page div.sbHolder {
  background-color: #FFF;
  border: 1px solid #d0d0d0;
  font-size: 1em;
  font-weight: normal;
  height: 50px;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 50px;
}

div#content div.page a.sbSelector {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  line-height: 50px;
  outline: none;
  overflow: hidden;
  text-indent: 20px;
  width: 100%;
  height: 50px;
  color: #484d53 !important;
  font-size: 1em;
  text-decoration: none !important;
  text-transform: none !important;
}

div#content div.page a.sbToggle {
  background: url("../images/drop-down.png") left top no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  display: block;
  height: 20px;
  outline: none;
  position: absolute;
  right: 20px;
  top: 15px;
  width: 20px;
}

div#content div.page a.sbFocus:hover {
  text-decoration: none;
}

div#content div.page ul.sbOptions {
  background-color: #FFF;
  outline: solid 1px #d0d0d0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 48px;
  width: 100%;
  z-index: 100;
  list-style: none !important;
  margin: 0 !important;
}

div#content div.page ul.sbOptions li {
  width: 100% !important;
  padding: 0 !important;
  background: transparent;
  list-style: none !important;
  background: none !important;
}

div#content div.page ul.sbOptions li:first-child {
  display: none;
}

div#content div.page ul.sbOptions li a {
  display: block;
  outline: none;
  padding: 6px 0 6px 20px;
  font-size: 1em;
  text-decoration: none !important;
  color: #484d53 !important;
}

body.mobile div#content div.page ul.sbOptions li a {
  font-size: 0.6em;
}

div#content div.page ul.sbOptions li:last-child a {
  border-width: 0;
}

div#content div.page ul.sbOptions li a:hover {
  text-decoration: none;
  background: #00b49c;
  color: #FFF !important;
}

div.grecaptcha-badge {
  display: none !important;
}

/*-------------------------------------------------------------------------SITE MAP
*/
/*-------------------------------------------------------------------------FOOTER
*/
#footer_container {
  display: block;
  clear: both;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f7f7f7;
  display: inline-block;
  float: left;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 828px) {
  #footer_container {
    position: static;
  }
}

@media screen and (min-width: 828px) {
  #footer_container div.mobile-footer-contact-link {
    display: none;
  }
}

@media screen and (max-width: 828px) {
  #footer_container div.mobile-footer-contact-link {
    display: inline-block;
    width: 111.11%;
    height: auto;
    background: #FFF;
    margin-left: -5.55%;
  }
  #footer_container div.mobile-footer-contact-link a {
    width: 90%;
    height: 80px;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    margin: 30px auto;
    font-size: 1.4em;
    color: #FFF;
    margin-left: 5%;
    background: #00b49c url(../images/right-arrow-white.png) no-repeat;
    -moz-background-size: 20px;
         background-size: 20px;
    background-position: right 20px center;
  }
}

#footer_container #footer {
  width: 100%;
  max-width: 1600px;
  display: block;
  margin: auto;
  padding: 0 6.25%;
}

@media screen and (max-width: 1345px) {
  #footer_container #footer {
    padding: 0 5%;
  }
}

@media screen and (max-width: 828px) {
  #footer_container #footer {
    position: relative;
  }
}

#footer_container #footer .footer-wrapper {
  width: 70%;
  display: inline-block;
  float: left;
  padding: 30px 0;
}

#footer_container #footer .footer-wrapper div {
  width: 28%;
  display: inline-block;
  float: left;
  margin-right: 2%;
}

#footer_container #footer .footer-wrapper div h2 {
  font-size: 1.4em;
  color: #00b49c;
  font-weight: 300;
  margin-bottom: 15px;
}

#footer_container #footer .footer-wrapper div#footer-contact {
  width: 40%;
}

#footer_container #footer .footer-wrapper div#footer-contact .contact-link {
  margin-bottom: 15px;
  display: block;
  font-weight: bold;
}

#footer_container #footer .footer-wrapper div#footer-contact .contact-link span {
  width: 120px;
  text-align: left;
  display: inline-block;
  font-weight: 300;
}

@media screen and (max-width: 1000px) {
  #footer_container #footer .footer-wrapper div#footer-contact .contact-link span {
    width: 80px;
  }
}

#footer_container #footer .footer-wrapper div#footer-contact a {
  color: #00b49c;
  text-decoration: underline;
}

#footer_container #footer .footer-wrapper div#footer-contact a span {
  color: #484d53;
  text-decoration: none;
}

#footer_container #footer .footer-wrapper div#footer-contact h3 {
  padding: 5px 0 5px;
  font-weight: bold;
  line-height: 1.3;
}

#footer_container #footer .footer-wrapper div#footer-contact p:not(.contact-link) {
  max-width: 200px;
  line-height: 1.4em;
}

#footer_container #footer .footer-wrapper div.lj_links a, #footer_container #footer .footer-wrapper div#footer-links-2 ul li a {
  line-height: 2em;
  padding-left: 20px;
  background: url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 10px;
       background-size: 10px;
  background-position: center left;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

#footer_container #footer .footer-wrapper div.lj_links a:hover, #footer_container #footer .footer-wrapper div#footer-links-2 ul li a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

#footer_container #footer .footer-wrapper div:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 828px) {
  #footer_container #footer .footer-wrapper {
    width: 100%;
    height: 1120px;
  }
  #footer_container #footer .footer-wrapper div#footer-links-1 {
    position: absolute;
    top: 160px;
    left: 0;
    width: 100%;
    height: auto;
    width: 100%;
    text-align: center;
  }
  #footer_container #footer .footer-wrapper div#footer-links-1 h2 {
    width: 100%;
    text-align: center;
    height: 50px;
    line-height: 50px;
    margin-bottom: 5px;
  }
  #footer_container #footer .footer-wrapper div#footer-links-1 div.lj_links {
    width: 100%;
    height: auto;
  }
  #footer_container #footer .footer-wrapper div#footer-links-1 div.lj_links a {
    height: 50px;
    line-height: 50px;
    display: block;
    padding: 0;
    background: none;
    border-top: 1px solid #d0d0d0;
    width: 90%;
    margin-left: 5%;
  }
  #footer_container #footer .footer-wrapper div#footer-links-1 div.lj_links a:last-of-type {
    border-bottom: 1px solid #d0d0d0;
  }
  #footer_container #footer .footer-wrapper div#footer-links-2 {
    position: absolute;
    top: 490px;
    left: 0;
    width: 100%;
    height: auto;
    width: 100%;
    text-align: center;
  }
  #footer_container #footer .footer-wrapper div#footer-links-2 h2 {
    width: 100%;
    text-align: center;
    height: 50px;
    line-height: 50px;
    margin-bottom: 5px;
  }
  #footer_container #footer .footer-wrapper div#footer-links-2 ul {
    width: 100%;
    height: auto;
  }
  #footer_container #footer .footer-wrapper div#footer-links-2 ul li {
    height: 50px;
    line-height: 50px;
    display: block;
    padding: 0;
    background: none;
    border-top: 1px solid #d0d0d0;
    width: 90%;
    margin-left: 5%;
  }
  #footer_container #footer .footer-wrapper div#footer-links-2 ul li a {
    background: none;
    padding: 0;
  }
  #footer_container #footer .footer-wrapper div#footer-links-2 ul li:last-of-type {
    border-bottom: 1px solid #d0d0d0;
  }
  #footer_container #footer .footer-wrapper div#footer-contact {
    position: absolute;
    top: 790px;
    left: 0;
    width: 100%;
    height: auto;
    width: 100%;
    text-align: center;
  }
  #footer_container #footer .footer-wrapper div#footer-contact a.contact-link span, #footer_container #footer .footer-wrapper div#footer-contact p.contact-link span {
    width: 75px;
  }
  #footer_container #footer .footer-wrapper div#footer-contact h2 {
    margin-bottom: 25px;
  }
  #footer_container #footer .footer-wrapper div#footer-contact h3 {
    width: 90%;
    max-width: 200px;
    margin: auto;
    padding-bottom: 5px;
    line-height: 1.3em;
    margin: auto;
  }
  #footer_container #footer .footer-wrapper div#footer-contact p:not(.contact-link) {
    width: 100%;
    max-width: 200px;
    margin: auto;
  }
}

#footer_container #footer #footer-awards {
  width: 30%;
  height: 200px;
  display: inline-block;
  background: #f7f7f7;
  float: right;
  padding: 30px 0;
}

#footer_container #footer #footer-awards h2 {
  font-size: 1.4em;
  color: #00b49c;
  font-weight: 300;
  margin-bottom: 15px;
}

#footer_container #footer #footer-awards img {
  height: 60px;
  display: inline-block;
  float: left;
  margin-right: 20px;
}

#footer_container #footer #footer-awards a:not(.award-img) {
  line-height: 2em;
  background: url(../images/right-arrow.png) no-repeat;
  -moz-background-size: 10px;
       background-size: 10px;
  background-position: center left;
  display: block;
  clear: both;
  padding: 10px 0 10px 20px;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

#footer_container #footer #footer-awards a:hover {
  color: #00b49c;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

@media screen and (max-width: 1000px) {
  #footer_container #footer #footer-awards {
    padding: 30px 0 30px 30px;
  }
}

@media screen and (max-width: 828px) {
  #footer_container #footer #footer-awards {
    position: absolute;
    top: 1040px;
    left: 0;
    width: 100%;
    height: auto;
    width: 100%;
    text-align: center;
    float: none;
    width: 100%;
    height: auto;
    padding: 0;
  }
  #footer_container #footer #footer-awards h2 {
    margin-bottom: 20px;
  }
  #footer_container #footer #footer-awards img {
    display: block;
    clear: both;
    margin: auto;
    float: none;
    width: 140px;
    height: auto;
    margin-bottom: 10px;
  }
  #footer_container #footer #footer-awards a:not(.award-img) {
    display: none;
  }
}

#footer_container #footer .copyright {
  display: inline-block;
  clear: both;
  width: 70%;
  background: #FFF;
  position: relative;
  font-size: 0.9em;
  line-height: 1.2em;
  margin-bottom: 0;
}

#footer_container #footer .copyright:before {
  position: absolute;
  top: 0;
  right: 100%;
  width: 50vw;
  height: 100%;
  content: "";
  background: #FFF;
}

#footer_container #footer .copyright:after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 50vw;
  height: 100%;
  content: "";
  background: #FFF;
}

#footer_container #footer .copyright:first-of-type, #footer_container #footer .copyright:nth-of-type(3) {
  padding-top: 30px;
}

#footer_container #footer .copyright:last-of-type, #footer_container #footer .copyright:nth-of-type(2) {
  padding-bottom: 30px;
}

#footer_container #footer .copyright:nth-of-type(4) {
  padding-bottom: 30px;
}

@media screen and (min-width: 828px) {
  #footer_container #footer .copyright.mobile-copyright {
    display: none;
  }
}

@media screen and (max-width: 828px) {
  #footer_container #footer .copyright {
    display: block;
    text-align: center;
    width: 95%;
    max-width: 500px;
    line-height: 1.4em;
    font-size: 0.7em;
    margin: auto;
  }
  #footer_container #footer .copyright:not(.mobile-copyright) {
    display: none;
  }
}

.referral{  
  width: 30%;
  height: 60px;
  display: inline-block;
  float: right;
  position: relative;
  top: -30px;
  margin-bottom: -30px;
  z-index: 400;
}

.referral a{
  width: auto;
  height: 100%;
  display: inline-block;
  float: right;
}

.referral img{
  width: auto;
  height: 100%;
  display: inline-block;
}

@media screen and (max-width: 828px) {
  .referral{ 
    width: 100vw;
    top: 0px;
    left: 5%;
    background: #FFF;
    margin-bottom: 0;
    height: 80px;
    padding-bottom: 30px;
    text-align: center;
  }

  .referral a{
    float: none;
  }
}

/*-------------------------------------------------------------------------COOKIE LAW*/
div#cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  float: left;
  width: 100%;
  padding: 5px 0;
  background: url("../images/cookies.png") left top repeat;
  color: #FFF;
  font-size: 1.1em;
  text-align: center;
  line-height: 2em;
  z-index: 9999;
}

div#cookies a {
  color: #FFF;
}

div#cookies a.accept {
  margin: 0 0 0 10px;
  padding: 5px 8px;
  background: url("../images/cookies.png") left top repeat;
  font-weight: bold;
  text-decoration: none;
}

div#cookies {
  background: #00b49c;
  font-family: "aktiv-grotesk-std",sans-serif;
  font-style: normal;
  font-weight: 200;
  color: #FFF;
  font-size: 1em;
  padding: 10px 20px;
}

@media screen and (max-width: 828px) {
  div#cookies {
    font-size: 0.9em;
  }
}

div#cookies a.accept {
  background: #017565;
}

@media screen and (max-width: 828px) {
  div#cookies a.accept {
    display: inline-block;
    width: 100%;
    margin: 0;
    margin-top: 5px;
  }
}

/*-------------------------------------------------------------------------UNSUPPORTED BROWSER*/
body#unsupported div#footer {
  display: none;
}