:root {
  --gold-smoke: #fffcf2;
  --gold: #bd9e5e;
  --dark-slate-gray: #6b7999;
  --dark-blue: #212838;
  --gold-lighter: #e6cfa1;
  --light-gray: #e6e2da;
  --dim-blue: #212838bf;
  --darker-gold: #a58543;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--gold-smoke);
  color: #333;
  padding-top: 80px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #c7aa8b;
  margin: 0 0 10px;
  font-size: 47px;
  font-weight: 500;
  line-height: 55px;
}

h2 {
  color: #4d4d4d;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 27px;
}

h3 {
  margin: 10px 0;
  font-size: 31px;
  font-weight: 500;
  line-height: 30px;
}

h4 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

h5 {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin: 10px 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--dark-slate-gray);
}

li {
  margin-bottom: 6px;
  font-family: Roboto, sans-serif;
}

.button {
  border: 2px solid var(--gold-smoke);
  color: var(--gold-smoke);
  text-align: center;
  text-transform: uppercase;
  background-color: #4d4d4d33;
  padding: 8px 15px;
  font-size: 16px;
  text-decoration: none;
  transition: all .1s;
  display: inline-block;
}

.button:hover {
  border-color: var(--gold-smoke);
  background-color: var(--gold-smoke);
  color: var(--dark-blue);
}

.button.beige {
  border-color: var(--gold);
  background-color: var(--gold-smoke);
  color: var(--gold);
}

.button.beige:hover {
  background-color: var(--gold);
  color: var(--dark-blue);
}

.button.beige.footer {
  border-color: var(--gold);
  background-color: var(--dark-blue);
  color: var(--gold);
  margin: 5px;
  display: block;
}

.button.beige.footer:hover {
  background-color: var(--gold);
  color: var(--dark-blue);
}

.button.form {
  background-color: var(--dark-blue);
  color: #c7aa8b;
  border-color: #323232;
  margin-top: 22px;
  margin-bottom: 23px;
}

.button.form:hover {
  color: #323232;
  background-color: #0000;
}

.button.solid {
  background-color: var(--gold);
  border-color: #c7aa8b;
}

.button.solid:hover {
  color: #c7aa8b;
  background-color: #0000;
}

.navbar {
  background-color: var(--dark-blue);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px #ffffff21;
}

.nav-link {
  border-right: 1px solid var(--gold);
  color: var(--gold-lighter);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 30px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: background-color .5s, margin .5s;
}

.nav-link:hover {
  background-color: var(--gold-smoke);
  color: var(--dark-blue);
}

.nav-link.w--current {
  background-color: var(--gold);
  box-shadow: none;
  color: var(--dark-blue);
  height: 80px;
}

.nav-link.w--current:hover {
  color: var(--dark-blue);
}

.nav-link.social-icons {
  float: right;
  border-left: 1px solid var(--gold);
  opacity: .8;
  align-items: center;
  height: 80px;
  padding: 18px 22px 22px;
  display: flex;
}

.nav-link.social-icons:hover {
  background-color: var(--light-gray);
  opacity: 1;
}

.nav-link.social-icons.last {
  border-left-style: none;
}

