.shield {
  background-color: #202020;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
}

#nav-container {
  width: 100%;
  height: 5rem;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 750ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#nav-container:before {
  content: "";
  background-color: #0a0a0a;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 750ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.95;
}
#nav-container .nav-logo {
  width: 10rem;
  height: auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
}
#nav-container .nav-logo img {
  width: 100%;
  margin: 0;
  display: block;
}
#nav-container .nav-toggle {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 750ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate3d(0, -50%, 0);
  opacity: 1;
  cursor: pointer;
}
#nav-container .nav-toggle .icon {
  width: 2rem;
  height: auto;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#nav-container .nav-toggle .icon span {
  background-color: #fefefe;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  display: block;
  transition: all 250ms ease;
  transform-origin: left center;
  transform: scaleX(0.8);
}
#nav-container .nav-toggle .icon span:nth-child(2) {
  transform: scaleX(0.5);
}
#nav-container .nav-toggle.is-active .icon span {
  background-color: #ffe643;
  transform: scaleX(1);
}
#nav-container .nav-toggle.is-active .icon span:nth-child(2) {
  transform: scaleX(1);
}
#nav-container .nav-phone {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0;
  transition: all 750ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate3d(0, -50%, 0);
  opacity: 1;
  cursor: pointer;
}
#nav-container .nav-phone .icon {
  width: 1.8rem;
  height: auto;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  top: -3px;
}
#nav-container .nav-phone .icon svg {
  fill: #fefefe;
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  transition: all 500ms ease;
}
#nav-container .nav-phone .icon svg .fil1 {
  fill: #ffe643;
  opacity: 0;
  transition: all 250ms ease;
}
#nav-container .nav-phone:hover .icon {
  animation: tada 750ms;
}
#nav-container .nav-phone:hover .icon svg .fil1 {
  opacity: 1;
}
#nav-container .nav-primary {
  background-color: transparent;
  width: 100%;
  height: calc(100% - 5rem);
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 750ms cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: left center;
  transform: translate3d(-100%, 5rem, 0) scale(0.25);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
}
#nav-container .nav-primary .nav-primary-button {
  background-color: transparent;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fefefe;
  text-align: left;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  padding: 0.8rem 1rem 0.9rem 2rem;
  margin: 0 0 3rem 0;
  display: inline-block;
  transition: all 750ms cubic-bezier(0.76, 0, 0.24, 1) 250ms;
  transform: translate3d(-50rem, 0, 0);
  opacity: 0;
}
#nav-container .nav-primary .nav-primary-button .sub {
  color: #ffe643;
  font-size: 45%;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.05rem;
  margin-top: 1px;
  margin-bottom: 0;
}
#nav-container .nav-primary .nav-primary-button:after {
  content: "";
  background-color:#ffe643;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  transition: all 750ms cubic-bezier(0.76, 0, 0.24, 1) 500ms;
  transform-origin: left center;
  transform: translate3d(-75%, 0, 0);
}
#nav-container .nav-primary ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#nav-container .nav-primary > ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
#nav-container .nav-primary > ul > li {
  flex-basis: 100%;
  width: 100%;
  display: block;
}
#nav-container .nav-primary > ul > li > a:not(.button) {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #fefefe;
  padding: 1rem 0;
  margin: 0;
  display: block;
}
#nav-container .nav-primary > ul > li > ul {
  background-color: #202020;
  width: 100%;
  display: none;
}
#nav-container .nav-primary > ul > li > ul > li {
  margin: 0;
  display: block;
}
#nav-container .nav-primary > ul > li > ul > li > a:not(.button) {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 500;
  color: #fefefe;
  border-radius: 0.15rem;
  padding: 0.5rem 0.75rem;
  margin: 0;
  display: block;
}
#nav-container .nav-primary > ul > li > ul > li:hover > a:not(.button) {
  background-color: #ffe643;
  color: #0a0a0a;
}
#nav-container .nav-primary > ul > li > ul > li > ul {
  background-color: transparent;
  width: 100%;
  padding: 0 0 0 0.5rem;
  margin: 0 0 0 1rem;
  display: block;
}
#nav-container .nav-primary > ul > li > ul > li > ul:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-left: 1px dashed #444;
}
#nav-container .nav-primary > ul > li > ul > li > ul > li {
  margin: 0;
  display: block;
}
#nav-container .nav-primary > ul > li > ul > li > ul > li:before {
  content: "";
  width: 0.75rem;
  height: 1px;
  border-bottom: 1px dashed #444;
  position: absolute;
  top: 0.9rem;
  left: -0.5rem;
}
#nav-container .nav-primary > ul > li > ul > li > ul > li > a {
  font-size: 0.85rem;
  line-height: 0.9rem;
  font-weight: 500;
  color: #a0a0a0;
  border-radius: 0.15rem;
  padding: 0.5rem 0.75rem;
  margin: 0;
  display: block;
}
#nav-container .nav-primary > ul > li > ul > li > ul > li > a:hover {
  color: #ffe643;
}
#nav-container .nav-primary > ul > li:last-of-type {
  display: none;
}
#nav-container .nav-primary > ul > li:after {
  display: none;
}
#nav-container .nav-primary > ul > li > .icon-angle-down{
    fill:#fefefe;
    width:12px;
    height:auto;
    margin:0;
    position:absolute;
    top:0;
    right:0;
    transition:all 250ms ease;
    transform:translate3d(0,1.25rem,0);
    display:none;
}
#nav-container .nav-primary > ul > li.has-submenu > .icon-angle-down{
    display:block;
}
#nav-container .nav-primary > ul > li.has-submenu.is-active > .icon-angle-down{
    transform:translate3d(0,1.25rem,0) rotate(180deg);
}
#nav-container .nav-primary > ul > li.is-active > ul {
  display: block;
  animation: fadeIn 250ms;
}
#nav-container .nav-primary.is-active {
  transform: translate3d(0, 5rem, 0) scale(1);
  opacity: 1;
}
#nav-container .nav-primary.is-active .nav-primary-button {
  transform: translate3d(-2rem, 0, 0);
  opacity: 1;
}
#nav-container .nav-primary.is-active .nav-primary-button:after {
  transform: translate3d(0, 0, 0);
}
#nav-container .nav-primary.is-active > ul > li:after {
  transform: translate3d(0, -50%, 0);
  opacity: 0.25;
}
#nav-container .nav-primary.is-active > ul > li:hover > a:not(.button), #nav-container .nav-primary.is-active > ul > li.is-active > a:not(.button) {
  color: #ffe643;
}
#nav-container .nav-menu-split > ul:after {
  clear: both;
  display: block;
  content: "";
}
#nav-container .nav-menu-split > ul > li {
  width: 100%;
  float: left;
}

