#nav {
  background: #27313b;
  width: 100%;
  height: 4rem;
  box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .4);
  padding: .25rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  transition: all 250ms ease
}

#nav.is-hidden {
  transform: translate3d(0, -2rem, 0);
  opacity: 0
}

#nav .nav-row {
  width: 100%;
  max-width: 1600px;
  height: calc(100% - 0.5rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap
}

#nav .logo {
  flex-basis: 150px;
  width: 150px;
  transform: translate3d(0, 2px, 0)
}

@media(min-width: 1200px) {
  #nav .logo {
      flex-basis: 200px;
      width: 200px
  }
}

#nav nav {
  background: #0a0a0a;
  background: linear-gradient(170deg, #27313b, #4b545d);
  flex-basis: 100%;
  width: 100%;
  height: calc(100% - 4rem);
  position: fixed;
  top: 0;
  left: 0;
  transition: all 250ms ease;
  transform: translate3d(0, 4rem, 0);
  overflow: hidden auto;
  z-index: 60;
  pointer-events: none;
  opacity: 0
}

#nav nav:before {
  display: none;
  content: "";
  pointer-events: none;
  background-image: url(/files/account/images/butterfly-black-and-white.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 75% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: .1
}

#nav nav .nav-phone-button {
  background: #54b948;
  background: linear-gradient(170deg, #54b948, #64d458);
  max-width: 420px;
  border-radius: .5rem;
  padding: 1rem 1.25rem 1rem 3rem;
  margin: 2rem 2rem 0 4rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  display: none
}

#nav nav .nav-phone-button:before {
  content: "";
  width: 6rem;
  height: 6rem;
  background-image: url(/files/account/images/butterfly.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(-4rem, -50%, 0)
}

#nav nav .nav-phone-button .h3 {
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  color: #fefefe
}

#nav nav .nav-phone-button .h3 .sub {
  font-weight: 500;
  color: #2a5f24;
  margin: 0;
  transform: translate3d(2px, 0, 0)
}

#nav nav>ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 1.5rem
}

#nav nav>ul>li {
  flex-basis: 100%;
  width: 100%;
  margin: 0
}

#nav nav>ul>li>a:not(.button) {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 300;
  color: #fefefe;
  padding: 1rem 2rem;
  margin: 0;
  display: block
}

#nav nav>ul>li.has-button {
  display: none
}

#nav nav>ul>li.has-submenu.is-active>ul {
  display: block
}

#nav nav>ul>li>ul {
  background: #27313b;
  border-radius: .5rem;
  padding: 1rem 0;
  margin: 1rem 2rem;
  display: none
}

#nav nav>ul>li>ul>li {
  margin: 0
}

#nav nav>ul>li>ul>li>a {
  font-size: 1rem;
  line-height: 1rem;
  color: #9ba2aa;
  padding: .5rem 1.5rem;
  margin: 0;
  display: block
}

#nav nav>ul>li>ul>li:hover>a {
  color: #fefefe
}

#nav nav>ul>li>ul>li>ul {
  background: #27313b;
  border-radius: .5rem;
  padding: 1rem 0;
  margin: 1rem 2rem;
  display: block
}

#nav nav>ul>li>ul>li>ul>li {
  margin: 0
}

#nav nav>ul>li>ul>li>ul>li>a {
  font-size: 1rem;
  line-height: 1rem;
  color: #9ba2aa;
  padding: .5rem 1.5rem;
  margin: 0;
  display: block
}

#nav nav>ul>li>ul>li>ul>li:hover>a {
  color: #fefefe
}

#nav nav.is-active {
  box-shadow: 0 1px 0 #0a0a0a inset;
  pointer-events: all;
  opacity: 1
}

#nav nav.is-active:before,
#nav nav.is-active .nav-phone-button {
  display: block
}

