@font-face {
  font-family: Monasans Wdth Wght;
  src: url('../fonts/MonaSanswdthwght.ttf') format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Monasans Wdth Wght;
  src: url('../fonts/MonaSans-Italicwdthwght.ttf') format("truetype");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --grey: #63635e;
  --white: white;
  --black: #21201c;
  --yellow: #ffc53d;
  --grey-light: #dad9d6;
  --grey-lighter: #f1f0ef;
  --red: #ff3b30;
  --green: #00d95f;
  --green-light: #07ff74;
  --blue: #09f;
  --purple: #a033ff;
  --pink: #ff5280;
  --orange: #ff7061;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('../images/custom-checkbox-checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@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 {
  color: var(--grey);
  background-color: #f1f0ef;
  font-family: Monasans Wdth Wght, Trebuchet MS, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

h1 {
  color: var(--white);
  font-variation-settings: "wdth" 75, "wght" 900;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Monasans Wdth Wght, Trebuchet MS, sans-serif;
  font-size: 128px;
  font-weight: 900;
  line-height: 90%;
}

h2 {
  color: var(--black);
  font-variation-settings: "wght" 700, "wdth" 75;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 90%;
}

p {
  margin-bottom: 0;
}

.faq-item {
  background-color: #fdfdfc;
  border-bottom: 1px solid #dad9d6;
  width: 100%;
  display: block;
  overflow: hidden;
}

.faq-header {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 85px;
  padding: 28px 24px;
  display: flex;
}

.faq-body {
  background-color: #0000;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0;
  padding-bottom: 28px;
  padding-left: 24px;
  padding-right: 54px;
  display: block;
  position: relative;
}

.faq-answer {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 125%;
  display: none;
}

.faq-question {
  color: var(--black);
  text-transform: uppercase;
  white-space: normal;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 90%;
  display: none;
}

.faq-icon {
  flex: none;
}

.faqs-wrap {
  border-top: 1px solid #dad9d6;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 100px;
}

.faq-question-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: inline-flex;
}

.faq-question-order {
  color: var(--yellow);
  font-variation-settings: "wght" 800, "wdth" 75;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 800;
  line-height: 90%;
}

.container-why-mobile {
  max-width: 991px;
}

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

.container-main {
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
}

.container-main.container-main-1520 {
  max-width: 1520px;
}

.hide {
  display: none;
}

.bg-grey {
  background-color: var(--grey);
}

.bg-grey-light {
  background-color: var(--grey-light);
}

.bg-grey-lighter {
  background-color: var(--grey-lighter);
}

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

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

.bg-yellow {
  background-color: var(--yellow);
}

.bg-red {
  background-color: var(--red);
}

.bg-green {
  background-color: var(--green);
}