@media (min-width: 720px) {
  #nav-container .nav-logo {
    width: 12rem;
    left: 0;
    transform: translate3d(5rem, -50%, 0);
  }
}
@media (min-width: 1024px) {
  #nav-container {
    height: 7rem;
    box-shadow: none;
  }
  #nav-container:before {
    opacity: 0;
  }
  #nav-container .nav-logo {
    width: 13rem;
    top: 40%;
    transform: translate3d(2rem, -50%, 0);
  }
  #nav-container .nav-toggle {
    transform: translate3d(-5rem, -50%, 0);
    opacity: 0;
  }
  #nav-container .nav-phone {
    transform: translate3d(5rem, -50%, 0);
    opacity: 0;
  }
  #nav-container .nav-primary {
    background-color: transparent;
    width: calc(100% - 4rem);
    height: auto;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transition: none;
    transform: translate3d(-2rem, -50%, 0);
    overflow-x: visible;
    overflow-y: visible;
    opacity: 1;
  }
  #nav-container .nav-primary .nav-primary-button {
    display: none;
  }
  #nav-container .nav-primary > ul {
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  #nav-container .nav-primary > ul > li {
    flex-basis: auto;
    width: auto;
    line-height: 7rem;
    margin-left: 1rem;
  }
  #nav-container .nav-primary > ul > li:before {
    content: "";
    background-color: #ffe643;
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 200ms ease;
    transform-origin: center;
    transform: scaleX(0);
  }
  #nav-container .nav-primary > ul > li.has-submenu > .icon-angle-down{
    display:none;
  }
  #nav-container .nav-primary > ul > li > a:not(.button) {
    font-size: 0.9rem;
    line-height: 7rem;
    padding: 0;
  }
  #nav-container .nav-primary > ul > li > a.button {
    font-size: 1.5rem;
    padding: 1rem 1.25rem;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
    top: -3px;
  }
  #nav-container .nav-primary > ul > li:hover:before {
    transform: scaleX(1);
  }
  #nav-container .nav-primary > ul > li:hover > a:not(.button) {
    color: #ffe643;
  }
  #nav-container .nav-primary > ul > li:hover > ul {
    display: block;
    animation: fadeInUp 250ms;
  }
  #nav-container .nav-primary > ul > li:last-of-type {
    display: block;
  }
  #nav-container .nav-primary > ul > li:last-of-type:before {
    display: none !important;
  }
  #nav-container .nav-primary > ul > li > ul {
    width: auto;
    min-width: 100%;
    padding: 1rem;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    box-shadow: 0 0.15rem 0.3rem rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 100%;
    left: 0;
  }
  #nav-container .nav-primary > ul > li > ul > li > a {
    font-size: 1rem;
    line-height: 1rem;
    white-space: nowrap;
  }
  #nav-container .nav-primary > ul > li > ul > li > ul > li > a {
    white-space: nowrap;
  }
  #nav-container .nav-menu-split > ul {
    min-width: 420px !important;
  }
  #nav-container .nav-menu-split > ul > li {
    width: 50%;
  }

  .is-scrolled #nav-container {
    height: 5rem;
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.75);
  }
  .is-scrolled #nav-container:before {
    opacity: 0.95;
  }
  .is-scrolled #nav-container .nav-logo {
    width: 12rem;
  }
  .is-scrolled #nav-container .nav-primary > ul > li {
    line-height: 5rem;
  }
  .is-scrolled #nav-container .nav-primary > ul > li > a:not(.button) {
    font-size: 1rem;
    line-height: 5rem;
  }
  .is-scrolled #nav-container .nav-primary > ul > li > a.button {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 1200px) {
  #nav-container .nav-logo {
    width: 16rem;
    top: 47%;
  }
  #nav-container .nav-primary > ul > li {
    margin-left: 1.5rem;
  }
  #nav-container .nav-primary > ul > li > a:not(.button) {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  #nav-container .nav-logo {
    width: 21rem;
  }
  #nav-container .nav-primary > ul > li {
    margin-left: 2rem;
  }
  #nav-container .nav-primary > ul > li > a:not(.button) {
    font-size: 1.1rem;
  }
}
@media (min-width: 1600px) {
  #nav-container .nav-primary > ul > li > a:not(.button) {
    font-size: 1.25rem;
  }
}
header {
  background-color: #0a0a0a;
  color:#fefefe;
  padding: 4rem 0 2rem 0;
  border-bottom: solid 0.5rem #ffe643;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 5;
}
header h1, header .h1 {
  font-size: 2.25rem;
  line-height: 2.25rem;
  color: #fefefe;
  text-transform: uppercase;
  margin: 0;
}
header h1 .sub, header .h1 .sub {
  color: #ffe643;
}
header p {
  width: 100%;
  max-width: 640px;
  margin:1rem auto;
  display:inline-block;
}
header .header-buttons {
  margin: 1rem 0 0 0;
}
header .header-buttons .button {
  font-size: 1.1rem;
  line-height: 1.15rem;
  padding: 0.75rem 1rem;
}
header iframe {
  max-width:720px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.5);
  border-radius: 0.25rem;
  margin-top: -1rem;
  margin-bottom: -4rem;
}
header .post-tags{
  margin:0 0 1rem 0;
}
header .post-tags a{
  background-color:rgba(68,68,68,0.9);
  font-size:0.8rem;
  line-height:0.8rem;
  font-weight:500;
  color:#a0a0a0;
  text-transform:uppercase;
  border-radius:0.15rem;
  padding:0.5rem 0.75rem;
  margin:0.25rem;
  display:inline-block;
  vertical-align:top;
}
header .post-tags a:hover{
  background-color:#ffe643;
  color:#0a0a0a;
}

@media (min-width: 1024px) {
  header{
    padding:0;
    margin-top:156px!important;
      box-shadow:0 -156px 0 #0a0a0a;
  }
  header h1, header .h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.075rem;
  }
  header .header-buttons {
    margin: 2rem 0 0 0;
  }
  header iframe {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  header h1, header .h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.075rem;
  }
  header .header-buttons .button {
    font-size: 1.25rem;
    line-height: 1.25rem;
    padding: 1rem 1.25rem;
  }
}
@media (min-width: 1440px) {
  header h1, header .h1 {
    font-size: 4.5rem;
    line-height: 4rem;
  }
}
@media (min-width:1600px){
  header{
      margin-top:168px!important;
      box-shadow:0 -168px 0 #0a0a0a;
  }   
}
#header-form .box{
  background:rgba(10, 10, 10, 0.95);
  width:100%;
  max-width:500px;
  border-radius:0.75rem;
  border:10px solid #202020;
  box-shadow:0 0.5rem 2rem rgba(0, 0, 0, 0.6);
  padding:1rem;
  margin:0 auto;
}

#header-form .box .headline{
  font-family:'Barlow Condensed',sans-serif;
  font-weight:600;
  font-size:2.4rem;
  line-height:2.4rem;
  text-transform:uppercase;
  letter-spacing:normal;
}
#header-form .box .headline .sub{
  font-weight:500;
  margin:0;
  color:#ffe643;
}

#header-form .form-field-wrapper{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  flex-direction:row;
  flex-wrap:wrap;
}
#header-form .form-field-item{
  flex-basis:100%;
  width:100%;
  padding:0.25rem;
  margin:0;
}
#header-form .form-field-item:nth-child(1),
#header-form .form-field-item:nth-child(2),
#header-form .form-field-item:nth-child(3),
#header-form .form-field-item:nth-child(4){
  flex-basis:50%;
  width:50%;
}

#header-form .form-button{
  padding:1rem 0.25rem;
}
#header-form .form-button input{
  margin:0;
}

