:root {
  --green: #7fbd00;
  --dark-grey: #2f3c38;
  --white: #fff;
  --light-green: #eef4e2;
  --steel-blue: #3765a3;
  --firebrick: #c92228;
  --pale-violet-red: #e04c86;
  --medium-sea-green: #3bc984;
  --color: #b5e05b;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

h1 {
  z-index: 10;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 45px;
  position: relative;
}

h2 {
  color: var(--green);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

p {
  color: var(--dark-grey);
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.4;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color .4s;
}

a:hover {
  color: #000;
}

blockquote {
  color: #666;
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px;
}

.hero-section {
  background-image: url('../images/design-desk.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 145px;
  position: relative;
}

.hero-section.about-page {
  background-image: url('../images/floor-10.jpg');
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.hero-section.home-page-hero {
  text-align: center;
  background-image: url('../images/floor-10.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 65svh;
  padding: 180px 5% 70px;
  display: flex;
}

.nav {
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 10px;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-link {
  opacity: .6;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  font-size: .9rem;
  transition: opacity .35s;
}

.nav-link:hover {
  opacity: 1;
  color: #fff;
}

.nav-link.w--current {
  opacity: 1;
  color: #fff;
  font-size: .9rem;
}

.section {
  color: var(--green);
  padding-top: 0;
  padding-bottom: 0;
}

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

.section.top-section.home-page {
  background-color: #ebefe3;
}

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

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

._60block {
  float: left;
  width: 60%;
  height: 300px;
  padding: 5px;
}

.hero-tile {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tile-image {
  background-image: url('../images/floor-5.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
  transition: transform 1s;
  position: absolute;
  inset: 0;
}

.tile-image:hover {
  transform: scale(1.03);
}

.tile-image.hire {
  background-image: url('../images/floor-11.jpg');
  background-position: 50% 100%;
}

.tile-image.floors {
  background-image: url('../images/floor-10.jpg');
}

.tile-image.gallery {
  background-image: url('../images/5.jpeg');
}

.tile-text {
  z-index: 20;
  color: var(--light-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px #0000005e;
  font-size: 2.4svw;
  font-weight: 800;
  line-height: 1.2;
  position: absolute;
  bottom: 24px;
  left: 25px;
}

._40block {
  float: left;
  width: 40%;
  height: 300px;
  padding: 5px;
  position: relative;
}

._33block {
  float: left;
  width: 33.33%;
  height: 300px;
  padding: 5px;
}

.social-block {
  float: left;
  background-color: #55acee;
  background-image: url('../images/twitter.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50px;
  width: 50%;
  height: 145px;
  transition: background-color .4s;
}

.social-block:hover {
  background-color: #3d90cf;
}

.social-block.facebook {
  background-color: #3765a3;
  background-image: url('../images/facebook.svg');
  background-size: 50px;
}

.social-block.facebook:hover {
  background-color: #23528f;
}

.social-block.instagram {
  background-color: #c90854;
  background-image: url('../images/IconoirInstagram.svg');
  background-size: 100px;
  display: inline-block;
}

.social-block.instagram:hover {
  background-color: #c02c67;
}

.footer-section {
  background-color: var(--dark-grey);
  padding-top: 23px;
  padding-bottom: 23px;
}

.tile-link {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.contact-overlay {
  z-index: 9999;
  opacity: 0;
  text-align: center;
  background-color: #000000f2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  display: none;
  position: fixed;
  inset: 0;
  transform: scale(1.1);
}

.close-link {
  opacity: .5;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .4s;
  display: block;
}

.close-link:hover {
  opacity: 1;
  color: #fff;
}

.text-field {
  background-color: #ffffff1a;
  border: 1px solid #000000b3;
  border-radius: 3px;
  height: 50px;
  font-size: 16px;
}

.text-field:focus {
  color: #fff;
  border-color: #ffffff4d;
}

.text-field.text-area {
  height: 120px;
}

.form-wrapper {
  z-index: 100;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: static;
}

.submit-button {
  background-color: #1d1613;
  border-radius: 3px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 17px;
  transition: background-color .4s;
  display: block;
}

.submit-button:hover {
  background-color: #16f625;
}

.contact-heading {
  color: #fff;
  font-size: 30px;
  line-height: 32px;
}

.small-divider {
  opacity: .2;
  background-color: #fff;
  width: 80px;
  height: 2px;
  margin: 10px auto;
  display: block;
}

.contact-text {
  opacity: .7;
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.success-message {
  background-color: #2bab68;
}

.success-text {
  color: #fff;
  margin-bottom: 0;
}

.hero-overlay {
  background-color: #0009;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  inset: 0;
}

.cta-section {
  background-color: var(--white);
  text-align: center;
  background-image: linear-gradient(#293b2bbf, #293b2bbf), url('../images/floor-10.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 60px;
  padding-bottom: 60px;
}

.cta-heading {
  color: var(--light-green);
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

.button {
  background-color: var(--green);
  color: #100e0f;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px 40px;
  font-size: 14px;
  transition: background-color .4s;
}

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

.hero-page-heading {
  color: var(--green);
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 60px;
}

.tile-overlay {
  background-color: #0003;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.utility-page-wrap {
  background-image: linear-gradient(0deg, var(--dark-grey), #fff0), url('../images/Laminate.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

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

.logo {
  width: 150px;
}

.paragraph-hero {
  color: #fff;
  max-width: 80%;
  font-size: 1rem;
  line-height: 1.6;
}

.body_wrap {
  color: var(--dark-grey);
  width: 100%;
  height: 100%;
}

.hover-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #fff0;
  border: 1px solid #f3f6fc;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  text-decoration: none;
  display: flex;
}

.background-image {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hover-link-wrapper {
  z-index: 100;
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: 148px;
  height: 148px;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: auto 0 5vw auto;
}

.hover-link-wrapper.project-view-link {
  position: relative;
  bottom: auto;
  right: auto;
}

.hover-link-wrapper.project-view-link.top {
  z-index: 500;
  position: absolute;
}

.project-image {
  border: 1px #fefefe;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.project-item {
  color: #fff;
  flex-direction: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.project-card-info {
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  padding: 68px 24px;
  display: flex;
  position: relative;
}

.project-card-info.border {
  justify-content: center;
  align-items: center;
  padding: 1.8rem;
}

.project-hover-link-wrapper {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.container {
  background-color: #fff0;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0;
  position: relative;
  top: 0;
}

.container.no_padding {
  padding-top: 6px;
  padding-bottom: 6px;
}

.container-2 {
  z-index: 100;
  display: block;
  position: static;
}

.image-wrapper {
  border-radius: 4px;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.image-one, .image-two {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.faq-wrap {
  background-color: var(--light-green);
  cursor: pointer;
  border-radius: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 20px;
}

.faq-question-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.question {
  color: var(--green);
  font-weight: 700;
}

.plus-wrap {
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  display: flex;
  position: relative;
}

.plus-horizontal {
  background-color: var(--green);
  width: 100%;
  height: 2px;
}

.plus-vertical {
  background-color: var(--green);
  width: 2px;
  height: 100%;
  position: absolute;
}

.answer {
  padding-top: 20px;
}

.quick-stack {
  color: var(--dark-grey);
  background-color: #fff;
  width: 100%;
  padding: 7px 10px;
}

.quick-stack._1 {
  background-color: var(--light-green);
  color: var(--dark-grey);
  width: 100%;
}

.cell {
  border-right: 1px solid #000;
}

.cell-2 {
  color: var(--dark-grey);
  border-right: 1px solid #000;
}

.stack_wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}

.quick-stack_timbers {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f7f7f7;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.img_100 {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 32rem;
}

.cell_text {
  background-color: var(--white);
  color: var(--white);
  background-image: linear-gradient(#f1fdddf2, #f1fdddf2), url('../images/Artistic-flooring-swirl.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  justify-content: center;
  align-items: flex-start;
  padding-left: 30px;
  padding-right: 30px;
}

.spacer {
  height: 2rem;
}

.quick-stack-2 {
  padding: 0;
}

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

.caption {
  margin-top: 10px;
}

.slide {
  border-radius: 20px;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: static;
}

.slider-left {
  color: #fff;
  background-color: #151c340f;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.slider-left:hover {
  background-color: #151c3426;
}

.text-area {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 22px;
  min-height: 144px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.text-area:hover {
  border-color: #4a3aff;
  box-shadow: 0 2px 12px #14142b1a;
}

.text-area:focus {
  color: #211f54;
  border-color: #4a3aff;
}

.text-area::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.form-wrap {
  background-color: #fff;
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 40px 40px;
}

.text-field-large {
  border: 1px solid #c4cee8;
  border-radius: 9px;
  min-height: 150px;
}

.text-field-large:hover {
  border-width: 2px;
}

.text-field-large:active, .text-field-large:focus {
  border-width: 2px;
  border-color: #5f30e2;
}

.display-normal {
  color: #02044a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
}

.form-block {
  margin-left: auto;
  margin-right: auto;
}

.button-wrap-right {
  justify-content: flex-end;
  margin-top: 32px;
  display: flex;
}

.form-section {
  background-color: var(--light-green);
  color: var(--dark-grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 60px 0%;
  display: none;
  position: relative;
  overflow: hidden;
}

.submit-button-2 {
  background-color: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
}

.submit-button-2:hover {
  background-color: var(--dark-grey);
}

.field-wrap {
  margin-bottom: 24px;
}

.text-field-2 {
  border: 1px solid #c4cee8;
  border-radius: 9px;
  min-height: 3rem;
  transition: all .2s;
}

.text-field-2:hover {
  border-width: 2px;
}

.text-field-2:active, .text-field-2:focus {
  border-width: 2px;
  border-color: #5f30e2;
}

.title-wrap {
  color: #00040e;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  position: relative;
}

.section-colour {
  background-color: var(--white);
  color: var(--dark-grey);
  width: 100%;
}

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

.body {
  background-color: var(--light-green);
  color: var(--dark-grey);
}

.select-field {
  background-color: var(--light-green);
  color: var(--dark-grey);
  border-radius: 9px;
  height: 3rem;
}

.success-message-2 {
  background-color: var(--light-green);
  border-radius: 5px;
}

.cell--1 {
  color: var(--dark-grey);
}

.copyright {
  background-color: #262626;
}

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

.text-block {
  font-size: .8rem;
}

.btn {
  background-color: var(--green);
  border-radius: 5px;
  transition-property: all;
}

.btn:hover {
  transform: translate(0, -2px);
}

.hero_wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.container-5 {
  max-width: 90%;
}

.bummer {
  color: var(--green);
  font-size: 60px;
  font-weight: 900;
}

.div-block {
  background-color: var(--green);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 145px;
  display: flex;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 5px;
  display: flex;
}

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

.div-block-2, .columns {
  justify-content: center;
  align-items: center;
  display: flex;
}

.rich_text_block.centred {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.centred {
  text-align: center;
}

.spacer-medium {
  height: 1rem;
}

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

@media screen and (min-width: 1920px) {
  .project-item {
    min-height: 570px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-section {
    padding-top: 88px;
  }

  .hero-section.home-page-hero {
    padding-top: 110px;
    padding-left: 114px;
    padding-right: 114px;
  }

  .nav {
    padding-top: 10px;
  }

  .nav-link {
    font-size: 1rem;
    transition-property: all;
  }

  .nav-link:hover {
    color: var(--green);
  }

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

  .tile-text {
    font-size: 30px;
    line-height: 33px;
    bottom: 22px;
    left: 22px;
  }

  .menu-button {
    border: 1px solid var(--light-green);
    color: #fff;
    border-radius: 50px;
  }

  .menu-button.w--open {
    background-color: var(--green);
    border-radius: 50px;
    padding: 15px;
  }

  .nav-menu {
    background-color: #242424;
    padding-bottom: 10px;
  }

  .contact-overlay {
    opacity: 0;
    display: none;
    transform: scale(1.1);
  }

  .form-wrapper {
    width: 70%;
  }

  .hero-overlay {
    padding-top: 0;
  }

  .utility-page-content {
    width: 60%;
  }

  .paragraph-hero {
    margin-bottom: 0;
  }

  .card-link-text {
    display: none;
  }

  .hover-link {
    border-style: none;
    border-radius: 0%;
  }

  .hover-link-wrapper.project-view-link.top {
    width: 100%;
    height: 100%;
  }

  .project-item {
    min-height: 250px;
  }

  .hero_wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 41px;
  }

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

  .hero-section.home-page-hero {
    padding-bottom: 60px;
    padding-left: 46px;
    padding-right: 46px;
  }

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

  .section.top-section.home-page {
    padding-left: 5px;
    padding-right: 5px;
  }

  .tile-text {
    font-size: 23px;
    line-height: 29px;
    bottom: 14px;
    left: 17px;
  }

  .social-block, .social-block.facebook, .social-block.instagram {
    background-size: 40px;
  }

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

  .logo-footer {
    float: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .logo-footer.w--current {
    padding-bottom: 20px;
  }

  .footer-link-col {
    text-align: center;
  }

  .form-wrapper {
    width: 80%;
  }

  .hero-page-heading {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .hover-link-wrapper {
    display: none;
  }

  .hover-link-wrapper.project-view-link {
    display: flex;
  }

  .project-item {
    min-height: 250px;
  }

  .container {
    padding: 5px 0 40px;
    top: auto;
  }

  .cell-2 {
    padding-right: 5px;
  }

  .img_100 {
    min-height: 10rem;
  }

  .cell_text {
    padding-bottom: 20px;
  }

  .text-area {
    border-radius: 18px;
  }

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

  .gallery_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    text-shadow: 1px 1px 6px #00000061;
    font-size: 24px;
    line-height: 32px;
  }

  .hero-section.home-page-hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section {
    padding: 20px 0;
  }

  .section.top-section.home-page {
    padding-left: 0;
    padding-right: 0;
  }

  ._60block {
    width: 100%;
  }

  .tile-text {
    font-size: 1.4rem;
    line-height: 1.4;
    bottom: 20px;
    left: 20px;
  }

  ._40block, ._33block {
    width: 100%;
  }

  .logo-footer.w--current {
    margin-bottom: 10px;
  }

  .close-link:hover {
    color: #fff;
  }

  .form-wrapper {
    width: 90%;
  }

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

  .hero-page-heading {
    font-size: 3rem;
    line-height: 1.2;
  }

  .utility-page-wrap {
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
  }

  .utility-page-content {
    width: 80%;
  }

  .logo {
    width: 150px;
  }

  .paragraph-hero {
    display: none;
  }

  .project-item {
    min-height: 150px;
  }

  .project-card-info {
    padding: 18px 12px;
  }

  .container {
    max-width: 90%;
    padding-bottom: 20px;
  }

  .wrapper {
    grid-template-columns: 1fr;
  }

  .quick-stack_timbers {
    margin-bottom: 0;
  }

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

  .spacer {
    display: block;
  }

  .quick-stack-2 {
    margin-bottom: 20px;
  }

  .form-wrap {
    border: 1px solid var(--green);
    padding-left: 32px;
    padding-right: 32px;
  }

  .form-section {
    background-color: var(--white);
    padding-top: 20px;
  }

  .submit-button-2 {
    width: 100%;
  }

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

  .container-5 {
    padding: 10px;
  }

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

  .bummer {
    font-size: 40px;
  }

  .div-block-2 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }

  .columns {
    display: block;
  }

  .spacer-medium {
    display: none;
  }

  .gallery_wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }
}

#w-node-_9203b066-5e2e-cb8c-4f32-97f865a749e1-250a0f75, #w-node-_9203b066-5e2e-cb8c-4f32-97f865a749ea-250a0f75, #w-node-_9203b066-5e2e-cb8c-4f32-97f865a749f3-250a0f75, #w-node-d12cde9e-4dd3-a8d9-d016-8a1a5b4f27fa-b866c71d, #w-node-fabeefda-18b1-8bff-5e84-581ecd70e018-b866c71d, #w-node-d8a281bf-2ade-eaf7-4e06-dd52c44cd7ea-b866c71d, #w-node-_431effc8-5d39-73c5-d6af-ce0896991f70-b866c71d, #w-node-_561ba042-94f3-5d83-621b-f61c244ecfc7-b866c71d, #w-node-_07597bd9-85e9-5205-653a-5ee0732f697e-b866c71d, #w-node-_01164e64-6884-c300-64bd-d43aab03996c-b866c71d {
  align-self: stretch;
}

#w-node-_4ee71a41-08da-3704-9129-c5da7ddd6b05-c69f19dd, #w-node-_5f5f8c7b-19b0-ad23-9f64-340b384d20f4-c69f19dd, #w-node-_5fa43c60-9e85-e10e-344b-86514db4d34b-c69f19dd, #w-node-_53426654-6f99-327d-67e6-e13bbb3ac739-c69f19dd, #w-node-_7f62be6a-8fa5-c5ff-afff-d55ee353aa4c-c69f19dd, #w-node-_8f87e2e5-12e8-531e-2013-1a339b8adef8-c69f19dd, #w-node-e2054aaa-a6e1-7604-ba88-821d302812bc-c69f19dd, #w-node-ea37b3e2-2106-81a1-2d7b-7768d710056d-c69f19dd, #w-node-_9bb211bb-497d-6bb3-839e-ac3ec02f6d13-c69f19dd, #w-node-_414920bc-5488-8fff-fd0c-34e9cca68e56-c69f19dd, #w-node-_665630f2-782c-1979-1ecf-cb04dfbee5b5-c69f19dd, #w-node-_6d73f530-48bd-fb79-ce0f-29f0e5a0229a-c69f19dd, #w-node-c3e07208-975e-0458-5d51-3a96f92b1604-c69f19dd, #w-node-c3e07208-975e-0458-5d51-3a96f92b1610-c69f19dd, #w-node-_43bc9e7e-ef46-b08e-43e9-3116db1b00ca-c69f19dd, #w-node-_1951c17a-386c-1fd0-87b9-cc2a788b8c1b-c69f19dd, #w-node-_40038e7e-2c52-b96a-7b48-03d24af08453-c69f19dd, #w-node-_8837560b-12b3-9dc6-8e9f-0dcd04955e5b-c69f19dd, #w-node-_02099168-a8be-8fbf-1835-b7ebc5d3ee97-c69f19dd, #w-node-_5703afcc-b613-1d01-62dc-6c52c5f6ec46-c69f19dd, #w-node-_6eaf3acf-f644-089d-bf50-7a6b2c58b6ed-c69f19dd, #w-node-e9ad02ac-207c-705f-f8a5-2aa45c87a20d-c69f19dd, #w-node-_50620d47-54c2-5c76-2110-fbfd1c12b9af-c69f19dd, #w-node-f92a56ee-12f4-1cab-a8db-fb256087be3b-c69f19dd, #w-node-_93c1a506-603a-b714-a05a-51ba951feea4-c69f19dd, #w-node-a1fc593d-7457-12b6-44ff-41b0c6c6ac40-c69f19dd {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 479px) {
  #w-node-_665630f2-782c-1979-1ecf-cb04dfbee5b5-c69f19dd {
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr;
  }

  #w-node-c3e07208-975e-0458-5d51-3a96f92b1604-c69f19dd {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
  }

  #w-node-_43bc9e7e-ef46-b08e-43e9-3116db1b00ca-c69f19dd {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_02099168-a8be-8fbf-1835-b7ebc5d3ee97-c69f19dd {
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr;
  }

  #w-node-_6eaf3acf-f644-089d-bf50-7a6b2c58b6ed-c69f19dd {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}