@media(min-width: 1024px) {
  #nav nav {
      background: transparent;
      flex-basis: auto;
      width: auto;
      height: auto;
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      overflow: visible;
      z-index: 5;
      pointer-events: all;
      opacity: 1
  }
  #nav nav>ul {
      align-items: center;
      flex-direction: row;
      padding-top: 0
  }
  #nav nav>ul>li {
      flex-basis: auto;
      width: auto;
      margin: 1.5rem 0
  }
  #nav nav>ul>li>a:not(.button) {
      font-size: .9rem;
      line-height: .9rem;
      font-weight: 400;
      padding: .5rem .8rem
  }
  #nav nav>ul>li>a:not(.button):after {
      content: "";
      background: #54b948;
      width: calc(100% - 2rem);
      height: 4px;
      border-radius: 4px;
      position: absolute;
      bottom: 0;
      left: 50%;
      z-index: -1;
      transform-origin: center;
      transform: translate3d(-50%, 0, 0) scaleX(0);
      transition: all 250ms ease;
      opacity: 0
  }
  #nav nav>ul>li:hover>a:not(.button):after {
      transform: translate3d(-50%, 0, 0) scaleX(1);
      opacity: 1
  }
  #nav nav>ul>li:hover>ul {
      pointer-events: all;
      transform: none;
      opacity: 1
  }
  #nav nav>ul>li.has-submenu>a:not(.button):after {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0
  }
  #nav nav>ul>li.has-button {
      margin: 0 auto 0 1rem !important;
      display: block
  }
  #nav nav>ul>li.has-button .button {
      font-family: "Heebo", sans-serif;
      font-weight: 500;
      padding: .9rem 1.3rem .8rem 1.3rem
  }
  #nav nav>ul>li.has-button .button svg {
      fill: #398131;
      margin: 0 auto 0 .5rem
  }
  #nav nav>ul>li>ul {
      background: #fefefe;
      width: auto;
      min-width: 100%;
      border-radius: .5rem;
      border: 6px solid #4b545d;
      border-top: none;
      box-shadow: 0 .5rem .75rem rgba(0, 0, 0, .2);
      padding: 1rem 0;
      margin: 0;
      position: absolute;
      top: 100%;
      left: 0;
      display: block;
      pointer-events: none;
      transition: all 250ms ease;
      transform-origin: center top;
      transform: translate3d(0, 1rem, 0);
      opacity: 0
  }
  #nav nav>ul>li>ul>li:before {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 9px 0 9px 9px;
      border-color: transparent transparent transparent #54b948;
      position: absolute;
      top: calc(50% - 1px);
      left: -1px;
      pointer-events: none;
      transition: all 250ms ease;
      transform-origin: left center;
      transform: translate3d(0, -50%, 0) scaleX(0);
      opacity: 0
  }
  #nav nav>ul>li>ul>li>a {
      font-weight: 500;
      color: #4b545d;
      white-space: nowrap
  }
  #nav nav>ul>li>ul>li:hover:before {
      transform: translate3d(0, -50%, 0) scaleX(1);
      opacity: 1
  }
  #nav nav>ul>li>ul>li:hover>a {
      color: #27313b;
      transform: translate3d(0.5rem, 0, 0)
  }
  #nav nav>ul>li>ul>li:hover>ul {
      pointer-events: all;
      transform: none;
      opacity: 1
  }
  #nav nav>ul>li>ul>li>ul {
      background: #fefefe;
      width: auto;
      min-width: 100%;
      border-radius: .5rem;
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
      box-shadow: 0 .5rem .75rem rgba(0, 0, 0, .2);
      padding: 1rem 0;
      margin: 0;
      position: absolute;
      top: 0;
      left: 100%;
      display: block;
      pointer-events: none;
      transition: all 250ms ease;
      transform-origin: center top;
      transform: translate3d(1rem, 0, 0);
      opacity: 0
  }
  #nav nav>ul>li>ul>li>ul>li:before {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 9px 0 9px 9px;
      border-color: transparent transparent transparent #54b948;
      position: absolute;
      top: calc(50% - 1px);
      left: -1px;
      pointer-events: none;
      transition: all 250ms ease;
      transform-origin: left center;
      transform: translate3d(0, -50%, 0) scaleX(0);
      opacity: 0
  }
  #nav nav>ul>li>ul>li>ul>li>a {
      font-size: .9rem;
      line-height: .9rem;
      font-weight: 500;
      color: #4b545d;
      white-space: nowrap
  }
  #nav nav>ul>li>ul>li>ul>li:hover:before {
      transform: translate3d(0, -50%, 0) scaleX(1);
      opacity: 1
  }
  #nav nav>ul>li>ul>li>ul>li:hover>a {
      color: #27313b;
      transform: translate3d(0.5rem, 0, 0)
  }
}

@media(min-width: 1200px) {
  #nav nav>ul>li>a:not(.button) {
      font-size: 1rem;
      line-height: 1rem
  }
}

@media(min-width: 1440px) {
  #nav nav>ul>li>a:not(.button) {
      font-size: 1.2rem;
      line-height: 1.5rem;
      padding: .5rem 1.25rem
  }
}

#nav #nav-toggle,
#nav #nav-phone {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 0;
  pointer-events: all;
  display: block;
  cursor: pointer;
  z-index: 10
}

#nav #nav-toggle {
  left: 0
}

#nav #nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0)
}

#nav #nav-toggle span,
#nav #nav-toggle span::before,
#nav #nav-toggle span::after {
  width: 2rem;
  height: 2px;
  background-color: #fefefe;
  transition: all 250ms ease;
  transform-origin: left
}

#nav #nav-toggle span::before,
#nav #nav-toggle span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0
}

#nav #nav-toggle span::before {
  transform: translate3d(0, -8px, 0) scaleX(0.75)
}

#nav #nav-toggle span::after {
  transform: translate3d(0, 8px, 0) scaleX(0.75)
}

#nav #nav-toggle.is-active span::before {
  transform: translate3d(0, -8px, 0) scaleX(1)
}

#nav #nav-toggle.is-active span::after {
  transform: translate3d(0, 8px, 0) scaleX(1)
}

#nav #nav-phone {
  right: 0
}

#nav #nav-phone svg {
  fill: #fefefe;
  width: 1.5rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0)
}