@media (min-width: 1200px) {
  #header-form .box{
    padding:1rem 2rem;
  }
}
@media (min-width: 1440px) {
  #header-form .box .headline{
    font-size:3rem;
    line-height:2.8rem;
  }
}
#main-container {
  background-color: #f4f4f4;
  color: #202020;
  overflow: hidden;
}

#main-primary {
  background-color: #fefefe;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.1);
  z-index: 1;
}
#main-primary h2 + h3 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-style: italic;
  color: #777;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
#main-primary h2 + h3:after {
  content: "";
  background-color: #ffe643;
  width: 5rem;
  height: 0.25rem;
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 0;
}
#main-primary p + h1,
#main-primary p + h2,
#main-primary p + h3,
#main-primary p + h4,
#main-primary p + h5,
#main-primary p + h6{
  margin-top:2rem;
}
#main-primary iframe {
  max-height: 275px;
}
#main-primary img{
  height:auto!important;
}
#main-primary p>img{
  margin:2rem 0;
}
#main-primary h2:not(.first-headline) {
  margin-bottom: 0;
}
#main-primary .first-headline {
  letter-spacing: -0.1rem;
  margin-bottom: 0.25rem;
}
#main-primary a:not(.button) {
  font-weight: 700;
  color: #202020;
  text-decoration: underline dotted;
}
#main-primary a:not(.button):hover {
  color: #202020;
  text-decoration: underline solid;
}
#main-primary ul li, #main-primary ol li {
  margin: 1rem 0;
}
#main-primary section iframe {
  margin-bottom: 1.5rem;
}
#main-primary .alert-box{
  padding:1rem 1.75rem;
  margin:1.5rem 0;
}

#main-sidebar {
  text-align: center;
  z-index: 0;
}
#main-sidebar .box {
  width: 100%;
  max-width: 500px;
  text-align: left;
  margin: 0;
  display: inline-block;
}
#main-sidebar .list-animated li a {
  color: #202020;
  padding-top: 0.4rem;
  padding-right: 0;
  padding-bottom: 0.4rem;
  padding-left: 0;
}
#main-sidebar .list-animated li a:before {
  border-color: transparent transparent transparent #202020;
}
#main-sidebar .list-animated li a.is-active {
  background-color: #ffe643;
  font-weight: 600;
  color: #0a0a0a;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.06), 0 -1px 0 rgba(0, 0, 0, 0.06) inset;
  padding-left: 1rem;
  margin: 0.25rem 0;
  border-radius: 0.25rem;
}
#main-sidebar .list-animated li a.is-active:before {
  transform: translate3d(0, -50%, 0);
  opacity: 1;
}
#main-sidebar .list-animated li a.is-active:hover {
  background-color: #202020;
  color: #ffe643;
  box-shadow: none;
}
#main-sidebar .list-animated li a.is-active:hover:before {
  border-color: transparent transparent transparent #ffe643;
}
#main-sidebar .list-animated li a.is-more {
  font-weight: 600;
}
#main-sidebar .list-animated li:first-of-type {
  margin-top: 0;
}
#main-sidebar ul {
  margin-bottom: 0;
}
#main-sidebar .list-animated li a.active{
  background-color:#ffe643;
  font-size:1rem;
  line-height:1.2rem;
  font-weight:700;
  color:#0a0a0a;
  text-transform:uppercase;
  border:1px solid #ebcd0e;
  padding:0.6rem 1rem 0.7rem 1rem;
  border-radius:0.2rem;
  box-shadow:0 1px 4px rgba(0, 0, 0, 0.08);
  margin:0.25rem 0;
  transform:translate3d(-0.5rem,0,0);
}
#main-sidebar .list-animated li a.active:before{
  display:none;
}

#main-sidebar-container {
  height: 100%;
}

.sidebar-header {
  color: #202020;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 1rem 0 0 0;
}
.sidebar-header .icon {
  flex-basis: 2rem;
  width: 2rem;
  height: auto;
  text-align: center;
  margin: 0 1rem 0 0;
  display: block;
}
.sidebar-header .icon svg {
  fill: rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 2rem;
  height: auto;
  max-height: 2rem;
  margin: 0;
  display: block;
  filter: drop-shadow(0 2px 1px #fefefe);
}
.sidebar-header h3 {
  flex-basis: auto;
  width: auto;
  letter-spacing: -0.025rem;
  margin: 0;
}
.sidebar-header h3 .sub {
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  opacity: 0.7;
}

.sidebar-callout{
  background-image:url(/files/account/images/pool-cage-blue-water.jpg);
  background-position:center top;
  background-repeat:no-repeat;
  background-size:cover;
  height:auto;
  text-transform:uppercase;
  padding-top:250px;
  box-shadow:0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  transition:all 250ms ease;
}
.sidebar-callout:hover{
  box-shadow:0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  transform:scale(1.02);
}
.sidebar-callout>div{
  background-color:#ffe643;
  color:#0a0a0a;
  padding:1rem 1.5rem;
  margin:0;
  transition:all 250ms ease;
}
.sidebar-callout:hover>div{
  background-color:#0a0a0a;
  color:#ffe643;
}
.sidebar-callout>div .sub{
  margin:0;
}
.sidebar-callout-link{
  width:100%;
  height:100%;
  text-decoration:none;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
}

@media (min-width: 1024px) {
  #main-primary iframe {
    max-height: 360px;
  }
}
@media (min-width: 1200px) {
  #main-primary iframe {
    max-height: 480px;
  }
}
footer {
  background-color: #202020;
  color:#fefefe;
}
footer ul li a {
  font-size: 1rem;
  font-weight: 300;
}
footer .headline {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #fefefe;
}

.footer-lists a:not(.button):not(.headline) {
  color: #a0a0a0;
}
.footer-lists a:not(.button):not(.headline):hover {
  color: #fefefe;
}
.footer-lists a.headline:hover {
  color: #ffe643;
}
.footer-lists ul li{
    margin:0 0 0.75rem 0;
}
.footer-lists ul li a{
    line-height:1rem;
}

#footer-locations {
  font-size: 1rem;
  line-height: 1.25rem;
}
#footer-locations .headline {
  margin-bottom: 0.25rem;
}
#footer-locations .headline + p {
  color: #a0a0a0;
  margin-top: 0.5rem;
}
#footer-locations a {
  font-weight: 600;
  color: #ffe643;
}

#footer-company {
  font-size: 1rem;
  line-height: 1.4rem;
}
#footer-company a:not(.button) {
  color: #a0a0a0;
}
#footer-company a:not(.button):hover {
  color: #fefefe;
}
#footer-company p {
  color: #a0a0a0;
}
#footer-company p:last-of-type {
  margin-bottom: 0;
}
#footer-company p strong {
  color: #fefefe;
}
#footer-company .logo {
  width: 90%;
  max-width: 250px;
  margin: 0 auto;
  display: inline-block;
}
#footer-company .logo img {
  width: 100%;
  margin: 0;
  display: block;
}

.footer-social{
  margin:0 0 1.25rem 0;
}
.footer-social a{
  width:2rem;
  height:2rem;
  line-height:2rem;
  text-align:center;
  margin:0 auto;
  display:inline-block;
  vertical-align:top;
}
.footer-social a:first-of-type{
  margin-left:-0.2rem;
}
.footer-social a svg{
  fill:#777;
  width:auto;
  height:1.5rem;
  margin:0 auto;
  display:inline-block;
  vertical-align:middle;
  transition:all 250ms ease;
}
.footer-social a:hover svg{
  fill:#ffe643;
}

