:root {
  --white: white;
  --black: black;
  --94-white: #edeff2;
  --red: var(--color);
  --color: red;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #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 {
  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 {
  background-color: #eee;
  height: 1px;
}

.styleguide-content-wrap {
  text-align: center;
}

.section {
  color: #1a1b1f;
  text-shadow: 0 1px 1px #0003;
  background-color: #0000;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin: 60px auto 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Vollkorn, serif;
  display: block;
}

.section.cc-cta {
  background-color: #f4f4f4;
  padding-left: 80px;
  padding-right: 80px;
}

.section.cc-home-wrap {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section.cc-store-home-wrap {
  margin-top: 40px;
}

.section.section-footer {
  padding-left: 0;
  padding-right: 0;
}

.styleguide-block {
  text-align: left;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  font-family: Lato, sans-serif;
  display: block;
}

.container {
  flex-flow: column-reverse;
  justify-content: center;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.paragraph-tiny {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 10px;
  line-height: 20px;
}

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

.paragraph-bigger.cc-bigger-light {
  opacity: .6;
  color: var(--black);
  font-weight: 700;
}

.paragraph-bigger.cc-bigger-white-light {
  opacity: 1;
  text-shadow: 2px 1px 2px #000;
  justify-content: center;
  align-items: center;
  font-family: Lato, sans-serif;
  font-size: 36px;
  line-height: 44px;
  display: block;
}

.button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 0;
  padding: 12px 25px;
  font-size: 12px;
  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 {
  color: #000;
  background-color: #fff;
}

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

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

.button.cc-contact-us {
  z-index: 5;
  font-family: Lato, sans-serif;
  font-weight: 400;
  position: relative;
}

.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: #fffc;
}

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

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

.label.cc-styleguide-label {
  margin-bottom: 25px;
  font-family: Lato, sans-serif;
}

.label.cc-light {
  opacity: .6;
}

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

.heading-jumbo-tiny {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

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

.rich-text p {
  opacity: .6;
  margin-top: 15px;
  margin-bottom: 25px;
  font-family: Lato, sans-serif;
}

.rich-text img {
  font-family: Lato, sans-serif;
}

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

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

.paragraph-light {
  opacity: 1;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 32px;
}

.heading-sub {
  opacity: 1;
  color: var(--black);
  text-transform: uppercase;
  flex-flow: row;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Vollkorn, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
  display: block;
}

.heading-jumbo-small {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Lato, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

.styleguide-button-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
}

.styleguide-header-wrap {
  color: #fff;
  text-align: center;
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 260px;
  padding: 30px;
  display: flex;
}

.paragraph-small {
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 26px;
}

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

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

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

.logo-link.w--current {
  color: var(--black);
}

.menu {
  z-index: 0;
  color: var(--black);
  -webkit-text-stroke-width: 0px;
  justify-content: center;
  align-items: center;
  font-family: Lato, sans-serif;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.navigation {
  color: var(--black);
  text-shadow: none;
  background-color: #0000;
  align-items: center;
  padding: 10px 50px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  display: flex;
}

.navigation-item {
  opacity: .6;
  color: var(--black);
  letter-spacing: 1px;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--black);
  text-transform: uppercase;
  text-shadow: none;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.navigation-item:hover {
  opacity: .9;
}

.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 {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-wrap {
  background-color: var(--94-white);
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  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: 70%;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.cta-wrap {
  text-align: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 120px;
  display: flex;
}

.intro-header {
  color: #fff;
  background-color: #f4f4f4;
  background-image: none;
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 620px;
  margin-bottom: 100px;
  font-family: Vollkorn, serif;
  display: flex;
}

.intro-header.cc-subpage {
  color: #fff;
  background-color: #0000;
  background-image: none;
  flex: 1;
  height: 120px;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

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

.intro-content.cc-homepage {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.motto-wrap {
  text-align: center;
  width: 80%;
  margin-bottom: 85px;
  margin-left: auto;
  margin-right: auto;
}

.about-story-wrap {
  text-align: center;
  width: 80%;
  margin: 80px auto;
}

.our-services-grid {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
  margin-bottom: 120px;
}

.section-heading-wrap {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-icon {
  margin-bottom: 30px;
}

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

.status-message.cc-no-data {
  width: 70%;
  margin: 100px auto;
  display: block;
}

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

.contact-form-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 2.5fr 1fr;
  align-items: start;
  margin-top: 100px;
  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::placeholder {
  color: #32343a66;
}

.text-field.cc-contact-field {
  margin-bottom: 25px;
}

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

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

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

.contact-heading {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 400;
}

.map {
  height: 460px;
  margin-bottom: 100px;
  line-height: 20px;
}

.contact-team-name-wrap {
  margin-bottom: 30px;
}

.our-contacts {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template: ". . ."
  / 1fr 1fr 1fr;
  margin-bottom: 120px;
}

.contact-team-details-wrap {
  margin-top: 30px;
}

.contact-team-pic {
  background-color: #f4f4f4;
  height: 150px;
  margin-bottom: 30px;
}

.team-pic {
  background-color: #f4f4f4;
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
}

.team-members {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
  margin-bottom: 60px;
}

.team-member-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.team-member-name {
  opacity: 1;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.projects-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template: "."
                 "."
                 "."
                 / 1fr;
  margin-bottom: 60px;
}

.project-name-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.project-name-link {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-decoration: none;
}

.project-name-link:hover {
  opacity: .8;
}

.project-name-link:active {
  opacity: .7;
}

.project-cover-link {
  margin-bottom: 40px;
}

.project-cover-link:hover {
  opacity: .8;
}

.project-cover-link:active {
  opacity: .7;
}

.project-overview-header {
  color: #fff;
  background-color: #f4f4f4;
  background-image: none;
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 620px;
  margin-bottom: 100px;
  display: flex;
}

.project-overview-header.cc-project-2-header {
  background-image: none;
  background-position: 50%;
}

.project-overview-header.cc-project-3-header {
  background-image: none;
  background-size: cover;
}

.project-details-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 2fr;
  align-items: start;
  margin-top: 100px;
  margin-bottom: 100px;
}

.project-pics {
  margin-bottom: 120px;
}

.detail-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

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

.blog-list-wrap {
  margin-bottom: 100px;
}

.blog-item {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blog-preview-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-bottom: 45px;
  transition: opacity .6s;
  display: block;
}

.blog-preview-image:hover {
  opacity: .8;
}

.blog-preview-image:active {
  opacity: .7;
}

.blog-summary-wrap {
  text-align: left;
  width: 70%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.blog-heading-link {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
  text-decoration: none;
}

.blog-heading-link:hover {
  opacity: .8;
}

.blog-heading-link:active {
  opacity: .7;
}

.contact-email-link {
  opacity: .6;
  margin-bottom: 5px;
}

.contact-email-link:hover {
  opacity: 1;
}

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

.protected-heading {
  margin-bottom: 30px;
}

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

._404-wrap {
  background-color: #1a1b1f;
  background-image: url('../images/tfk-items-prime-sirloins-on-a-rack.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

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

.home-content-wrap {
  margin-top: 80px;
  margin-bottom: 120px;
}

.home-section-wrap {
  margin-bottom: 30px;
  margin-left: auto;
  padding-left: 0;
}

.section-heading {
  color: var(--white);
  letter-spacing: normal;
  text-shadow: 0 1px 1px #0003;
  column-count: auto;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Vollkorn, serif;
  font-size: 42px;
  font-weight: 400;
}

.about-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 2fr;
  align-items: center;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.about-grid.cc-about-2 {
  grid-template-columns: 2fr 1fr;
  grid-template-areas: ". .";
}

.intro-text {
  text-align: center;
  object-fit: fill;
  width: auto;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.collection-wrap {
  flex-wrap: wrap;
  place-content: flex-start center;
  align-items: flex-start;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.work-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

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

.blog-preview-wrap {
  width: 33.33%;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 45px;
}

.collection-list-wrapper {
  margin-bottom: 120px;
}

.business-article-heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  text-decoration: none;
}

.business-article-heading:hover {
  opacity: .8;
}

.business-article-heading:active {
  opacity: .7;
}

._w-lightbox-caption {
  background-color: #0009;
}

.text-span {
  color: #ff0004;
}

.section-2 {
  background-color: #000;
  margin-left: 0;
  margin-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Lato, sans-serif;
  box-shadow: 0 2px 5px #0003;
}

.heading {
  color: #110101;
  text-align: center;
  text-shadow: 0 2px 2px #0003;
  margin-top: 60px;
  font-family: Vollkorn, serif;
  font-size: 64px;
}

.quick-stack {
  grid-row-gap: 19px;
}

.cell {
  background-image: none;
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
}

.cell-2 {
  background-image: url('../images/re-re-opt-hero_opt_tender-yolanda.jpg');
  background-position: 50%;
  background-size: cover;
}

.cell-3 {
  background-image: url('../images/re-opt_In-HouseAging.jpg');
  background-position: 50%;
  background-size: cover;
}

.cell-4 {
  background-image: url('../images/re-re-opt-hero_opt_tender-yolanda.jpg');
  background-position: 50%;
  background-size: cover;
}

.text-span-2 {
  color: #ff0004;
}

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

.image {
  float: none;
  clear: none;
  text-align: left;
  object-fit: fill;
  flex: 0 auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  font-family: Lato, sans-serif;
  display: block;
  position: static;
}

.text-block {
  font-family: Lato, sans-serif;
}

.slide {
  background-image: none;
  background-position: 50%;
  background-size: cover;
}

.slide-2 {
  background-image: url('../images/re-opt_In-HouseAging.jpg');
  background-position: 0 0;
  background-size: auto;
}

.button-2 {
  color: var(--black);
  text-align: center;
  background-color: #e0e3e5;
  font-family: Lato, sans-serif;
  font-weight: 700;
  position: static;
  box-shadow: 0 2px 5px #0003;
}

.container-2 {
  justify-content: center;
  margin-bottom: 40px;
  display: flex;
}

.container-3 {
  aspect-ratio: auto;
  flex-flow: row-reverse;
  justify-content: center;
  align-items: stretch;
  width: auto;
  display: flex;
}

.text-block-2 {
  z-index: 0;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: normal;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #0000008c;
  background-clip: padding-box;
  border-bottom: 5px solid red;
  border-radius: 0;
  padding: 10px;
  font-family: Lato, sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 42px;
  position: absolute;
  top: auto;
  box-shadow: 0 2px 5px #0003;
}

.body {
  text-shadow: 0 1px 1px #0003;
  font-size: 24px;
}

.image-2 {
  align-self: center;
}

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

.heading-2 {
  font-family: Lato, sans-serif;
  font-size: 36px;
}

.paragraph {
  text-align: left;
  letter-spacing: normal;
  text-indent: 0;
  column-count: auto;
  white-space: normal;
  word-break: normal;
  font-family: Lato, sans-serif;
  font-size: 24px;
}

.heading-3 {
  text-transform: uppercase;
  font-family: Vollkorn, serif;
  font-size: 48px;
}

.heading-4 {
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 1px #0003;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Vollkorn, serif;
}

.image-3 {
  text-align: left;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-2, .link, .text-block-4, .text-block-5, .heading-5, .block-quote, .heading-6, .heading-7, .list, .heading-8, .heading-9, .heading-10, .heading-11, .heading-12, .heading-13 {
  font-family: Lato, sans-serif;
}

.image-4 {
  margin-left: auto;
  margin-right: auto;
}

.div-block {
  flex: 1 0 auto;
}

.div-block-2 {
  flex-flow: column-reverse;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.cell-5 {
  text-shadow: 0 1px 1px #0003;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-5 {
  aspect-ratio: auto;
  object-fit: cover;
  flex: 1;
  align-self: auto;
  width: auto;
  position: static;
  box-shadow: 0 2px 5px #0003;
}

.cell-6, .cell-7 {
  text-shadow: 0 1px 1px #0003;
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
}

.image-6 {
  aspect-ratio: 3 / 2;
  overflow-wrap: normal;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.image-7 {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 2px 5px #0003;
}

.slide-1 {
  background-image: url('../images/re-Opt_Prime-pic.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/re-opt_coulotte.SLIDE.jpg');
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/re-opt_patties.SLIDE.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-nav {
  display: none;
}

.slider {
  aspect-ratio: auto;
  object-fit: cover;
  flex: 1;
  height: 620px;
  margin-bottom: 100px;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.div-block-3 {
  z-index: 10;
  aspect-ratio: auto;
  color: #fff;
  font-family: Vollkorn, serif;
  position: absolute;
  inset: 35% 0% 0%;
}

.left-arrow, .right-arrow {
  opacity: .5;
}

.text-span-3 {
  letter-spacing: normal;
  white-space: normal;
  word-break: normal;
}

.container-4 {
  position: static;
}

.cell-8 {
  flex-flow: column-reverse;
}

.heading-sub-page-header {
  color: #000;
  text-transform: uppercase;
  text-shadow: 0 1px 1px #0003;
  font-size: 64px;
}

.text-block-6 {
  font-size: 28px;
}

.text-block-7 {
  font-family: Lato, sans-serif;
}

.text-block-8 {
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.heading-14 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Vollkorn, serif;
  font-size: 48px;
}

.text-block-9 {
  color: #fff;
  text-align: center;
  padding-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.section-4 {
  background-color: #000;
  margin-top: 40px;
  padding-top: 60px;
  padding-bottom: 100px;
  font-family: Lato, sans-serif;
}

.cell-9, .cell-10 {
  font-family: Lato, sans-serif;
}

.paragraph-3 {
  font-size: 24px;
}

.paragraph-4 {
  text-align: left;
  text-shadow: none;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.text-block-10 {
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 1px #0003;
  font-family: Vollkorn, serif;
  font-size: 44px;
}

.text-block-11 {
  text-align: center;
  padding-bottom: 40px;
  font-family: Lato, sans-serif;
  font-size: 44px;
  line-height: 68px;
}

.page-header {
  opacity: .76;
  color: #af915d;
  flex: none;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
  font-size: 12vw;
  font-weight: 400;
  line-height: 1em;
}

.page-header.portfolio {
  color: #000;
  text-transform: uppercase;
  margin-top: 1.2rem;
  margin-bottom: 3rem;
  font-family: Vollkorn, serif;
  font-size: 5vw;
}

.card-link-text {
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

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

.project-item {
  grid-column-gap: 18px;
  grid-row-gap: 24px;
  color: #fff;
  flex-direction: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 40vw;
  height: 30vw;
  min-height: 300px;
  max-height: 465px;
  display: grid;
  position: relative;
  overflow: hidden;
}

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

.background-image.hide {
  display: none;
}

.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 {
  position: absolute;
}

.project-image {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  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%;
}

.gallery-hero-section-mobile {
  background-color: #fff;
  flex-flow: row;
  place-content: center;
  align-items: center;
  width: 100vw;
  min-height: 30vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: block;
  position: static;
  overflow: hidden;
}

.gallery-list-wrapper {
  z-index: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: flex;
  position: static;
}

.gallery-list {
  box-sizing: border-box;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  object-fit: fill;
  flex-wrap: wrap;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: auto;
  align-items: center;
  display: grid;
  position: static;
}

.gallery-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.container-5 {
  margin-left: auto;
  margin-right: auto;
}

.button-3 {
  background-color: var(--red);
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 5px #0003;
}

.container-6 {
  justify-content: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-9 {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 80%;
  align-self: auto;
  height: 350px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  overflow: clip;
  box-shadow: 0 2px 5px #0003;
}

.image-10 {
  object-fit: cover;
  object-position: 45% 50%;
  flex: 1;
  align-self: auto;
  box-shadow: 0 2px 5px #0003;
}

.paragraph-6 {
  text-align: left;
  text-shadow: none;
  flex: 0 auto;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
  display: block;
}

.heading-15 {
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 1px #0003;
  word-break: normal;
  overflow-wrap: normal;
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: Vollkorn, serif;
  font-size: 68px;
}

.section-5 {
  background-color: #edeff2;
  margin: 0;
  box-shadow: 0 2px 5px #0003;
}

.container-7 {
  display: flex;
}

.paragraph-7 {
  margin-left: 20px;
}

.cell-11 {
  display: block;
}

.heading-16 {
  text-align: center;
  font-family: Vollkorn, serif;
  font-size: 64px;
}

.paragraph-8 {
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
  display: flex;
}

.cell-12 {
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  font-family: Lato, sans-serif;
  display: flex;
}

.image-12 {
  box-sizing: border-box;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 95% 50%;
  flex: 1;
  position: static;
}

.image-13 {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 75% 50%;
  flex: 1;
}

.paragraph-9 {
  color: var(--94-white);
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.heading-17 {
  color: var(--white);
  font-family: Vollkorn, serif;
  font-size: 68px;
}

.image-14 {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 90% 50%;
  flex: 1;
}

.section-6-black {
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #000;
  margin-bottom: 60px;
  padding-top: 100px;
  padding-bottom: 100px;
  box-shadow: 0 2px 5px #0003;
}

.cell-13 {
  justify-content: center;
  align-items: center;
  font-family: Vollkorn, serif;
  font-size: 68px;
}

.heading-18 {
  text-transform: uppercase;
}

.heading-19 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 68px;
}

.paragraph-10 {
  color: var(--white);
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.cell-14 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Vollkorn, serif;
  display: flex;
}

.cell-15 {
  justify-content: center;
  align-items: center;
}

.text-span-4 {
  color: var(--white);
  text-shadow: 2px 2px 3px #000;
}

.text-span-5, .text-span-6, .text-span-7, .text-span-8, .text-span-9 {
  color: red;
}

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

.div-block-4 {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.gallery-hero-section {
  background-color: #fff;
  flex-flow: wrap;
  flex: 0 auto;
  order: 0;
  place-content: center;
  align-self: auto;
  align-items: center;
  width: auto;
  min-height: 30vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: static;
  overflow: hidden;
}

.container-8 {
  margin-top: 20px;
  margin-bottom: 60px;
}

.f-margin-bottom-16 {
  margin-bottom: 16px;
}

.f-header-grid-asymmetrical {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

.f-margin-bottom-12 {
  margin-bottom: 12px;
}

.f-container-regular {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-h3-heading {
  color: #160042;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.f-feature-card-filled {
  background-color: var(--black);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 5px #0003;
}

.f-feature-icon-wrapper-black {
  background-color: var(--black);
  border-radius: 8px;
  width: auto;
  min-width: 72px;
  height: auto;
  min-height: 72px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
}

.f-h5-heading {
  color: var(--white);
  text-align: center;
  letter-spacing: -.02em;
  margin: 0 auto;
  font-size: 32px;
  line-height: 1.4;
}

.f-margin-bottom-64 {
  margin-bottom: 64px;
}

.f-button-neutral {
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #160042;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.f-button-neutral:hover {
  background-color: #282556;
}

.f-button-secondary {
  color: #160042;
  letter-spacing: -.02em;
  background-color: #fff;
  border: 1px solid #e4e6f1;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .3s, background-color .3s;
  display: flex;
}

.f-button-secondary:hover {
  background-color: #f3f5fb;
  border-color: #0000;
}

.f-max-width-large {
  max-width: 610px;
}

.f-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.f-grid-three-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.f-heading-detail-small {
  color: #6b7094;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-paragraph-large {
  color: var(--94-white);
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.f-margin-bottom-32 {
  margin-bottom: 32px;
}

.f-section-large {
  padding: 20px 5% 40px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  display: block;
  position: relative;
}

.f-footer-small {
  background-color: var(--94-white);
  padding: 20px 5%;
  font-family: Lato, sans-serif;
  display: block;
  position: relative;
}

.f-footer-link {
  color: #160042;
  letter-spacing: -.01em;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s;
}

.f-footer-link:hover {
  color: #642eff;
}

.f-footer-logo-mark {
  display: flex;
}

.f-footer-logo-xs {
  object-fit: fill;
  flex: 0 auto;
  width: auto;
  height: 40px;
  display: block;
}

.f-footer-social-group {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.f-footer-group {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.f-footer-menu {
  grid-column-gap: 24px;
  flex: none;
  align-items: center;
  font-size: 10px;
  display: flex;
}

.f-container-large {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-footer-social {
  color: #160042;
  background-color: #f3f5fb;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: color .3s;
  display: flex;
}

.f-footer-social:hover {
  color: #642eff;
}

.f-footer-detail {
  clear: none;
  color: var(--black);
  text-align: left;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.f-footer-line {
  background-color: #e4e6f1;
  width: 1px;
  height: 24px;
  margin-left: 16px;
  margin-right: 16px;
}

.f-footer-vertical-divider {
  background-color: var(--black);
  color: var(--black);
  width: 1px;
  height: 16px;
}

.f-icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: color .2s;
  display: flex;
}

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

.f-footer-brand {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.f-footer-social-row-large {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 60px;
  display: flex;
}

.div-block-5 {
  margin-left: auto;
  margin-right: auto;
}

.paragraph-11 {
  text-shadow: none;
  margin-bottom: 10px;
  padding-top: 10px;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.paragraph-12 {
  text-align: justify;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.button-4, .button-5 {
  background-color: var(--red);
  font-weight: 700;
  box-shadow: 0 2px 5px #0003;
}

.div-block-6 {
  margin: 60px auto;
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: 0 2px 5px #0003;
}

.section-7 {
  margin-left: auto;
  margin-right: auto;
}

.section-7.section-black {
  background-color: var(--black);
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: 0 2px 5px #0003;
}

.image-15 {
  cursor: pointer;
  mix-blend-mode: normal;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 5px #0003;
}

.image-16 {
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 5px #0003;
}

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

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

.container-9 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

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

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: #1a1b1fcc;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

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

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

.button-primary.footer-form-button {
  padding: 8px 18px;
  position: absolute;
  right: 8px;
}

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

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: #1a1b1f;
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
}

.footer-link-three:hover {
  color: #1a1b1fbf;
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

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

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

.footer-copyright {
  color: #3a4554;
}

.footer-legal-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-legal-link {
  color: #3a4554;
  margin-left: 24px;
}

.footer-legal-link:hover {
  color: #3a4554;
}

.div-block-8 {
  flex: auto;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 155px;
  display: block;
  position: static;
}

.div-block-9 {
  align-self: center;
  margin-right: 40px;
}

.image-17, .image-18, .image-19 {
  margin-left: auto;
  margin-right: auto;
}

.cell-16, .cell-17 {
  justify-content: center;
  align-items: center;
}

.quick-stack-2 {
  font-family: Lato, sans-serif;
}

.text-block-15, .text-block-16 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.container-10 {
  max-width: none;
  margin-bottom: 60px;
}

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

.image-20 {
  object-fit: cover;
  box-shadow: 0 2px 5px #0003;
}

.container-11 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.quick-stack-3, .quick-stack-4 {
  border: 1px solid var(--94-white);
  border-radius: 4px;
  margin-bottom: 100px;
}

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

.image-21, .image-22 {
  box-shadow: 0 2px 5px #0003;
}

.container-13 {
  padding-top: 40px;
}

.section-9 {
  max-width: none;
  margin-bottom: 140px;
}

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

.text-block-17 {
  font-size: 10px;
}

.text-block-18 {
  color: var(--black);
  font-size: 12px;
}

.text-block-19, .text-block-20, .text-block-21 {
  font-size: 12px;
}

.text-block-22 {
  box-sizing: border-box;
  aspect-ratio: auto;
  color: var(--black);
  font-size: 12px;
  display: block;
}

.heading-20, .heading-21 {
  text-shadow: 0 1px 1px #0003;
  margin-left: auto;
  margin-right: auto;
  font-family: Vollkorn, serif;
}

.paragraph-13, .paragraph-14 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.section-10 {
  background-color: var(--black);
  box-shadow: 0 2px 5px #0003;
}

.text-block-23 {
  color: var(--white);
  text-align: center;
  padding-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.text-block-24 {
  color: var(--white);
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.cell-19 {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}

.cell-20 {
  justify-content: space-between;
  align-items: center;
}

.cell-21 {
  justify-content: flex-start;
  align-items: center;
}

.quick-stack-5 {
  margin-bottom: 140px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.quick-stack-6 {
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 10px 100px;
}

.section-11 {
  object-fit: fill;
}

.button-6 {
  background-color: var(--red);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.text-block-25 {
  color: var(--black);
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-style: italic;
}

.text-block-26, .text-block-27 {
  text-align: center;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.text-block-28 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  font-size: 22px;
}

.image-23 {
  margin-bottom: 60px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-11 {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.cell-22 {
  margin-left: auto;
  margin-right: auto;
}

.cell-23 {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
}

.cell-24 {
  margin-left: auto;
  margin-right: auto;
}

.quick-stack-7 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  padding-bottom: 60px;
}

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

.list-item, .list-item-2 {
  text-align: left;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-weight: 900;
}

.list-2 {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 24px;
  line-height: 36px;
  list-style-type: disc;
}

.icon {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 28px;
  display: flex;
}

.icon-2, .icon-3 {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding-bottom: 20px;
  display: flex;
}

.grid-2 {
  grid-template: "."
                 "."
                 "Area"
                 / 1fr 1fr;
}

.text-block-29 {
  text-align: center;
  -webkit-text-stroke-color: #000;
  padding-top: 0;
  font-family: Lato, sans-serif;
}

.section-12 {
  margin-top: 0;
}

.grid-3 {
  margin-bottom: 40px;
}

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

.text-block-30 {
  color: var(--black);
  font-family: Lato, sans-serif;
}

.text-block-31 {
  color: #000;
  font-family: Lato, sans-serif;
}

.container-15 {
  word-break: normal;
}

.image-25 {
  object-fit: cover;
  flex: 1;
  box-shadow: 0 2px 5px #0003;
}

.cell-26 {
  justify-content: flex-start;
  align-items: center;
}

.image-26 {
  flex: 1;
}

.link-2 {
  color: var(--red);
  font-weight: 700;
}

.image-27 {
  transform: perspective(1174px);
  box-shadow: 0 2px 5px #0003;
}

.quick-stack-8 {
  border: 1px solid var(--94-white);
  border-radius: 4px;
}

.text-block-32 {
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.quick-stack-9 {
  padding-left: 0;
  padding-right: 0;
}

.image-28, .image-29, .image-30, .image-31, .image-32, .image-33, .image-34, .image-35, .image-36, .image-37, .image-38, .image-39, .image-40, .image-41, .image-42, .image-43, .image-44, .image-45, .image-46, .image-47, .image-48, .image-49, .image-50 {
  box-shadow: 0 2px 5px #0003;
}

.section-13 {
  text-align: justify;
}

.quick-stack-10 {
  padding-left: 0;
  padding-right: 0;
}

.quick-stack-11 {
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.nav-link.mobile-only-menu-item {
  display: none;
}

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

.container-17 {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 1920px) {
  .section {
    background-color: var(--white);
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

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

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

  .paragraph-tiny {
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    font-size: 12px;
    display: flex;
  }

  .paragraph-bigger.cc-bigger-white-light {
    text-shadow: 2px 2px 4px #000;
    font-weight: 400;
  }

  .paragraph-light {
    line-height: 36px;
  }

  .heading-sub {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

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

  .intro-content {
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading-wrap {
    margin-bottom: 80px;
  }

  .section-heading {
    font-size: 48px;
    line-height: 58px;
  }

  .heading {
    font-size: 82px;
  }

  .image {
    float: none;
    aspect-ratio: auto;
    object-fit: fill;
    padding-top: 0;
    padding-right: 0;
    display: block;
    position: static;
  }

  .button-2, .text-block-2 {
    font-weight: 400;
  }

  .heading-3 {
    font-size: 48px;
    line-height: 58px;
  }

  .heading-4 {
    font-size: 48px;
  }

  .slider {
    height: 740px;
  }

  .text-span-3 {
    font-size: 28px;
    line-height: 36px;
  }

  .container-4 {
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .heading-sub-page-header {
    overflow: visible;
  }

  .section-4 {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .paragraph-4 {
    text-align: left;
    font-family: Lato, sans-serif;
  }

  .text-block-10 {
    font-size: 48px;
  }

  .page-header.portfolio {
    margin-bottom: 6.6rem;
    font-size: 6vw;
  }

  .project-item {
    width: 43vw;
    max-height: 700px;
  }

  .gallery-hero-section-mobile {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .gallery-list-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    width: auto;
    max-width: 3000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .gallery-list {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: wrap;
    order: 0;
    align-content: stretch;
    align-items: center;
    padding-left: 0;
    font-family: Vollkorn, serif;
  }

  .gallery-item {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 5px #0003;
  }

  .container-5 {
    margin-left: auto;
    margin-right: auto;
  }

  .button-3 {
    background-color: var(--red);
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .container-6 {
    justify-content: center;
    display: flex;
  }

  .image-9 {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: cover;
    height: 350px;
    margin-left: auto;
    margin-right: auto;
    overflow: clip;
    box-shadow: 0 2px 5px #0003;
  }

  .image-10 {
    text-shadow: none;
    object-fit: cover;
    flex: 1;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 5px #0003;
  }

  .paragraph-6 {
    width: auto;
    font-family: Lato, sans-serif;
    font-size: 24px;
  }

  .heading-17 {
    margin-bottom: 0;
  }

  .section-6-black {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    aspect-ratio: auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    display: block;
    box-shadow: 0 2px 5px #0003;
  }

  .heading-19 {
    margin-bottom: 0;
  }

  .text-span-4 {
    font-size: 82px;
  }

  .gallery-hero-section {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .container-8 {
    max-width: none;
    margin-bottom: 40px;
    overflow: visible;
  }

  .f-feature-card-filled {
    background-color: var(--black);
  }

  .f-feature-icon-wrapper-black {
    background-color: var(--black);
    width: auto;
    height: auto;
  }

  .f-footer-small {
    background-color: var(--94-white);
  }

  .paragraph-11 {
    text-shadow: none;
    margin-left: 20px;
    margin-right: 20px;
    font-family: Lato, sans-serif;
    font-size: 24px;
    line-height: 36px;
  }

  .paragraph-12 {
    color: var(--black);
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .button-4, .button-5 {
    background-color: var(--red);
  }

  .div-block-6 {
    margin-top: 100px;
    margin-bottom: 100px;
    box-shadow: 0 2px 5px #0003;
  }

  .section-7.section-black {
    box-shadow: 0 2px 5px #0003;
  }

  .footer-subscribe {
    background-color: var(--94-white);
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .container-9 {
    justify-content: space-between;
    width: auto;
    max-width: none;
    display: flex;
  }

  .footer-copyright, .footer-legal-link {
    justify-content: space-between;
    display: flex;
  }

  .div-block-8 {
    flex: auto;
    order: 0;
    justify-content: center;
    align-self: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 155px;
    display: flex;
  }

  .div-block-9 {
    justify-content: flex-end;
    margin-right: 40px;
    padding-right: 0;
    display: block;
  }

  .image-17, .image-18, .image-19 {
    margin-left: auto;
    margin-right: auto;
  }

  .cell-16, .cell-17 {
    justify-content: center;
    align-items: center;
    font-family: Lato, sans-serif;
  }

  .text-block-15 {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 28px;
  }

  .text-block-16 {
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 28px;
  }

  .container-10 {
    margin-bottom: 100px;
  }

  .container-12 {
    padding-bottom: 0;
  }

  .cell-18 {
    justify-content: center;
    align-items: center;
  }

  .image-21 {
    box-shadow: 0 2px 5px #0003;
  }

  .link-block {
    background-image: url('../images/tfk-items-hq-steaks-on-cutting-board.jpg');
    background-position: 50%;
    background-size: cover;
  }

  .container-13 {
    max-width: 1400px;
    margin-bottom: 0;
  }

  .section-9 {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    width: 100%;
    height: auto;
  }

  .cell-25 {
    justify-content: center;
    align-items: center;
  }

  .image-26 {
    object-fit: cover;
    flex: 1;
  }
}

@media screen and (max-width: 991px) {
  .section {
    flex-flow: column;
    align-content: stretch;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    display: block;
    overflow: visible;
  }

  .section.cc-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .section.cc-store-home-wrap {
    align-content: stretch;
    height: 620px;
    margin-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

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

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

  .paragraph-tiny {
    font-size: 10px;
  }

  .button {
    justify-content: center;
  }

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

  .paragraph-light {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-sub {
    flex-flow: row;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    font-size: 56px;
    line-height: 70px;
    display: block;
  }

  .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: #0000;
  }

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

  .footer-wrap {
    flex: 1;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .cta-text {
    width: auto;
  }

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

  .intro-header.cc-subpage {
    flex-flow: row;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-content {
    width: auto;
    height: auto;
  }

  .our-services-grid {
    text-align: center;
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-icon {
    display: inline-block;
  }

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

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

  .our-contacts {
    grid-template: "."
                   "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .team-members {
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
  }

  .team-member-title-wrap {
    margin-bottom: 30px;
  }

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

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

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

  .blog-item {
    width: 80%;
  }

  .blog-preview-image {
    height: 460px;
  }

  .blog-summary-wrap {
    width: 100%;
  }

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

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

  .about-grid.cc-about-2 {
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         ".";
  }

  .intro-text {
    width: auto;
  }

  .collection-wrap {
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-preview-wrap {
    text-align: center;
    width: 80%;
    padding-right: 15px;
  }

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

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

  .text-span-2 {
    display: block;
  }

  .button-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .container-2 {
    align-self: center;
    align-items: center;
  }

  .heading-3, .heading-4 {
    font-size: 36px;
    line-height: 46px;
  }

  .image-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-4 {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .slider {
    position: relative;
  }

  .heading-sub-page-header {
    font-size: 54px;
  }

  .heading-14 {
    font-size: 36px;
  }

  .text-block-9 {
    font-size: 18px;
    line-height: 26px;
  }

  .paragraph-4 {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 26px;
  }

  .text-block-10 {
    font-size: 36px;
    line-height: 46px;
  }

  .page-header {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 16vw;
  }

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

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

  .project-item {
    grid-column-gap: 18px;
    aspect-ratio: auto;
    width: 45vw;
    height: auto;
    min-height: 300px;
    max-height: 300px;
    padding-left: 0;
  }

  .background-image.hide {
    display: none;
  }

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

  .gallery-hero-section-mobile {
    align-items: center;
    min-height: 100%;
    padding-bottom: 5%;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .gallery-list-wrapper {
    flex-flow: wrap;
    justify-content: center;
    display: flex;
  }

  .gallery-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .gallery-item {
    flex-flow: wrap;
    flex: 0 auto;
    place-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .image-9 {
    object-fit: cover;
    height: 250px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 0 2px 5px #0003;
  }

  .image-10 {
    object-fit: cover;
    flex: 1;
    align-self: auto;
  }

  .paragraph-6 {
    font-size: 16px;
    line-height: 26px;
  }

  .heading-15 {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 48px;
  }

  .heading-16 {
    font-size: 48px;
    line-height: 52px;
  }

  .paragraph-8, .paragraph-9 {
    font-size: 16px;
    line-height: 26px;
  }

  .heading-17, .heading-19 {
    font-size: 48px;
    line-height: 52px;
  }

  .paragraph-10 {
    font-size: 16px;
    line-height: 26px;
  }

  .gallery-hero-section {
    flex-flow: wrap;
    align-items: stretch;
    min-height: 100%;
    padding-bottom: 0%;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .f-header-grid-asymmetrical {
    grid-template-columns: 1fr;
  }

  .f-feature-card-filled {
    padding: 20px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .f-feature-icon-wrapper-black {
    min-width: auto;
    min-height: auto;
    margin-bottom: 20px;
  }

  .f-h5-heading {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1.2;
  }

  .f-grid-three-column {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .f-section-large {
    overflow: visible;
  }

  .f-footer-group {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .f-footer-menu {
    grid-column-gap: 20px;
  }

  .f-footer-detail {
    text-align: center;
    align-self: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .f-footer-line {
    background-color: var(--black);
  }

  .f-footer-bottom {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .f-footer-brand {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
  }

  .f-footer-social-row-large {
    margin-left: 0;
  }

  .paragraph-11 {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 26px;
  }

  .paragraph-12 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 24px;
  }

  .div-block-7 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    display: block;
  }

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

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

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

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

  .div-block-8 {
    padding-left: 220px;
    padding-right: 60px;
  }

  .div-block-9 {
    margin-left: auto;
  }

  .text-block-15, .text-block-16 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
  }

  .container-10 {
    margin-bottom: 40px;
  }

  .image-20 {
    object-fit: cover;
    flex: 1;
  }

  .section-8 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .grid {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-auto-flow: row dense;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .quick-stack-6 {
    max-width: none;
  }

  .section-11 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .image-25 {
    object-fit: cover;
    flex: auto;
  }

  .cell-25, .cell-26 {
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    background-color: var(--black);
    color: var(--94-white);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    text-decoration: none;
  }

  .nav-link.mobile-only-menu-item {
    letter-spacing: 1px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

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

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

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

  .section.section-mobile-home {
    margin-top: auto;
  }

  .container {
    text-align: center;
    max-width: 201%;
    margin-left: 0;
  }

  .paragraph-tiny {
    padding-left: 30px;
    font-size: 8px;
  }

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

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

  .paragraph-light {
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-sub {
    margin-top: 0;
    font-size: 50px;
    line-height: 64px;
  }

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

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

  .navigation {
    padding: 20px 30px;
  }

  .footer-wrap {
    display: flex;
  }

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

  .intro-header.cc-subpage {
    flex-flow: column;
    margin-top: 0;
  }

  .intro-content {
    width: 80%;
    height: auto;
  }

  .our-services-grid {
    grid-row-gap: 60px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .status-message.cc-no-data {
    width: 80%;
    max-width: 470px;
  }

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

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

  .team-pic {
    height: 300px;
    margin-bottom: 30px;
  }

  .team-member-name {
    font-size: 16px;
    line-height: 28px;
  }

  .project-name-wrap {
    margin-bottom: 30px;
  }

  .project-name-link {
    font-size: 16px;
    line-height: 28px;
  }

  .detail-image {
    margin-bottom: 15px;
  }

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

  .blog-item {
    width: 90%;
    max-width: 470px;
  }

  .blog-summary-wrap {
    text-align: center;
  }

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

  ._404-wrap {
    padding: 30px;
  }

  .heading.heading_mobile {
    font-size: 48px;
    line-height: 52px;
  }

  .image {
    max-width: 75%;
  }

  .text-block-2 {
    font-size: 36px;
  }

  .body {
    box-sizing: border-box;
  }

  .heading-3 {
    font-size: 28px;
    line-height: 32px;
  }

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

  .heading-14 {
    font-size: 28px;
    line-height: 42px;
  }

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

  .paragraph-4 {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    line-height: 18px;
  }

  .text-block-10 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 28px;
    line-height: 36px;
  }

  .page-header {
    margin-top: 4.8rem;
    margin-bottom: 1.7rem;
    font-size: 16vw;
  }

  .project-item {
    grid-column-gap: 18px;
    grid-row-gap: 24px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-content: stretch;
    justify-items: stretch;
    width: 100%;
    height: auto;
    display: grid;
  }

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

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

  .hover-link-wrapper.project-view-link.top {
    align-self: auto;
  }

  .gallery-hero-section-mobile {
    object-fit: fill;
    width: auto;
    padding-left: 0%;
    padding-right: 0%;
    overflow: visible;
  }

  .gallery-list-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .gallery-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .gallery-item {
    width: 100%;
    margin-bottom: 2rem;
    margin-right: 0;
  }

  .image-9 {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 100% 100%;
    margin-bottom: 10px;
    margin-left: 0;
    overflow: clip;
  }

  .paragraph-6 {
    font-size: 14px;
    line-height: 20px;
  }

  .heading-15 {
    font-size: 36px;
    line-height: 52px;
  }

  .heading-16 {
    font-size: 36px;
  }

  .paragraph-8, .paragraph-9 {
    font-size: 14px;
    line-height: 20px;
  }

  .heading-17, .heading-19 {
    font-size: 36px;
  }

  .paragraph-10 {
    font-size: 14px;
    line-height: 20px;
  }

  .text-span-11 {
    justify-content: center;
    display: flex;
  }

  .gallery-hero-section {
    object-fit: fill;
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0%;
    padding-right: 0%;
    overflow: visible;
  }

  .f-h3-heading {
    font-size: 40px;
  }

  .f-grid-three-column {
    grid-template-columns: 1fr;
  }

  .f-section-large {
    padding: 40px 15%;
  }

  .f-footer-logo-xs {
    height: 30px;
  }

  .paragraph-11 {
    text-align: left;
    font-size: 14px;
    line-height: 18px;
  }

  .paragraph-12 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 20px;
  }

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

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

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

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

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

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

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

  .div-block-8 {
    padding-left: 165px;
  }

  .image-20 {
    flex: 1;
  }

  .container-13 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .heading-20, .heading-21 {
    align-self: center;
  }

  .paragraph-13, .paragraph-14 {
    text-align: center;
    align-self: center;
  }

  .image-23 {
    margin-left: 0;
    margin-right: 0;
  }

  .container-14 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-3 {
    color: #000;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Lato, sans-serif;
  }

  .text-block-30 {
    word-break: break-all;
  }

  .text-block-31 {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .image-25 {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: cover;
    flex: 1;
  }

  .cell-25, .cell-26, .cell-28 {
    justify-content: center;
    align-items: center;
  }
}

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

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

  .section.cc-store-home-wrap {
    height: 300px;
    padding-left: 0;
    padding-right: 0;
  }

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

  .paragraph-tiny {
    padding-left: 0;
  }

  .paragraph-bigger.cc-bigger-white-light {
    font-size: 16px;
    line-height: 22px;
  }

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

  .paragraph-light {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 24px;
  }

  .heading-sub {
    color: var(--black);
    -webkit-text-stroke-color: var(--white);
    flex-flow: row;
    font-size: 32px;
    line-height: 36px;
    display: block;
  }

  .menu {
    margin-left: 15px;
  }

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

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

  .footer-wrap {
    display: flex;
  }

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

  .intro-header.cc-subpage {
    overflow-wrap: normal;
    width: auto;
    height: auto;
    margin-top: 0;
  }

  .status-message.cc-no-data, .contact-form-grid {
    width: 100%;
  }

  .our-contacts {
    width: 90%;
  }

  .team-members {
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .project-details-grid {
    width: 100%;
  }

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

  .section-heading {
    margin-top: 0;
    font-size: 28px;
    line-height: 32px;
  }

  .intro-text {
    overflow-wrap: normal;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    display: flex;
  }

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

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

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

  .image {
    margin-left: 40px;
    padding-left: 0;
  }

  .button-2 {
    font-size: 18px;
  }

  .text-block-2 {
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 22px;
  }

  .heading-3 {
    font-size: 24px;
    line-height: 28px;
  }

  .heading-4 {
    line-height: 36px;
  }

  .image-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-1 {
    aspect-ratio: auto;
    -webkit-text-fill-color: inherit;
    object-fit: fill;
    background-image: url('../images/re-Opt_Prime-pic.jpg');
    background-position: 50%;
    background-size: cover;
    background-clip: border-box;
    padding-bottom: 0;
    padding-right: 0;
    overflow: visible;
  }

  .slider {
    height: 300px;
    margin-bottom: 60px;
  }

  .heading-sub-page-header {
    font-size: 32px;
  }

  .heading-14 {
    line-height: 36px;
  }

  .text-block-9 {
    font-size: 12px;
    line-height: 14px;
  }

  .paragraph-4 {
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
    line-height: 14px;
  }

  .page-header {
    text-align: center;
    width: 100%;
    font-size: 60px;
  }

  .page-header.portfolio {
    margin-top: .3rem;
    font-size: 8vw;
  }

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

  .gallery-hero-section-mobile {
    width: auto;
    padding: .125rem 0% 4%;
  }

  .gallery-item {
    margin-right: 0;
  }

  .image-9 {
    object-fit: cover;
    margin-left: auto;
    overflow: clip;
  }

  .image-10 {
    flex: 0 auto;
  }

  .paragraph-6 {
    font-size: 12px;
    line-height: 14px;
  }

  .heading-15 {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 32px;
    overflow: hidden;
  }

  .heading-16 {
    font-size: 32px;
  }

  .paragraph-8, .paragraph-9 {
    font-size: 12px;
    line-height: 14px;
  }

  .heading-17, .heading-19 {
    font-size: 32px;
  }

  .paragraph-10 {
    font-size: 12px;
    line-height: 14px;
  }

  .text-span-4 {
    white-space: normal;
    word-break: normal;
  }

  .gallery-hero-section {
    width: auto;
    padding: .125rem 0% 4%;
  }

  .f-footer-logo-xs {
    height: auto;
  }

  .f-footer-menu {
    text-align: center;
    flex-direction: column;
  }

  .f-footer-vertical-divider {
    display: none;
  }

  .paragraph-11 {
    font-size: 12px;
    line-height: 14px;
  }

  .paragraph-12 {
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
    line-height: 14px;
  }

  .image-15, .image-16 {
    box-shadow: none;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .footer-form-two {
    padding: 20px;
  }

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

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .button-primary.footer-form-button {
    position: relative;
    right: 0;
  }

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

  .div-block-8 {
    padding-left: 20px;
  }

  .text-block-15 {
    text-align: center;
    line-height: 26px;
  }

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

  .image-20 {
    align-self: auto;
  }

  .container-11 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cell-19, .cell-20, .cell-21 {
    padding-bottom: 60px;
  }

  .list-2 {
    padding-left: 20px;
  }

  .grid-3 {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .text-block-30 {
    aspect-ratio: auto;
    overflow-wrap: anywhere;
    object-fit: fill;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .cell-27, .cell-28 {
    justify-content: center;
    align-items: center;
  }
}

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

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

#w-node-_27012d1a-e6b4-7605-8879-23272121e14e-b82447f5 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ab5fc9fd-07eb-43af-24f6-d96e702fbfb1-b82447f5 {
  grid-row: span 2 / span 2;
}

#w-node-_8a8a832c-585c-f8e2-4694-016a73cce3ca-51e627e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5d17d116-6930-c9e1-ae4f-8e5abdad2658-b8244846, #w-node-_19226c38-e8e9-a082-f650-f9382cc9cb70-b8244861, #w-node-b1788761-6f3d-2afe-c4b8-fc54e9acd27f-b8244862 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_52e729e1-6198-1fc5-8607-7c1d97fd885b-b8244862 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-f8b44ed8-f475-1312-9e9e-f6f7509a4fd5-b8244862 {
  grid-row: span 2 / span 2;
}

#w-node-_267e5755-97da-d4f2-2977-fc3daef026f7-b8244862 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e7c4a23e-f18e-b05f-fa88-486ce4cb5940-b8244862 {
  grid-row: span 2 / span 2;
}

#w-node-_3f120355-62fa-6449-0d4e-431b0b26d04e-b8244862 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_77f38fb2-8b6c-b287-f030-a98046fdd120-b8244862 {
  grid-row: span 2 / span 2;
}

#w-node-_4068142a-348d-4f4b-7569-3bc0bc29f636-b8244862 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_478c56a6-ccf8-8502-ca41-2c9bb7981eb9-b8244864 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0837cd92-1b60-bbaa-839b-b96c556b18cd-b8244865 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e2967777-37a3-333a-0443-3177f02c36cf-b8244865 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-a99ec10e-77e0-ffba-d38c-60eb3503a540-b8244866 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-a99ec10e-77e0-ffba-d38c-60eb3503a540-b8244867 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-a69c4873-e44a-d439-ab6b-52c40ff67c55-b8244867, #w-node-c29dc91b-ea2f-64cb-8813-963aab6c2585-b8244867 {
  justify-self: center;
}

@media screen and (min-width: 1920px) {
  #w-node-d15c3e7f-6bbf-e541-0a78-744910a5cb77-b8244864 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

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

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-b82447f5 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: auto;
  }

  #w-node-_0837cd92-1b60-bbaa-839b-b96c556b18cd-b8244865 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d34-b82447f5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0837cd92-1b60-bbaa-839b-b96c556b18cd-b8244865 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_27012d1a-e6b4-7605-8879-23272121e14e-b82447f5 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-ab5fc9fd-07eb-43af-24f6-d96e702fbfb1-b82447f5 {
    grid-row: span 2 / span 2;
  }

  #w-node-_5d17d116-6930-c9e1-ae4f-8e5abdad2658-b8244846, #w-node-_19226c38-e8e9-a082-f650-f9382cc9cb70-b8244861, #w-node-b1788761-6f3d-2afe-c4b8-fc54e9acd27f-b8244862 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_52e729e1-6198-1fc5-8607-7c1d97fd885b-b8244862 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-f8b44ed8-f475-1312-9e9e-f6f7509a4fd5-b8244862 {
    grid-row: span 2 / span 2;
  }

  #w-node-_267e5755-97da-d4f2-2977-fc3daef026f7-b8244862 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e7c4a23e-f18e-b05f-fa88-486ce4cb5940-b8244862 {
    grid-row: span 2 / span 2;
  }

  #w-node-_3f120355-62fa-6449-0d4e-431b0b26d04e-b8244862 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_77f38fb2-8b6c-b287-f030-a98046fdd120-b8244862 {
    grid-row: span 2 / span 2;
  }

  #w-node-_4068142a-348d-4f4b-7569-3bc0bc29f636-b8244862, #w-node-e2967777-37a3-333a-0443-3177f02c36cf-b8244865 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