@media(min-width: 1024px) {
  #nav {
      background: transparent;
      height: auto;
      box-shadow: none;
      padding: .5rem 2rem;
      transition-delay: 250ms
  }
  #nav .nav-row {
      height: calc(100% - 1rem);
      justify-content: space-between
  }
  #nav .logo {
      transform: none
  }
  #nav #nav-toggle,
  #nav #nav-phone {
      pointer-events: none;
      display: none
  }
}

@media(min-width: 1440px) {
  #nav {
      padding: 1.5rem 2rem
  }
  #nav .nav-row {
      height: calc(100% - 3rem)
  }
}

@media(min-width: 1600px) {
  #nav {
      padding: 2rem
  }
  #nav .nav-row {
      height: calc(100% - 4rem)
  }
}

.is-scrolled #nav {
  background: #27313b;
  box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .4);
  padding: .25rem 2rem
}

#modals {
  pointer-events: none;
  opacity: 0;
  transition: all 250ms ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow: hidden
}

#modals.is-active {
  pointer-events: all;
  opacity: 1
}

#modals #modals-closer {
  background-color: #0a0a0a;
  width: 100%;
  height: 100%;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0
}

#modals .modal {
  pointer-events: none;
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: all 500ms cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: center;
  transform: translate3d(-50%, -20%, 0);
  opacity: 0;
  overflow: hidden auto
}

#modals .modal.is-active {
  pointer-events: all;
  transform: translate3d(-50%, -50%, 0);
  opacity: 1
}

#modals #modal-quote {
  background: #27313b;
  width: 80%;
  max-width: 560px;
  color: #fefefe;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .75);
  border: 8px solid #4b545d;
  border-radius: 1rem;
  padding: 2rem
}

#modals #modal-quote .h5 {
  margin-top: .5rem
}

#modals #modal-quote .h6 {
  font-family: "Heebo", sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
  letter-spacing: normal;
  padding-top: .5rem;
  margin-bottom: 0
}

#modals #modal-quote input[type=text],
#modals #modal-quote input[type=email],
#modals #modal-quote select,
#modals #modal-quote textarea {
  background: rgba(0, 0, 0, .25);
  border-bottom: 1px solid #27313b;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
  color: #fefefe
}
#modals #modal-quote select,
#modals #modal-quote select option[selected]{
  color:#9ba2aa;
}
#modals #modal-quote select option{
  background-color:#1d252c;
  color:#fefefe;
}
#modals #modal-quote select{
  height:43px;
}

header {
  background-color: #0a0a0a;
  color: #fefefe;
  padding: 6rem 0 2rem 0;
  overflow: hidden
}

@media(min-width: 1024px) {
  header {
      padding: 8rem 0 2rem 0
  }
}

@media(min-width: 1920px) {
  header {
      padding: 11rem 0 3rem 0
  }
}

header.background-image:before {
  content: "";
  background-color: #27313b;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5
}

header video {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: none;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none
}

@media(min-width: 1024px) {
  header video {
      display: block
  }
}

header #header-row {
  z-index: 2;
  transition: all 500ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: none;
  opacity: 1
}

header #header-row.homepage {
  padding-bottom: 2rem
}

@media(min-width: 1200px) {
  header #header-row.homepage {
      padding-bottom: 6rem
  }
}

header h1,
header .h1 {
  font-size: 2.5rem;
  line-height: 2.5rem
}

@media(min-width: 1024px) {
  header h1,
  header .h1 {
      font-size: 3rem;
      line-height: 3rem
  }
}

@media(min-width: 1440px) {
  header h1,
  header .h1 {
      font-size: 4rem;
      line-height: 4rem
  }
}

@media(min-width: 1600px) {
  header h1,
  header .h1 {
      font-size: 5rem;
      line-height: 5rem
  }
}

@media(min-width: 1920px) {
  header h1,
  header .h1 {
      font-size: 6rem;
      line-height: 6rem
  }
}

header h1 .sub,
header .h1 .sub {
  font-family: "Heebo", sans-serif
}

@media(min-width: 1440px) {
  header h1 .sub,
  header .h1 .sub {
      font-size: 40%
  }
}

header p {
  max-width: 720px;
  margin: 0 auto 2.5rem auto
}

header.is-hidden #header-row {
  transform: translate3d(0, 2rem, 0);
  opacity: 0
}

.form-box .form-field-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap
}

.form-box .form-field-wrapper .form-field-item {
  flex-basis: 100%;
  width: 100%;
  padding: 4px
}

.form-box .form-button {
  padding: 0 4px
}

.form-box button,
.form-box .button {
  width: 100%;
  border-width: 0px;
  border-radius: calc(0.5rem / 2);
  margin: .5rem 0;
  display: block
}