.tape-divider {
  margin-bottom: -2rem;
  margin-top: -2rem;
  z-index: 2;
}
.tape-divider img {
  width: 100vw;
  filter: drop-shadow(0 0.5rem 1.5rem rgba(0, 0, 0, 0.5));
}

.iframe-map{
  border-radius:0.4rem;
  box-shadow:0 0.25rem 0.5rem rgba(0, 0, 0, 0.06);
}

#home-services {
  background-position: center top;
  background-size: contain;
  padding-bottom: 1rem;
}
#home-services:before {
  display: none;
}
#home-services .tiles-header {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#home-services .tiles-header h2 {
  font-size: 3rem;
  line-height: 2.8rem;
  /*color: #dadada !important;*/
}
#home-services .tiles-header h2 .sub {
  letter-spacing: 0;
  text-shadow: none;
  margin-top: 0.75rem;
}
#home-services .tiles-header h2 .sub a {
  color: #0a0a0a;
  padding: 0.25rem 0.75rem;
  margin: 0 auto;
  display: inline-block;
}
#home-services .tiles-header h2 .sub a:before {
  content: "";
  background-color: #ffe643;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#home-services .tiles-header h2 .sub a > span {
  z-index: 1;
}
#home-services .tiles-row{
  padding-bottom:2rem;
}

#remodeling-services {
  background-position: center top;
  background-size: contain;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
#remodeling-services:before {
  display: none;
}
#remodeling-services .tiles-header {
  padding-top: 0;
}
#remodeling-services .tiles-header h2 {
  /*color: #fefefe;
  text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.4);*/
  font-size: 3rem;
  line-height: 2.8rem;
}
#remodeling-services .tiles-header h2 .sub {
  letter-spacing: 0;
  text-shadow: none;
  margin-top: 0.75rem;
}
#remodeling-services .tiles-header h2 .sub a {
  color: #0a0a0a;
  padding: 0.25rem 0.75rem;
  margin: 0 auto;
  display: inline-block;
}
#remodeling-services .tiles-header h2 .sub a:before {
  content: "";
  background-color: #ffe643;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#remodeling-services .tiles-header h2 .sub a > span {
  z-index: 1;
}

#service-areas {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#service-areas .section-content:before {
  content: "";
  background-color: #202020;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
#service-areas .section-content h2 {
  color: #ffe643;
  text-transform: uppercase;
}
#service-areas .section-content h2 .sub {
  color: #fefefe;
  margin-bottom: 0;
  padding-left: 10px;
}
#service-areas .section-content h2 .sub:before {
  content: url(https://www.true-builders.com/files/concept/icon-house.png);
  width: 32px;
  height: 38px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, -6px, 0);
}
#service-areas .section-content p{
  color:#fefefe;
}
#service-areas .section-list:before {
  content: "";
  background-color: #ffe643;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}
#service-areas .section-list h3 {
  font-weight: 400;
  color: #0a0a0a;
  margin-top: 0;
  margin-bottom: 1rem;
}
#service-areas .section-list ul {
  list-style-type: none;
  margin: 0;
  display: block;
}
#service-areas .section-list ul:after {
  clear: both;
  display: block;
  content: "";
}
#service-areas .section-list ul li {
  flex-basis: 50%;
  width: 50%;
  float: left;
}
#service-areas .section-list ul li a {
  font-weight: 500;
  color: #0a0a0a;
  padding: 0.25rem 0;
}
#service-areas .section-list ul li a:before {
  border-color: transparent transparent transparent #0a0a0a;
}

#projects-and-news {
  background-color: #0a0a0a;
  background: linear-gradient(100deg, #0a0a0a, #202020);
  color:#fefefe;
}
#projects-and-news #project-container .project-image {
  width: 100%;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#projects-and-news #project-container .project-headline {
  background-color: #202020;
  padding: 1rem 1.5rem;
  margin: 0;
  display: block;
}
#projects-and-news #project-container .project-headline:before {
  content: "";
  background-color: #ffe643;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  top: -0.5rem;
  left: 0;
  transition: all 500ms ease;
  transform-origin: left center;
  transform: scaleX(1);
}
#projects-and-news #project-container .project-headline a {
  color: #ffe643;
}
#projects-and-news #project-container .project-headline h2 .sub {
  text-transform: uppercase;
  padding-left: 10px;
}
#projects-and-news #project-container .project-headline h2 .sub:before {
  content: url(/files/concept/icon-house.png);
  width: 32px;
  height: 38px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, -9px, 0);
}
#projects-and-news #project-container .project-link {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
#projects-and-news #news-container h3 {
  color: #ffe643;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2rem;
}
#projects-and-news #news-container h3 .sub {
  color: #fefefe;
  margin-bottom: 0;
}
#projects-and-news #news-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#projects-and-news #news-container ul li {
  margin: 0.5rem 0;
  display: block;
  transition: all 500ms ease;
  transform-origin: left center;
  z-index: 0;
}
#projects-and-news #news-container ul li:after {
  clear: both;
  display: block;
  content: "";
}
#projects-and-news #news-container ul li .news-image,
#projects-and-news #news-container ul li .news-headline {
  width: 100%;
  float: left;
  z-index: 0;
}
#projects-and-news #news-container ul li .news-image {
  border-radius: 0.15rem;
  display: none;
}
#projects-and-news #news-container ul li .news-headline h4 {
  transition: all 250ms ease;
}
#projects-and-news #news-container ul li .news-headline h4 .sub {
  color: #777;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: all 250ms ease;
}
#projects-and-news #news-container ul li .news-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#projects-and-news #news-container ul li:hover .news-headline h4 {
  color: #ffe643;
}
#projects-and-news #news-container ul li:hover .news-headline h4 .sub {
  color: #fefefe;
}
#projects-and-news #news-container a.h5 {
  color: #ffe643;
  margin: 1.5rem auto 0 auto;
  display: inline-block;
  transition: all 500ms ease;
}
#projects-and-news #news-container a.h5:before {
  content: url(/files/concept/icon-house.png);
  width: 32px;
  height: 38px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 500ms ease;
  transform-origin: left center;
  transform: translate3d(-0.5rem, -9px, 0);
  opacity: 0;
}
#projects-and-news #news-container a.h5:hover {
  color: #fefefe;
  padding-left: 0.75rem;
}
#projects-and-news #news-container a.h5:hover:before {
  transform: translate3d(0, -9px, 0);
  opacity: 1;
}

