@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #ededed;
  --main-font: Satoshi, sans-serif;
  --black: black;
  --heading: #1a1a1a;
  --grey: #1a1a1a73;
  --somerset-green: #055d59;
  --white: white;
  --somerset-blue: #587bb0;
}

.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;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@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 {
  background-color: var(--background);
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--main-font);
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.5;
}

h2 {
  font-family: var(--main-font);
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 400;
  line-height: .9;
}

h3 {
  font-family: var(--main-font);
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: .9;
}

h4 {
  font-family: var(--main-font);
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

h5 {
  font-family: var(--main-font);
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h6 {
  font-family: var(--main-font);
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 5px;
  font-size: .925rem;
  font-weight: 400;
  line-height: 1.5;
}

p {
  margin-bottom: 10px;
}

a {
  font-family: var(--main-font);
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .35s;
}

a:hover {
  color: var(--grey);
}

ul, ol {
  font-family: var(--main-font);
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 1rem;
  line-height: 1.5;
}

strong {
  font-family: var(--main-font);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

em {
  font-family: var(--main-font);
  color: #000;
  font-size: 1rem;
  font-style: italic;
  line-height: 1;
}

blockquote {
  font-family: var(--main-font);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.nav-wrapper {
  justify-content: space-between;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.brand {
  position: static;
}

.brand.w--current {
  flex: 1;
}

.standard-link {
  font-family: var(--main-font);
  color: #000;
  cursor: pointer;
  padding: 0;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .4s;
}

.standard-link:hover {
  color: #1a1a1a73;
}

.standard-link.brand {
  color: var(--somerset-green);
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
}

.standard-link.thin {
  font-weight: 400;
}

.standard-link.right-align {
  text-align: right;
}

.standard-link.space-next.w--current {
  font-weight: 400;
}

.standard-heading {
  font-family: var(--main-font);
  color: #0e0e0e;
  text-align: left;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  font-size: .85rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.standard-heading.medium-bold {
  font-family: var(--main-font);
  font-weight: 500;
}

.standard-heading.grey {
  color: #1a1a1a73;
  font-size: .925rem;
}

.standard-heading.grey.space-above {
  color: #00000073;
  margin-top: .25rem;
  font-size: .85rem;
  font-weight: 500;
}

.standard-heading.centered {
  text-align: center;
}

.standard-heading.hover-effect {
  font-weight: 500;
  transition: all .4s cubic-bezier(.181, .404, .333, 1.001);
}

.standard-heading.hover-effect:hover {
  color: #1a1a1a73;
}

.navbar {
  background-color: #ddd0;
  padding: 2rem 2rem 1rem;
}

.navbar.spacing-x3 {
  padding: 3rem 3rem 0;
}

.navbar.spacing-x2 {
  padding-left: 3rem;
  position: static;
}

.collection-wrapper {
  margin-bottom: 1rem;
}

.xxl-empty-space {
  height: 35vh;
}

.section {
  width: 100%;
  font-family: var(--main-font);
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.2rem;
  display: block;
}

.section.spacing-x2 {
  padding: 2rem;
}

.section.spacing-x3 {
  padding: 0 4rem;
}

.section.spacing-x3.mobile-vh {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-end;
  display: flex;
}

.image-wrapper {
  object-fit: cover;
  height: 30vh;
  overflow: hidden;
}

.image-wrapper.full-vh {
  height: 100vh;
}

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

.full-image-cover.hover {
  transition: all .5s cubic-bezier(.165, .84, .44, 1);
}

.full-image-cover.hover:hover {
  transform: scale(1.05);
}

.content-wrapper {
  justify-content: space-between;
  margin-top: 1vh;
  margin-bottom: 1vh;
  display: flex;
}

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

.link-block {
  text-decoration: none;
}

.section-wrapper-left {
  width: 35vw;
  height: 100vh;
  position: sticky;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.flex-wrapper.horizontal {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.flex-wrapper.horizontal.with-col-gap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
}

.flex-wrapper.horizontal.aligned-bottom {
  align-items: flex-end;
}

.flex-wrapper.horizontal.right-align {
  justify-content: flex-end;
}

.flex-wrapper.horizontal.left-align {
  grid-column-gap: .85rem;
  grid-row-gap: .85rem;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.flex-wrapper.vertical {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.content {
  flex-direction: column;
  justify-content: space-between;
  width: 65vw;
  height: 100vh;
  display: block;
  overflow: auto;
}

.empty-state {
  display: none;
}

.rich-text-block {
  font-family: var(--main-font);
  color: #1a1a1a;
}

.heading {
  font-family: var(--main-font);
  color: var(--black);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading.xxl-empty-space-top {
  margin-top: 200px;
  padding-bottom: 60px;
}

.sticky-background {
  display: flex;
}

.medium-empty-space {
  height: 10vh;
}

.link-wrapper {
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.list-heading-styles {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.headline {
  text-align: left;
  margin-bottom: 1rem;
}

.rich-text p {
  font-family: var(--main-font);
  color: #474747;
  font-size: 1rem;
  line-height: 1.5;
}

.legal-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 59px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: start;
  padding: 3rem;
  display: grid;
}

.legal-wrapper.style-guide-page {
  grid-column-gap: 40px;
  grid-row-gap: 141px;
  grid-template-columns: 1fr 1fr;
  justify-items: start;
  padding: 3rem;
}

.container {
  margin-bottom: 2rem;
}

.additional-styles {
  margin-top: 0;
}

.arrow-wrapper {
  align-items: center;
  height: 100%;
  margin-left: .5rem;
  display: flex;
  overflow: hidden;
}

.image {
  width: .625rem;
}

.preloader-text {
  color: #0a0a0a;
  text-transform: lowercase;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Satoshi, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.5;
  display: flex;
}

.preloader-text.capital {
  color: #0a0a0a;
  text-transform: none;
  font-size: 1.15rem;
  font-weight: 900;
}

.preloader {
  z-index: 9999;
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
}

.standard-text {
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-style: italic;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: minmax(5px, 5fr) auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-3 {
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

.font-cell {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.span-link {
  font-size: .75rem;
}

.main-font {
  font-family: var(--main-font);
}

.gallery-image {
  width: 100%;
}

.gallery-image.shadow-two {
  object-fit: cover;
  height: 100%;
}

.blog-image-cell {
  object-fit: cover;
  height: 250px;
  margin-left: .5em;
  margin-right: .5em;
  overflow: hidden;
}

.heading-style-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 59px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: center;
  padding: 5vh 5vw;
  display: grid;
}

.heading-style-wrapper.style-guide-page {
  color: #000;
  border-top: 1px solid #ffffff12;
  flex-direction: column;
  grid-template-columns: 1fr 1fr;
  place-items: center start;
  display: flex;
}

.heading-holder-style {
  width: 100%;
}

.space-wrapper {
  border-left: 1px solid #1a1a1a73;
  margin-top: 2.5vw;
  margin-bottom: 2.5vw;
  padding: 2.5vw;
}

.text-span-4 {
  color: #ff5c00;
}

.transparent-button {
  font-family: var(--main-font);
  color: var(--heading);
  background-color: #3898ec00;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

.transparent-button.standard-link {
  margin-top: 2rem;
}

.text-field {
  border-style: solid;
  border-width: 1px;
  border-color: #0000 #0000 var(--grey);
  font-family: var(--main-font);
  color: var(--heading);
  text-align: center;
  background-color: #fff0;
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
  padding-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1rem;
}

.text-field:active, .text-field:focus {
  border-color: #0000 #0000 var(--grey);
}

.text-field:focus-visible, .text-field[data-wf-focus-visible], .text-field::placeholder {
  background-color: #fff0;
}

.form-block {
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.collection-list-wrapper {
  text-align: right;
}

.form-background {
  z-index: 1500;
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.x-wrapper {
  margin-top: 3rem;
  margin-right: 3rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.x-icon {
  cursor: pointer;
  width: 1rem;
  transition: all .4s cubic-bezier(.105, .328, .25, 1);
}

.x-icon:hover {
  transform: rotate(90deg);
}

.success-message {
  background-color: var(--background);
  font-family: var(--main-font);
  color: var(--heading);
  font-size: 1rem;
  line-height: 1.5;
}

.error-message {
  font-family: var(--main-font);
  background-color: #e9e9e9;
  margin-top: 3rem;
  font-size: 1rem;
  line-height: 1.5;
}

.collection-list {
  grid-column-gap: .85rem;
  grid-row-gap: .85rem;
  display: flex;
}

.large-empty-space {
  height: 12.5vh;
}

.heading-3 {
  font-family: var(--main-font);
}

.utility-page-wrap {
  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: 500px;
  display: flex;
}

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

.main-heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 4rem;
  line-height: .75;
}

.field-label {
  display: none;
}

.text-block {
  font-family: var(--main-font);
  font-size: 1rem;
}

.error-message-2 {
  margin-top: 30px;
}

.main-hero-heading {
  letter-spacing: -.07em;
  width: 60vw;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: .87;
}

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

.paragraph {
  font-family: var(--main-font);
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
}

.paragraph.main-text {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 400;
}

.paragraph.main-text.dark {
  font-size: 1.1rem;
  font-weight: 400;
}

.button {
  background-color: var(--somerset-green);
  margin-top: 50px;
}

.button:hover {
  color: var(--white);
}

.div-block {
  min-height: 100vh;
}

.div-block-2 {
  min-height: 100%;
  overflow: scroll;
}

.main-text {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3em;
}

.main-text.dark {
  color: #1d2b38;
  font-size: 1.1rem;
}

.main-text.list {
  margin-top: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.html-embed {
  display: block;
}

.walsh-rounded-card {
  grid-column-gap: 2rem;
  grid-row-gap: 1em;
  background-color: #fff;
  border-radius: 2px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  max-width: 1000px;
  padding: 40px;
  display: flex;
  box-shadow: 0 2px 8px #0003;
}

.main-grid {
  grid-column-gap: 2.2em;
  grid-row-gap: 2.2em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  place-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.walsh-inner-card-bottom {
  grid-row-gap: 1.2em;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: .5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
}

.card-links {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  display: flex;
}

.card-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.contact-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #333;
  align-items: center;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.contact-link:hover {
  color: #587bb0;
}

.walsh-card-wrapper-image-medium {
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  max-width: 300px;
  margin-top: 0;
  display: flex;
}

.walsh-cover-image {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 0%;
  display: block;
}

.heading-4 {
  font-size: 1.5rem;
  font-weight: 500;
}

.div-block-4 {
  min-height: 100vh;
  display: flex;
}

.footer {
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.bold-text-5 {
  font-size: 1.2rem;
  line-height: 1.3em;
}

.link-3 {
  color: var(--black);
  font-size: 1.1rem;
}

.bold-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3em;
}

.user-picture-t2 {
  border-radius: 2px;
  box-shadow: 4px 9px 15px #d1d1d1;
}

.team-img-div {
  max-width: 250px;
  display: block;
}

.mobile-header {
  display: none;
}

.wrapper {
  color: var(--grey);
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 0;
  display: flex;
}

.wrapper.hero {
  min-height: 100vh;
}

.div-block-7 {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  margin-top: 20px;
  overflow: hidden;
}

.html-embed-2 {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.list-2 {
  font-weight: 400;
  line-height: 2;
}

.rich-text-block-2 {
  color: var(--black);
}

.button-2 {
  background-color: var(--somerset-green);
  text-align: center;
  margin-top: 0;
  display: block;
}

.button-2.w--current {
  background-color: var(--somerset-green);
}

.list-item {
  line-height: 2;
}

.submit-button {
  background-color: var(--somerset-green);
  text-align: center;
}

.flex-block {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-flow: wrap;
  order: 0;
  justify-content: space-between;
  align-self: stretch;
}

.form-block-2 {
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 840px;
  display: flex;
}

.flex-block-2 {
  align-self: center;
}

.heading-5 {
  margin-bottom: 2rem;
}

.dropdown {
  justify-content: center;
  align-items: flex-start;
  width: 14%;
  height: 80px;
  display: flex;
}

.dropdown.accordion-toggle {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  position: static;
  overflow: hidden;
}

.dropdown-list {
  position: static;
}

.accordion-item {
  width: 100%;
  overflow: hidden;
}

.accordion-toggle {
  height: 80px;
  display: flex;
}

.dropdown-list-2 {
  background-color: #fff;
  padding: 1em;
  display: block;
  position: static;
  overflow: hidden;
}

.dropdown-list-2.w--open {
  display: block;
}

.paragraph-2 {
  color: var(--black);
}

.text-block-4 {
  flex-flow: wrap;
  align-self: center;
  width: auto;
  display: block;
}

.div-block-8 {
  position: static;
}

.faq {
  background-color: #fffffff2;
  margin-top: 1rem;
  padding: .5rem 1rem 1rem;
  box-shadow: 0 20px 100px #c4cae340;
}

.faq-headline {
  padding-left: 20px;
  padding-right: 20px;
}

.faq-paragraph {
  margin-bottom: 40px;
}

.accordion-item-2 {
  width: 100%;
  overflow: hidden;
}

.accordion-toggle-2 {
  border-bottom: 1px solid #000;
  align-items: center;
  height: 80px;
  display: flex;
}

.text-block-5 {
  white-space: normal;
  flex: none;
  width: 100%;
}

.dropdown-list-3 {
  background-color: #fff;
  padding: 20px;
  display: block;
  position: static;
}

.paragraph-3 {
  color: var(--black);
}

.form {
  flex: 1;
}

.container-4 {
  flex-flow: row;
  order: 0;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 1rem;
  display: flex;
}

.div-block-9 {
  padding-top: 0;
}

.section-2 {
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.faq-block-item {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--grey);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding-left: .5rem;
  padding-right: 1rem;
}

.faq-block-item.last {
  border-bottom-style: none;
}

.faq-title {
  font-size: 2rem;
}

.faq-content-wrapper {
  margin-left: 1rem;
  padding-top: .25rem;
}

.faq-content {
  color: var(--black);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.bold-text-7 {
  font-size: 1.2rem;
}

.faq-title-bold {
  font-size: 1.15rem;
}

.rich-text-block-3 {
  margin-top: .5rem;
}

.div-block-10 {
  height: 2rem;
  margin-bottom: 2rem;
}

.form-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  display: flex;
}

.flex-block-3 {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  padding-bottom: 1rem;
}

.submit-button-2 {
  background-color: var(--somerset-green);
  flex: 0 auto;
  align-self: center;
}

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

.flex-block-4 {
  align-self: flex-end;
  margin-bottom: 1rem;
}

.image-2 {
  display: none;
}

@media screen and (min-width: 1280px) {
  .section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading {
    margin-top: 0;
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .main-grid {
    flex-direction: column;
  }

  .div-block-4 {
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    display: flex;
  }

  .footer {
    text-align: left;
  }

  .link-3 {
    color: var(--black);
  }

  .div-block-5 {
    padding-bottom: 60px;
  }

  .bold-text-6 {
    font-weight: 500;
  }

  .section-2 {
    justify-content: center;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 0;
    display: flex;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-family: var(--main-font);
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.5;
  }

  h2 {
    font-family: var(--main-font);
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1.5;
  }

  h3 {
    font-family: var(--main-font);
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
  }

  h4 {
    font-family: var(--main-font);
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
  }

  h5 {
    font-family: var(--main-font);
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
  }

  h6 {
    font-family: var(--main-font);
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: .925rem;
    font-weight: 400;
    line-height: 1.5;
  }

  p {
    font-family: var(--main-font);
    color: #383737;
    font-size: 1rem;
    line-height: 1.5;
  }

  a {
    font-family: var(--main-font);
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: all .4s;
  }

  a:hover {
    color: var(--grey);
  }

  ul {
    font-family: var(--main-font);
    color: var(--black);
    font-size: 1rem;
    line-height: 1.5;
  }

  ol {
    font-family: var(--main-font);
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
  }

  strong {
    font-family: var(--main-font);
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
  }

  em {
    font-family: var(--main-font);
    color: var(--black);
    font-size: 1rem;
    line-height: 1.5;
  }

  .standard-link, .standard-heading.grey.space-above {
    font-weight: 400;
  }

  .navbar.spacing-x3 {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .collection-wrapper {
    display: flex;
  }

  .xxl-empty-space {
    height: 40vh;
  }

  .section.spacing-x2 {
    padding: 2rem;
  }

  .full-image-cover.hover {
    filter: grayscale(60%);
  }

  .flex-wrapper.horizontal.with-col-gap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .flex-wrapper.horizontal.aligned-bottom {
    justify-content: space-between;
  }

  .heading {
    font-weight: 400;
  }

  .arrow-wrapper {
    margin-left: .5rem;
    line-height: 1;
  }

  .image {
    width: 1rem;
  }

  .form-block-2 {
    flex: 1;
    max-width: 60%;
  }

  .form {
    flex: 0 auto;
    min-width: 100%;
  }

  .div-block-9 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 0;
  }
}

@media screen and (min-width: 1920px) {
  .standard-link {
    font-weight: 500;
  }

  .standard-link.brand {
    font-size: 2.5rem;
    position: static;
  }

  .standard-heading.grey.space-above {
    font-size: 1.1rem;
  }

  .collection-wrapper {
    display: flex;
  }

  .section {
    max-width: 1000px;
  }

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

  .flex-wrapper.horizontal.aligned-bottom {
    justify-content: space-between;
  }

  .content {
    flex: 0 auto;
  }

  .legal-wrapper.style-guide-page {
    padding-right: 3rem;
  }

  .blog-image-cell {
    height: 400px;
  }

  .text-field {
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .form-background {
    display: none;
  }

  .main-hero-heading {
    width: 45vw;
  }

  .main-text {
    max-width: 900px;
  }

  .walsh-inner-card-bottom {
    max-width: 700px;
  }

  .div-block-4 {
    max-width: 900px;
  }

  .faq {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 991px) {
  h6 {
    margin-top: 0;
  }

  .brand {
    padding-left: 0;
  }

  .standard-link.right-align {
    text-align: right;
  }

  .standard-heading.medium-bold {
    font-size: 1rem;
  }

  .section.add-mb {
    padding-bottom: 0;
  }

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

  .legal-wrapper.style-guide-page {
    grid-column-gap: 15px;
    grid-row-gap: 100px;
    padding: 1rem;
  }

  .image {
    width: 1rem;
  }

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

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

  .heading-holder-style {
    width: 100%;
  }

  .main-hero-heading {
    font-size: 4rem;
  }

  .walsh-rounded-card {
    grid-row-gap: 2em;
    flex-direction: column;
  }

  .main-grid {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-5 {
    margin-top: 140px;
  }

  .mobile-header {
    display: none;
  }

  .form-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .flex-block-3 {
    padding-bottom: 0;
  }

  .flex-block-4 {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .form-block-3 {
    margin-top: 1rem;
  }

  .image-2 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .standard-link, .standard-heading, .standard-heading.medium-bold {
    font-size: .85rem;
  }

  .standard-heading.grey.space-above {
    display: flex;
  }

  .standard-heading.centered {
    display: block;
  }

  .navbar, .navbar.spacing-x3 {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar.spacing-x2 {
    padding-top: 1rem;
    padding-right: 1rem;
  }

  .xxl-empty-space.reduced {
    height: 20vh;
  }

  .section {
    padding: 0;
  }

  .section.spacing-x2, .section.spacing-x3 {
    padding: 1rem;
  }

  .section.spacing-x3.mobile-vh {
    align-items: flex-end;
    height: 22vh;
    display: flex;
  }

  .image-wrapper.full-vh {
    width: 100vw;
    height: 100%;
    margin-top: -3rem;
    margin-left: -3rem;
  }

  .full-image-cover.hover {
    max-height: 200px;
  }

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

  .section-wrapper-left {
    object-fit: cover;
    width: 100vw;
    height: 35vh;
    display: none;
    position: sticky;
  }

  .flex-wrapper.horizontal.with-col-gap {
    justify-content: space-between;
  }

  .flex-wrapper.horizontal.aligned-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .flex-wrapper.vertical {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    width: 100%;
  }

  .content {
    z-index: 999;
    background-color: var(--background);
    width: 100vw;
    position: relative;
  }

  .heading.xxl-empty-space-top {
    margin-top: 0;
  }

  .sticky-background {
    flex-direction: column;
  }

  .medium-empty-space {
    height: 7.5vh;
  }

  .list-heading-styles {
    flex-direction: column;
  }

  .legal-wrapper, .legal-wrapper.style-guide-page {
    grid-template-columns: 1fr;
  }

  .arrow-wrapper {
    overflow: visible;
  }

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

  .heading-style-wrapper, .heading-style-wrapper.style-guide-page {
    grid-template-columns: 1fr;
  }

  .main-hero-heading {
    width: 80vw;
  }

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

  .div-block-3 {
    flex: 1;
  }

  .walsh-rounded-card {
    padding: 1rem 1rem 2rem;
  }

  .main-grid {
    grid-column-gap: 1em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .walsh-inner-card-bottom {
    min-height: auto;
    padding-bottom: 0;
  }

  .contact-link.address-mobile {
    display: flex;
  }

  .contact-link.address {
    display: none;
  }

  .walsh-card-wrapper-image-medium {
    height: 30em;
  }

  .user-picture-t2 {
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-header {
    display: block;
  }

  .wrapper, .wrapper.hero {
    min-height: 0;
  }

  .flex-block {
    flex-flow: wrap;
  }

  .form-block-2 {
    flex: 1px;
  }

  .form {
    flex: 1;
  }

  .section-2 {
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .image-2 {
    margin-bottom: 1rem;
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .standard-link.brand {
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
  }

  .standard-heading {
    display: none;
  }

  .standard-heading.medium-bold, .standard-heading.grey, .standard-heading.hover-effect {
    display: flex;
  }

  .navbar {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar.spacing-x2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xxl-empty-space.reduced {
    height: 25vh;
  }

  .section {
    min-height: auto;
  }

  .section.spacing-x2 {
    padding: 1rem;
  }

  .section.spacing-x3.mobile-vh {
    align-items: flex-end;
    height: 30vh;
    display: flex;
  }

  .image-wrapper.full-vh {
    height: 100%;
  }

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

  .section-wrapper-left {
    height: 30vh;
  }

  .flex-wrapper.horizontal.with-col-gap {
    justify-content: space-between;
  }

  .flex-wrapper.horizontal.aligned-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .flex-wrapper.vertical {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    width: 100%;
  }

  .heading.xxl-empty-space-top {
    margin-top: 20px;
    font-size: 1.8rem;
  }

  .medium-empty-space {
    height: 5vh;
  }

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

  .legal-wrapper.style-guide-page {
    grid-column-gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .arrow-wrapper {
    overflow: visible;
  }

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

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

  .font-cell {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .heading-style-wrapper {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .utility-page-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main-heading {
    font-size: 2rem;
  }

  .main-hero-heading {
    width: 90vw;
    font-size: 2.5rem;
  }

  .grid-x2-wrapper {
    grid-template-columns: .25fr 1fr;
    align-items: start;
  }

  .main-text {
    font-size: 1.2rem;
  }

  .main-text.dark {
    font-size: 1.2rem;
    line-height: 1.2em;
  }

  .walsh-rounded-card {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .walsh-inner-card-bottom {
    grid-row-gap: 1em;
    padding: 0 0 10px;
  }

  .walsh-card-wrapper-image-medium {
    align-items: flex-end;
    height: auto;
  }

  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bold-text-5, .bold-text {
    font-size: 1rem;
  }

  .user-picture-t2 {
    width: 200px;
  }

  .wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}