:root {
  --color: #dbdbdb;
  --black: black;
  --white: white;
  --grey-low: #f6f6f6;
  --blue: #00d6f4;
  --grey: #424242;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #1a1b1f;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 400;
  line-height: 62px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #1a1b1f;
  text-decoration: underline;
  transition: opacity .2s;
  display: block;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  background-color: #fff;
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 34px;
}

figcaption {
  opacity: 1;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.divider {
  height: 1px;
  background-color: #eee;
}

.section {
  margin-top: 0;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 0;
}

.section.cc-cta {
  background-color: #f4f4f4;
  justify-content: center;
  align-items: stretch;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: 0;
  margin-right: 0;
}

.container.cta {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
  display: flex;
}

.paragraph-tiny {
  font-size: 12px;
  line-height: 20px;
}

.paragraph-bigger {
  opacity: 1;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.paragraph-bigger.cc-bigger-light {
  opacity: .6;
  text-align: left;
  letter-spacing: .5px;
  font-family: Helveticaneue Light, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.paragraph-bigger.cc-bigger-light.med {
  color: #000;
  text-align: center;
  font-family: Helveticaneue Light, sans-serif;
  font-weight: 300;
}

.paragraph-bigger.cc-bigger-white-light {
  opacity: 1;
  text-align: center;
  font-family: Helveticaneue, sans-serif;
}

.button {
  background-color: var(--color);
  color: var(--black);
  letter-spacing: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px 25px;
  font-family: Helveticaneue Light, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.button:hover {
  color: #fff;
  background-color: #32343a;
}

.button:active {
  background-color: #43464d;
}

.button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.button.cc-jumbo-button.cc-jumbo-white {
  background-color: var(--black);
  color: #000;
  border-radius: 0;
  font-family: Helveticaneue, sans-serif;
}

.button.cc-jumbo-button.cc-jumbo-white:hover {
  background-color: #f1f1f1;
}

.button.cc-jumbo-button.cc-jumbo-white:active {
  background-color: #e1e1e1;
}

.button.cc-jumbo-button.cc-jumbo-white.header {
  color: var(--white);
}

.button.cc-contact-us {
  z-index: 5;
  background-color: var(--black);
  color: var(--grey-low);
  letter-spacing: -.3px;
  text-transform: capitalize;
  border-radius: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Helveticaneue, sans-serif;
  font-size: 16px;
  transition: background-color .4s, opacity .4s, color .4s;
  position: relative;
}

.button.cc-contact-us:hover {
  color: var(--blue);
}

.button.cc-white-button {
  color: #202020;
  background-color: #fff;
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.button.cc-white-button:hover {
  background-color: rgba(255, 255, 255, .8);
}

.button.cc-white-button:active {
  background-color: rgba(255, 255, 255, .9);
}

.label {
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Helveticaneue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.label.cc-light {
  opacity: .6;
  color: var(--grey);
  text-align: center;
  letter-spacing: 2px;
  -webkit-text-stroke-color: var(--grey);
  font-family: Helveticaneue Med, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.label.cc-blog-date {
  opacity: .6;
  margin-top: 20px;
}

.label.gray {
  color: var(--grey);
}

.label.black {
  color: var(--black);
}

.rich-text {
  width: 70%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text p {
  opacity: .6;
  margin-top: 15px;
  margin-bottom: 25px;
}

.rich-text figcaption {
  opacity: .6;
}

.rich-text figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

.paragraph-light {
  opacity: .8;
  color: var(--black);
  text-align: center;
  letter-spacing: .1px;
  font-family: Helveticaneue Light, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
}

.paragraph-light.link {
  color: var(--white);
  text-align: left;
}

.paragraph-light._1 {
  width: 200px;
  text-align: left;
  font-size: 15px;
}

.heading-jumbo {
  text-align: center;
  letter-spacing: 10px;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 64px;
  line-height: 60px;
}

.heading-jumbo-small {
  width: 100%;
  color: #000;
  text-align: left;
  letter-spacing: -2px;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Helveticaneue, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
}

.heading-jumbo-small.box {
  width: 50%;
  background-color: var(--blue);
  text-align: center;
  border-radius: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.heading-jumbo-small.center {
  text-align: center;
  padding-left: 87px;
  padding-right: 87px;
}

.heading-jumbo-small.white {
  color: var(--white);
}

.logo-link {
  z-index: 1;
}

.logo-link:hover {
  opacity: .8;
}

.logo-link:active {
  opacity: .7;
}

.menu {
  z-index: 0;
  flex: 1;
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.navigation-wrap {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navigation {
  background-color: var(--white);
  align-items: center;
  margin-bottom: 24px;
  padding: 24px 32px;
  display: flex;
}

.navigation-item {
  background-color: var(--blue);
  opacity: 1;
  color: var(--black);
  letter-spacing: -.5px;
  text-transform: capitalize;
  padding: 8px 25px;
  font-family: Helveticaneue, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.navigation-item:hover {
  background-color: var(--black);
  opacity: .9;
  color: var(--grey-low);
}

.navigation-item:active {
  opacity: .8;
}

.navigation-item.w--current {
  opacity: 1;
  color: #1a1b1f;
  font-weight: 600;
}

.navigation-item.w--current:hover {
  opacity: .8;
  color: #32343a;
}

.navigation-item.w--current:active {
  opacity: .7;
  color: #32343a;
}

.logo-image {
  display: block;
}

.navigation-items {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-wrap {
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.webflow-link {
  opacity: .5;
  align-items: center;
  text-decoration: none;
  transition: opacity .4s;
  display: flex;
}

.webflow-link:hover {
  opacity: 1;
}

.webflow-link:active {
  opacity: .8;
}

.webflow-logo-tiny {
  margin-top: -2px;
  margin-right: 8px;
}

.cta-text {
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.cta-wrap {
  width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: stretch;
  align-items: start;
  justify-items: center;
  padding-top: 80px;
  padding-bottom: 32px;
  display: grid;
}

.intro-header {
  height: 620px;
  background-color: var(--black);
  color: #fff;
  background-image: linear-gradient(151deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, .78)), url('../images/Render_ParqueIndustrial_Camarillo4.jpeg');
  background-size: auto, cover;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.intro-content {
  width: 70%;
  max-width: 1140px;
  text-align: center;
}

.intro-content.cc-homepage {
  flex: 0 auto;
  align-self: auto;
  margin-bottom: 0;
}

.motto-wrap {
  width: 95%;
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--color);
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 85px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  display: flex;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-success-message {
  background-color: #12b878;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.contact-form-wrap {
  border: 1px solid #eee;
  padding: 24px 50px 40px;
}

.contact-form-grid {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1.75fr 1fr;
  align-items: start;
  margin-top: 40px;
  margin-bottom: 100px;
}

.details-wrap {
  margin-bottom: 30px;
}

.get-in-touch-form {
  flex-direction: column;
  display: flex;
}

.text-field {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 21px 20px;
  font-size: 14px;
  line-height: 26px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active, .text-field:focus {
  border-color: #43464d;
}

.text-field::-ms-input-placeholder {
  color: rgba(50, 52, 58, .4);
}

.text-field::placeholder {
  color: rgba(50, 52, 58, .4);
}

.text-field.cc-contact-field {
  margin-bottom: 25px;
  font-family: Helveticaneue Med, sans-serif;
}

.text-field.cc-textarea {
  height: 200px;
  padding-top: 12px;
}

.text-field.footer {
  margin-bottom: 0;
}

.contact-form {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-form-heading-wrap {
  margin-bottom: 40px;
}

.blog-detail-header-wrap {
  width: 70%;
  margin: 60px auto;
}

.detail-header-image {
  width: 100%;
  height: 620px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  margin-bottom: 60px;
  display: block;
}

.detail-header-image.w--current {
  margin-bottom: 60px;
}

.contact-email-link {
  opacity: 1;
  color: var(--white);
  margin-bottom: 5px;
  font-family: Helveticaneue Light, sans-serif;
  font-size: 20px;
}

.contact-email-link:hover {
  opacity: 1;
  color: var(--blue);
}

.contact-email-link:active {
  opacity: .8;
}

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

.protected-wrap {
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

._404-wrap {
  width: 100%;
  height: 100%;
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.home-content-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 80px;
  margin-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.home-section-wrap {
  margin-bottom: 30px;
}

.about-grid {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 2fr 2fr;
  align-items: center;
  margin-bottom: 80px;
  display: block;
}

.intro-text {
  width: 80%;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.blog-heading {
  text-align: center;
  margin-bottom: 60px;
}

.blog-heading._2 {
  margin-top: 73px;
}

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

.bold-text {
  text-align: center;
  letter-spacing: -2px;
  font-family: Helveticaneue, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 64px;
}

.bold-text-2 {
  color: #fff;
  letter-spacing: 0;
  font-family: Helveticaneue Light, sans-serif;
  font-weight: 300;
}

.text-block {
  color: var(--black);
  letter-spacing: -.2px;
  text-transform: capitalize;
  font-family: Helveticaneue, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

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

.image {
  border-radius: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.div-block {
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}

.list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-bottom: 1px solid var(--color);
  color: var(--grey);
  text-align: center;
  flex-direction: row;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: stretch;
  padding: 50px 48px 80px;
  font-family: Helveticaneue Thin, sans-serif;
  font-size: 24px;
  line-height: 48px;
  list-style-type: none;
  display: grid;
}

.list._2 {
  grid-template-columns: 1fr 1fr;
}

.text-span-3 {
  color: var(--black);
  font-family: Helveticaneue Med, sans-serif;
}

.list-item-3 {
  background-color: var(--grey-low);
  color: #adadad;
  letter-spacing: -.4px;
  text-transform: none;
  border-radius: 2px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-family: Helveticaneue Med, sans-serif;
}

.list-item-3.gas {
  display: none;
}

.div-block-2 {
  width: auto;
  border-bottom: 1px solid var(--color);
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
}

.image-2 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.div-block-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-4 {
  background-color: var(--black);
  padding: 24px 16px;
}

.body-2 {
  display: block;
}

.text-span-6 {
  background-color: var(--blue);
  padding-left: 8px;
  padding-right: 8px;
}

.footer-light {
  border-bottom: 1px solid #e4ebf3;
  padding: 20px 30px 40px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-brand {
  width: 120px;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-form {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-submit {
  width: 50px;
  height: 48px;
  background-color: #1a1b1f;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

.footer-divider-two {
  width: 100%;
  height: 1px;
  background-color: #e4ebf3;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #3a4554;
  font-family: Helveticaneue Light, sans-serif;
  display: none;
}

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

.text-span-8 {
  background-color: var(--blue);
}

.text-block-2 {
  background-color: #fff;
  font-family: Helveticaneue, sans-serif;
}

.dropdown-list {
  display: none;
}

.dropdown-link {
  text-align: center;
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Helveticaneue, sans-serif;
  font-size: 14px;
}

.dropdown-link.w--current {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}

.dropdown-link-2 {
  text-align: center;
  background-color: #e7e7e7;
  font-family: Helveticaneue, sans-serif;
}

.grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  padding-right: 0;
}

.div-block-5 {
  background-color: #fff;
  padding-right: 0;
}

.image-3 {
  width: 50%;
  height: 50%;
}

.dropdown {
  cursor: pointer;
}

@media screen and (min-width: 1280px) {
  .container {
    width: auto;
    max-width: none;
  }

  .navigation-item {
    font-family: Lato, sans-serif;
  }
}

@media screen and (max-width: 991px) {
  .section.cc-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .button {
    justify-content: center;
  }

  .button.cc-contact-us {
    display: none;
  }

  .heading-jumbo {
    font-size: 56px;
    line-height: 70px;
  }

  .logo-link.w--current {
    flex: 1;
  }

  .menu-icon {
    display: block;
  }

  .menu {
    margin-left: 30px;
    position: static;
  }

  .navigation-wrap {
    background-color: #fff;
  }

  .navigation {
    padding: 25px 30px;
  }

  .navigation-item {
    text-align: center;
    padding: 15px 30px;
    transition: background-color .4s, opacity .4s, color .4s;
  }

  .navigation-item:hover {
    background-color: #f7f8f9;
  }

  .navigation-item:active {
    background-color: #eef0f3;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .navigation-items {
    background-color: #fff;
  }

  .cta-text {
    width: auto;
  }

  .cta-wrap {
    width: auto;
    padding: 80px 50px 90px;
  }

  .contact-form-grid {
    width: 80%;
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .get-in-touch-form {
    text-align: left;
  }

  .blog-detail-header-wrap {
    width: 70%;
  }

  .detail-header-image {
    height: 460px;
  }

  .about-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
  }

  .intro-text {
    width: auto;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .footer-form {
    width: 100%;
    margin-top: 40px;
  }

  .footer-form-container {
    max-width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section.cc-cta {
    padding: 15px;
  }

  .section.cc-store-home-wrap {
    margin-left: 15px;
    margin-right: 15px;
  }

  .container {
    text-align: center;
  }

  .paragraph-bigger {
    font-size: 16px;
    line-height: 28px;
  }

  .rich-text {
    width: 90%;
    max-width: 470px;
    text-align: left;
  }

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

  .heading-jumbo-small {
    font-size: 30px;
    line-height: 52px;
  }

  .logo-link {
    padding-left: 0;
  }

  .navigation {
    padding: 20px 30px;
  }

  .cta-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .intro-content {
    width: 80%;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .text-field.cc-contact-field, .text-field.cc-textarea {
    text-align: left;
  }

  .blog-detail-header-wrap {
    width: 90%;
    max-width: 470px;
    text-align: left;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 52px;
  }

  .section.cc-store-home-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .paragraph-bigger.cc-bigger-light {
    text-align: center;
    letter-spacing: .7px;
    font-size: 12px;
    line-height: 18px;
  }

  .paragraph-bigger.cc-bigger-white-light {
    line-height: 20px;
  }

  .button.cc-jumbo-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .button.cc-jumbo-button.cc-jumbo-white {
    padding: 8px 16px;
  }

  .button.cc-contact-us {
    display: block;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

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

  .heading-jumbo {
    font-size: 36px;
    line-height: 32px;
  }

  .heading-jumbo-small {
    letter-spacing: -1px;
    font-size: 32px;
    line-height: 32px;
  }

  .heading-jumbo-small.box {
    text-align: left;
    letter-spacing: -1px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .heading-jumbo-small.center {
    letter-spacing: -.8px;
    padding-left: 12px;
    padding-right: 12px;
    font-family: Helveticaneue, sans-serif;
    font-size: 22px;
    line-height: 28px;
  }

  .menu {
    margin-left: 15px;
  }

  .navigation {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navigation-item {
    background-color: var(--grey-low);
  }

  .navigation-item:hover {
    background-color: var(--black);
  }

  .menu-button, .menu-button.w--open {
    flex: none;
  }

  .cta-wrap {
    flex-wrap: wrap;
    padding: 24px 15px;
    display: flex;
  }

  .intro-header {
    border-radius: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-content.cc-homepage {
    width: 100%;
    flex: 1;
    align-self: auto;
  }

  .contact-form-wrap {
    padding: 20px 24px 20px 20px;
  }

  .contact-form-grid {
    width: 100%;
  }

  .blog-detail-header-wrap {
    width: 100%;
    max-width: none;
  }

  .bold-text {
    font-size: 40px;
    line-height: 38px;
  }

  .bold-text-2 {
    font-size: 14px;
    line-height: 0;
  }

  .text-block {
    font-size: 12px;
  }

  .image {
    border-radius: 0;
  }

  .div-block {
    padding-left: 34px;
    padding-right: 34px;
  }

  .list {
    padding: 20px 28px 40px;
    display: block;
  }

  .list-item-3 {
    padding: 33px 20px;
    font-size: 22px;
    line-height: 32px;
  }

  .div-block-2 {
    margin-left: 18px;
    margin-right: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-2 {
    max-width: none;
  }

  .footer-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .dropdown-list {
    display: none;
  }

  .image-3 {
    width: auto;
    height: auto;
    max-height: 50%;
    max-width: 50%;
  }
}

#w-node-_84c20425-36ec-e24a-2dee-1eca7928868f-5d629970 {
  align-self: center;
}

#w-node-_84c20425-36ec-e24a-2dee-1eca79288691-5d629970 {
  align-self: start;
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-5d629970 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_86e64837-0616-515b-4568-76c147234d3f-5d629970 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-b1183a72-e7c2-d4bc-dab9-55b37b128c39-b27a4e25, #w-node-_28abe12f-5a08-aad7-ed47-c09d67e12bb6-b27a4e25 {
  align-self: center;
  justify-self: center;
}

#w-node-_3f61509a-fac7-b0d5-3763-509be705858e-5d629975 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-5d629975 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6b3b7785-d872-c313-8cb2-d9ee8f79f162-8f79f15f {
  align-self: start;
}

#w-node-_84c20425-36ec-e24a-2dee-1eca7928868f-9f6354b7 {
  align-self: center;
}

#w-node-_84c20425-36ec-e24a-2dee-1eca79288691-9f6354b7 {
  align-self: start;
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-9f6354b7 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_86e64837-0616-515b-4568-76c147234d3f-9f6354b7 {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d34-5d629970 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-5d629970 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-5d629975, #w-node-_86e64837-0616-515b-4568-76c147234d34-9f6354b7 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-9f6354b7 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


@font-face {
  font-family: 'Cera Stencil Pro';
  src: url('../fonts/Cera-Stencil-PRO-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue';
  src: url('../fonts/HelveticaNeue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue Med';
  src: url('../fonts/HelveticaNeue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue Light';
  src: url('../fonts/HelveticaNeue-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue Reg';
  src: url('../fonts/HelveticaNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue Thin';
  src: url('../fonts/HelveticaNeue-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}