@media (min-width:720px){
  #home-services{
    padding-bottom:3rem;
  }
}
@media (min-width: 1024px) {
  #home-services .tiles-header{
    padding-top:6rem;
  }
  #projects-and-news #project-container .project-headline {
    width: 75%;
    margin-top: -5rem;
    transition: all 500ms ease;
    transform-origin: left center;
    transform: translate3d(6%, 0, 0);
  }
  #projects-and-news #project-container .project-headline:before {
    transform: scaleX(0.375);
  }
  #projects-and-news #project-container:hover .project-headline {
    transform: translate3d(10%, 0, 0);
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.5);
  }
  #projects-and-news #project-container:hover .project-headline:before {
    transform: scaleX(1);
  }
  #projects-and-news #news-container {
    padding-left: 4rem;
    margin-top: -1rem;
  }
  #projects-and-news #news-container ul li {
    margin: 1rem 0;
  }
  #projects-and-news #news-container ul li .news-image {
    width: 25%;
  }
  #projects-and-news #news-container ul li .news-headline {
    width: 100%;
  }
  #projects-and-news #news-container ul li .news-headline h4 {
    margin: 0;
  }
  #projects-and-news #news-container ul li:hover {
    transform: translateX(1rem) scale(1.1);
    z-index: 2;
  }
}
@media (min-width: 1200px) {
  #projects-and-news #news-container {
    margin-top: -2rem;
  }
}
@media (min-width: 1440px) {
  #projects-and-news #news-container {
    margin-top: -4rem;
  }
}
#projects {
  background-color: #202020;
  border-top: solid 0.4rem #ffe643;
  border-bottom: solid 0.4rem #ffe643;
}
#projects .section-content {
  margin-top: -2rem;
}
#projects .section-content h2 a {
  color: #ffe643;
}
#projects .section-content h2 .sub {
  text-transform: uppercase;
  padding-left: 10px;
}
#projects .section-content h2 .sub:before {
  content: url(/files/concept/icon-house.png);
  width: 32px;
  height: 38px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, -9px, 0);
}

#meet-the-owners {
  color: #202020;
  padding-top: 1rem;
}
#meet-the-owners .row, #meet-the-owners .row-xxl {
  align-items: flex-start;
}
#meet-the-owners .section-content {
  text-align: left !important;
}
#meet-the-owners img {
  max-width: 70%;
  max-width: 700px;
  height: auto;
  width: 100%;
  margin: 2rem auto 0 auto;
  display: inline-block;
}
#meet-the-owners h2 {
  text-transform: uppercase;
}
#meet-the-owners h2 .sub {
  color: #ebcd0e;
  margin-bottom: 0;
}
#meet-the-owners .section-content {
  box-shadow: 0 0 5rem rgba(0, 0, 0, 0.08);
}

/*#meet-the-owners p {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 500;
}*/
@media (min-width: 720px) {
  .tape-divider {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
}
@media (min-width: 1024px) {
  .tape-divider {
    margin-bottom: -5.75rem;
  }

  #service-areas .section-list h3 {
    margin-bottom: 2rem;
  }

  #projects {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #projects .section-content {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .tape-divider {
    margin-bottom: -6rem;
  }

  /*#meet-the-owners p {
    font-size: 1rem;
    line-height: 1.4rem;
  }*/
  #service-areas {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  #projects {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #meet-the-owners img {
    width: 45%;
    max-width: 45%;
    margin: 0;
    display: block;
    position: absolute;
    bottom: 0;
    left: 2%;
  }
  #meet-the-owners .section-content {
    box-shadow: none;
  }

  /*#meet-the-owners p {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }*/
}
@media (min-width: 1440px) {
  .tape-divider {
    margin-bottom: -7.5rem;
  }

  #service-areas {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
@media (min-width: 1600px) {
  .tape-divider {
    margin-bottom: -7.75rem;
  }

  #service-areas {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  #projects {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.list-animated {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
.list-animated li {
  flex-basis: 100%;
  width: 100%;
}
.list-animated li a {
  margin: 0;
  display: block;
}
.list-animated li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.25rem 0 0.25rem 0.25rem;
  border-color: transparent transparent transparent #ffe643;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(-0.5rem, -50%, 0);
  opacity: 0;
  transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.list-animated li:hover a {
  padding-left: 1rem !important;
}
.list-animated li:hover a:before {
  transform: translate3d(0, -50%, 0);
  opacity: 1;
}

.tiles {
  padding: 1rem 0;
}
.tiles .tile {
  background-color:#202020;
  height: 100%;
  width:100%;
  max-width:480px;
  margin:0 auto;
  display:inline-block;
  vertical-align:top;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}
.tiles .tile.bg-image:before {
  background-color: rgba(32, 32, 32, 0.9);
}
.tiles .tile:after {
  content: "";
  background-color: #ffe643;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate3d(0, -4rem, 0);
  transform-origin: center;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tiles .tile .tile-link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.tiles .tile .tile-link span {
  width: 90%;
  height: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
  line-height: 1rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, -1.5rem, 0);
  transform-origin: center top;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tiles .tile .tile-content {
  color: #fefefe;
  padding: 0 2rem;
  margin: 5rem 0 9rem 0;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}
.tiles .tile .tile-content .tile-icon {
  margin: 0;
  display: block;
}
.tiles .tile .tile-content .tile-icon svg {
  fill: #ffe643;
  width: auto;
  height: 3rem;
  margin: 0 auto;
  display: inline-block;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tiles .tile .tile-content h3 {
  margin-bottom: 0;
}
.tiles .tile .tile-content h3 + p {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 500;
  margin-top: 0.75rem;
}
.tiles .tile:hover:after {
  transform: translate3d(0, -100%, 0);
}
.tiles .tile:hover .tile-link span {
  transform: translate3d(-50%, -3rem, 0);
}
.tiles .tile:hover .tile-content {
  color: #0a0a0a;
}
.tiles .tile:hover .tile-content .tile-icon svg {
  fill: #0a0a0a;
}

.tiles-header h2 {
  font-weight: 800;
  color: #202020;
  text-transform: uppercase;
  letter-spacing: -0.075rem;
}
.tiles-header h2 .sub {
  font-size: 35%;
  letter-spacing: -0.025rem;
}
.tiles-header h2 .sub a {
  color: #ffe643;
}

@media (min-width: 720px) {
  #home-services .tiles-header {
    padding-top: 2rem;
  }
  #home-services .tiles-header h2 {
    font-size: 3.5rem;
    line-height: 3.3rem;
  }

  #remodeling-services .tiles-header {
    padding-top: 0rem;
  }
  #remodeling-services .tiles-header h2 {
    font-size: 3.5rem;
    line-height: 3.3rem;
  }
}
@media (min-width: 1024px) {
  .tiles-header h2 {
    font-size: 5rem;
    line-height: 4.5rem;
  }

  #home-services {
    background-position: center bottom;
    background-size: cover;
  }
  #home-services .tiles-header h2 {
    font-size: 5rem;
    line-height: 4.8rem;
  }

  #remodeling-services {
    background-size: cover;
  }

  #remodeling-services .tiles-header h2 {
    font-size: 5rem;
    line-height: 4.8rem;
  }

  #home-services .tiles-header, #remodeling-services .tiles-header {
    padding-top: 2rem;
  }
}
@media (min-width: 1200px) {
  .tiles {
    padding: 2rem;
  }
  .tiles .tile .tile-content .tile-icon svg {
    height: 4rem;
  }

  .tiles-header h2 {
    font-size: 6rem;
    line-height: 6rem;
    letter-spacing: -0.2rem;
  }

  #home-services .tiles-header {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  #home-services .tiles-header h2 {
    font-size: 6rem;
    line-height: 5.8rem;
  }

  #remodeling-services {
    background-size: cover;
    padding-top: 0rem;
    padding-bottom: 8rem;
  }
  #remodeling-services .tiles-header {
    padding-top: 4rem;
  }
  #remodeling-services .tiles-header h2 {
    font-size: 6rem;
    line-height: 5.8rem;
  }
}
@media (min-width: 1440px) {
  #home-services {
    padding-top: 3rem;
  }
  #home-services .tiles-header h2 {
    font-size: 7rem;
    line-height: 6.8rem;
  }

  #remodeling-services .tiles-header {
    padding-top: 6rem;
  }
  #remodeling-services .tiles-header h2 {
    font-size: 7rem;
    line-height: 6.8rem;
  }
}