.logo-text {
  float: left;
  color: #ededed;
  text-transform: uppercase;
  margin-top: 3px;
  margin-right: 31px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.nav-menu {
  float: left;
  border-left: 1px solid var(--gold);
}

.footer-logo {
  float: left;
  opacity: .9;
  margin-bottom: 10px;
  margin-right: 8px;
}

.footer-logo.footer {
  opacity: 1;
  display: block;
}

.brand {
  border-right: 1px none var(--gold);
  padding-top: 17px;
}

.brand.w--current {
  border-right: 1px solid var(--gold);
}

.section {
  color: #4d4d4d;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.grey {
  background-color: var(--gold-lighter);
  color: #fff;
  padding-top: 55px;
  padding-bottom: 55px;
}

.section.beige {
  background-color: var(--gold);
  display: none;
}

.section.image {
  background-color: var(--dark-blue);
  background-image: none;
  background-size: auto;
  background-attachment: scroll;
  padding-top: 127px;
  padding-bottom: 127px;
}

.section.lightgrey {
  background-color: var(--light-gray);
}

.section.footer {
  background-color: var(--dark-blue);
  object-fit: fill;
  padding-top: 65px;
  padding-bottom: 53px;
}

.main-heading {
  color: var(--gold-smoke);
  text-transform: uppercase;
  margin-top: 0;
  font-family: Roboto Condensed, sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 300;
  line-height: 50px;
}

.main-heading.bold {
  font-weight: 700;
  position: relative;
}

.slider-nav {
  font-size: 9px;
  line-height: 10px;
}

.main-subheading {
  color: var(--light-gray);
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 44px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
}

.horizontal-bar {
  background-color: #fff;
  width: 60px;
  height: 2px;
  display: inline-block;
}

.horizontal-bar.beige {
  background-color: var(--gold);
  display: inline-block;
}

.horizontal-bar.lightgrey {
  background-color: var(--gold);
}

.slider {
  background-color: #0000;
  height: 730px;
}

.slide {
  background-image: linear-gradient(to bottom, var(--dim-blue), var(--dim-blue)), url('../images/cody-silver-QHFmLbh3PYg-unsplash-downtown-charleston-copy.jpg');
  text-align: center;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.slide._2 {
  background-image: linear-gradient(to bottom, var(--dim-blue), var(--dim-blue)), url('../images/hayes-potter-AcA0KmPaifE-unsplash-charleston-courthouse-copy.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slide._3 {
  background-image: linear-gradient(to bottom, var(--dim-blue), var(--dim-blue)), url('../images/scott-graham-OQMZwNd3ThU-unsplash-signing-documents-copy.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.process-titles {
  border-top: 1px solid var(--gold-lighter);
  color: var(--dark-blue);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 23px;
  padding-top: 23px;
  font-size: 21px;
}

.icon-wrapper {
  text-align: center;
  height: 76px;
  margin-bottom: 24px;
}

.pre-heading {
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2px;
  padding-top: 0;
  font-size: 18px;
  line-height: 22px;
}

.testimonials-slider {
  background-color: #0000;
  height: auto;
  padding-left: 47px;
  padding-right: 47px;
  display: flex;
}

.testimonial-slide {
  text-align: center;
  width: 50%;
  padding: 24px 30px;
}

.left-arrow {
  color: #d1d1d1;
  width: 45px;
}

.left-arrow:hover {
  color: #c7aa8b;
}

.right-arrow {
  color: #d1d1d1;
  width: 45px;
  transition: all .2s;
}

.right-arrow:hover {
  color: #c7aa8b;
}

.testimonial {
  color: var(--dark-blue);
  margin-bottom: 18px;
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-style: italic;
}

.small-title {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 26px;
  line-height: 30px;
}

.small-title-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.author {
  color: var(--gold);
  text-transform: uppercase;
}

.footer-text {
  color: var(--light-gray);
  margin-top: 3px;
}

.footer-text.address, .footer-text.address-copy {
  color: var(--light-gray);
  text-align: right;
}

.footer-text.disclaimer {
  color: var(--light-gray);
  text-align: left;
}

.subheading {
  color: var(--darker-gold);
  margin-top: 19px;
  margin-bottom: 10px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}

.contact-form-column {
  background-color: #bd9e5e;
  padding: 74px 33px;
}

.contact-info-column {
  text-align: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.field {
  color: #323232;
  text-transform: uppercase;
  border: 0 solid #000;
  height: 52px;
  margin-bottom: 14px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 18px;
}

.field:hover {
  background-color: #fffc;
}

.field:focus {
  box-shadow: inset 0 0 #0000;
}

.success {
  border: 3px solid var(--dark-blue);
  color: #323232;
  text-align: center;
  background-color: #0000;
  padding-top: 35px;
  padding-bottom: 43px;
  font-size: 23px;
  font-weight: 500;
}

.success-message {
  color: var(--dark-blue);
  margin-bottom: 73px;
}

.contact-icon {
  margin-top: 31px;
  margin-bottom: 10px;
}

.project-description {
  color: var(--dark-blue);
  margin-bottom: 11px;
}

.project-title {
  color: var(--dark-blue);
  margin-bottom: 20px;
  line-height: 30px;
}

.tag-wrapper {
  margin-bottom: 19px;
}

.tag-icon {
  float: left;
  opacity: .19;
  margin-top: 4px;
  margin-right: 5px;
}

.tag-title {
  float: left;
  color: var(--dark-blue);
  margin-right: 16px;
  font-size: 14px;
}

.back-to-work-column {
  text-align: right;
  padding-top: 32px;
}

.prev-project-wrapper {
  text-align: right;
  border-right: 3px solid #4d4d4d;
  padding-right: 30px;
}

.nex-project-wrapper {
  padding-left: 30px;
}

.project-link {
  text-decoration: none;
}

.project-link:hover {
  color: #323232;
  text-decoration: underline;
}

.name {
  color: var(--gold);
  margin-top: 11px;
  font-size: 26px;
  line-height: 26px;
}

.social-icon {
  opacity: .26;
  color: var(--gold);
  padding-right: 10px;
  transition: all .2s;
}

.social-icon:hover {
  opacity: 1;
}

.position {
  color: var(--dark-slate-gray);
  margin-bottom: 8px;
  font-family: Vollkorn, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 22px;
}

.icons-wrapper {
  margin-bottom: 11px;
}

.paragraph {
  color: var(--dark-blue);
}

.heading {
  color: var(--gold);
}

.icon {
  color: var(--gold-lighter);
}

.icon:hover {
  color: var(--gold);
}

.body {
  background-color: var(--gold-smoke);
}

.icon-2 {
  color: var(--gold-lighter);
}

.icon-2:hover, .image-2 {
  color: var(--gold);
}

.heading-2 {
  color: var(--dark-blue);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.text-block, .heading-3 {
  color: var(--dark-blue);
}

.link {
  text-decoration: none;
}

.heading-4, .heading-5, .heading-6 {
  color: var(--dark-blue);
}

.page-title {
  color: var(--dark-blue);
  letter-spacing: -1px;
  text-transform: uppercase;
  font-weight: 700;
}

.slider-logo {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container, .container-2, .container-3 {
  margin-bottom: 20px;
}

.container-4 {
  text-align: center;
}

.tag-div {
  color: var(--dark-blue);
  display: block;
}

.image-3 {
  width: 30px;
  height: 30px;
}

.image-4 {
  width: 30px;
  height: 30px;
  max-height: 80px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.heading-7, .text-block-2, .heading-8 {
  color: var(--gold);
}

.utility-page-image {
  margin-bottom: 40px;
}

.footer-logo-box {
  color: var(--light-gray);
  height: 130px;
  margin-top: 3px;
}

.footer-logo-box.address {
  color: var(--light-gray);
  text-align: right;
}

.column {
  flex-direction: column;
  padding: 20px;
  display: flex;
}

.columns {
  align-items: center;
  display: flex;
}

.columns.top-justified {
  align-items: flex-start;
}

.credentials {
  color: var(--gold);
  margin-top: 19px;
  margin-bottom: 10px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}

.div-block, .bio-photo {
  margin-bottom: 20px;
}

.footer-link {
  margin-bottom: 10px;
}

.text-span {
  font-weight: 500;
}

.list, .list-2 {
  padding-left: 15px;
}

.white-paragraph-text {
  color: var(--light-gray);
}

.testimonials-section {
  color: #4d4d4d;
  padding-top: 80px;
  padding-bottom: 80px;
}

.testimonials-section.grey {
  background-color: var(--gold-lighter);
  color: #fff;
  padding-top: 55px;
  padding-bottom: 55px;
}

.testimonials-section.beige {
  background-color: var(--gold);
  display: none;
}

.testimonials-section.image {
  background-color: var(--dark-blue);
  background-image: none;
  background-size: auto;
  background-attachment: scroll;
  padding-top: 127px;
  padding-bottom: 127px;
}

.testimonials-section.lightgrey {
  background-color: var(--light-gray);
  display: none;
}

.testimonials-section.footer {
  background-color: var(--dark-blue);
  object-fit: fill;
  padding-top: 65px;
  padding-bottom: 53px;
}

.form-block {
  display: none;
}

@media screen and (max-width: 991px) {
  body {
    padding-top: 57px;
  }

  .nav-link {
    border-top: 1px solid #4d4d4d;
    border-right-style: none;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .nav-link.social-icons {
    border-right-color: #4d4d4d;
    padding-left: 21px;
    padding-right: 21px;
  }

  .nav-menu {
    background-color: #323232;
    box-shadow: inset 0 -1px #ffffff21, 0 7px 13px -4px #00000073;
  }

  .menu-icon {
    color: #fff;
    line-height: 21px;
  }

  .section.footer {
    padding-top: 40px;
  }

  .menu-button {
    opacity: .8;
  }

  .menu-button.w--open {
    opacity: 1;
    background-color: #000;
  }

  .main-heading {
    margin-bottom: 4px;
    font-size: 68px;
  }

  .slider {
    height: 630px;
  }

  .testimonial-slide {
    width: 100%;
    padding-left: 92px;
    padding-right: 92px;
  }

  .left-arrow {
    margin-left: 0;
  }

  .right-arrow {
    margin-right: 0;
  }

  .footer-text.address, .footer-text.address-copy, .footer-text.disclaimer {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .contact-info-column {
    margin-bottom: 40px;
  }

  .slider-logo {
    height: 200px;
  }

  .footer-logo-box {
    height: 100px;
  }

  .columns {
    flex-direction: column;
  }

  .testimonials-section.footer {
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 0;
  }

  .button.beige.footer {
    margin-top: 17px;
    margin-bottom: 8px;
  }

  .button.solid {
    background-color: var(--gold);
  }

  .navbar {
    position: relative;
  }

  .footer-logo.footer {
    float: none;
  }

  .brand {
    flex: 1;
  }

  .menu-icon {
    color: var(--gold);
    font-size: 45px;
    line-height: 45px;
  }

  .section {
    padding: 34px 10px;
  }

  .section.grey {
    text-align: center;
    padding: 35px 20px;
  }

  .section.image {
    background-attachment: scroll;
    padding: 61px 40px;
  }

  .section.footer {
    text-align: center;
    padding: 32px 20px;
  }

  .main-heading {
    font-size: 50px;
    line-height: 44px;
  }

  .slider {
    height: 590px;
  }

  .slide {
    padding: 50px 10px;
  }

  .icon-wrapper {
    height: 102px;
  }

  .pre-heading {
    text-align: left;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .testimonials-slider {
    padding-left: 19px;
    padding-right: 19px;
  }

  .testimonial-slide {
    padding-left: 34px;
    padding-right: 34px;
  }

  .small-title {
    font-size: 32px;
    line-height: 32px;
  }

  .footer-text.address, .footer-text.address-copy, .footer-text.disclaimer {
    text-align: center;
  }

  .contact-form-column {
    margin-top: 35px;
    padding: 43px 20px;
  }

  .contact-info-column {
    text-align: center;
    padding-top: 42px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-text {
    text-align: center;
  }

  .project-description, .project-title {
    text-align: left;
  }

  .back-to-work-column {
    text-align: center;
    padding-top: 12px;
  }

  .name {
    color: var(--gold);
    font-size: 36px;
    line-height: 36px;
  }

  .position {
    color: var(--dark-slate-gray);
    font-size: 20px;
    line-height: 25px;
  }

  .icons-wrapper {
    margin-bottom: 23px;
  }

  .project-column {
    margin-bottom: 40px;
    padding-top: 23px;
  }

  .heading {
    font-size: 40px;
    line-height: 50px;
  }

  .slider-logo {
    height: 170px;
  }

  .footer-logo-box {
    justify-content: center;
    height: 150px;
    display: flex;
  }

  .footer-logo-box.address {
    text-align: center;
  }

  .column {
    flex: 0 auto;
  }

  .container-5 {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .form-2, .container-6 {
    text-align: center;
  }

  .team-column {
    text-align: center;
    margin-bottom: 40px;
  }

  .button-block {
    text-align: center;
  }

  .testimonials-section {
    padding: 34px 10px;
  }

  .testimonials-section.grey {
    text-align: center;
    padding: 35px 20px;
  }

  .testimonials-section.image {
    background-attachment: scroll;
    padding: 61px 40px;
  }

  .testimonials-section.footer {
    text-align: center;
    padding: 32px 20px;
  }
}

@media screen and (max-width: 479px) {
  .brand {
    flex: 1;
  }

  .menu-icon {
    color: var(--gold);
  }

  .menu-button {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 40px;
    display: block;
  }

  .main-heading {
    width: 100%;
    font-size: 30px;
    line-height: 24px;
  }

  .main-subheading {
    font-size: 13px;
  }

  .slider {
    height: 500px;
  }

  .slide {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-form-column, .contact-info-column {
    text-align: center;
  }

  .slider-logo, .footer-logo-box {
    height: 120px;
  }

  .column {
    flex-direction: column;
    display: flex;
  }

  .container-5 {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .footer-links {
    text-align: center;
  }

  .footer-link {
    flex: 1;
  }

  .link-3 {
    display: flex;
  }
}


