.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: #333;
  font-family: automate, sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

.home-hero-section {
  height: 100vh;
  grid-template-rows: .25fr auto auto;
  grid-template-columns: 1fr 3fr 1fr;
}

.home-hero-image {
  background-image: url('../images/tile-04-20percent.png'), url('../images/landing_bg_09.jpg');
  background-position: 50%, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.home-hero-content {
  color: rgba(232, 232, 232, .19);
  background-color: rgba(233, 215, 173, .9);
  border: 4px solid #6e322b;
  border-radius: 4px;
  padding: 30px;
}

.major-heading {
  color: #6e322b;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: automate, sans-serif;
  font-size: 46px;
}

.button {
  background-color: #ff5e49;
}

.button.button-press-start {
  color: #1f0b08;
  background-color: #00fd59;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-family: automate, sans-serif;
  font-weight: 700;
}

.button.button-press-subscribe {
  color: #1f0b08;
  letter-spacing: 10px;
  background-color: #f3b401;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
  margin: 20px auto;
  padding-left: 79px;
  padding-right: 79px;
  font-family: automate, sans-serif;
  font-weight: 700;
}

.button.button-press-subscribe:hover {
  color: #e9d7ad;
  background-color: #6e322b;
}

.button.button-press-submit {
  color: #6e322b;
  background-color: #e9d7ad;
  border: 1px solid #6e322b;
  border-radius: 6px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3px;
  padding-bottom: 3px;
  font-family: automate, sans-serif;
  font-weight: 700;
}

.paragraph {
  color: #000;
  border: 1px #6e322b;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.paragraph.powered-by-text {
  color: #e9d7ad;
  margin-top: 0;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-bottom: 3px;
  font-size: 14px;
  line-height: 1.2;
}

.home-hero-logo {
  color: rgba(232, 232, 232, .19);
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 0 0;
}

.div-block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-2 {
  text-align: center;
}

.div-block-2.div-powered-by {
  background-color: #6e322b;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 13px;
}

.div-contact-form {
  display: block;
}

.field-label {
  color: #6e322b;
  letter-spacing: 1px;
  text-indent: 0;
  font-size: 14px;
  font-weight: 400;
}

.form-block {
  color: #00fd59;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 140px;
}

.text-field {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #00fd59;
  border-radius: 1px;
}

.text-field.form-text-matrix {
  color: #6e322b;
  border-color: #6e322b;
  border-radius: 6px;
}

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

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

.success-message, .error-message {
  background-color: rgba(0, 0, 0, 0);
}

.div-contact-formgoogleform {
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.embed-googleform {
  width: 900px;
  height: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.heading {
  color: #6e322b;
}

.heading.hidden-mobile-only {
  display: none;
}

.text-block {
  color: #6e322b;
}

.text-block-2 {
  color: #c91c2b;
}

@media screen and (max-width: 991px) {
  .home-hero-content {
    width: 600px;
    padding: 15px;
  }

  .major-heading {
    font-size: 30px;
  }

  .button.button-press-subscribe {
    margin-top: -25px;
  }

  .form-block {
    padding: 0 0 2px;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-content {
    width: 400px;
  }

  .major-heading {
    font-size: 28px;
    line-height: 1.2;
  }

  .button.button-press-subscribe {
    padding-left: 30px;
    padding-right: 30px;
  }

  .paragraph {
    font-size: 16px;
  }

  .heading.hidden-mobile-only {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .home-hero-section {
    grid-template-columns: 2fr;
    justify-content: center;
  }

  .home-hero-content {
    width: 300px;
  }

  .major-heading {
    font-size: 22px;
    line-height: 1.2;
  }

  .button.button-press-subscribe {
    letter-spacing: 0;
    margin-top: -12px;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 13px;
  }

  .paragraph {
    font-size: 13px;
  }
}

#w-node-_6f17a826-1ab8-de69-3d6e-0cdf35460974-89534adc {
  grid-area: 1 / 1 / 4 / 4;
}

#w-node-c7cd1714-fb9b-9e2e-2f0f-5733c1d5dd7c-89534adc {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
  justify-self: center;
}

#w-node-fe3db4b4-1201-c317-d1f5-713f8d09dcab-89534adc {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_1f5b31af-a2f9-21be-7938-41e557ae5967-89534adc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6f17a826-1ab8-de69-3d6e-0cdf35460974-4d2bad51 {
  grid-area: 1 / 1 / 4 / 4;
}

#w-node-c7cd1714-fb9b-9e2e-2f0f-5733c1d5dd7c-4d2bad51 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
  justify-self: center;
}

#w-node-fe3db4b4-1201-c317-d1f5-713f8d09dcab-4d2bad51 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_1f5b31af-a2f9-21be-7938-41e557ae5967-4d2bad51 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-fe3db4b4-1201-c317-d1f5-713f8d09dcab-89534adc, #w-node-fe3db4b4-1201-c317-d1f5-713f8d09dcab-4d2bad51 {
    grid-area: 2 / 2 / 3 / 3;
  }
}