#giving-back{
  background:#fefefe;
}
#giving-back h2,
#giving-back h3{
  text-transform:uppercase;
}
#giving-back h3{
  color:#ebcd0e;
}
#giving-back img{
  box-shadow:0 1rem 2rem rgba(0, 0, 0, 0.2);
}

#true-on-youtube{
    background:#222;
    color:#fefefe;
}
#true-on-youtube a{
    color:#fefefe;
    text-decoration:none;
    margin:0 1rem;
    display:inline-block;
    vertical-align:middle;
}
#true-on-youtube .youtube-logo{
    width:90%;
    max-width:200px!important;
    margin-top:0.5rem;
    margin-bottom:0.5rem;
}
#true-on-youtube .youtube-callout{
  font-size:1.5rem;
  line-height:1.6rem;
  font-weight:300;
  text-transform:uppercase;
  top:3px;
}
#true-on-youtube .youtube-callout span{
  font-weight:700;
  color:#ffe643;
}

@media (min-width:1200px){
  #true-on-youtube .youtube-logo{
    max-width:250px!important;
  }
  #true-on-youtube .youtube-callout{
    font-size:2rem;
    line-height:2.1rem;
  }
}

.footer-lists .list-animated li>a:hover{
  padding-left:0!important;
  transform:translate3d(0.75rem,0,0);
}
.footer-lists .list-animated li>a:before{
  transform:translate3d(0.5rem,-50%,0)!important;
}
.footer-lists .list-animated li>a:hover:before{
  transform:translate3d(-1rem,-50%,0)!important;
}

.footer-newsletter .headline{
  margin-top:0;
}
.footer-newsletter-form{
  width:calc(100% + 10px);
  padding-top:1.25rem;
  transform:translate3d(-5px,0,0);
}
.footer-newsletter-form .mc-field-group{
  width:100%;
  padding:5px;
  float:left;
  z-index:1;
}
.footer-newsletter-form .mc-field-group::after{
  clear:both;
  display:block;
  content:"";
}
.footer-newsletter-form .mc-field-group:nth-child(2),
.footer-newsletter-form .mc-field-group:nth-child(3){
  width:50%;
}
.footer-newsletter-form .mc-field-group>label{
  display:none!important;
}
.footer-newsletter-form .mc-sub-button{
  padding:0 5px;
  z-index:0;
}
.footer-newsletter-form .mc-sub-button input.button{
  margin:0;
  display:block;
  width:100%;
  padding:0.6rem;
  top:5px;
}
.footer-newsletter-form .mce-responses .response{
  text-align:center!important;
  padding:0.5rem 1rem!important;
}

/* UPDATED NAVIGATION: 09-02-2020 */
#mega-container{
background:#0a0a0a;
width:100%;
max-width:100%;
box-shadow:0 0 2rem rgba(0, 0, 0, 0.6);
position:fixed;
top:0;
left:0;
z-index:10;
transition:all 500ms ease;
transform-origin:top;
}
#mega-container.is-hidden{
  transform:translate3d(0,-2rem,0);
  opacity:0;
}

#mega-container .mega-row{
width:100%;
max-width:100%;
margin:0 auto;
}

@media (min-width:1024px){
#mega-container{
  box-shadow:0 0 4rem rgba(0, 0, 0, 0.75);
}
}

@media (min-width:1600px){
#mega-container .mega-row{
  max-width:1600px;
}
}

/* mega nav menu - primary */
#mega-primary{
background:#0a0a0a;
height:64px;
overflow:visible hidden;
}
#mega-primary .mega-row{
height:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding-right:1rem;
padding-left:1rem;
}

/* mega nav menu - logo */
#mega-logo{
flex-basis:150px;
width:150px;
height:auto;
text-decoration:none;
display:block;
transform:translate3d(52px,0,0);
}

#mega-logo img{
width:100%;
}

/* mega nav menu - toggle */
#mega-toggle{
width:64px;
height:64px;
position:absolute;
top:0;
left:0;
transition:all 500ms ease;
opacity:1;
cursor:pointer;
pointer-events:all;
}
#mega-toggle span,
#mega-toggle span::before,
#mega-toggle span::after{
background-color:#ffe643;
width:28px;
height:2px;
border-radius:2px;
position:absolute;
}
#mega-toggle span{
top:50%;
left:50%;
transform:translate3d(-50%,-50%,0);
}
#mega-toggle span::before,
#mega-toggle span::after{
content:"";
top:0;
left:0;
}
#mega-toggle span::before{
top:-8px;
}
#mega-toggle span::after{
top:8px;
}

/* mega nav menu - callout */
#mega-callout{
flex-basis:auto;
width:auto;
align-self:center;
}

#mega-callout-phone{
font-weight:700;
font-size:2rem;
line-height:1.9rem;
color:#ffe643;
text-transform:uppercase;
text-align:center;
display:none;
}
#mega-callout-phone .sub{
font-size:35%;
line-height:115%;
font-weight:700;
color:#fefefe;
margin:0;
}
#mega-callout-phone .sub img{
  width:50px;
  display:inline;
  margin-left:5px;
  top:-1px;
}
#mega-callout-phone .sub strong{
font-weight:700;
color:#ffe643;
}

#mega-callout-icon{
width:3rem;
height:3rem;
line-height:3rem;
text-align:center;
display:block;
transform:translate3d(8px,0,0);
}
#mega-callout-icon svg{
fill:#ffe643;
width:1.5rem;
height:auto;
margin:0 auto;
display:inline-block;
vertical-align:middle;
top:-2px;
}
#mega-callout-icon:hover svg{
animation:tada 1.5s;
}

@media (min-width:500px){
#mega-callout-phone{
  text-align:right;
  display:block;
}
#mega-callout-icon{
  display:none;
}
}

@media (min-width:1024px){
#mega-primary{
  height:100px;
}
#mega-logo{
  flex-basis:280px;
  width:280px;
  transform:none;
}
#mega-logo img{
  top:2px;
}
#mega-toggle{
  pointer-events:none;
  opacity:0;
}
#mega-callout-phone{
  font-size:2.5rem;
  line-height:2.25rem;
}
#mega-callout-phone .sub{
  font-size:30%;
  line-height:100%;
  margin-right:0.4rem;
}
#mega-callout-phone .sub img{
    width:100px;
    top:2px;
}
}

@media (min-width:1440px){
#mega-logo{
  flex-basis:420px;
  width:420px;
}
#mega-callout-phone{
  font-size:3.75rem;
  line-height:3.5rem;
}
}

/* mega nav */
#mega-nav{
background:#ffe643;
width:100%;
height:calc(100% - 64px);
position:fixed;
top:64px;
left:0;
transition:all 250ms ease;
overflow:hidden auto;
opacity:0;
pointer-events:none;
}
#mega-nav.is-active{
transform:none;
opacity:1;
pointer-events:all;
}