@media(min-width: 560px) {
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(1),
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(2),
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(3),
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(4),
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(9),
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(10),
  .form-careers .form-field-wrapper .form-field-item:nth-of-type(1),
  .form-careers .form-field-wrapper .form-field-item:nth-of-type(2),
  .form-careers .form-field-wrapper .form-field-item:nth-of-type(3),
  .form-careers .form-field-wrapper .form-field-item:nth-of-type(4) {
      flex-basis: 50%;
      width: 50%
  }
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(6),
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(7),
  .form-quote .form-field-wrapper .form-field-item:nth-of-type(8){
    flex-basis:33.33%;
    width:33.33%;
  }
}

.form-careers {
  width: 100%;
  max-width: 560px;
  padding: 1rem 2rem 1.5rem 2rem;
  margin: 0 auto;
  border: 1px solid #dedfe2;
  border-radius: .5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .08)
}

.list-split {
  width: calc(100% + 1rem);
  transform: translate3d(-0.5rem, 0, 0);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap
}

.list-split li {
  flex-basis: 100%;
  width: 100%;
  padding: 0 .5rem;
  margin: .5rem 0
}

@media(min-width: 560px) {
  .list-split {
      align-items: stretch;
      flex-direction: row
  }
  .list-split li {
      flex-basis: 50%;
      width: 50%
  }
}

@media(min-width: 1440px) {
  .list-split.list-third li {
      flex-basis: 33%;
      width: 33%
  }
}

@media(min-width: 1440px) {
  .list-split.list-quarter li {
      flex-basis: 25%;
      width: 25%
  }
}

.list-half,
.list-areas,
.list-full {
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin: 2rem;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap
}

.list-half li,
.list-areas li,
.list-full li {
  background: transparent;
  flex-basis: 50%;
  width: 50%;
  font-weight: 500;
  color: #4b545d;
  border-radius: 3px;
  padding: 0 1.75rem 0 .25rem;
  margin: 1rem 0 !important
}

@media(min-width: 1440px) {
  .list-areas li {
      flex-basis: 33.33%;
      width: 33.33%
  }
}

.list-full {
  padding-left: 1rem
}

.list-full li {
  flex-basis: 100%;
  width: 100%
}

.list-strong {
  list-style-type: none !important
}

.list-strong li {
  padding: 1.25rem;
  border-radius: 3px
}

.list-strong li:nth-child(even) {
  background: #f6f7fa
}

.list-strong li:nth-child(odd) {
  background: transparent
}

.list-strong li strong {
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: -1px;
  margin-bottom: .25rem
}

.list-strong li strong+p {
  margin-top: .25rem
}

.list-strong li p {
  color: #4b545d
}

.list-strong li p:last-of-type {
  margin-bottom: 0
}

.list-services .box {
  text-align: left
}

.list-services .box .icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0)
}

.list-services .box .icon svg {
  fill: #cacbcf;
  width: auto;
  height: 2.75rem;
  margin: 0 auto;
  transition: all 250ms ease
}

.list-services .box h3 {
  color: #27313b;
  letter-spacing: -1px;
  margin: 0 0 0 3rem
}

.list-services .box .link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

.list-services .box:hover .icon svg {
  fill: #4b545d
}

.list-contact {
  width: calc(100% + 2rem);
  transform: translate3d(-1rem, 0, 0)
}

.list-contact h3 {
  color: #4b545d;
  margin: 0
}

.list-contact span {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0
}

.list-downloads {
  padding-left: .5rem
}

.list-downloads li a {
  padding-left: 2rem
}

.list-downloads li a svg {
  fill: #27313b;
  width: 1.4rem;
  height: auto;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 250ms ease;
  transform-origin: center;
  transform: translate3d(0, -50%, 0);
  opacity: .6
}

.list-downloads li:hover a {
  padding-left: 2.25rem
}

.list-downloads li:hover a svg {
  fill: #db5d31;
  transform: translate3d(0, -50%, 0);
  opacity: 1
}

li.full-width {
  flex-basis: 100% !important;
  width: 100% !important
}

.global-areas-list {
  list-style-type: none;
  padding: 1.5rem 0
}

.global-areas-list li {
  padding-left: 80px;
  margin: 2.5rem 0
}

.global-areas-list li svg {
  fill: #27313b !important;
  width: 56px;
  height: auto;
  margin: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

.global-areas-list li svg path {
  fill: #27313b !important
}

.global-areas-list li strong {
  font-family: "Castoro", serif;
  font-size: 1rem;
  line-height: 1rem;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  display: block
}

.global-areas-list li span {
  font-size: 1rem;
  line-height: 1.2rem;
  margin: 0;
  display: block
}

.global-areas-list li:nth-child(1) svg {
  width: 62px
}

.global-areas-list li:nth-child(2) svg {
  width: 50px;
  left: 4px
}

.global-areas-list li:nth-child(4) svg {
  left: 5px
}

.global-areas-list li:nth-child(5) svg {
  left: 5px
}

.callout {
  background: #ebfae9;
  width: calc(100% + 4rem);
  font-size: .85rem;
  line-height: 1.3rem;
  color: #398131;
  border-top: 1px dashed #c1f5bb;
  border-bottom: 1px dashed #c1f5bb;
  padding: 1rem 2rem 1rem 84px;
  margin: 3rem 0 2rem 0;
  transform: translate3d(-2rem, 0, 0);
  overflow: hidden
}

.callout:before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url(/files/account/images/butterfly.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translate3d(0, -50%, 0);
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.16))
}

