:root {
  --off-black: #221f1f;
  --white: white;
  --light-grey: #8b8b8c;
  --light-grey-2: #d5d5d5;
  --dim-grey: #5e5e61;
  --dark-grey: #969696;
  --grey: #787882;
  --blue-grey: #dadada;
}

body {
  color: var(--off-black);
  font-family: Poppins, sans-serif;
  font-size: 1vw;
  line-height: 1.6;
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 4.5em;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-top: 1.5em;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

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

.xtreme-menu {
  background-color: var(--white);
  width: 100%;
  height: auto;
  position: fixed;
}

.header-link {
  color: var(--off-black);
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: 1em 1.3em;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  transition: color .3s;
  display: inline-block;
}

.header-link:hover {
  color: var(--light-grey);
}

.header-link.w--current {
  color: var(--light-grey-2);
}

.header-link.is--dropdown {
  align-items: center;
  display: flex;
}

.work-with-us {
  background-color: var(--off-black);
  width: 157px;
  color: var(--white);
  letter-spacing: .7px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.work-with-us:hover {
  background-color: #3e3e42;
}

.work-with-us.w--current {
  color: var(--white);
}

.work-with-us.alt {
  border: 2px solid var(--off-black);
  width: 325px;
  height: 55px;
  color: var(--off-black);
  background-color: #221f1f00;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.work-with-us.alt:hover {
  border-color: var(--off-black);
  background-color: var(--off-black);
  color: var(--white);
}

.work-with-us.alt.small-text {
  font-size: 13px;
}

.work-with-us.alt._40leftmargin {
  text-align: center;
  width: 325px;
  margin-left: 40px;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.work-with-us.alt._40leftmargin.white-outline {
  border-color: var(--white);
  color: var(--white);
}

.work-with-us.alt._40leftmargin.contact {
  width: 250px;
  margin-top: 20px;
  margin-left: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.work-with-us.alt._20topmargin {
  margin-top: 20px;
}

.work-with-us.small-text {
  text-align: center;
  font-size: 13px;
}

.center-button-div {
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-color {
  z-index: -1;
  background-color: var(--light-grey-2);
  width: 40%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.process-div {
  justify-content: center;
  align-items: stretch;
  width: 90%;
  max-width: 1200px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.let-s-chat {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.let-s-chat._60-width {
  width: 60%;
}

.text-w-heading {
  margin-top: 30px;
  padding-left: 0;
  padding-right: 0;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}

.cta-button {
  background-color: var(--white);
  width: 200px;
  height: 55px;
  min-height: 50px;
  color: var(--off-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.cta-button:hover {
  color: var(--white);
  background-color: #221f1f;
}

.cta-button._40topmargin {
  margin-top: 40px;
}

.cta-button.white {
  color: var(--white);
  letter-spacing: 1px;
  background-color: #0000;
  border: 1px solid #fff;
  padding-left: 13px;
  padding-right: 13px;
  line-height: 1;
}

.cta-button.white:hover {
  background-color: var(--white);
  color: var(--off-black);
}

.cta-button._20rightmargin {
  margin-right: 20px;
}

.cta-button.black {
  background-color: var(--off-black);
  color: var(--white);
}

.cta-button.black:hover {
  background-color: var(--dim-grey);
}

.cta-button._2:hover {
  border: 2px solid var(--white);
  background-color: #0000;
}

.h1-heading {
  letter-spacing: .5px;
  font-family: Poppins, sans-serif;
  font-size: 45px;
  font-weight: 600;
}

.h1-heading.black-text {
  color: var(--off-black);
}

.h1-heading._650width {
  width: 650px;
}

.h1-heading._850px-width {
  width: 850px;
}

.hero-container {
  background-color: #0000;
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-container._1300px {
  max-width: 1300px;
}

.hero-container.cta {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-container.contact {
  justify-content: space-between;
  width: 100%;
  max-width: none;
  padding-top: 140px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.section {
  padding: 100px 40px;
  position: relative;
}

.section.homepage {
  background-color: #969696;
  min-height: auto;
  padding-top: 220px;
  padding-bottom: 140px;
}

.section.homepage.about {
  background-color: #96969600;
  min-height: 80vh;
  padding-top: 220px;
}

.section.past-projects {
  min-height: 50vh;
  padding: 100px 0 0;
}

.section.cta {
  background-color: var(--off-black);
  opacity: 1;
  min-height: auto;
  color: var(--white);
  justify-content: center;
  align-items: center;
}

.section.custom-fits {
  min-height: auto;
  padding: 0;
}

.section.cta {
  background-color: var(--off-black);
  min-height: auto;
  padding-top: 100px;
}

.section.black-cta {
  background-color: var(--off-black);
  min-height: auto;
  color: var(--white);
}

.section.coming-soon {
  background-color: #221f1fcc;
  height: 100vh;
  padding: 0;
}

.section.auto {
  min-height: auto;
}

.section._40-margin._70-padding {
  padding-left: 0;
}

.section._40-margin._70-padding-2 {
  padding-right: 0;
}

.section.bg {
  background-color: var(--off-black);
}

.section.no-padding {
  padding: 0;
}

.section.no-padding.map-height {
  min-height: 600px;
}

.section.padding {
  padding: 0;
}

.section._0-right-padding.about-team {
  padding-top: 100px;
}

.section.footer {
  background-color: var(--off-black);
  padding: 6em 5em 5em;
  font-size: 80%;
}

.section.black {
  background-color: var(--off-black);
  padding-top: 100px;
}

.section.about, .section.home {
  padding-top: 100px;
}

.tab {
  background-color: #0000;
  transition: all .3s;
}

.tab.w--current {
  background-color: #0000;
  border: 1px #8b8b8c;
  border-bottom: 2px solid #8b8b8c;
}

.project-photo-slider-container {
  background-color: #0000;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 40px;
  display: flex;
}

.project-photo-slider-container.hidden {
  display: none;
}

.icon-paragraph {
  margin-top: 10px;
  font-weight: 500;
  line-height: 1;
}

.project-content-wrapper {
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-images {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 450px;
}

.h3 {
  color: var(--light-grey);
  letter-spacing: 1.25px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
}

.h3._10topmargin {
  width: 80%;
  margin-top: 20px;
  line-height: 1.3;
}

.h3.black-text {
  color: var(--dim-grey);
  text-align: center;
  font-weight: 600;
}

.h3.white {
  color: var(--white);
}

.project-tabs-container {
  margin-top: 40px;
}

.icon-box-2 {
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.icons {
  background-color: #0000;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.icons.steel {
  background-image: url('../images/Steel.svg');
  background-position: 0 0;
  background-size: cover;
}

.icons.canopy {
  background-image: url('../images/Canopy.svg');
  background-position: 0 0;
  background-size: cover;
}

.icons.architecture {
  background-image: url('../images/Architectural.svg');
  background-position: 0 0;
  background-size: cover;
}

.icons.stairway {
  background-image: url('../images/Stairs.svg');
  background-position: 0 0;
  background-size: cover;
}

.paragraph {
  text-align: left;
  letter-spacing: .5px;
  margin-top: 20px;
  margin-bottom: 0;
}

.paragraph._650width {
  width: 100%;
}

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

.paragraph.white-text._20bottommargin {
  margin-bottom: 20px;
}

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

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

.paragraph.footer {
  color: var(--white);
}

.paragraph._40-margin {
  margin-top: 40px;
}

.project-wrapper {
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.project-panes {
  width: 100%;
  height: 100%;
}

.left-box._50 {
  background-color: #969696;
  width: 50%;
}

.left-box._50.no-bg {
  background-color: #0000;
  align-self: center;
}

.left-box._50._700px-height {
  height: 700px;
}

.left-box._50._700px-height.contact {
  background-image: url('../images/Wilson66-1000.jpg');
  background-position: 50%;
  background-size: cover;
  height: 1000px;
}

.right-box._50 {
  width: 50%;
  padding-left: 60px;
}

.right-box._50.about-us {
  align-self: center;
  padding-left: 40px;
}

.right-box._50._40padding {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 60px;
  padding-right: 40px;
  display: flex;
}

.right-box._50._40padding.contact {
  padding-left: 60px;
}

.t04_star {
  width: 16px;
  margin-right: 6px;
}

.t-right-arrow {
  background-color: #fff;
  border: 1px solid #ebecf0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  top: 115%;
  left: -76%;
}

.t-left-arrow {
  background-color: #fff;
  border: 1px solid #ebecf0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  display: flex;
  top: 115%;
  left: 20px;
}

.testimonials-slider {
  background-color: #0000;
  height: 100%;
}

.t-author-wrap {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
  display: flex;
}

.testimonials-div {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  margin: 55px auto;
  display: block;
}

.t04_slider_arrow {
  width: 8px;
}

.t-name {
  color: #33334f;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.t-paragraph {
  color: #4e5d78;
  margin-bottom: 30px;
}

.heading-container.center-flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-container.center-flex._75-padding {
  align-items: center;
  margin-bottom: 75px;
}

.testimonials-container {
  margin-top: 40px;
}

.testimonials-slide {
  background-color: #0000;
  width: 50%;
  padding: 20px;
}

.testimonials-slide._60 {
  width: 60%;
}

.testimonials-slide._40 {
  width: 40%;
}

.t-slider-nav {
  opacity: .05;
  padding-left: 15px;
  display: none;
  bottom: -68px;
  left: 0;
}

.testimonials-mask {
  overflow: hidden;
}

.testimonials-block {
  background-color: #fff;
  border: 1px solid #ebecf0;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 350px;
  padding: 25px 50px 20px 20px;
  display: flex;
  position: relative;
}

.testimonials-block.center {
  align-items: center;
}

.testimonials-block.center.no-outline {
  border-style: none;
}

.button-container {
  margin-top: 40px;
  display: flex;
}

.button-container.center {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.button-container._40bottommmargin {
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 40px;
}

._650width {
  width: 550px;
}

.h3-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.h3-heading._800width {
  width: 800px;
}

.h3-heading._800width.normal-font {
  font-weight: 400;
}

.big-text {
  color: #fff;
  letter-spacing: 1px;
  font-size: 50px;
  font-weight: 600;
}

.standard-field-input {
  border: 1px solid #969696;
  height: 55px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.standard-field-input::placeholder {
  color: #5e5e61;
  letter-spacing: 1px;
  white-space: normal;
  font-size: 16px;
  line-height: 1;
}

.standard-field-input._40topmargin {
  margin-top: 40px;
}

.standard-field-input.text-area {
  height: 100px;
  padding-top: 20px;
}

.form-container {
  width: 95%;
}

.success-message {
  color: #fff;
  background-color: #221f1f;
}

.contact-information {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-wrapper {
  height: 100px;
  color: var(--off-black);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.image-75 {
  width: 40px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
}

.contact-info {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-header {
  letter-spacing: 1.5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.fine-information {
  color: #404040;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.footer-logo {
  width: 20em;
  margin-bottom: 2em;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  width: 1005em;
}

.footer-link {
  color: #eee;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: all .3s;
}

.footer-link:hover {
  color: var(--light-grey);
}

.footer-link:active {
  color: var(--dim-grey);
}

.container {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

.container.about-us {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container.about-us._100-margin {
  margin-top: 4em;
}

.container._125-margin {
  margin-top: 125px;
}

.container.vertical {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.container.vertical.full {
  flex-direction: column;
}

.container.center {
  justify-content: center;
  align-items: center;
}

.container.center.full-map {
  justify-content: space-around;
  align-items: baseline;
  min-height: 600px;
  display: block;
}

.container._250-margin {
  margin-top: 250px;
}

.container.testimonials {
  flex-direction: column;
}

.legal {
  color: #eee;
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.title {
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
}

.logo {
  width: 15em;
}

.coming-soon-container {
  background-image: linear-gradient(#221f1fbd, #221f1fbd), url('../images/Stair-Collection.JPG');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.coming-soon-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.coming-soon-logo {
  width: 300px;
  margin-top: 20px;
}

.coming-soon-form {
  margin-top: 10px;
}

.form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.standard-form-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--white);
  min-height: 50px;
  color: var(--white);
  background-color: #0000;
}

.standard-form-field::placeholder {
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

.standard-form-field.last {
  margin-bottom: 40px;
}

.project-image-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-image-grid._1 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: none;
}

.project-images-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
  padding-right: 5px;
  display: grid;
}

.link {
  color: var(--light-grey-2);
  transition: color .3s;
}

.link:hover {
  color: #046cea;
}

.button {
  background-color: var(--white);
  width: 200px;
  height: 55px;
  min-height: 50px;
  color: var(--off-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  transition: all .325s;
  display: flex;
}

.button:hover {
  color: var(--white);
  background-color: #221f1f;
}

.button.outlined {
  border: 2.5px solid var(--white);
  color: var(--white);
  background-color: #0000;
}

.button.outlined:hover {
  background-color: var(--white);
  color: var(--off-black);
}

.button.outlined._40-margin {
  margin-top: 40px;
}

.button.outlined._40-margin:hover {
  border-color: var(--light-grey);
  color: var(--light-grey);
}

.button.outlined._40-margin.grow {
  transition-duration: .5s;
}

.button.outlined._40-margin.grow:hover {
  transform: scale(1.2);
}

.button.outlined._40leftmargin {
  text-align: center;
  width: auto;
  margin-left: 40px;
}

.nav-menu {
  align-items: center;
  margin-left: -30px;
  display: flex;
}

._50-width {
  align-self: center;
  width: 50%;
}

._50-width._50-padding {
  padding-left: 50px;
}

._50-width._50-padding.center {
  align-self: center;
}

._50-width._50-padding.center._2 {
  padding-left: 0;
  padding-right: 50px;
}

._50-width.center {
  align-self: center;
  display: flex;
}

._50-width.center.center-flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

._50-width.right {
  justify-content: flex-end;
  align-self: center;
  display: flex;
}

._50-width._25-padding {
  padding-right: 25px;
}

._50-width._45-padding {
  padding-left: 45px;
}

._50-width._45-padding.flex {
  justify-content: center;
  display: flex;
}

._50-width.flex {
  display: flex;
}

.text-block._500-width {
  max-width: 500px;
}

.text-block._300-width {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  display: flex;
}

.text-block._300-width._30-margin-l {
  margin-right: 30px;
}

.text-block._300-width._30-margin-r {
  margin-left: 30px;
  margin-right: 0;
}

.h2.white {
  color: var(--white);
}

.button-2 {
  background-color: var(--off-black);
  width: 250px;
  height: 55px;
  min-height: 50px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.button-2:hover {
  color: var(--off-black);
  background-color: #0000;
  border: 3px solid #000;
}

.button-2._40-margin {
  margin-top: 40px;
}

.button-2._40-margin.grow:hover {
  transform: scale(1.1);
}

.slider {
  background-color: var(--white);
  width: 550px;
  height: 500px;
}

.image-slider-block {
  background-image: url('../images/Stair-20.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 550px;
  height: 500px;
  display: flex;
}

.image-slider-block.slide-2 {
  background-image: url('../images/Canopy-09-1000.jpg');
  background-position: 50%;
  background-size: cover;
}

.image-slider-block.slide-3 {
  background-image: url('../images/Stair-06.png');
  background-position: 50%;
}

.image-slider-block.slide-4 {
  background-image: url('../images/Architectural-07.jpg');
  background-position: 50%;
}

.left-arrow, .right-arrow {
  display: none;
}

.steel-tab {
  background-color: #0000;
  transition: all .3s;
}

.steel-tab.w--current {
  background-color: #0000;
  border: 1px #8b8b8c;
  border-bottom: 2px solid #8b8b8c;
}

.image-block {
  background-image: url('../images/Architectural-06.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
}

.image-block.beautiful {
  background-image: url('../images/Structural-16.JPG');
}

.image-block._650-width {
  width: 650px;
}

.image-block._650-width.custom-mnfing-corp {
  background-image: url('../images/Structural-Collection.jpg');
  background-size: cover;
}

.image-block._650-width.guardrail {
  background-image: url('../images/Guardrail-04-1500.jpg');
  background-size: cover;
}

.image-block.manufacturing {
  background-image: url('../images/Structural-02-1000.jpg');
}

.image-block.architecture {
  background-image: url('../images/IMG-4741-900.jpg');
}

.image-block.no-bg {
  background-image: none;
}

.image-block.spice {
  background-image: url('../images/Guardrail-04-1500.jpg');
}

.lightbox-link {
  width: 100%;
}

.button-3 {
  border: 2.5px solid var(--white);
  background-color: var(--off-black);
  width: 200px;
  height: 55px;
  min-height: 50px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.button-3:hover {
  color: var(--off-black);
  background-color: #0000;
  border: 3px solid #000;
}

.button-3._40-margin {
  margin-top: 40px;
}

.button-3._40-margin.grow:hover {
  border-color: var(--light-grey);
  color: var(--light-grey);
  transform: scale(1.1);
}

.button-3._40-margin.none {
  margin-top: 0;
}

.button-3._40-margin.none:hover {
  border-color: var(--light-grey);
  color: var(--light-grey);
}

.top-icon {
  margin-bottom: 20px;
}

.top-icon._5-margin {
  margin-bottom: 5px;
}

.nav-menu-photo {
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 12vw;
  height: 100%;
  margin-right: 20px;
  display: flex;
  position: relative;
  overflow: visible;
}

.d-135-card-wrapper {
  background-image: url('../images/Stair-45.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 400px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.d-135-card-wrapper._3 {
  background-image: url('../images/Architectural-03.jpg');
}

.d-135-card-wrapper._2 {
  background-image: url('../images/Canopy-11-1500.jpg');
}

.d-135-card-wrapper._4 {
  background-image: url('../images/Guardrail-29.jpg');
}

.d-135-color-overlay {
  background-color: #0000008c;
  position: absolute;
  inset: 0%;
}

.cards-container {
  flex-direction: row-reverse;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.d-135-view-project-text {
  z-index: 5;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.d-135-view-project-wrapper {
  margin-top: 40px;
}

.d-135-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.d-135-view-project-underline {
  background-color: var(--dark-grey);
  transform-origin: 0%;
  height: 10px;
  margin-top: -10px;
  position: relative;
}

.d-135-h3-heading {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  background-color: #090911a6;
  margin-top: 0;
  margin-bottom: 0;
  padding: 15px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

._500-x-550-slider {
  background-color: var(--white);
  width: 500px;
  height: 550px;
}

._450x550 {
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 550px;
  display: flex;
}

._450x550._1 {
  background-image: url('../images/Architectural-08.jpg');
  background-position: 46%;
  background-repeat: no-repeat;
  background-size: cover;
}

._450x550._2 {
  background-image: url('../images/Stair-06.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._450x550._3 {
  background-image: url('../images/Stair-40.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._450x550._4 {
  background-image: url('../images/Craftmanship3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._450x550._5 {
  background-image: url('../images/Craftmanship2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._450x550._6 {
  background-image: url('../images/Craftmanship4.jpg');
  background-position: 46%;
  background-repeat: no-repeat;
  background-size: cover;
}

._450x550._7 {
  background-image: url('../images/Craftmanship1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.left-arrow-2, .right-arrow-2 {
  display: none;
}

.xtreme {
  z-index: -1;
  background-image: linear-gradient(#221f1f, #221f1f);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slide-5 {
  background-color: var(--white);
}

.left-arrow-3, .right-arrow-3 {
  display: none;
}

.photo-slider {
  height: 650px;
}

.photo-slide {
  width: 100%;
}

.slider-container {
  background-image: url('../images/Stair-40.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
}

.slider-container._2 {
  background-image: url('../images/Canopy-13-1000.jpg');
}

.slider-container._3 {
  background-image: url('../images/Stair-68.jpg');
}

.slider-container._4 {
  background-image: url('../images/Guardrail-15.jpg');
  background-position: 50%;
  background-size: cover;
}

.slider-container._5 {
  background-image: url('../images/IMG-4751.jpg');
}

.slider-container._6 {
  background-image: url('../images/Stair-09.jpg');
}

.slider-container._7 {
  background-image: url('../images/Craftmanship4.jpg');
}

.slider-container._8 {
  background-image: url('../images/Canopy-17.JPG');
  background-position: 50%;
  background-size: cover;
}

.slider-container._9 {
  background-image: url('../images/IMG-4740-900.jpg');
}

.slider-container._10 {
  background-image: url('../images/IMG-4746-800.jpg');
}

.slider-container._11 {
  background-image: url('../images/Guardrail-04-1500.jpg');
}

.slider-container._12 {
  background-image: url('../images/ABOUT_2.jpeg');
  background-position: 50%;
  background-size: cover;
}

.slider-container._1 {
  background-image: url('../images/IMG-4750.jpg');
}

.button-4 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #221f1f;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 55px;
  min-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.button-4:hover {
  color: #221f1f;
  background-color: #0000;
  border: 3px solid #000;
}

.button-4._40-margin {
  margin-top: 40px;
}

.button-4._40-margin.grow:hover {
  transform: scale(1.1);
}

.section-2 {
  padding: 100px 70px;
  position: relative;
}

.container-2 {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

._50-width-2 {
  align-self: center;
  width: 50%;
}

._50-width-2._50-padding {
  padding-left: 50px;
}

._50-width-2._50-padding.center {
  align-self: center;
}

._50-width-2.center {
  align-self: center;
  display: flex;
}

._50-width-2.center.center-flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

.photo-block {
  background-image: url('../images/IMG-4748-1000.jpg');
  background-position: 50%;
  background-size: cover;
  height: 650px;
}

.photo-block._2, .photo-block._2-copy {
  background-image: url('../images/Stair-16.jpg');
}

.photo-block.about {
  background-image: url('../images/Stair-63.png');
  background-repeat: no-repeat;
}

.photo-block.manufacturing {
  background-image: url('../images/Craftmanship3.jpg');
}

.photo-block._3 {
  background-image: url('../images/Architectural-07.jpg');
}

.photo-block._4 {
  background-image: url('../images/Wilson17.JPG');
}

.photo-block._5 {
  background-image: url('../images/IMG-4741-900.jpg');
}

.photo-block._6 {
  background-image: url('../images/Stair-70.jpg');
}

.photo-block._7 {
  background-image: url('../images/W4th_Stair.jpg');
}

.photo-block._8 {
  background-image: url('../images/Stair-39.JPG');
}

._100-width {
  align-self: center;
  width: 100%;
}

._100-width._50-padding {
  padding-left: 50px;
}

._100-width._50-padding.center {
  align-self: center;
}

._100-width._50-padding.center._2 {
  padding-left: 0;
  padding-right: 50px;
}

._100-width.center {
  align-self: center;
  display: flex;
}

._100-width.center.center-flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

._100-width.right {
  justify-content: flex-end;
  align-self: center;
  display: flex;
}

._100-width._25-padding {
  padding-right: 25px;
}

._100-width._45-padding {
  padding-left: 45px;
}

._100-width._45-padding.flex {
  justify-content: flex-end;
  display: flex;
}

._100-width.flex {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.footer-block {
  flex-direction: column;
  width: 50%;
  display: flex;
}

.links {
  color: var(--white);
  font-size: 18px;
}

.small-text {
  margin-left: 5px;
  font-size: 12px;
  line-height: 1;
}

.small-text._5leftmargin {
  margin-left: 5px;
}

.mask {
  width: 100%;
}

.buttons {
  border: .15px solid var(--off-black);
  background-color: var(--white);
  color: var(--off-black);
  letter-spacing: .7px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 1.5em 2em;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  transition: border-width .3s, background-color .3s, color .3s;
  display: flex;
}

.buttons:hover {
  border-color: var(--dim-grey);
  background-color: var(--dim-grey);
  color: var(--white);
}

.buttons.w--current {
  color: var(--white);
}

.buttons.alt {
  border: 2px solid var(--off-black);
  width: 325px;
  height: 55px;
  color: var(--off-black);
  background-color: #221f1f00;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.buttons.alt:hover {
  border-color: var(--off-black);
  background-color: var(--off-black);
  color: var(--white);
}

.buttons.alt.small-text {
  font-size: 13px;
}

.buttons.alt._40leftmargin {
  text-align: center;
  width: 325px;
  margin-left: 40px;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.buttons.alt._40leftmargin.white-outline {
  border-color: var(--white);
  color: var(--white);
}

.buttons.alt._40leftmargin.contact {
  width: 250px;
  margin-top: 20px;
  margin-left: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.buttons.alt._20topmargin {
  margin-top: 20px;
}

.buttons.small-text {
  text-align: center;
  font-size: 13px;
}

.buttons.is--work {
  background-color: var(--off-black);
  color: var(--white);
  margin-right: 2em;
}

.buttons.is--work:hover {
  background-color: #000;
}

.buttons.is--black-hover {
  border-color: var(--white);
}

.buttons.is--black-hover:hover {
  border-color: var(--off-black);
  background-color: var(--off-black);
}

.buttons.is--black-hover.first {
  margin-right: 3em;
}

.buttons.is--outline {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.buttons.is--outline:hover {
  background-color: var(--white);
  color: var(--off-black);
}

.buttons.is--black {
  border-color: var(--white);
  background-color: var(--off-black);
  color: var(--white);
}

.buttons.is--black:hover {
  border-color: var(--off-black);
  background-color: #020202;
}

.buttons.is--black.first {
  margin-right: 3em;
}

.containers {
  padding: 5em 10em;
}

.containers.is--nav {
  justify-content: space-between;
  align-items: center;
  padding: 1em 3.5em;
  display: flex;
}

.containers.is--header {
  width: 85em;
  min-height: 80vh;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.containers.is--grey {
  position: relative;
}

.nav_links {
  justify-content: space-between;
  align-items: center;
  padding-left: 3em;
  display: flex;
}

.nav_action {
  flex-direction: row;
  margin-left: 3em;
  display: flex;
}

.dropdown_icon {
  margin-left: .5em;
  margin-right: 0;
  position: relative;
}

.dropdown_list.w--open {
  background-color: var(--off-black);
  color: var(--white);
  padding: 1.5em .5em;
}

.dropdown_link {
  margin-bottom: .5em;
  padding: 1em 1.5em;
  font-size: 1.2em;
  transition: color .3s;
}

.dropdown_link:hover {
  color: var(--dark-grey);
}

.dropdown_link.w--current {
  color: var(--white);
  font-weight: 600;
}

.sections.homepage {
  background-color: #969696;
  min-height: auto;
  padding-top: 220px;
  padding-bottom: 140px;
}

.sections.homepage.about {
  background-color: #96969600;
  min-height: 80vh;
  padding-top: 220px;
}

.sections.past-projects {
  min-height: 50vh;
  padding: 100px 0 0;
}

.sections.cta {
  background-color: var(--off-black);
  opacity: 1;
  min-height: auto;
  color: var(--white);
  justify-content: center;
  align-items: center;
}

.sections.custom-fits {
  min-height: auto;
  padding: 0;
}

.sections.cta {
  background-color: var(--off-black);
  min-height: auto;
  padding-top: 100px;
}

.sections.black-cta {
  background-color: var(--off-black);
  min-height: auto;
  color: var(--white);
}

.sections.coming-soon {
  background-color: #221f1fcc;
  height: 100vh;
  padding: 0;
}

.sections.auto {
  min-height: auto;
}

.sections._40-margin._70-padding {
  padding-left: 0;
}

.sections._40-margin._70-padding-2 {
  padding-right: 0;
}

.sections.bg {
  background-color: var(--off-black);
}

.sections.no-padding {
  padding: 0;
}

.sections.no-padding.map-height {
  min-height: 600px;
}

.sections.padding {
  padding: 0;
}

.sections._0-right-padding.about-team {
  padding-top: 100px;
}

.sections.footer, .sections.black {
  background-color: var(--off-black);
  padding-top: 100px;
}

.sections.about, .sections.home {
  padding-top: 100px;
}

.sections.is--header {
  background-color: #221f1fa3;
}

.sections.is--header.architectural-metalwork {
  background-image: linear-gradient(#221f1fcc, #221f1fcc), url('../images/Architectural-Metalwork-01-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.sections.is--header.staircases {
  background-image: linear-gradient(#221f1fcc, #221f1fcc), url('../images/Website-Photos-160.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.sections.is--header.canopies {
  background-image: linear-gradient(#221f1fcc, #221f1fcc), url('../images/Website-Photos-185.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.sections.is--header.stainless-steel-railings {
  background-image: linear-gradient(#221f1fcc, #221f1fcc), url('../images/Website-Photos-170.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.sections.is--header.metail-stairs {
  background-image: linear-gradient(#221f1fcc, #221f1fcc), url('../images/Website-Photos-165_1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.grid {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.grid_item.is--content {
  width: 45%;
}

.grid_item.is--media {
  width: 45%;
  height: 100%;
}

.images {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.images.is--media {
  height: 30vw;
}

.footer__container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.burger_menu {
  display: none;
}

@media screen and (min-width: 1920px) {
  .hero-container.contact {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding-left: 200px;
    padding-right: 200px;
  }

  ._550width {
    width: 500px;
  }

  .right-box._50._40padding {
    padding-left: 100px;
  }

  .right-box._50._40padding.contact {
    padding-left: 140px;
  }

  .testimonials-container {
    padding-left: 20px;
  }

  ._650width {
    width: auto;
  }

  .form-container {
    width: 70%;
  }

  .contact-information {
    max-width: 1500px;
  }

  .project-images-container {
    max-width: 95%;
  }

  .photo-slide {
    width: 100%;
  }

  .section-2 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .nav_links {
    justify-content: space-between;
    width: 100%;
  }
}

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

  .navbar-container {
    justify-content: space-between;
    align-items: center;
  }

  .header-link {
    border-bottom: 1.5px none var(--light-grey);
    background-color: var(--white);
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .header-link.w--current {
    border-bottom-style: none;
  }

  .work-with-us {
    justify-content: center;
    align-self: auto;
    align-items: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .work-with-us.alt {
    width: auto;
    margin-top: 20px;
    margin-left: 0;
  }

  .work-with-us.alt._40leftmargin {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-left: 0;
    display: flex;
  }

  .work-with-us.alt._40leftmargin.white-outline {
    margin-top: 20px;
    margin-left: 0;
  }

  .work-with-us.alt._40leftmargin.white-outline._1 {
    margin-top: 40px;
  }

  .work-with-us.alt._40leftmargin.white-outline._2, .work-with-us.alt._40leftmargin.contact {
    margin-top: 0;
    margin-left: 40px;
  }

  .work-with-us.alt._20topmargin {
    margin-top: 0;
  }

  .work-with-us.alt.no-20-margin {
    margin-top: 0;
    margin-left: 20px;
  }

  .work-with-us.alt.no-20-margin.about {
    width: 275px;
  }

  .work-with-us.alt.nav {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .work-with-us.small-text {
    display: none;
  }

  .background-color.vertical {
    width: 100%;
    height: 40%;
    inset: auto 0% 0%;
  }

  .text-w-heading {
    flex-direction: column;
    display: flex;
  }

  .cta-button._20rightmargin {
    margin-right: 40px;
  }

  .h1-heading {
    font-size: 40px;
  }

  .h1-heading._850px-width {
    width: auto;
  }

  .hero-container.contact {
    flex-direction: column;
  }

  .section {
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section.past-projects {
    padding-top: 60px;
  }

  .section.padding {
    padding-top: 100px;
  }

  .section._25-padding, .section._25-padding-flip {
    padding-left: 0;
    padding-right: 25px;
  }

  .section._0-right-padding {
    padding-top: 0;
    padding-left: 40px;
    padding-right: 0;
  }

  .section._0-right-padding.about-team {
    padding-left: 0;
  }

  .section._0-left-padding {
    padding-top: 0;
    padding-left: 0;
    padding-right: 40px;
  }

  .section._0-left-padding.about {
    padding-top: 100px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .section.footer {
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .section.home {
    padding-top: 100px;
  }

  .icon-paragraph {
    text-align: center;
  }

  .project-content-wrapper {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .project-tabs-container {
    width: 100%;
  }

  .icon-box-2 {
    flex-direction: column;
  }

  .icons {
    width: 40px;
    height: 40px;
    margin-right: 0;
  }

  .paragraph._450width {
    width: auto;
  }

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

  .project-wrapper {
    display: flex;
  }

  .left-box._50.no-bg {
    text-align: center;
    width: auto;
  }

  .left-box._50._700px-height.contact {
    width: 100%;
  }

  ._550width {
    text-align: left;
    width: auto;
  }

  .right-box._50 {
    padding-left: 0;
  }

  .right-box._50.about-us {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    display: flex;
  }

  .right-box._50._40padding.contact {
    width: 100%;
    padding-bottom: 60px;
    padding-left: 40px;
  }

  .t-right-arrow {
    top: 120%;
    left: -65%;
  }

  .t-left-arrow {
    top: 120%;
  }

  .testimonials-div {
    margin-top: 20px;
  }

  .button-container, .button-container.center, .button-container.header, .button-container.about {
    flex-direction: row;
  }

  .button-container.footer {
    justify-content: center;
    align-items: center;
  }

  .button-container._40bottommmargin, .button-container.is--header {
    flex-direction: row;
  }

  .h3-heading._800width.normal-font {
    width: auto;
  }

  .big-text {
    font-size: 40px;
  }

  .form-container {
    width: 100%;
  }

  .contact-information {
    justify-content: center;
  }

  .contact-wrapper {
    height: auto;
  }

  .image-75 {
    width: 45px;
  }

  .contact-info {
    height: 80px;
  }

  .contact-header {
    font-size: 16px;
  }

  .fine-information {
    font-weight: 400;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-grid {
    grid-column-gap: 24px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer-link {
    padding-right: 0;
    line-height: 1.3;
  }

  .container.about-us {
    flex-direction: column;
  }

  .container.about-us._100-margin {
    margin-top: 60px;
  }

  .container.vertical.about, .container.flip.about, .container.testimonials, .container.about {
    flex-direction: column;
  }

  .title {
    margin-bottom: 10px;
  }

  .logo {
    width: 18em;
    margin-right: 1.5em;
  }

  .project-image-grid._1 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .button.outlined._40leftmargin {
    margin-left: 40px;
  }

  .button.outlined._40leftmargin.footer {
    margin-top: 40px;
    margin-left: 0;
  }

  .nav-menu {
    background-color: var(--white);
    text-align: center;
    flex-direction: row;
    justify-content: center;
    margin-left: 0;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  ._50-width {
    width: 100%;
  }

  ._50-width._50-padding.center.left {
    padding-left: 0;
    padding-right: 50px;
  }

  ._50-width._25-padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  ._50-width._25-padding.no-25-right-padding {
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
  }

  ._50-width._45-padding.flex.no-45-left-padding {
    margin-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
  }

  ._50-width._45-padding.flex.about {
    margin-top: 40px;
    padding-left: 0;
  }

  ._50-width.flex.footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  ._50-width.footer {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  ._50-width.footer-content {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-block._500-width {
    max-width: none;
  }

  .h2 {
    font-size: 30px;
  }

  .h2.white._85 {
    width: 85%;
  }

  .button-2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .image-block.no-bg {
    padding-left: 43px;
  }

  .nav-menu-photo {
    width: 23vw;
    margin-left: 8px;
    margin-right: 8px;
  }

  .d-135-card-wrapper {
    margin-bottom: 60px;
  }

  .cards-container {
    flex-direction: column-reverse;
    flex: 0 auto;
    align-items: center;
  }

  ._500-x-550-slider {
    width: 450px;
  }

  .section-2 {
    padding-right: 0;
  }

  ._100-width._50-padding.center.left {
    padding-left: 0;
    padding-right: 50px;
  }

  ._100-width.flex {
    align-items: flex-start;
  }

  .icon {
    font-size: 35px;
  }

  .menu-button {
    color: var(--dim-grey);
    background-color: #fff;
  }

  .menu-button:hover {
    color: var(--off-black);
  }

  .menu-button.w--open {
    background-color: var(--white);
    color: var(--off-black);
  }

  .footer-block {
    margin-top: 40px;
  }

  .footer-block.first {
    margin-top: 0;
  }

  .footer-content-container {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer-content-container._20topmargin {
    justify-content: center;
    margin-top: 20px;
  }

  .slider-arrow {
    opacity: 0;
  }

  .small-text {
    margin-left: 5px;
    font-size: 14px;
  }

  .buttons {
    align-self: auto;
    padding: 1em;
  }

  .buttons.alt {
    width: auto;
    margin-top: 20px;
    margin-left: 0;
  }

  .buttons.alt._40leftmargin {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-left: 0;
    display: flex;
  }

  .buttons.alt._40leftmargin.white-outline {
    margin-top: 20px;
    margin-left: 0;
  }

  .buttons.alt._40leftmargin.white-outline._1 {
    margin-top: 40px;
  }

  .buttons.alt._40leftmargin.white-outline._2, .buttons.alt._40leftmargin.contact {
    margin-top: 0;
    margin-left: 40px;
  }

  .buttons.alt._20topmargin {
    margin-top: 0;
  }

  .buttons.alt.no-20-margin {
    margin-top: 0;
    margin-left: 20px;
  }

  .buttons.alt.no-20-margin.about {
    width: 275px;
  }

  .buttons.alt.nav {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .buttons.small-text {
    display: none;
  }

  .buttons.is--work {
    margin-bottom: 1em;
    margin-right: 0;
  }

  .containers {
    padding-left: 3em;
    padding-right: 3em;
  }

  .containers.is--nav {
    z-index: 5;
    position: relative;
  }

  .containers.is--header {
    width: auto;
  }

  .nav_links {
    z-index: 4;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    padding-top: 15vw;
    padding-left: 0;
    display: none;
    position: absolute;
    top: 5em;
    right: 0%;
  }

  .nav_action {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
  }

  .dropdown_list.w--open {
    flex-direction: column;
    width: 100%;
    display: flex;
    position: static;
  }

  .sections.past-projects {
    padding-top: 60px;
  }

  .sections.padding {
    padding-top: 100px;
  }

  .sections._25-padding, .sections._25-padding-flip {
    padding-left: 0;
    padding-right: 25px;
  }

  .sections._0-right-padding {
    padding-top: 0;
    padding-left: 40px;
    padding-right: 0;
  }

  .sections._0-right-padding.about-team {
    padding-left: 0;
  }

  .sections._0-left-padding {
    padding-top: 0;
    padding-left: 0;
    padding-right: 40px;
  }

  .sections._0-left-padding.about {
    padding-top: 100px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .sections.footer {
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .sections.home {
    padding-top: 100px;
  }

  .grid {
    flex-direction: column;
  }

  .grid_item.is--content {
    width: 100%;
  }

  .grid_item.is--content.bottom {
    margin-top: 1.5em;
  }

  .grid_item.is--content.top {
    margin-bottom: 1.5em;
  }

  .grid_item.is--media {
    width: 100%;
  }

  .images.is--media {
    height: 25em;
  }

  .burger_lottie {
    width: 2.5em;
  }

  .burger_menu {
    cursor: pointer;
    display: block;
  }

  .nav_links-contain {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .navbar-container {
    justify-content: space-around;
  }

  .xtreme-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-link {
    margin-bottom: .5em;
  }

  .work-with-us.alt, .work-with-us.alt._40leftmargin {
    width: 275px;
  }

  .work-with-us.alt._40leftmargin.white-outline._1 {
    margin-top: 0;
    margin-left: 20px;
  }

  .work-with-us.alt._40leftmargin.about {
    margin-top: 0;
    margin-left: 40px;
  }

  .work-with-us.alt._40leftmargin.contact {
    width: 250px;
    margin-top: 40px;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .work-with-us.alt.no-20-margin {
    padding-left: 15px;
    padding-right: 15px;
  }

  .background-color {
    width: 100%;
    height: 40%;
    inset: auto 0% 0%;
  }

  .background-color.vertical {
    width: 100%;
    height: 30%;
    inset: auto 0% 0%;
  }

  .cta-button._20rightmargin {
    margin-bottom: 20px;
  }

  .h1-heading {
    text-align: center;
    font-size: 35px;
  }

  .h1-heading.black-text {
    text-align: left;
  }

  .h1-heading._650width, .h1-heading._850px-width {
    width: auto;
  }

  .hero-container._1300px {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hero-container.contact {
    flex-direction: column;
  }

  .section {
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section.homepage.about {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .section.cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.padding {
    padding-top: 60px;
  }

  .section._25-padding {
    padding-right: 25px;
  }

  .section._25-padding-flip {
    padding-left: 25px;
    padding-right: 0;
  }

  .section._0-right-padding {
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section._0-right-padding.bottom {
    padding-bottom: 60px;
  }

  .section._0-right-padding.about-team {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 0;
  }

  .section._0-left-padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section._0-left-padding.about {
    padding: 60px 0 0;
  }

  .section.black {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.about-section {
    padding-left: 0;
    padding-right: 0;
  }

  .project-photo-slider-container.hidden {
    flex-direction: row;
  }

  .product-images {
    height: 500px;
  }

  .h3 {
    font-size: 14px;
  }

  .paragraph._650width {
    width: auto;
  }

  .paragraph._40-margin {
    margin-top: 20px;
    font-size: 12px;
  }

  .left-box._50._700px-height.contact {
    width: 100%;
    height: 500px;
  }

  ._550width {
    font-size: 35px;
  }

  .right-box._50._40padding.contact {
    width: 100%;
  }

  .t-right-arrow {
    left: -50%;
  }

  .heading-container.center-flex {
    text-align: center;
  }

  .testimonials-container {
    margin-top: 0;
  }

  .testimonials-slide {
    width: 100%;
  }

  .button-container.about {
    flex-direction: row;
  }

  .button-container._40bottommmargin {
    flex-direction: column;
  }

  .big-text {
    font-size: 35px;
  }

  .form-container {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .contact-information {
    justify-content: center;
    margin-top: 40px;
  }

  .image-75 {
    width: 35px;
  }

  .contact-header {
    flex-direction: column;
    font-size: 14px;
    display: flex;
  }

  .fine-information {
    font-size: 10px;
  }

  .footer-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container.vertical {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container.flip, .container.flip.about, .container.flip.about {
    flex-direction: column-reverse;
  }

  .container.testimonials, .container.home, .container.flip-reverse, .container.flip-last {
    flex-direction: column;
  }

  .logo {
    z-index: 6;
    width: 200px;
    position: relative;
  }

  .project-image-grid._1 {
    grid-template-columns: 1fr 1fr;
  }

  ._50-width._25-padding {
    margin-bottom: 40px;
    padding-right: 0;
  }

  ._50-width._25-padding.no-25-right-padding {
    margin-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  ._50-width._25-padding.home {
    padding-left: 0;
  }

  ._50-width._45-padding.flex {
    margin-bottom: 40px;
    padding-left: 0;
  }

  ._50-width._45-padding.flex._45-margin, ._50-width._45-padding.flex.about {
    padding-left: 0;
  }

  .text-block._500-width {
    max-width: none;
  }

  .text-block._500-width._100 {
    width: 100%;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block._500-width._40bottommargin {
    margin-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block._300-width {
    justify-content: space-between;
    align-items: center;
  }

  .h2 {
    font-size: 25px;
  }

  .h2.white._85 {
    width: 90%;
  }

  .image-block.architecture {
    height: 400px;
  }

  .nav-menu-photo {
    width: 45vw;
    height: 50%;
  }

  .cards-container {
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .photo-slider {
    height: 400px;
  }

  .photo-slider.first, .photo-slider.first-copy {
    height: 400px;
    margin-right: 0;
  }

  .slider-container, .slider-container._9 {
    height: 100%;
  }

  .slider-navigation {
    font-size: 12px;
  }

  .photo-block {
    height: 100%;
  }

  .photo-block._2.last {
    margin-left: 0;
  }

  .photo-block.about {
    height: 450px;
    margin-left: 0;
  }

  .photo-block.manufacturing {
    margin-top: 40px;
    margin-left: 0;
  }

  .photo-block._6, .photo-block._7, .photo-block._8 {
    margin-left: 0;
  }

  ._100-width._45-padding.flex._45-margin {
    margin-left: 45px;
    padding-left: 0;
  }

  .footer-content-container {
    margin-left: 50px;
  }

  .footer-content-container._20topmargin {
    margin-left: 0;
  }

  .small-text {
    margin-left: 5px;
  }

  .buttons.alt, .buttons.alt._40leftmargin {
    width: 275px;
  }

  .buttons.alt._40leftmargin.white-outline._1 {
    margin-top: 0;
    margin-left: 20px;
  }

  .buttons.alt._40leftmargin.about {
    margin-top: 0;
    margin-left: 40px;
  }

  .buttons.alt._40leftmargin.contact {
    width: 250px;
    margin-top: 40px;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .buttons.alt.no-20-margin {
    padding-left: 15px;
    padding-right: 15px;
  }

  .containers.is--grey {
    padding-top: 0;
  }

  .nav_links {
    top: 4.5em;
  }

  .dropdown_link {
    margin-bottom: .25em;
    font-size: 1em;
  }

  .sections.homepage.about {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .sections.cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sections.padding {
    padding-top: 60px;
  }

  .sections._25-padding {
    padding-right: 25px;
  }

  .sections._25-padding-flip {
    padding-left: 25px;
    padding-right: 0;
  }

  .sections._0-right-padding {
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .sections._0-right-padding.bottom {
    padding-bottom: 60px;
  }

  .sections._0-right-padding.about-team {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 0;
  }

  .sections._0-left-padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sections._0-left-padding.about {
    padding: 60px 0 0;
  }

  .sections.black {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sections.about-section {
    padding-left: 0;
    padding-right: 0;
  }

  .burger_lottie {
    z-index: 5;
    position: relative;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.6em;
  }

  h2 {
    font-size: 2.35em;
  }

  .header-link {
    border-bottom-style: none;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 1;
  }

  .header-link.w--current {
    border-bottom-style: none;
  }

  .work-with-us {
    font-size: 12px;
  }

  .work-with-us.alt {
    margin-right: 0;
  }

  .work-with-us.alt._40leftmargin.white-outline._1, .work-with-us.alt._40leftmargin.white-outline._2, .work-with-us.alt._40leftmargin.about, .work-with-us.alt._40leftmargin.contact {
    margin-top: 40px;
    margin-left: 0;
  }

  .work-with-us.alt._20topmargin {
    margin-top: 40px;
  }

  .work-with-us.alt.no-20-margin {
    margin-top: 20px;
    margin-left: 0;
  }

  .work-with-us.alt.nav {
    width: auto;
  }

  .background-color {
    display: none;
  }

  .cta-button.white {
    margin-top: 0;
  }

  .cta-button._20rightmargin {
    margin-right: 0;
  }

  .h1-heading {
    font-size: 28px;
  }

  .h1-heading.black-text {
    text-align: center;
  }

  .hero-container._1300px {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    width: 100%;
    padding: 60px 0 0;
  }

  .section.homepage.about {
    background-color: #221f1fa6;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .section.cta {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section.no-padding.map-height {
    min-height: 300px;
  }

  .section._25-padding {
    padding-right: 0;
  }

  .section._25-padding-flip {
    padding-left: 0;
    padding-right: 0;
  }

  .section._0-right-padding {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .section._0-right-padding.about-team {
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section._0-left-padding {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .section._0-left-padding.about {
    padding-top: 0;
  }

  .section.footer {
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section.black {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.about {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.home {
    padding-top: 60px;
  }

  .tab {
    margin-bottom: 10px;
  }

  .project-photo-slider-container {
    margin-top: 40px;
  }

  .project-content-wrapper {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .h3 {
    text-align: center;
    font-size: 16px;
  }

  .paragraph {
    text-align: center;
  }

  .paragraph._650width {
    font-size: 14px;
  }

  .paragraph.white-text {
    text-align: center;
  }

  .project-wrapper {
    flex-direction: column;
  }

  .left-box._50._700px-height.contact {
    height: 300px;
  }

  ._550width {
    text-align: center;
    font-size: 30px;
  }

  .right-box._50.about-us {
    padding-left: 0;
  }

  .right-box._50._40padding.contact {
    align-items: center;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .t-right-arrow {
    height: 55px;
    position: relative;
    inset: -55px auto 0% 35%;
  }

  .t-left-arrow {
    position: relative;
    inset: auto auto 0% 0%;
  }

  .testimonials-slider {
    flex-direction: column;
    justify-content: center;
  }

  .testimonials-div {
    max-width: none;
    margin-bottom: 60px;
  }

  .heading-container.center-flex {
    align-items: center;
  }

  .heading-container.center-flex._75-padding {
    margin-bottom: 40px;
  }

  .button-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .button-container.center {
    flex-direction: column;
    margin-top: 0;
  }

  .button-container.center._40topmargin {
    margin-top: 40px;
  }

  .button-container.header, .button-container.about {
    flex-direction: column;
  }

  .button-container.footer {
    width: 100%;
  }

  .button-container._40bottommmargin {
    flex-direction: column;
  }

  .button-container.is--header {
    flex-direction: column;
    align-items: flex-start;
  }

  .big-text {
    font-size: 22px;
  }

  .standard-field-input, .standard-field-input::placeholder {
    font-size: 12px;
  }

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

  .contact-information {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    width: 250px;
    margin-top: 10px;
    margin-bottom: 0;
    margin-right: 0;
  }

  .image-75 {
    width: 40px;
    margin-right: 0;
  }

  .contact-info {
    align-items: center;
    width: 200px;
    display: flex;
  }

  .contact-header {
    align-items: center;
  }

  .fine-information {
    text-align: center;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-rows: auto auto auto auto;
  }

  .container {
    flex-direction: column;
  }

  .container.about-us {
    flex-direction: column;
    width: 100%;
  }

  .container.center.full-map {
    min-height: auto;
  }

  .container.flip {
    flex-direction: column-reverse;
    width: 100%;
  }

  .legal {
    margin-right: 0;
  }

  .coming-soon-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .project-image-grid._1 {
    grid-column-gap: 5px;
  }

  .project-images-container {
    padding-left: 0;
    padding-right: 0;
  }

  .button.outlined._40leftmargin {
    width: 225px;
    margin-top: 40px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  ._50-width {
    width: 100%;
    display: flex;
  }

  ._50-width._25-padding {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  ._50-width._25-padding.no-25-right-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._50-width._25-padding.home {
    padding-left: 0;
  }

  ._50-width._45-padding {
    width: 100%;
    padding-right: 0;
  }

  ._50-width._45-padding.flex {
    padding-left: 0;
  }

  ._50-width._45-padding.flex._45-margin {
    margin-left: 0;
  }

  ._50-width._45-padding.flex.no-45-left-padding {
    padding-left: 0;
    padding-right: 0;
  }

  ._50-width._45-padding.flex.about {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-block._500-width._100 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-block._500-width {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 20px 60px;
    display: flex;
  }

  .text-block._500-width._40bottommargin {
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .text-block._300-width {
    margin-bottom: 50px;
  }

  .text-block._300-width._30-margin-l {
    margin-bottom: 50px;
    margin-right: 0;
  }

  .text-block._300-width._30-margin-r {
    margin-left: 0;
  }

  .h2 {
    text-align: center;
    font-size: 25px;
  }

  .h2.white._85 {
    letter-spacing: .5px;
    width: 100%;
    font-size: 18px;
  }

  .steel-tab {
    margin-bottom: 10px;
  }

  .image-block.architecture, .image-block.spice {
    width: 100%;
  }

  .lightbox-link {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .d-135-card-wrapper {
    margin-bottom: 20px;
  }

  .cards-container {
    align-items: center;
    margin-top: 0;
    margin-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-block {
    width: 100%;
  }

  .photo-slider {
    flex-direction: column;
    height: 70%;
    display: flex;
  }

  .photo-slider.first, .photo-slider.first-copy {
    height: auto;
    margin-right: 0;
  }

  .slider-mask {
    height: 650px;
  }

  .slider-navigation {
    display: none;
  }

  .photo-block {
    margin-left: 0;
  }

  .photo-block.manufacturing {
    display: none;
  }

  ._100-width {
    width: 100%;
  }

  ._100-width._25-padding, ._100-width._45-padding {
    width: 100%;
    padding-right: 0;
  }

  ._100-width._45-padding.flex {
    padding-left: 0;
  }

  ._100-width._45-padding.flex._45-margin {
    margin-left: 0;
  }

  ._100-width.flex {
    flex-direction: column;
    align-items: center;
  }

  .footer-content-container {
    margin-left: 0;
  }

  .footer-content-container._20topmargin {
    margin-top: 0;
  }

  .form-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .links {
    font-size: 14px;
  }

  .small-text, .buttons {
    font-size: 12px;
  }

  .buttons.alt {
    margin-right: 0;
  }

  .buttons.alt._40leftmargin.white-outline._1, .buttons.alt._40leftmargin.white-outline._2, .buttons.alt._40leftmargin.about, .buttons.alt._40leftmargin.contact {
    margin-top: 40px;
    margin-left: 0;
  }

  .buttons.alt._20topmargin {
    margin-top: 40px;
  }

  .buttons.alt.no-20-margin {
    margin-top: 20px;
    margin-left: 0;
  }

  .buttons.alt.nav {
    width: auto;
  }

  .buttons.is--black-hover.first, .buttons.is--black.first {
    margin-bottom: 2em;
    margin-right: 0;
  }

  .containers {
    padding-left: 2em;
    padding-right: 2em;
  }

  .containers.is--nav {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .containers.is--header {
    min-height: auto;
  }

  .nav_action {
    margin-top: 1.5em;
  }

  .sections {
    width: 100%;
    padding: 60px 0 0;
  }

  .sections.homepage.about {
    background-color: #221f1fa6;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .sections.cta {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sections.no-padding.map-height {
    min-height: 300px;
  }

  .sections._25-padding {
    padding-right: 0;
  }

  .sections._25-padding-flip {
    padding-left: 0;
    padding-right: 0;
  }

  .sections._0-right-padding {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .sections._0-right-padding.about-team {
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sections._0-left-padding {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .sections._0-left-padding.about {
    padding-top: 0;
  }

  .sections.footer {
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .sections.black {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sections.about {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sections.home {
    padding-top: 60px;
  }

  .grid {
    text-align: center;
  }

  .burger_lottie {
    width: 2em;
  }
}