/* mega nav logo */
#mega-nav-logo{
width:130px;
height:auto;
position:absolute;
top:50%;
left:1rem;
display:block;
transition:all 500ms ease;
transition-delay:0s;
transform-origin:left;
transform:translate3d(0,-50%,0) scale(0.9);
opacity:0;
pointer-events:none;
}
#mega-nav-logo img{
width:100%;
top:-3px;
}

/* mega nav menu  - global list styles */
#mega-nav ul{
list-style-type:none;
padding:0;
margin:0;
}
#mega-nav ul li,
#mega-nav ul li a{
font-family:'Barlow Condensed',sans-serif;
font-weight:500;
margin:0;
display:block;
}

/* mega nav menu - all level links */
#mega-nav .is-menu>li>a,
#mega-nav .is-submenu>li>a,
#mega-nav .is-deepmenu>li>a{
padding:1rem;
}

/* has child menus */
#mega-nav .is-menu>li.has-submenu>a,
#mega-nav .is-submenu>li.has-deepmenu>a{
padding-right:2rem;
}

#mega-nav .is-menu>li.has-submenu.is-active .is-submenu,
#mega-nav .is-submenu>li.has-deepmenu.is-active .is-deepmenu{
display:block;
}

/* mega nav menu - top level */
#mega-nav .is-menu{
display:flex;
align-items:flex-start;
justify-content:flex-start;
flex-direction:column;
flex-wrap:wrap;
transition:all 500ms ease;
}
#mega-nav .is-menu>li{
flex-basis:100%;
width:100%;
}
#mega-nav .is-menu>li:first-child{
transition:all 500ms ease;
}
#mega-nav .is-menu>li>a{
font-size:1.8rem;
line-height:1.8rem;
font-weight:600;
color:#0a0a0a;
text-transform:uppercase;
}
#mega-nav .is-menu>li:hover>a,
#mega-nav .is-menu>li.is-active>a,
#mega-nav .is-menu>li.is-active:hover>a{
background:#202020;
color:#ffe643;
}

#mega-nav .is-menu>li>a.is-active{
background:transparent;
color:#0a0a0a;
}
#mega-nav .is-menu>li.has-submenu.is-active>a,
#mega-nav .is-menu>li>a.is-active:hover{
background:#202020;
color:#ffe643;
}

#mega-nav .is-menu>li>a.callout-button{
background:transparent;
color:#0a0a0a;
font-weight:700;
padding-left:3rem;
transition:all 500ms ease;
opacity:0;
overflow:hidden;
pointer-events:none;
}
#mega-nav .is-menu>li>a.callout-button svg{
fill:#0a0a0a;
width:auto;
height:1.3rem;
position:absolute;
top:50%;
left:0;
transform:translate3d(1.25rem,-50%,0);
}
#mega-nav .is-menu>li>a.callout-button:hover{
background:transparent;
color:#0a0a0a;
}

/* mega nav menu - second and third level */
#mega-nav .is-submenu,
#mega-nav .is-deepmenu{
display:none;
}

/* mega nav menu - second level */
#mega-nav .is-submenu{
background:#202020;
}
#mega-nav .is-submenu>li>a{
color:#fefefe;
padding:0.5rem 1rem;
}
#mega-nav .is-submenu>li:hover>a{
background:#ffe643;
color:#0a0a0a;
}
#mega-nav .is-submenu>li.is-active>a,
#mega-nav .is-submenu>li.is-active:hover>a{
background:#0a0a0a;
color:#ffe643;
}

/* has submenu */
#mega-nav .is-menu>li.has-submenu::after{
content:"";
width:0;
height:0;
border-style:solid;
border-width:5px 5px 0 5px;
border-color:#0a0a0a transparent transparent transparent;
position:absolute;
top:0;
right:1rem;
transition:all 250ms ease;
transform-origin:center;
transform:translate3d(0,1.7rem,0);
pointer-events:none;
}
#mega-nav .is-menu>li.has-submenu:hover::after{
border-color:#fefefe transparent transparent transparent;
}
#mega-nav .is-menu>li.has-submenu.is-active::after,
#mega-nav .is-menu>li.has-submenu.is-active:hover::after{
border-color:#fefefe transparent transparent transparent;
}

/* has deepmenu */
#mega-nav .is-submenu>li.has-deepmenu::after{
content:"";
width:0;
height:0;
border-style:solid;
border-width:5px 5px 0 5px;
border-color:#a0a0a0 transparent transparent transparent;
position:absolute;
top:0;
right:1rem;
transition:all 250ms ease;
transform-origin:left;
transform:translate3d(0,1.1rem,0);
pointer-events:none;
}
#mega-nav .is-submenu>li.has-deepmenu:hover::after{
border-color:#fefefe transparent transparent transparent;
}
#mega-nav .is-menu>li.has-deepmenu.is-active::after,
#mega-nav .is-menu>li.has-deepmenu.is-active:hover::after{
border-color:#ffe643 transparent transparent transparent;
}

/* mega nav menu - third level */
#mega-nav .is-deepmenu{
background:#0a0a0a;
border-left:none;
padding:1rem 1rem 1.4rem 1rem;
}
#mega-nav .is-deepmenu>li>a{
color:#fefefe;
padding:0.5rem 1rem;
}
#mega-nav .is-deepmenu>li:hover>a{
background:transparent;
color:#ffe643;
}
#mega-nav li.has-deepmenu>a,
#mega-nav li.has-deepmenu:hover>a{
background:transparent;
color:#fefefe;
}