@media(min-width: 768px) {
  .callout {
      font-size: 1.15rem;
      line-height: 1.5rem;
      padding: 1rem 2rem 1rem 120px
  }
  .callout:before {
      width: 100px;
      height: 100px
  }
}

@media(min-width: 1024px) {
  .callout {
      padding: 1rem 2rem 1rem 135px
  }
  .callout:before {
      width: 115px;
      height: 115px
  }
}

@media(min-width: 1200px) {
  .callout {
      width: calc(100% + 8rem);
      font-size: 1.75rem;
      line-height: 2rem;
      padding: 1rem 2rem 1rem 155px;
      transform: translate3d(-4rem, 0, 0)
  }
  .callout:before {
      width: 135px;
      height: 135px
  }
}

.callout-sidebar {
  background: #4b545d;
  color: #fefefe;
  border-radius: calc(0.5rem / 2);
  box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, .2);
  padding: 1rem 1.5rem 0 1.5rem
}

.callout-sidebar .form-quote {
  margin-bottom: 0 !important
}

.callout-sidebar .form-quote input[type=text],
.callout-sidebar .form-quote input[type=email],
.callout-sidebar .form-quote select,
.callout-sidebar .form-quote textarea {
  background-color: #27313b;
  color: #fefefe
}

.callout-sidebar .form-quote input[type=text]::placeholder,
.callout-sidebar .form-quote input[type=email]::placeholder,
.callout-sidebar .form-quote select,
.callout-sidebar .form-quote textarea::placeholder {
  color: #9ba2aa
}

.callout-sidebar .form-quote select{
  height:44px;
}
.callout-sidebar .form-quote select option{
  color:#fefefe
}
.callout-sidebar .form-quote select option[selected]{
  color:#9ba2aa
}

.callout-sidebar .form-quote .form-button {
  width: calc(100% + 4rem);
  padding: 0;
  transform: translate3d(-2rem, 0, 0)
}

.callout-sidebar .form-quote .form-button .button {
  font-family: "Castoro", serif;
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 400;
  text-transform: none;
  border-radius: 0px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
  margin: 1.25rem 0 0 0
}

@media(min-width: 1200px) {
  .callout-sidebar .form-quote .form-button .button {
      font-size: 1.5rem;
      line-height: 1.5rem
  }
}

.callout-sidebar .form-quote .form-button:before,
.callout-sidebar .form-quote .form-button:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 100%
}

.callout-sidebar .form-quote .form-button:before {
  border-width: 0 .5rem .5rem 0;
  border-color: transparent #46a13b transparent transparent;
  left: 0
}

.callout-sidebar .form-quote .form-button:after {
  border-width: .5rem .5rem 0 0;
  border-color: #46a13b transparent transparent transparent;
  right: 0
}

.callout-sidebar .callout-phone {
  color: #fefefe;
  text-align: center;
  padding: 1.5rem 2.25rem;
  margin: 0;
  display: block
}

.callout-sidebar .callout-phone span {
  font-family: "Heebo", sans-serif;
  font-weight: 700
}

.callout-sidebar .callout-phone span .sub {
  font-family: "Castoro", serif;
  font-size: 50%;
  font-weight: 400;
  color: #cacbcf;
  margin-top: 0;
  margin-bottom: .25rem
}

.callout-sidebar-company {
  background: #fefefe;
  text-align: center;
  color: #fefefe;
  padding: 1.5rem;
  box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .08);
  border-radius: .5rem
}

.callout-sidebar-company .box-content {
  padding: 2.5rem 1rem;
  border-radius: 5px;
  overflow: hidden
}

.callout-sidebar-company .h3 {
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  margin: 0
}

.callout-sidebar-company .h3 .sub {
  font-weight: 300
}

.callout-sidebar-company .button {
  font-size: 1rem;
  line-height: 1rem;
  padding: .75rem 1rem
}

.callout-sidebar-company .box-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

.callout-sidebar-company:hover .button {
  background: #db5d31
}

.article-img {
  width: calc(100% + 4rem);
  margin: 2rem 0;
  transform: translate3d(-2rem, 0, 0)
}

.article-img>img {
  width: 100%
}

@media(min-width: 1024px) {
  .article-img {
      width: 100%;
      transform: none
  }
  .article-img>img {
      border-radius: .5rem;
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, .16)
  }
}

.article-iframe {
  width: 100%;
  max-width: 1600px;
  border: none;
  border-radius: .5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .16);
  margin: 2rem auto
}

.project-box {
  border-bottom: 1px dashed #cacbcf;
  margin: 0 0 2.5rem 0
}

.project-box .h6 {
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .25rem
}

.project-box .h6+p {
  margin-top: .25rem
}

.project-box ul {
  padding-top: 1.5rem
}

.project-box ul svg {
  fill: #54b948;
  width: 1.25rem;
  height: auto;
  margin: 0 .5rem 0 auto;
  top: 3px
}