.bg-green-light {
  background-color: var(--green-light);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-purple {
  background-color: var(--purple);
}

.bg-pink {
  background-color: var(--pink);
}

.bg-orange {
  background-color: var(--orange);
}

.hero-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-image: url('../images/Hero_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 43px 40px;
  display: flex;
  overflow: hidden;
}

.hero-head {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hero-body {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.hero-bottom {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  display: flex;
}

.hero-logo-img {
  height: 48px;
}

.hero-contacts-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-contact-link {
  color: var(--white);
  font-variation-settings: "wght" 600;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.hero-contact-link:hover {
  color: var(--yellow);
}

.hero-contact-wrap {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hero-contact-info {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.button-hero {
  font-variation-settings: "wght" 500;
  background-color: #0000;
  background-image: url('../images/arrow-right-circled.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #fff;
  border-radius: 999px;
  flex: none;
  padding: 16px 50px 16px 16px;
  line-height: 100%;
  transition: background-color .2s;
}

.button-hero:hover {
  border-color: var(--yellow);
  background-color: var(--black);
}

.text-span-yellow {
  color: var(--yellow);
}

.hero-description {
  max-width: 700px;
  color: var(--white);
  font-variation-settings: "wght" 400;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

.text-span-white {
  font-variation-settings: "wght" 600;
  font-weight: 600;
}

.h2-hero {
  color: var(--white);
  font-variation-settings: "wght" 600, "wdth" 75;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

.text-span-h2-hero {
  background-color: var(--yellow);
  color: var(--black);
  padding-left: 8px;
  padding-right: 8px;
  display: inline-block;
}

.social-media-chat-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  aspect-ratio: 1;
  background-image: linear-gradient(135deg, #fbfbfc, #dbdde8);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.social-media-chat-link:hover {
  box-shadow: inset 0 2px 5px #0003;
}

.social-media-chat {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-social-media-chat-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-footer-benefit-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-footer-benefits {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.header-h3 {
  color: var(--white);
  font-variation-settings: "wght" 700, "wdth" 75;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 100%;
}

.header-footer-benefit-item-content {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  margin-top: 8px;
  display: flex;
}

.header-footer-benefit-item-description {
  color: var(--white);
  font-variation-settings: "wght" 500;
}

.section-why-desktop {
  padding-top: 48px;
  padding-bottom: 48px;
  display: none;
}

.why-question-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--white);
  cursor: pointer;
  border-top: 1px solid #dad9d6;
  border-bottom: 1px solid #dad9d6;
  border-right: 1px solid #dad9d6;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 28px 36px;
  display: inline-flex;
  position: relative;
}

.why-question-wrapper.faq-question-wrapper-copy-sdg {
  min-width: 400px;
}

.why-question-order {
  color: var(--yellow);
  font-variation-settings: "wght" 800, "wdth" 75;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 800;
  line-height: 90%;
}

.why-question {
  color: var(--black);
  font-variation-settings: "wght" 800, "wdth" 75;
  text-transform: uppercase;
  white-space: normal;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 90%;
}

.why-items-wrap {
  border-left: 1px solid #dad9d6;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-head {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 991px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.why-wrap {
  flex-flow: column;
}

.section-body {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 48px;
  display: flex;
}

.why-tooltip {
  z-index: 1;
  background-color: var(--black);
  width: 620px;
  padding: 24px;
  position: absolute;
  inset: 110% 0% auto;
}

.why-tooltip.faq-tooltip-last {
  left: -260px;
}

.why-tooltip-text {
  color: var(--grey);
  font-variation-settings: "wght" 400;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.section-about {
  background-color: #fdfdfc;
  padding-top: 80px;
  padding-bottom: 100px;
}

.section-bottom {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.h2-about {
  color: var(--black);
  font-variation-settings: "wght" 600, "wdth" 75;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

.about-image-deco-top {
  position: absolute;
  inset: -30px auto auto -30px;
}

.h2-about-title {
  font-variation-settings: "wght" 300, "wdth" 80;
  text-transform: none;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 300;
  line-height: 100%;
}

.about-description {
  margin-top: 12px;
  margin-bottom: 24px;
  font-weight: 400;
}

.text-span-about {
  color: var(--black);
  font-weight: 600;
}

.h2-about-list {
  font-variation-settings: "wght" 800, "wdth" 75;
  margin-top: 24px;
  margin-bottom: 36px;
  font-size: 32px;
  font-weight: 800;
}

.h3-about {
  color: var(--black);
  font-variation-settings: "wght" 800, "wdth" 75;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 90%;
}

.about-step-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid #e9e8e6;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 24px #00000014;
}

.about-list-item-block {
  aspect-ratio: 1;
  background-color: var(--white);
  border: 1px solid #dad9d6;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding: 12px;
  display: flex;
}

.about-list-item-number {
  color: var(--yellow);
  font-variation-settings: "wght" 800, "wdth" 75;
  font-size: 24px;
  font-weight: 800;
  line-height: 90%;
}

.about-list-item-deco {
  background-color: #dad9d6;
  width: 1px;
  height: 35px;
}

.about-list-item {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.about-list-item-deco-2 {
  background-color: #dad9d6;
  width: 1px;
  height: 70px;
}

.about-right-col {
  width: 100%;
  max-width: 800px;
}

.about-left-content {
  flex-flow: column;
  align-items: flex-end;
  display: flex;
}

.about-left-deco-wrap {
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.about-left-deco-1 {
  background-color: var(--grey-light);
  width: 1px;
  height: 42px;
}

.about-left-deco-3 {
  border-top: 1px solid var(--grey-light);
  width: 42px;
  height: 42px;
}

.about-left-col {
  max-width: 542px;
  display: flex;
}

.about-left-main-content {
  position: relative;
}

.about-left-deco-2 {
  background-color: var(--grey-light);
  width: 42px;
}

.about-list-left {
  padding-top: 35px;
}

.about-list-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.about-list-right {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  display: flex;
}

.section-services {
  background-image: url('../images/Metal-Roofing-Systems_1.avif'), url('../images/Decorative-Metalwork.avif');
  background-position: 0 -80px, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  padding-top: 126px;
  padding-bottom: 60px;
}

.services-wrap {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.h3-service {
  color: var(--black);
  font-variation-settings: "wght" 800, "wdth" 75;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 100%;
}

.service-item-wrap {
  border-top: 1px solid var(--grey-light);
  border-right: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  background-color: var(--white);
  padding: 40px 35px;
}

.service-item-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.service-item-deco {
  position: absolute;
  inset: -25px auto auto -30px;
}

.services-items-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-left: 1px solid var(--grey-light);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  margin-bottom: 48px;
  display: grid;
}

.section-quote {
  background-color: #fdfdfc;
  padding-top: 100px;
  padding-bottom: 100px;
}

.quote-wrap {
  max-width: 1440px;
  margin-left: auto;
}

.left-arrow {
  background-color: #f1f0ef;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: box-shadow .2s;
  display: flex;
  position: absolute;
  inset: auto 80px -60px auto;
  overflow: hidden;
}

.left-arrow:hover {
  box-shadow: 0 2px 5px #0003;
}

.right-arrow {
  background-color: #f1f0ef;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: box-shadow .2s;
  display: flex;
  position: absolute;
  inset: auto 0% -60px auto;
  overflow: hidden;
}

.right-arrow:hover {
  box-shadow: 0 2px 5px #0003;
}

.block-quote-main {
  color: var(--black);
  border-left-style: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 36px;
  line-height: 120%;
}

.block-quote-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1111px;
  height: 100%;
  display: flex;
}

.block-quote-additional {
  color: var(--grey);
  border-left-style: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.quote-slide, .quote-slider-mask {
  max-width: 1111px;
  height: 100%;
}

.quote-slider {
  background-color: #0000;
  max-width: 1275px;
  height: 100%;
  margin-left: auto;
}

.block-quote-author {
  color: var(--black);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

.quote-deco {
  position: absolute;
  inset: -40px auto auto -30px;
}

.h1-hero {
  color: var(--white);
  font-size: 92px;
}

.section-footer {
  background-color: #21201c;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-wrap {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.footer-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.link-block {
  flex-flow: column;
  align-items: flex-start;
}

.footer-content-head {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.footer-copyright-wrap {
  border-top: 1px solid var(--grey);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
}

.footer-content-text {
  font-size: 20px;
  font-weight: 400;
}

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

.form-wrap {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-image: url('../images/steel-roof_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 48px;
  display: flex;
  overflow: hidden;
}

.form-right-col {
  background-color: var(--white);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 486px;
  height: 100%;
  padding: 32px;
  display: flex;
  overflow: hidden;
}

.form-head-description {
  max-width: 700px;
  color: var(--white);
  font-variation-settings: "wght" 400;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

.form-head-h2 {
  color: var(--white);
  font-variation-settings: "wght" 900, "wdth" 75;
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 900;
}

.form-left-col {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.form-fields-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.field-label {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.text-span {
  color: var(--red);
}

.textarea {
  resize: vertical;
  background-color: #f1f0ef;
  border: 1px solid #dad9d6;
  width: 100%;
  height: 100%;
  min-height: 140px;
  margin-bottom: 0;
}

.text-field {
  background-color: #f1f0ef;
  border: 1px solid #dad9d6;
  margin-bottom: 0;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.checkbox-field {
  margin-bottom: 0;
}

.checkbox {
  background-color: #e9e8e6;
  border: 2px solid #bcbbb5;
  width: 16px;
  height: 16px;
}

.checkbox-label {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form-link {
  color: var(--black);
  font-weight: 500;
}

.submit-button {
  background-color: var(--black);
  color: var(--white);
  margin-top: 5px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  transition: opacity .2s;
}

.submit-button:hover {
  opacity: .9;
}

.form-block {
  width: 100%;
}

.header-footer-benefit-item-icon {
  aspect-ratio: 1;
  width: 56px;
  height: 56px;
}

.section-body-service {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 48px;
  display: flex;
}

.steps-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  max-width: 700px;
  display: flex;
  position: relative;
}

.step-item-explonation {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--white);
  border: 1px solid #e9e8e6;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 24px #00000014;
}

.step-list-item-block {
  aspect-ratio: 1;
  background-color: #fdfdfc;
  border: 1px solid #dad9d6;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  display: flex;
  position: absolute;
}

.social-media-chat-link-description {
  display: none;
}

.step-list-item-deco-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 55px;
  height: 100%;
  min-height: 175px;
  display: grid;
}

.step-list-item-deco-bottom {
  background-color: var(--grey-light);
  width: 1px;
  height: 50%;
}

.steps-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
}

.step-list-item-deco-bottom-full-height {
  background-color: var(--grey-light);
  width: 1px;
  height: 100%;
}

.step-list-item-deco-bottom-head {
  background-color: var(--grey-light);
  width: 1px;
  height: 50%;
}

.mobile-menu-open, .mobile-navigation {
  display: none;
}

.social-media-chat-mobile-menu {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.h2-mobile-menu {
  color: var(--black);
  font-variation-settings: "wght" 600, "wdth" 75;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

.hero-social-media-chat-wrap-mobile-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-media-chat-link-mobile-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  aspect-ratio: 1;
  background-image: linear-gradient(135deg, #fbfbfc, #dbdde8);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.social-media-chat-link-mobile-menu:hover {
  background-image: linear-gradient(135deg, #fbfbfc, var(--grey));
}

.social-media-chat-link-description-mobile-menu {
  display: none;
}

.footer-wrap-mobile-menu {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.footer-content-mobile-menu {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-content-head-mobile-menu {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.footer-content-text-mobile-menu {
  font-size: 20px;
  font-weight: 400;
}

.footer-copywrite-wrap-mobile-menu {
  border-top: 1px solid var(--grey);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
}

.text-span-additional {
  color: var(--grey);
}

@media screen and (min-width: 1280px) {
  .step-list-item-deco-content {
    min-height: 155px;
  }
}

@media screen and (min-width: 1920px) {
  .section-why-mobile {
    display: none;
  }

  .hero-footer-benefits {
    grid-column-gap: 176px;
    grid-row-gap: 176px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .section-why-desktop {
    display: block;
  }

  .why-question {
    font-variation-settings: "wght" 800, "wdth" 75;
    font-size: 48px;
    font-weight: 800;
    line-height: 90%;
  }

  .why-tooltip-text {
    color: #fdfdfc;
    font-variation-settings: "wght" 400;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
  }

  .service-item-wrap {
    padding: 60px 80px;
  }

  .h1-hero {
    font-size: 128px;
  }

  .checkbox.w--redirected-checked {
    background-color: var(--black);
    color: var(--white);
  }
}

@media screen and (max-width: 991px) {
  .faq-body {
    margin-top: -16px;
  }

  .faq-question {
    font-variation-settings: "wdth" 75;
  }

  .faqs-wrap {
    margin-bottom: 0;
  }

  .faq-question-order {
    font-variation-settings: "wght" 800, "wdth" 75;
    font-size: 32px;
    font-weight: 800;
    line-height: 90%;
  }

  .section-why-mobile {
    display: block;
  }

  .section-hero {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .container-main {
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-main.container-main-hero, .container-main.yyyy {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    border-radius: 0;
  }

  .hero-body {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-bottom {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .hero-contacts-wrap {
    flex-flow: column;
    margin-top: 24px;
    margin-bottom: 48px;
  }

  .hero-contact-link {
    color: var(--black);
    font-variation-settings: "wght" 500;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
  }

  .hero-contact-info {
    color: var(--black);
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
  }

  .button-hero {
    display: none;
  }

  .hero-description {
    font-size: 16px;
  }

  .h2-hero {
    font-size: 24px;
  }

  .social-media-chat-link {
    width: 40px;
    height: 40px;
  }

  .social-media-chat.social-media-chat-footer, .social-media-chat.social-media-chat-about {
    display: none;
  }

  .header-footer-benefit-item {
    text-align: center;
    flex-flow: column;
  }

  .header-footer-benefit-item-content {
    margin-top: 0;
  }

  .section-why-desktop {
    display: none;
  }

  .why-question {
    font-variation-settings: "wght" 800, "wdth" 75;
    font-size: 32px;
    font-weight: 800;
    line-height: 90%;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head.section-head-service {
    margin-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-body {
    margin-bottom: 0;
  }

  .section-about {
    padding-top: 30px;
    padding-bottom: 12px;
  }

  .h2-about {
    font-size: 24px;
  }

  .h2-about-list {
    margin-bottom: 12px;
  }

  .h3-about {
    font-size: 24px;
  }

  .about-step-item {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    padding: 16px;
  }

  .about-list-item-deco-2 {
    height: 25px;
  }

  .about-left-col {
    display: none;
  }

  .about-list-left {
    padding-top: 20px;
  }

  .about-list-right {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .section-services {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    padding-top: 24px;
    padding-bottom: 0;
  }

  .h3-service {
    font-size: 32px;
  }

  .services-items-wrap {
    margin-bottom: 0;
  }

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

  .left-arrow {
    width: 48px;
    height: 48px;
    bottom: -50px;
    right: 60px;
  }

  .right-arrow {
    width: 48px;
    height: 48px;
    bottom: -50px;
  }

  .block-quote-main {
    font-size: 24px;
  }

  .block-quote-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .block-quote-additional, .block-quote-author {
    font-size: 16px;
  }

  .h1-hero {
    font-size: 48px;
  }

  .section-footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-content {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .footer-content-head {
    flex-flow: row;
  }

  .footer-content-text {
    font-size: 16px;
  }

  .section-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .form-wrap {
    flex-flow: column;
  }

  .form-right-col {
    max-width: none;
  }

  .form-left-col {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .h2-why {
    font-size: 36px;
  }

  .header-footer-benefit-item-icon {
    width: 48px;
    height: 48px;
  }

  .h2-service {
    font-size: 36px;
  }

  .section-body-service {
    flex-flow: column;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 24px;
  }

  .section-body-service.section-body-core-services {
    background-image: url('../images/Metal-Roofing-Systems_1.avif');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .section-body-service.section-body-premium-services {
    background-image: url('../images/Decorative-Metalwork.avif');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0;
  }

  .step-item-explonation {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 16px;
  }

  .step-list-item-deco-content {
    min-height: 110px;
  }

  .mobile-menu-open {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    display: block;
  }

  .mobile-navigation {
    z-index: 999;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    opacity: 0;
    background-color: #f1f0ef;
    flex-flow: column;
    justify-content: space-between;
    padding: 20px;
    display: none;
    position: fixed;
    inset: 0%;
    transform: translate(-100%);
  }

  .hero-contacts-block {
    display: none;
  }

  .mobile-menu-h2 {
    color: var(--black);
    font-variation-settings: "wght" 800, "wdth" 75;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 90%;
  }

  .social-media-chat-mobile-menu {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .h2-mobile-menu {
    font-size: 24px;
  }

  .hero-social-media-chat-wrap-mobile-menu {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .social-media-chat-link-mobile-menu {
    background-color: var(--white);
    background-image: none;
    border: 1px solid #dad9d6;
    width: 50%;
    height: 56px;
    padding: 8px 12px;
    transition: box-shadow .2s;
  }

  .social-media-chat-link-mobile-menu:hover {
    background-image: none;
    box-shadow: inset 0 2px 5px #0003;
  }

  .social-media-chat-link-icon-mobile-menu {
    aspect-ratio: 1;
    width: 40px;
    height: 40px;
  }

  .social-media-chat-link-description-mobile-menu {
    color: var(--black);
    font-variation-settings: "wght" 600, "wdth" 75;
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    text-decoration: none;
    display: inline-flex;
  }

  .contacts-mobile-menu {
    margin-top: 48px;
  }

  .mobile-menu-close {
    padding-bottom: 5px;
    padding-right: 5px;
  }

  .footer-content-mobile-menu {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-content-head-mobile-menu {
    flex-flow: row;
  }

  .footer-content-text-mobile-menu {
    font-size: 16px;
    font-weight: 600;
  }

  .footer-copywrite-wrap-mobile-menu {
    border-top-color: var(--grey-light);
  }

  .footer-copywrite-text-mobile-menu {
    color: #8d8d86;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .faqs-wrap {
    margin-bottom: 0;
  }

  .section-hero {
    padding-bottom: 32px;
  }

  .container-main.container-main-form {
    padding-left: 0;
    padding-right: 0;
  }

  .header-footer-benefit-item {
    text-align: left;
    flex-flow: row;
  }

  .hero-footer-benefits {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .header-h3 {
    font-size: 20px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-about {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-list-item-deco-2 {
    height: 30px;
  }

  .section-services {
    padding-top: 24px;
  }

  .services-items-wrap {
    grid-template-columns: 1fr;
  }

  .footer-copyright-text {
    letter-spacing: -.5px;
  }

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

  .form-wrap {
    border-radius: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .step-list-item-deco-content {
    min-height: 130px;
  }

  .social-media-chat-link-mobile-menu {
    width: 75%;
  }

  .footer-copywrite-text-mobile-menu {
    letter-spacing: -.5px;
  }
}

@media screen and (max-width: 479px) {
  .container-main.container-main-footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .h2-hero {
    text-align: center;
  }

  .social-media-chat-link {
    width: 100%;
    height: 56px;
    padding: 8px;
  }

  .social-media-chat {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .social-media-chat.social-media-chat-footer {
    width: 100%;
  }

  .hero-social-media-chat-wrap {
    flex-flow: column;
  }

  .about-list-item-deco-2 {
    height: 55px;
  }

  .about-list-left {
    padding-top: 40px;
  }

  .footer-content-head {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-content-text {
    text-align: left;
    flex: none;
    font-size: 14px;
  }

  .footer-copyright-text {
    font-size: 14px;
  }

  .social-media-chat-link-description {
    color: var(--black);
    font-variation-settings: "wght" 600, "wdth" 75;
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    text-decoration: none;
    display: inline-flex;
  }

  .social-media-chat-link-icon {
    width: 40px;
    height: 40px;
  }

  .step-list-item-deco-content {
    min-height: 155px;
  }

  .social-media-chat-mobile-menu {
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .hero-social-media-chat-wrap-mobile-menu {
    flex-flow: column;
  }

  .social-media-chat-link-mobile-menu {
    background-color: var(--white);
    background-image: none;
    border: 1px solid #dad9d6;
    width: 100%;
    height: 56px;
    padding: 8px;
  }

  .social-media-chat-link-icon-mobile-menu {
    width: 40px;
    height: 40px;
  }

  .social-media-chat-link-description-mobile-menu {
    color: var(--black);
    font-variation-settings: "wght" 600, "wdth" 75;
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    text-decoration: none;
    display: inline-flex;
  }

  .footer-content-head-mobile-menu {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-content-text-mobile-menu {
    text-align: left;
    flex: none;
    font-size: 14px;
  }

  .footer-copywrite-text-mobile-menu {
    text-align: center;
    font-size: 14px;
  }
}

#w-node-_3312b7ce-e185-3f5f-6d68-90cd533bed3e-e95af754, #w-node-_3312b7ce-e185-3f5f-6d68-90cd533bed49-e95af754 {
  place-self: end center;
}

#w-node-_3312b7ce-e185-3f5f-6d68-90cd533bed54-e95af754 {
  place-self: start center;
}

#w-node-afc428ee-75b4-7b16-12c0-34b267e9d540-de4e2bce, #w-node-_4b35df12-3c95-ca52-9fd2-95187c33d706-de4e2bce {
  place-self: end center;
}

#w-node-_4d6b072c-7949-acb9-c3d8-b1f887325de2-de4e2bce {
  place-self: start center;
}


@font-face {
  font-family: 'Monasans Wdth Wght';
  src: url('../fonts/MonaSanswdthwght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Monasans Wdth Wght';
  src: url('../fonts/MonaSans-Italicwdthwght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}