/* mega nav menu - responsive */
@media (min-width:1024px){
#mega-nav{
  background:#ffe643;
  width:auto;
  height:auto;
  position:relative;
  top:auto;
  left:auto;
  overflow:visible;
  z-index:5;
  transform:none;
  opacity:1;
  pointer-events:all;
}
#mega-nav .mega-row{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
/* all lists */
#mega-nav .is-menu>li>a{
  padding:1.25rem 0.9rem;
}
#mega-nav .is-submenu,
#mega-nav .is-deepmenu{
  display:block;
  transition:all 250ms ease;
  width:auto;
  height:auto;
  box-shadow:0 0.2rem 0.75rem rgba(0, 0, 0, 0.2);
  position:absolute;
  opacity:0;
  pointer-events:none;
}
#mega-nav .is-submenu>li>a,
#mega-nav .is-deepmenu>li>a{
  font-size:1rem;
  line-height:1rem;
  padding:1rem 1.25rem;
  white-space:nowrap;
}
#mega-nav .is-menu>li:hover>.is-submenu,
#mega-nav .is-submenu>li:hover>.is-deepmenu{
  opacity:1;
  pointer-events:all;
}
/* has child menus */
#mega-nav .is-menu>li.has-submenu>a,
#mega-nav .is-submenu>li.has-deepmenu>a{
  padding-right:2.25rem;
}
/* top level */
#mega-nav .is-menu{
  flex-basis:auto;
  width:auto;
  flex-direction:row;
  flex-wrap:nowrap;
}
#mega-nav .is-menu>li{
  flex-basis:auto;
  width:auto;
}
#mega-nav .is-menu>li>a{
  font-size:1rem;
  line-height:1rem;
}
#mega-nav .is-menu>li.has-submenu::after{
  top:50%;
  transform:translate3d(0,-50%,0);
}
#mega-nav .is-menu>li:hover>a{
  background:#202020;
  color:#ffe643;
}
/* second level */
#mega-nav .is-submenu{
  min-width:100%;
  padding:1rem 0;
  top:100%;
  left:0;
}
/* third level */
#mega-nav li.has-deepmenu:hover>a{
  background:#ffe643;
  color:#0a0a0a;
}
#mega-nav .is-deepmenu{
  padding:0;
  border-left:5px solid #ffe643;
  top:0;
  left:100%;
}
#mega-nav .is-deepmenu>li:hover>a{
  background:#202020;
}
#mega-nav .is-deepmenu>li>a::before{
  content:"";
  width:0;
  height:0;
  border-style:solid;
  border-width:9px 0 9px 9px;
  border-color:transparent transparent transparent #ffe643;
  position:absolute;
  top:50%;
  left:0;
  transition:all 250ms ease;
  opacity:0;
  transform-origin:left;
  transform:translate3d(0,-50%,0) scaleX(0);
}
#mega-nav .is-deepmenu>li:hover>a::before{
  opacity:1;
  transform:translate3d(0,-50%,0) scaleX(1);
}
#mega-nav .is-submenu>li.has-deepmenu::after{
  border-width:5px 0 5px 5px;
  border-color:transparent transparent transparent #a0a0a0;
  top:50%;
  transform:translate3d(0,-50%,0);
}
#mega-nav .is-submenu>li.has-deepmenu:hover::after{
  border-color:transparent transparent transparent #0a0a0a;
}
}

@media (min-width:1200px){
#mega-nav .is-menu>li>a{
  font-size:1.1rem;
  line-height:1.1rem;
  padding:1.25rem;
}
}

@media (min-width:1440px){
#mega-nav .is-menu>li>a{
  font-size:1.25rem;
  line-height:1.25rem;
  padding:1.5rem 1.75rem;
}
#mega-nav .is-submenu>li>a,
#mega-nav .is-deepmenu>li>a{
  font-size:1.1rem;
  line-height:1.1rem;
  padding:1rem 1.75rem;
}
/* has child menus */
#mega-nav .is-menu>li.has-submenu>a,
#mega-nav .is-submenu>li.has-deepmenu>a{
  padding-right:2.75rem;
}
}

@media (min-width:1600px){
#mega-nav .mega-row{
  padding-right:1rem;
  padding-left:1rem;
}
}

/* mega nav menu - social links */
#mega-social{
flex-basis:100%;
width:100%;
height:auto;
text-align:center;
padding:1rem;
transition:all 500ms ease;
}
#mega-social a{
width:4rem;
height:4rem;
margin:0 auto;
display:inline-block;
vertical-align:top;
}
#mega-social a::before{
content:"";
background-color:#0a0a0a;
width:3rem;
height:3rem;
border-radius:20rem;
position:absolute;
top:50%;
left:50%;
transition:all 500ms cubic-bezier(0.83, 0, 0.17, 1);
transform-origin:center;
transform:translate3d(-50%,-50%,0) scale(0);
opacity:0;
}
#mega-social a svg{
fill:#0a0a0a;
width:auto;
height:1.75rem;
position:absolute;
top:50%;
left:50%;
transition:all 500ms cubic-bezier(0.83, 0, 0.17, 1);
transform:translate3d(-50%,-50%,0);
}
#mega-social a:hover::before{
transform:translate3d(-50%,-50%,0) scale(1);
opacity:1;
}
#mega-social a:hover svg{
fill:#ffe643;
}

@media (min-width:1024px){
#mega-social{
  flex-basis:auto;
  width:auto;
  text-align:right;
  height:100%;
  padding:0;
}
#mega-social a{
  width:3rem;
  height:3rem;
}
#mega-social a::before{
  width:2.25rem;
  height:2.25rem;
  border-radius:20rem;
}
#mega-social a svg{
  height:1.2rem;
}
}

@media (min-width:1600px){
#mega-social{
  transform:translate3d(0.7rem,0,0);
}
}

/* mega nav menu - phone button */
#mega-phone{
width:auto;
height:auto;
font-size:1.6rem;
font-weight:700;
color:#0a0a0a;
line-height:1.6rem;
text-decoration:none;
padding:0.5rem 0;
position:absolute;
top:45%;
right:1rem;
transition:all 500ms ease;
transform:translate3d(0,-30%,0);
opacity:0;
pointer-events:none;
}
#mega-phone svg{
fill:#0a0a0a;
width:auto;
height:1.3rem;
margin:0 8px 0 auto;
display:inline-block;
top:2px;
}
#mega-phone:hover svg{
animation:tada 1s;
}

/* mega nav menu - is-scrolled mode */
@media (min-width:1024px){
.is-scrolled #mega-container{
  transform:translate3d(0,-100px,0);
}

.is-scrolled #mega-nav-logo{
  transition-delay:250ms;
  transform:translate3d(0,-50%,0) scale(1);
  opacity:1;
  z-index:2;
  pointer-events:all;
}

.is-scrolled #mega-nav .is-menu{
  padding-left:108px;
}
.is-scrolled #mega-nav .is-menu>li:first-child{
  opacity:0;
  pointer-events:none;
}
.is-scrolled #mega-nav .is-menu>li>a.callout-button{
  opacity:1;
  pointer-events:all;
}

.is-scrolled #mega-social{
  opacity:0;
  pointer-events:none;
}

.is-scrolled #mega-phone{
  transform:translate3d(0,-50%,0);
  opacity:1;
  pointer-events:all;
}
}

@media (min-width:1440px){
.is-scrolled #mega-nav .is-menu{
  padding-left:82px;
}
}


/* job form modal */
.modal-job{
  pointer-events:none;
  opacity:0;
  width:100%;
  height:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
}

.modal-job.is-active{
  pointer-events:all;
  opacity:1;
}

.modal-job-background{
  background:rgba(0, 0, 0, 0.33);
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
}

.modal-job-form{
  width:100%;
  max-width:640px;
  height:100%;
  max-height:640px;
  background:#0a0a0a;
  box-shadow:0 0.75rem 1rem rgba(0, 0, 0, 0.2);
  padding:1.5rem;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate3d(-50%,-50%,0);
  overflow:hidden auto;
  z-index:1;
}

.modal-job-form .h3{
  text-align:center;
  color:#ebcd0e;
}

.modal-job-form .form-field-wrapper{
  display:flex;
  align-items:stretch;
  justify-content:flex-start;
  flex-flow:row wrap;
}

.modal-job-form .form-field-wrapper .form-field-item{
  flex-basis:100%;
  width:100%;
  padding:8px;
  margin:0;
}

.modal-job-form .form-button{
  padding:0 8px;
}

@media (min-width:400px){
  .modal-job-form .form-field-wrapper .form-field-item:nth-child(1),
  .modal-job-form .form-field-wrapper .form-field-item:nth-child(2),
  .modal-job-form .form-field-wrapper .form-field-item:nth-child(3),
  .modal-job-form .form-field-wrapper .form-field-item:nth-child(4){
    flex-basis:50%;
    width:50%;
  }
}