.projects-overview {
  padding-bottom: 2rem
}

.projects-overview .projects-overview-header {
  text-align: center;
  margin-bottom: -2rem
}

@media(min-width: 1200px) {
  .projects-overview .projects-overview-header h2 {
      margin-top: 3rem
  }
}

.projects-overview .projects-overview-header p {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto
}

.projects-overview .box {
  text-align: center;
  border-radius: .5rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1)
}

.projects-overview .box .box-image {
  border-radius: .5rem;
  overflow: hidden;
  z-index: 0
}

.projects-overview .box .box-image img {
  width: 100%;
  transition: all 250ms ease;
  transform-origin: center;
  z-index: 0
}

.projects-overview .box .box-image:after {
  content: "";
  background-color: #27313b;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: .5
}

.projects-overview .box h3 {
  width: 90%;
  color: #fefefe;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  transition: all 250ms ease
}

.projects-overview .box h3 .sub {
  font-family: "Heebo", sans-serif;
  font-weight: 300;
  letter-spacing: normal
}

.projects-overview .box .box-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

.projects-overview .box:hover .box-image img {
  transform: scale(1.1)
}

.projects-overview .projects-overview-footer {
  text-align: center
}

.projects-overview .projects-overview-footer .h4 {
  letter-spacing: -1px
}

.home-services {
  background-color: #27313b;
  color: #9ba2aa;
  padding-bottom: 2rem
}

@media(min-width: 1440px) {
  .home-services {
      padding-bottom: 4rem
  }
}

.home-services h2 {
  font-family: "Heebo", sans-serif;
  font-weight: 200;
  margin-bottom: 0;
  opacity: .75
}

.home-services-grid .box {
  width: 100%;
  height: 100%;
  margin: 0 auto
}

.home-services-grid .box img {
  width: 100%;
  border-radius: 5px;
  transition: all 250ms ease;
  transform-origin: center top
}

.home-services-grid .box h3 {
  color: #fefefe;
  margin-bottom: .5rem
}

.home-services-grid .box p {
  margin-top: .5rem
}

.home-services-grid .box .box-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

.home-services-grid .box:hover img {
  transform: translate3d(0, 3px, 0)
}

.home-services-featured .box {
  width: 100%;
  height: 100%;
  color: #fefefe;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .25);
  padding: 10rem 2rem 2rem 2rem
}

.home-services-featured .box h3,
.home-services-featured .box p {
  transition: all 500ms cubic-bezier(0.76, 0, 0.24, 1)
}

.home-services-featured .box h3 {
  margin-bottom: .5rem
}

.home-services-featured .box h3+p {
  margin-top: .5rem
}

.home-services-featured .box .button {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 500ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: translate3d(-50%, -25%, 0);
  opacity: 0
}

.home-services-featured .box .box-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

@media(min-width: 1200px) {
  .home-services-featured .box {
      box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, .4);
      padding: 15rem 2rem 2rem 2rem
  }
}

@media(min-width: 1024px) {
  .home-services-featured>[class^=col-]:first-of-type .box {
      margin-right: 1rem;
      transform: translate3d(-1rem, 0, 0)
  }
  .home-services-featured>[class^=col-]:last-of-type .box {
      margin-left: 1rem;
      transform: translate3d(1rem, 0, 0)
  }
  .home-services-featured .box {
      transition: all 500ms cubic-bezier(0.76, 0, 0.24, 1)
  }
  .home-services-featured .box:hover {
      transform: none !important
  }
  .home-services-featured .box:hover h3,
  .home-services-featured .box:hover p {
      transform: translate3d(0, 2rem, 0);
      opacity: 0
  }
  .home-services-featured .box:hover .button {
      transform: translate3d(-50%, -50%, 0);
      opacity: 1
  }
}

.home-areas.background-image:before {
  background: #fefefe;
  opacity: .85
}

.home-areas img:not(.background) {
  border-radius: .5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .2)
}

@media(min-width: 1024px) {
  .home-areas img:not(.background) {
      max-width: 150%;
      transform: translate3d(-35%, 0, 0)
  }
}

@media(min-width: 1200px) {
  .home-areas img:not(.background) {
      transform: translate3d(-25%, 0, 0)
  }
}

@media(min-width: 1440px) {
  .home-areas .h1 {
      font-size: 5.75rem;
      line-height: 5.25rem
  }
  .home-areas .h1 .sub {
      font-size: 42%
  }
}

.home-about {
  color: #fefefe
}

@media(min-width: 1024px) {
  .home-about .h1 {
      font-size: 4rem;
      line-height: 4rem
  }
}

@media(min-width: 1200px) {
  .home-about .h1 {
      font-size: 5rem;
      line-height: 5rem
  }
}

@media(min-width: 1920px) {
  .home-about .h1 {
      font-size: 7rem;
      line-height: 6.5rem
  }
}

@media(min-width: 1440px) {
  .home-about {
      padding-bottom: 4rem
  }
}

.home-projects {
  background-color: #27313b;
  color: #9ba2aa
}

@media(min-width: 1440px) {
  .home-projects {
      padding-bottom: 2rem
  }
}

.home-projects h2.h1 {
  color: #fefefe
}

.home-projects .projects-overview-footer {
  margin-bottom: -6rem
}

@media(min-width: 1024px) {
  .home-projects .projects-overview-footer {
      margin-bottom: 0
  }
}

.home-projects hr.divider {
  background-color: rgba(254, 254, 254, .32);
  margin: -2rem 0 0 0
}

@media(min-width: 1024px) {
  .home-projects hr.divider {
      margin: 2rem 0 0 0
  }
}

.home-projects #project-featured .h6 {
  margin-bottom: 0
}

.home-projects #project-featured .h6+h3 {
  color: #fefefe;
  margin-top: .25rem
}

.home-projects #project-featured-image img {
  border-radius: .5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .25)
}

.home-blogroll .box {
  background: #fefefe;
  width: 100%;
  height: 100%;
  border-radius: .5rem;
  box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .08);
  padding: 1rem;
  margin: 0 auto;
  transition: all 250ms ease
}

.home-blogroll .box .box-image img {
  width: 100%;
  border-radius: .5rem
}

.home-blogroll .box h3 {
  margin-top: .75rem;
  margin-bottom: .5rem
}

.home-blogroll .box .box-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

.home-blogroll .box:hover {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08)
}

.home-blogroll a.h4 {
  margin: 2rem 0 1rem 0;
  display: block
}

@media(min-width: 1200px) {
  .home-blogroll a.h4 {
      letter-spacing: -0.15rem
  }
}

.wave-general {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none
}

.wave-general svg {
  width: 100%;
  height: auto;
  margin: 0;
  display: block
}

.wave-general.gray-darkest {
  fill: #27313b
}

.wave-general.reversed {
  transform-origin: center top;
  transform: rotate(180deg) translate3d(0, -2rem, 0)
}

footer {
  background: #27313b;
  color: #dedfe2;
  padding: 2rem 0;
  z-index: 2;
  overflow: hidden
}

footer #footer-row>svg {
  fill: #fefefe;
  width: 25rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(100%, 2%, 0);
  opacity: .06;
  z-index: 0
}

@media(min-width: 1440px) {
  footer #footer-row>svg {
      width: 50rem
  }
}

footer #footer-row .butterfly-branding {
  width: 360px;
  height: auto;
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  opacity: .1;
  z-index: 0;
  pointer-events: none
}

@media(min-width: 1440px) {
  footer #footer-row .butterfly-branding {
      width: 600px;
      bottom: -5rem;
      right: -5rem
  }
}

footer .h4,
footer .h6 {
  letter-spacing: -1px
}

footer #footer-company {
  z-index: 1
}

footer #footer-company .box {
  width: 100%;
  max-width: 480px;
  color: #dedfe2;
  padding: 1rem;
  margin: 0 auto
}

footer #footer-company .logo {
  padding: 1.5rem 1.5rem 0 1.5rem
}

footer #footer-company .logo a {
  width: 240px;
  margin: 0 auto;
  display: inline-block
}

footer #footer-company .button {
  background: transparent;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  border-width: 3px;
  border-color: #4b545d;
  box-shadow: none
}

footer #footer-company .button:hover {
  border-color: #54b948
}

footer #footer-company p em small {
  max-width: 320px;
  font-size: .9rem;
  line-height: 1rem;
  margin: 0 auto;
  display: block
}

footer #footer-menus {
  font-size: 1rem;
  line-height: 1.2rem;
  color: #9ba2aa;
  z-index: 1
}

footer #footer-menus a:hover {
  color: #54b948
}

footer #footer-menus h3 {
  color: #fefefe;
  margin-bottom: -0.5rem
}

footer #footer-menus .h6 {
  color: #fefefe
}

footer #footer-menus small {
  font-size: .725rem;
  text-transform: uppercase;
  line-height: .825rem;
  margin: 0;
  display: block
}

footer #footer-menus ul>li {
  margin: 1rem 0
}

footer #footer-menus ul>li>a {
  font-size: 1rem;
  line-height: 1.2rem;
  color: #9ba2aa;
  margin: 0;
  display: block
}

footer #footer-menus ul>li>a:hover {
  color: #fefefe
}

footer #footer-menus .form-box input[type=text],
footer #footer-menus .form-box input[type=email],
footer #footer-menus .form-box select,
footer #footer-menus .form-box textarea {
  background-color: rgba(0, 0, 0, .3);
  color: #fefefe
}

footer #footer-menus .form-box input[type=text]::placeholder,
footer #footer-menus .form-box input[type=email]::placeholder,
footer #footer-menus .form-box select::placeholder,
footer #footer-menus .form-box textarea::placeholder {
  color: #9ba2aa
}

footer #footer-menus .form-box .form-button svg {
  fill: #54b948;
  width: 1rem;
  height: auto;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(4px, -50%, 0)
}

footer #footer-menus .form-box .form-button button,
footer #footer-menus .form-box .form-button .button {
  background: transparent !important;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1rem;
  text-align: left;
  padding: .75rem 0 .75rem 1.5rem;
  box-shadow: none !important;
  transition: all 500ms cubic-bezier(0.76, 0, 0.24, 1)
}

footer #footer-menus .form-box .form-button:hover button,
footer #footer-menus .form-box .form-button:hover .button {
  padding: .75rem 0 .75rem 2rem
}

footer #footer-menus .form-box .form-field-wrapper {
  width: calc(100% + 8px);
  transform: translate3d(-4px, 0, 0)
}

@media(min-width: 560px) {
  footer #footer-menus .form-box .form-field-wrapper .form-field-item:nth-of-type(1),
  footer #footer-menus .form-box .form-field-wrapper .form-field-item:nth-of-type(2) {
      flex-basis: 50%;
      width: 50%
  }
}

footer .social a {
  padding: .5rem;
  margin: 0 auto;
  display: inline-block;
  opacity: .25
}

footer .social a svg {
  fill: #fefefe;
  width: auto;
  height: 1.5rem;
  margin: 0 auto
}

footer .social a:hover {
  opacity: 1
}

.layout-sidebar #wrapper {
  background: #f6f7fa
}

.layout-sidebar #wrapper-primary {
  background: #fefefe;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, .08)
}

.layout-sidebar #wrapper-sidebar .box {
  width: 100%;
  max-width: 560px;
  margin: 2rem auto
}

@media(min-width: 1200px) {
  .layout-sidebar #wrapper-sidebar .box {
      margin: 4rem auto
  }
}

.layout-sidebar #wrapper-sidebar .box:first-of-type {
  margin-top: 0
}

.layout-sidebar #wrapper-sidebar .menu-box {
  text-align: left
}

.layout-sidebar #wrapper-sidebar .menu-box .h4 {
  text-shadow: 0 1px 3px #cacbcf
}

.layout-sidebar #wrapper-sidebar .menu-box .icon {
  margin: 0 0 1rem 0
}

.layout-sidebar #wrapper-sidebar .menu-box .icon:before {
  content: "";
  background: #cacbcf;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, calc(-50% - 3px), 0);
  z-index: 0
}

.layout-sidebar #wrapper-sidebar .menu-box .icon:after {
  content: "";
  background-color: #f6f7fa;
  width: 2rem;
  height: 2rem;
  border-radius: 8rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  z-index: 1
}

.layout-sidebar #wrapper-sidebar .menu-box .icon svg {
  fill: #cacbcf;
  width: 1.6rem;
  height: auto;
  margin: 0 auto;
  z-index: 2
}

.layout-sidebar #wrapper-sidebar .menu-box .is-menu>li {
  font-family: "Castoro", serif
}

.layout-sidebar #wrapper-sidebar .menu-box .is-menu>li>a {
  font-size: 1.2rem;
  line-height: 1.2rem
}

.layout-sidebar #wrapper-sidebar .menu-box .is-menu>li>a.is-active {
  background: #54b948;
  color: #fefefe;
  padding: .9rem 1.7rem;
  border-radius: 20rem;
  box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .2);
  margin: 0 auto;
  display: inline-block
}

@media(min-width: 1024px) {
  .layout-sidebar #wrapper-sidebar .menu-box .is-menu>li>a.is-active {
      border-top-left-radius: 0
  }
}

.layout-sidebar #wrapper-sidebar .menu-box .is-menu>li>a.is-active:hover {
  box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .1)
}

@media(min-width: 1440px) {
  .layout-sidebar #wrapper-sidebar .menu-box .is-menu>li>a {
      font-size: 1.5rem;
      line-height: 1.5rem;
      letter-spacing: -0.1rem
  }
}

.layout-sidebar article a:not(.button) {
  font-weight: 700;
  color: #27313b;
  text-decoration: underline solid
}

.layout-sidebar article a:not(.button):hover {
  text-decoration: none
}

.layout-sidebar article h2 {
  font-size: 1.5rem;
  line-height: 1.65rem
}

.layout-sidebar article h2:first-of-type {
  margin-top: 0;
  margin-bottom: .5rem
}

.layout-sidebar article h2+h3 {
  font-size: 1.1rem;
  line-height: 1.35rem;
  color: #9ba2aa;
  margin-top: .5rem
}

@media(min-width: 1024px) {
  .layout-sidebar article h2 {
      font-size: 2rem;
      line-height: 2rem
  }
  .layout-sidebar article h2+h3 {
      font-size: 1.25rem;
      line-height: 1.5rem;
      letter-spacing: -0.05rem
  }
}

@media(min-width: 1200px) {
  .layout-sidebar article h2 {
      font-size: 3rem;
      line-height: 2.75rem
  }
  .layout-sidebar article h2+h3 {
      font-size: 1.75rem;
      line-height: 2.1rem
  }
}

.temp-gallery {
  background-color: #54b948;
  color: #fefefe;
  text-align: center;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0
}

/*# sourceMappingURL=template.css.map */